Compare commits

..

No commits in common. "master" and "master" have entirely different histories.

2633 changed files with 11002 additions and 182469 deletions

3
.gitmodules vendored
View File

@ -1,6 +1,3 @@
[submodule "LLib"] [submodule "LLib"]
path = LLib path = LLib
url = https://git.carvel.li/liza/LLib.git url = https://git.carvel.li/liza/LLib.git
[submodule "vendor/ECommons"]
path = vendor/ECommons
url = https://github.com/NightmareXIV/ECommons.git

View File

@ -1,5 +0,0 @@
<Project>
<PropertyGroup>
<Version>3.4</Version>
</PropertyGroup>
</Project>

View File

@ -1,9 +0,0 @@
using Dalamud.Configuration;
namespace GatheringPathRenderer;
internal sealed class Configuration : IPluginConfiguration
{
public int Version { get; set; } = 1;
public string AuthorName { get; set; } = "?";
}

View File

@ -1,226 +0,0 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Numerics;
using System.Text.Json;
using System.Text.Json.Nodes;
using System.Text.Json.Serialization;
using System.Text.Json.Serialization.Metadata;
using Dalamud.Game.ClientState.Objects;
using Dalamud.Game.ClientState.Objects.Enums;
using Dalamud.Game.ClientState.Objects.Types;
using Dalamud.Game.Command;
using Dalamud.Plugin.Services;
using Lumina.Excel.GeneratedSheets;
using Questionable.Model;
using Questionable.Model.Gathering;
using Questionable.Model.Questing;
namespace GatheringPathRenderer;
internal sealed class EditorCommands : IDisposable
{
private readonly RendererPlugin _plugin;
private readonly IDataManager _dataManager;
private readonly ICommandManager _commandManager;
private readonly ITargetManager _targetManager;
private readonly IClientState _clientState;
private readonly IChatGui _chatGui;
private readonly Configuration _configuration;
public EditorCommands(RendererPlugin plugin, IDataManager dataManager, ICommandManager commandManager,
ITargetManager targetManager, IClientState clientState, IChatGui chatGui, Configuration configuration)
{
_plugin = plugin;
_dataManager = dataManager;
_commandManager = commandManager;
_targetManager = targetManager;
_clientState = clientState;
_chatGui = chatGui;
_configuration = configuration;
_commandManager.AddHandler("/qg", new CommandInfo(ProcessCommand));
}
private void ProcessCommand(string command, string argument)
{
string[] parts = argument.Split(' ');
string subCommand = parts[0];
List<string> arguments = parts.Skip(1).ToList();
try
{
switch (subCommand)
{
case "add":
CreateOrAddLocationToGroup(arguments);
break;
}
}
catch (Exception e)
{
_chatGui.PrintError(e.ToString(), "qG");
}
}
private void CreateOrAddLocationToGroup(List<string> arguments)
{
var target = _targetManager.Target;
if (target == null || target.ObjectKind != ObjectKind.GatheringPoint)
throw new Exception("No valid target");
var gatheringPoint = _dataManager.GetExcelSheet<GatheringPoint>()!.GetRow(target.DataId);
if (gatheringPoint == null)
throw new Exception("Invalid gathering point");
FileInfo targetFile;
GatheringRoot root;
var locationsInTerritory = _plugin.GetLocationsInTerritory(_clientState.TerritoryType).ToList();
var location = locationsInTerritory.SingleOrDefault(x => x.Id == gatheringPoint.GatheringPointBase.Row);
if (location != null)
{
targetFile = location.File;
root = location.Root;
// if this is an existing node, ignore it
var existingNode = root.Groups.SelectMany(x => x.Nodes.Where(y => y.DataId == target.DataId))
.Any(x => x.Locations.Any(y => Vector3.Distance(y.Position, target.Position) < 0.1f));
if (existingNode)
throw new Exception("Node already exists");
if (arguments.Contains("group"))
AddToNewGroup(root, target);
else
AddToExistingGroup(root, target);
}
else
{
(targetFile, root) = CreateNewFile(gatheringPoint, target);
_chatGui.Print($"Creating new file under {targetFile.FullName}", "qG");
}
_plugin.Save(targetFile, root);
}
public void AddToNewGroup(GatheringRoot root, IGameObject target)
{
root.Groups.Add(new GatheringNodeGroup
{
Nodes =
[
new GatheringNode
{
DataId = target.DataId,
Locations =
[
new GatheringLocation
{
Position = target.Position,
}
]
}
]
});
_chatGui.Print("Added group.", "qG");
}
public void AddToExistingGroup(GatheringRoot root, IGameObject target)
{
// find the same data id
var node = root.Groups.SelectMany(x => x.Nodes)
.SingleOrDefault(x => x.DataId == target.DataId);
if (node != null)
{
node.Locations.Add(new GatheringLocation
{
Position = target.Position,
});
_chatGui.Print($"Added location to existing node {target.DataId}.", "qG");
}
else
{
// find the closest group
var closestGroup = root.Groups
.Select(group => new
{
Group = group,
Distance = group.Nodes.Min(x =>
x.Locations.Min(y =>
Vector3.Distance(_clientState.LocalPlayer!.Position, y.Position)))
})
.OrderBy(x => x.Distance)
.First();
closestGroup.Group.Nodes.Add(new GatheringNode
{
DataId = target.DataId,
Locations =
[
new GatheringLocation
{
Position = target.Position,
}
]
});
_chatGui.Print($"Added new node {target.DataId}.", "qG");
}
}
public (FileInfo targetFile, GatheringRoot root) CreateNewFile(GatheringPoint gatheringPoint, IGameObject target)
{
// determine target folder
DirectoryInfo? targetFolder = _plugin.GetLocationsInTerritory(_clientState.TerritoryType).FirstOrDefault()
?.File.Directory;
if (targetFolder == null)
{
var territoryInfo = _dataManager.GetExcelSheet<TerritoryType>()!.GetRow(_clientState.TerritoryType)!;
targetFolder = _plugin.PathsDirectory
.CreateSubdirectory(ExpansionData.ExpansionFolders[(EExpansionVersion)territoryInfo.ExVersion.Row])
.CreateSubdirectory(territoryInfo.PlaceName.Value!.Name.ToString());
}
FileInfo targetFile =
new FileInfo(
Path.Combine(targetFolder.FullName,
$"{gatheringPoint.GatheringPointBase.Row}_{gatheringPoint.PlaceName.Value!.Name}_{(_clientState.LocalPlayer!.ClassJob.Id == 16 ? "MIN" : "BTN")}.json"));
var root = new GatheringRoot
{
Author = [_configuration.AuthorName],
Steps =
[
new QuestStep
{
TerritoryId = _clientState.TerritoryType,
InteractionType = EInteractionType.None,
}
],
Groups =
[
new GatheringNodeGroup
{
Nodes =
[
new GatheringNode
{
DataId = target.DataId,
Locations =
[
new GatheringLocation
{
Position = target.Position
}
]
}
]
}
]
};
return (targetFile, root);
}
public void Dispose()
{
_commandManager.RemoveHandler("/qg");
}
}

View File

@ -1,9 +0,0 @@
<Project Sdk="Dalamud.NET.Sdk/10.0.0">
<ItemGroup>
<ProjectReference Include="..\LLib\LLib.csproj" />
<ProjectReference Include="..\Questionable.Model\Questionable.Model.csproj" />
<ProjectReference Include="..\vendor\ECommons\ECommons\ECommons.csproj" />
</ItemGroup>
<Import Project="..\LLib\LLib.targets"/>
</Project>

View File

@ -1,6 +0,0 @@
{
"Name": "GatheringPathRenderer",
"Author": "Liza Carvelli",
"Punchline": "dev only plugin: Renders gathering location.",
"Description": "dev only plugin: Renders gathering location (without ECommons polluting the entire normal project)."
}

View File

@ -1,340 +0,0 @@
using System;
using System.Collections;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text.Encodings.Web;
using System.Text.Json;
using System.Text.Json.Nodes;
using System.Text.Json.Serialization;
using System.Text.Json.Serialization.Metadata;
using Dalamud.Game.ClientState.Objects;
using Dalamud.Interface.Windowing;
using Dalamud.Plugin;
using Dalamud.Plugin.Services;
using ECommons;
using ECommons.Schedulers;
using ECommons.SplatoonAPI;
using GatheringPathRenderer.Windows;
using LLib.GameData;
using Questionable.Model;
using Questionable.Model.Gathering;
namespace GatheringPathRenderer;
public sealed class RendererPlugin : IDalamudPlugin
{
private const long OnTerritoryChange = -2;
private readonly WindowSystem _windowSystem = new(nameof(RendererPlugin));
private readonly List<uint> _colors = [0xFFFF2020, 0xFF20FF20, 0xFF2020FF, 0xFFFFFF20, 0xFFFF20FF, 0xFF20FFFF];
private readonly IDalamudPluginInterface _pluginInterface;
private readonly IClientState _clientState;
private readonly IPluginLog _pluginLog;
private readonly EditorCommands _editorCommands;
private readonly EditorWindow _editorWindow;
private readonly List<GatheringLocationContext> _gatheringLocations = [];
private EClassJob _currentClassJob;
public RendererPlugin(IDalamudPluginInterface pluginInterface, IClientState clientState,
ICommandManager commandManager, IDataManager dataManager, ITargetManager targetManager, IChatGui chatGui,
IObjectTable objectTable, IPluginLog pluginLog)
{
_pluginInterface = pluginInterface;
_clientState = clientState;
_pluginLog = pluginLog;
Configuration? configuration = (Configuration?)pluginInterface.GetPluginConfig();
if (configuration == null)
{
configuration = new Configuration();
pluginInterface.SavePluginConfig(configuration);
}
_editorCommands = new EditorCommands(this, dataManager, commandManager, targetManager, clientState, chatGui,
configuration);
_editorWindow = new EditorWindow(this, _editorCommands, dataManager, targetManager, clientState, objectTable)
{ IsOpen = true };
_windowSystem.AddWindow(_editorWindow);
_currentClassJob = (EClassJob?)_clientState.LocalPlayer?.ClassJob.Id ?? EClassJob.Adventurer;
_pluginInterface.GetIpcSubscriber<object>("Questionable.ReloadData")
.Subscribe(Reload);
ECommonsMain.Init(pluginInterface, this, Module.SplatoonAPI);
LoadGatheringLocationsFromDirectory();
_pluginInterface.UiBuilder.Draw += _windowSystem.Draw;
_clientState.TerritoryChanged += TerritoryChanged;
_clientState.ClassJobChanged += ClassJobChanged;
if (_clientState.IsLoggedIn)
TerritoryChanged(_clientState.TerritoryType);
}
internal DirectoryInfo PathsDirectory
{
get
{
DirectoryInfo? solutionDirectory = _pluginInterface.AssemblyLocation.Directory?.Parent?.Parent?.Parent;
if (solutionDirectory != null)
{
DirectoryInfo pathProjectDirectory =
new DirectoryInfo(Path.Combine(solutionDirectory.FullName, "GatheringPaths"));
if (pathProjectDirectory.Exists)
return pathProjectDirectory;
}
throw new Exception("Unable to resolve project path");
}
}
internal void Reload()
{
LoadGatheringLocationsFromDirectory();
Redraw();
}
private void LoadGatheringLocationsFromDirectory()
{
_gatheringLocations.Clear();
try
{
foreach (var expansionFolder in ExpansionData.ExpansionFolders.Values)
LoadFromDirectory(
new DirectoryInfo(Path.Combine(PathsDirectory.FullName, expansionFolder)));
_pluginLog.Information(
$"Loaded {_gatheringLocations.Count} gathering root locations from project directory");
}
catch (Exception e)
{
_pluginLog.Error(e, "Failed to load paths from project directory");
}
}
private void LoadFromDirectory(DirectoryInfo directory)
{
if (!directory.Exists)
return;
//_pluginLog.Information($"Loading locations from {directory}");
foreach (FileInfo fileInfo in directory.GetFiles("*.json"))
{
try
{
using FileStream stream = new FileStream(fileInfo.FullName, FileMode.Open, FileAccess.Read);
LoadLocationFromStream(fileInfo, stream);
}
catch (Exception e)
{
throw new InvalidDataException($"Unable to load file {fileInfo.FullName}", e);
}
}
foreach (DirectoryInfo childDirectory in directory.GetDirectories())
LoadFromDirectory(childDirectory);
}
private void LoadLocationFromStream(FileInfo fileInfo, Stream stream)
{
var locationNode = JsonNode.Parse(stream)!;
GatheringRoot root = locationNode.Deserialize<GatheringRoot>()!;
_gatheringLocations.Add(new GatheringLocationContext(fileInfo, ushort.Parse(fileInfo.Name.Split('_')[0]),
root));
}
internal IEnumerable<GatheringLocationContext> GetLocationsInTerritory(ushort territoryId)
=> _gatheringLocations.Where(x => x.Root.Steps.LastOrDefault()?.TerritoryId == territoryId);
internal void Save(FileInfo targetFile, GatheringRoot root)
{
JsonSerializerOptions options = new()
{
Encoder = JavaScriptEncoder.UnsafeRelaxedJsonEscaping,
DefaultIgnoreCondition = JsonIgnoreCondition.WhenWritingDefault,
WriteIndented = true,
TypeInfoResolver = new DefaultJsonTypeInfoResolver
{
Modifiers = { NoEmptyCollectionModifier }
},
};
using (var stream = File.Create(targetFile.FullName))
{
var jsonNode = (JsonObject)JsonSerializer.SerializeToNode(root, options)!;
var newNode = new JsonObject();
newNode.Add("$schema",
"https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json");
foreach (var (key, value) in jsonNode)
newNode.Add(key, value?.DeepClone());
using var writer = new Utf8JsonWriter(stream, new JsonWriterOptions
{
Encoder = JavaScriptEncoder.UnsafeRelaxedJsonEscaping,
Indented = true
});
newNode.WriteTo(writer, options);
}
Reload();
}
private static void NoEmptyCollectionModifier(JsonTypeInfo typeInfo)
{
foreach (var property in typeInfo.Properties)
{
if (typeof(ICollection).IsAssignableFrom(property.PropertyType))
{
property.ShouldSerialize = (_, val) => val is ICollection { Count: > 0 };
}
}
}
private void TerritoryChanged(ushort territoryId) => Redraw();
private void ClassJobChanged(uint classJobId)
{
_currentClassJob = (EClassJob)classJobId;
Redraw(_currentClassJob);
}
internal void Redraw() => Redraw(_currentClassJob);
private void Redraw(EClassJob classJob)
{
Splatoon.RemoveDynamicElements("GatheringPathRenderer");
if (!classJob.IsGatherer())
return;
var elements = GetLocationsInTerritory(_clientState.TerritoryType)
.SelectMany(location =>
location.Root.Groups.SelectMany(group =>
group.Nodes.SelectMany(node => node.Locations
.SelectMany(x =>
{
bool isUnsaved = false;
bool isCone = false;
int minimumAngle = 0;
int maximumAngle = 0;
if (_editorWindow.TryGetOverride(x.InternalId, out LocationOverride? locationOverride) &&
locationOverride != null)
{
isUnsaved = locationOverride.NeedsSave();
if (locationOverride.IsCone())
{
isCone = true;
minimumAngle = locationOverride.MinimumAngle.GetValueOrDefault();
maximumAngle = locationOverride.MaximumAngle.GetValueOrDefault();
}
}
if (!isCone && x.IsCone())
{
isCone = true;
minimumAngle = x.MinimumAngle.GetValueOrDefault();
maximumAngle = x.MaximumAngle.GetValueOrDefault();
}
#if false
var a = GatheringMath.CalculateLandingLocation(x, 0, 0);
var b = GatheringMath.CalculateLandingLocation(x, 1, 1);
#endif
return new List<Element>
{
new Element(isCone
? ElementType.ConeAtFixedCoordinates
: ElementType.CircleAtFixedCoordinates)
{
refX = x.Position.X,
refY = x.Position.Z,
refZ = x.Position.Y,
Filled = true,
radius = locationOverride?.MinimumDistance ?? x.CalculateMinimumDistance(),
Donut = (locationOverride?.MaximumDistance ?? x.CalculateMaximumDistance()) -
(locationOverride?.MinimumDistance ?? x.CalculateMinimumDistance()),
color = _colors[location.Root.Groups.IndexOf(group) % _colors.Count],
Enabled = true,
coneAngleMin = minimumAngle,
coneAngleMax = maximumAngle,
tether = false,
},
new Element(ElementType.CircleAtFixedCoordinates)
{
refX = x.Position.X,
refY = x.Position.Z,
refZ = x.Position.Y,
color = 0xFFFFFFFF,
radius = 0.1f,
Enabled = true,
overlayText =
$"{location.Root.Groups.IndexOf(group)} // {node.DataId} / {node.Locations.IndexOf(x)}",
overlayBGColor = isUnsaved ? 0xFF2020FF : 0xFF000000,
},
#if false
new Element(ElementType.CircleAtFixedCoordinates)
{
refX = a.X,
refY = a.Z,
refZ = a.Y,
color = _colors[0],
radius = 0.1f,
Enabled = true,
overlayText = "Min Angle"
},
new Element(ElementType.CircleAtFixedCoordinates)
{
refX = b.X,
refY = b.Z,
refZ = b.Y,
color = _colors[1],
radius = 0.1f,
Enabled = true,
overlayText = "Max Angle"
}
#endif
};
}))))
.ToList();
if (elements.Count == 0)
{
_pluginLog.Information("No new elements to render.");
return;
}
_ = new TickScheduler(delegate
{
try
{
Splatoon.AddDynamicElements("GatheringPathRenderer",
elements.ToArray(),
new[] { OnTerritoryChange });
_pluginLog.Information($"Created {elements.Count} splatoon elements.");
}
catch (Exception e)
{
_pluginLog.Error(e, "Unable to create splatoon layer");
}
});
}
public void Dispose()
{
_clientState.ClassJobChanged -= ClassJobChanged;
_clientState.TerritoryChanged -= TerritoryChanged;
_pluginInterface.UiBuilder.Draw -= _windowSystem.Draw;
Splatoon.RemoveDynamicElements("GatheringPathRenderer");
ECommonsMain.Dispose();
_pluginInterface.GetIpcSubscriber<object>("Questionable.ReloadData")
.Unsubscribe(Reload);
_editorCommands.Dispose();
}
internal sealed record GatheringLocationContext(FileInfo File, ushort Id, GatheringRoot Root);
}

View File

@ -1,266 +0,0 @@
using System;
using System.Collections.Generic;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Numerics;
using Dalamud.Game.ClientState.Objects;
using Dalamud.Game.ClientState.Objects.Enums;
using Dalamud.Game.ClientState.Objects.Types;
using Dalamud.Interface.Colors;
using Dalamud.Interface.Windowing;
using Dalamud.Plugin.Services;
using ImGuiNET;
using Lumina.Excel.GeneratedSheets;
using Questionable.Model.Gathering;
namespace GatheringPathRenderer.Windows;
internal sealed class EditorWindow : Window
{
private readonly RendererPlugin _plugin;
private readonly EditorCommands _editorCommands;
private readonly IDataManager _dataManager;
private readonly ITargetManager _targetManager;
private readonly IClientState _clientState;
private readonly IObjectTable _objectTable;
private readonly Dictionary<Guid, LocationOverride> _changes = [];
private IGameObject? _target;
private (RendererPlugin.GatheringLocationContext Context, GatheringNode Node, GatheringLocation Location)?
_targetLocation;
public EditorWindow(RendererPlugin plugin, EditorCommands editorCommands, IDataManager dataManager,
ITargetManager targetManager, IClientState clientState, IObjectTable objectTable)
: base("Gathering Path Editor###QuestionableGatheringPathEditor",
ImGuiWindowFlags.NoFocusOnAppearing | ImGuiWindowFlags.NoNavFocus)
{
_plugin = plugin;
_editorCommands = editorCommands;
_dataManager = dataManager;
_targetManager = targetManager;
_clientState = clientState;
_objectTable = objectTable;
SizeConstraints = new WindowSizeConstraints
{
MinimumSize = new Vector2(300, 300),
};
RespectCloseHotkey = false;
ShowCloseButton = false;
AllowPinning = false;
AllowClickthrough = false;
}
public override void Update()
{
if (!_clientState.IsLoggedIn || _clientState.LocalPlayer == null)
{
_target = null;
_targetLocation = null;
return;
}
_target = _targetManager.Target;
var gatheringLocations = _plugin.GetLocationsInTerritory(_clientState.TerritoryType);
var location = gatheringLocations.SelectMany(context =>
context.Root.Groups.SelectMany(group =>
group.Nodes.SelectMany(node => node.Locations
.Select(location =>
{
float distance;
if (_target != null)
distance = Vector3.Distance(location.Position, _target.Position);
else
distance = Vector3.Distance(location.Position, _clientState.LocalPlayer.Position);
return new { Context = context, Node = node, Location = location, Distance = distance };
})
.Where(location => location.Distance < (_target == null ? 3f : 0.1f)))))
.MinBy(x => x.Distance);
if (_target != null && _target.ObjectKind != ObjectKind.GatheringPoint)
{
_target = null;
_targetLocation = null;
return;
}
if (location == null)
{
_targetLocation = null;
return;
}
_target ??= _objectTable
.Where(x => x.ObjectKind == ObjectKind.GatheringPoint && x.DataId == location.Node.DataId)
.Select(x => new
{
Object = x,
Distance = Vector3.Distance(location.Location.Position, _clientState.LocalPlayer.Position)
})
.Where(x => x.Distance < 3f)
.OrderBy(x => x.Distance)
.Select(x => x.Object)
.FirstOrDefault();
_targetLocation = (location.Context, location.Node, location.Location);
}
public override bool DrawConditions()
{
return _target != null || _targetLocation != null;
}
public override void Draw()
{
if (_target != null && _targetLocation != null)
{
var context = _targetLocation.Value.Context;
var node = _targetLocation.Value.Node;
var location = _targetLocation.Value.Location;
ImGui.Text(context.File.Directory?.Name ?? string.Empty);
ImGui.Indent();
ImGui.Text(context.File.Name);
ImGui.Unindent();
ImGui.Text(
$"{_target.DataId} +{node.Locations.Count - 1} / {location.InternalId.ToString().Substring(0, 4)}");
ImGui.Text(string.Create(CultureInfo.InvariantCulture, $"{location.Position:G}"));
if (!_changes.TryGetValue(location.InternalId, out LocationOverride? locationOverride))
{
locationOverride = new LocationOverride();
_changes[location.InternalId] = locationOverride;
}
int minAngle = locationOverride.MinimumAngle ?? location.MinimumAngle.GetValueOrDefault();
int maxAngle = locationOverride.MaximumAngle ?? location.MaximumAngle.GetValueOrDefault();
if (ImGui.DragIntRange2("Angle", ref minAngle, ref maxAngle, 5, -360, 360))
{
locationOverride.MinimumAngle = minAngle;
locationOverride.MaximumAngle = maxAngle;
_plugin.Redraw();
}
float minDistance = locationOverride.MinimumDistance ?? location.CalculateMinimumDistance();
float maxDistance = locationOverride.MaximumDistance ?? location.CalculateMaximumDistance();
if (ImGui.DragFloatRange2("Distance", ref minDistance, ref maxDistance, 0.1f, 1f, 3f))
{
locationOverride.MinimumDistance = minDistance;
locationOverride.MaximumDistance = maxDistance;
_plugin.Redraw();
}
bool unsaved = locationOverride.NeedsSave();
ImGui.BeginDisabled(!unsaved);
if (unsaved)
ImGui.PushStyleColor(ImGuiCol.Button, ImGuiColors.DalamudRed);
if (ImGui.Button("Save"))
{
if (locationOverride is { MinimumAngle: not null, MaximumAngle: not null })
{
location.MinimumAngle = locationOverride.MinimumAngle ?? location.MinimumAngle;
location.MaximumAngle = locationOverride.MaximumAngle ?? location.MaximumAngle;
}
if (locationOverride is { MinimumDistance: not null, MaximumDistance: not null })
{
location.MinimumDistance = locationOverride.MinimumDistance;
location.MaximumDistance = locationOverride.MaximumDistance;
}
_plugin.Save(context.File, context.Root);
}
if (unsaved)
ImGui.PopStyleColor();
ImGui.SameLine();
if (ImGui.Button("Reset"))
{
_changes[location.InternalId] = new LocationOverride();
_plugin.Redraw();
}
ImGui.EndDisabled();
List<IGameObject> nodesInObjectTable = _objectTable
.Where(x => x.ObjectKind == ObjectKind.GatheringPoint && x.DataId == _target.DataId)
.ToList();
List<IGameObject> missingLocations = nodesInObjectTable
.Where(x => !node.Locations.Any(y => Vector3.Distance(x.Position, y.Position) < 0.1f))
.ToList();
if (missingLocations.Count > 0)
{
if (ImGui.Button("Add missing locations"))
{
foreach (var missing in missingLocations)
_editorCommands.AddToExistingGroup(context.Root, missing);
_plugin.Save(context.File, context.Root);
}
}
}
else if (_target != null)
{
var gatheringPoint = _dataManager.GetExcelSheet<GatheringPoint>()!.GetRow(_target.DataId);
if (gatheringPoint == null)
return;
var locationsInTerritory = _plugin.GetLocationsInTerritory(_clientState.TerritoryType).ToList();
var location = locationsInTerritory.SingleOrDefault(x => x.Id == gatheringPoint.GatheringPointBase.Row);
if (location != null)
{
var targetFile = location.File;
var root = location.Root;
if (ImGui.Button("Add to closest group"))
{
_editorCommands.AddToExistingGroup(root, _target);
_plugin.Save(targetFile, root);
}
ImGui.BeginDisabled(root.Groups.Any(group => group.Nodes.Any(node => node.DataId == _target.DataId)));
ImGui.SameLine();
if (ImGui.Button("Add as new group"))
{
_editorCommands.AddToNewGroup(root, _target);
_plugin.Save(targetFile, root);
}
ImGui.EndDisabled();
}
else
{
if (ImGui.Button($"Create location ({gatheringPoint.GatheringPointBase.Row})"))
{
var (targetFile, root) = _editorCommands.CreateNewFile(gatheringPoint, _target);
_plugin.Save(targetFile, root);
}
}
}
}
public bool TryGetOverride(Guid internalId, out LocationOverride? locationOverride)
=> _changes.TryGetValue(internalId, out locationOverride);
}
internal sealed class LocationOverride
{
public int? MinimumAngle { get; set; }
public int? MaximumAngle { get; set; }
public float? MinimumDistance { get; set; }
public float? MaximumDistance { get; set; }
public bool IsCone()
{
return MinimumAngle != null && MaximumAngle != null && MinimumAngle != MaximumAngle;
}
public bool NeedsSave()
{
return (MinimumAngle != null && MaximumAngle != null) || (MinimumDistance != null && MaximumDistance != null);
}
}

View File

@ -1,109 +0,0 @@
{
"version": 1,
"dependencies": {
"net8.0-windows7.0": {
"DalamudPackager": {
"type": "Direct",
"requested": "[2.1.13, )",
"resolved": "2.1.13",
"contentHash": "rMN1omGe8536f4xLMvx9NwfvpAc9YFFfeXJ1t4P4PE6Gu8WCIoFliR1sh07hM+bfODmesk/dvMbji7vNI+B/pQ=="
},
"DotNet.ReproducibleBuilds": {
"type": "Direct",
"requested": "[1.1.1, )",
"resolved": "1.1.1",
"contentHash": "+H2t/t34h6mhEoUvHi8yGXyuZ2GjSovcGYehJrS2MDm2XgmPfZL2Sdxg+uL2lKgZ4M6tTwKHIlxOob2bgh0NRQ==",
"dependencies": {
"Microsoft.SourceLink.AzureRepos.Git": "1.1.1",
"Microsoft.SourceLink.Bitbucket.Git": "1.1.1",
"Microsoft.SourceLink.GitHub": "1.1.1",
"Microsoft.SourceLink.GitLab": "1.1.1"
}
},
"Microsoft.SourceLink.Gitea": {
"type": "Direct",
"requested": "[8.0.0, )",
"resolved": "8.0.0",
"contentHash": "KOBodmDnlWGIqZt2hT47Q69TIoGhIApDVLCyyj9TT5ct8ju16AbHYcB4XeknoHX562wO1pMS/1DfBIZK+V+sxg==",
"dependencies": {
"Microsoft.Build.Tasks.Git": "8.0.0",
"Microsoft.SourceLink.Common": "8.0.0"
}
},
"Microsoft.Build.Tasks.Git": {
"type": "Transitive",
"resolved": "8.0.0",
"contentHash": "bZKfSIKJRXLTuSzLudMFte/8CempWjVamNUR5eHJizsy+iuOuO/k2gnh7W0dHJmYY0tBf+gUErfluCv5mySAOQ=="
},
"Microsoft.SourceLink.AzureRepos.Git": {
"type": "Transitive",
"resolved": "1.1.1",
"contentHash": "qB5urvw9LO2bG3eVAkuL+2ughxz2rR7aYgm2iyrB8Rlk9cp2ndvGRCvehk3rNIhRuNtQaeKwctOl1KvWiklv5w==",
"dependencies": {
"Microsoft.Build.Tasks.Git": "1.1.1",
"Microsoft.SourceLink.Common": "1.1.1"
}
},
"Microsoft.SourceLink.Bitbucket.Git": {
"type": "Transitive",
"resolved": "1.1.1",
"contentHash": "cDzxXwlyWpLWaH0em4Idj0H3AmVo3L/6xRXKssYemx+7W52iNskj/SQ4FOmfCb8YQt39otTDNMveCZzYtMoucQ==",
"dependencies": {
"Microsoft.Build.Tasks.Git": "1.1.1",
"Microsoft.SourceLink.Common": "1.1.1"
}
},
"Microsoft.SourceLink.Common": {
"type": "Transitive",
"resolved": "8.0.0",
"contentHash": "dk9JPxTCIevS75HyEQ0E4OVAFhB2N+V9ShCXf8Q6FkUQZDkgLI12y679Nym1YqsiSysuQskT7Z+6nUf3yab6Vw=="
},
"Microsoft.SourceLink.GitHub": {
"type": "Transitive",
"resolved": "1.1.1",
"contentHash": "IaJGnOv/M7UQjRJks7B6p7pbPnOwisYGOIzqCz5ilGFTApZ3ktOR+6zJ12ZRPInulBmdAf1SrGdDG2MU8g6XTw==",
"dependencies": {
"Microsoft.Build.Tasks.Git": "1.1.1",
"Microsoft.SourceLink.Common": "1.1.1"
}
},
"Microsoft.SourceLink.GitLab": {
"type": "Transitive",
"resolved": "1.1.1",
"contentHash": "tvsg47DDLqqedlPeYVE2lmiTpND8F0hkrealQ5hYltSmvruy/Gr5nHAKSsjyw5L3NeM/HLMI5ORv7on/M4qyZw==",
"dependencies": {
"Microsoft.Build.Tasks.Git": "1.1.1",
"Microsoft.SourceLink.Common": "1.1.1"
}
},
"System.Text.Encodings.Web": {
"type": "Transitive",
"resolved": "8.0.0",
"contentHash": "yev/k9GHAEGx2Rg3/tU6MQh4HGBXJs70y7j1LaM1i/ER9po+6nnQ6RRqTJn1E7Xu0fbIFK80Nh5EoODxrbxwBQ=="
},
"System.Text.Json": {
"type": "Transitive",
"resolved": "8.0.4",
"contentHash": "bAkhgDJ88XTsqczoxEMliSrpijKZHhbJQldhAmObj/RbrN3sU5dcokuXmWJWsdQAhiMJ9bTayWsL1C9fbbCRhw==",
"dependencies": {
"System.Text.Encodings.Web": "8.0.0"
}
},
"ecommons": {
"type": "Project"
},
"llib": {
"type": "Project",
"dependencies": {
"DalamudPackager": "[2.1.13, )"
}
},
"questionable.model": {
"type": "Project",
"dependencies": {
"System.Text.Json": "[8.0.4, )"
}
}
}
}
}

View File

@ -1,157 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 141,
"InteractionType": "None",
"AetheryteShortcut": "Central Thanalan - Black Brush Station"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 30425,
"Locations": [
{
"Position": {
"X": 118.6389,
"Y": 7.583679,
"Z": 262.4399
},
"MinimumAngle": 60,
"MaximumAngle": 170
},
{
"Position": {
"X": 113.4342,
"Y": 4.562373,
"Z": 271.4816
},
"MinimumAngle": 80,
"MaximumAngle": 190
},
{
"Position": {
"X": 116.9106,
"Y": 2.964557,
"Z": 285.8209
},
"MinimumAngle": 0,
"MaximumAngle": 115
}
]
}
]
},
{
"Nodes": [
{
"DataId": 30427,
"Locations": [
{
"Position": {
"X": 127.2449,
"Y": 15.54889,
"Z": 240.1923
},
"MinimumAngle": 15,
"MaximumAngle": 115
},
{
"Position": {
"X": 122.0915,
"Y": 14.071,
"Z": 225.1131
},
"MinimumAngle": 0,
"MaximumAngle": 110
},
{
"Position": {
"X": 120.8954,
"Y": 15.9651,
"Z": 213.8515
},
"MinimumAngle": 30,
"MaximumAngle": 115
}
]
}
]
},
{
"Nodes": [
{
"DataId": 30426,
"Locations": [
{
"Position": {
"X": 148.7842,
"Y": 16.44447,
"Z": 292.8037
},
"MinimumAngle": 30,
"MaximumAngle": 135
},
{
"Position": {
"X": 144.9166,
"Y": 18.86193,
"Z": 264.833
},
"MinimumAngle": 15,
"MaximumAngle": 95
},
{
"Position": {
"X": 152.6806,
"Y": 16.58945,
"Z": 300.3315
},
"MinimumAngle": 0,
"MaximumAngle": 75
}
]
}
]
},
{
"Nodes": [
{
"DataId": 30428,
"Locations": [
{
"Position": {
"X": 137.6659,
"Y": 6.65416,
"Z": 311.1226
},
"MinimumAngle": 15,
"MaximumAngle": 135
},
{
"Position": {
"X": 141.0331,
"Y": 5.844177,
"Z": 325.063
},
"MinimumAngle": 0,
"MaximumAngle": 150
},
{
"Position": {
"X": 130.6749,
"Y": 5.736229,
"Z": 300.4703
},
"MinimumAngle": -5,
"MaximumAngle": 100
}
]
}
]
}
]
}

View File

@ -1,157 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 140,
"InteractionType": "None",
"AetheryteShortcut": "Western Thanalan - Horizon"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 30414,
"Locations": [
{
"Position": {
"X": 249.8601,
"Y": 55.12077,
"Z": 178.5377
},
"MinimumAngle": 125,
"MaximumAngle": 270
},
{
"Position": {
"X": 253.9519,
"Y": 55.95691,
"Z": 181.4238
},
"MinimumAngle": 180,
"MaximumAngle": 285
},
{
"Position": {
"X": 244.4912,
"Y": 53.49751,
"Z": 169.9265
},
"MinimumAngle": 150,
"MaximumAngle": 250
}
]
}
]
},
{
"Nodes": [
{
"DataId": 30413,
"Locations": [
{
"Position": {
"X": 292.9385,
"Y": 59.79165,
"Z": 187.855
},
"MinimumAngle": 45,
"MaximumAngle": 165
},
{
"Position": {
"X": 300.3293,
"Y": 63.1124,
"Z": 175.0616
},
"MinimumAngle": 65,
"MaximumAngle": 155
},
{
"Position": {
"X": 296.3942,
"Y": 61.46834,
"Z": 182.3181
},
"MinimumAngle": 70,
"MaximumAngle": 185
}
]
}
]
},
{
"Nodes": [
{
"DataId": 30415,
"Locations": [
{
"Position": {
"X": 262.1395,
"Y": 58.70948,
"Z": 239.3097
},
"MinimumAngle": 105,
"MaximumAngle": 210
},
{
"Position": {
"X": 284.4424,
"Y": 59.78878,
"Z": 222.5899
},
"MinimumAngle": 65,
"MaximumAngle": 240
},
{
"Position": {
"X": 278.6144,
"Y": 59.63044,
"Z": 231.8303
},
"MinimumAngle": 95,
"MaximumAngle": 185
}
]
}
]
},
{
"Nodes": [
{
"DataId": 30416,
"Locations": [
{
"Position": {
"X": 222.244,
"Y": 58.86799,
"Z": 244.9212
},
"MinimumAngle": 135,
"MaximumAngle": 275
},
{
"Position": {
"X": 212.3073,
"Y": 58.06055,
"Z": 245.9091
},
"MinimumAngle": 80,
"MaximumAngle": 220
},
{
"Position": {
"X": 235.9484,
"Y": 58.30469,
"Z": 249.0489
},
"MinimumAngle": 80,
"MaximumAngle": 190
}
]
}
]
}
]
}

View File

@ -1,149 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 397,
"InteractionType": "None",
"AetheryteShortcut": "Coerthas Western Highlands - Falcon's Nest"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 31406,
"Locations": [
{
"Position": {
"X": -501.2244,
"Y": 118.0477,
"Z": -443.4114
}
}
]
},
{
"DataId": 31407,
"Locations": [
{
"Position": {
"X": -468.6656,
"Y": 120.7944,
"Z": -420.1442
}
},
{
"Position": {
"X": -523.499,
"Y": 117.4618,
"Z": -449.0883
},
"MinimumAngle": -160,
"MaximumAngle": 65
},
{
"Position": {
"X": -482.4585,
"Y": 120.3927,
"Z": -442.2994
}
}
]
}
]
},
{
"Nodes": [
{
"DataId": 31408,
"Locations": [
{
"Position": {
"X": -685.595,
"Y": 122.3003,
"Z": -379.202
}
}
]
},
{
"DataId": 31409,
"Locations": [
{
"Position": {
"X": -691.5064,
"Y": 123.4536,
"Z": -354.5497
},
"MinimumAngle": 95,
"MaximumAngle": 325
},
{
"Position": {
"X": -673.4897,
"Y": 122.1564,
"Z": -378.4789
}
},
{
"Position": {
"X": -664.5702,
"Y": 121.697,
"Z": -394.0817
},
"MinimumAngle": 0,
"MaximumAngle": 255
}
]
}
]
},
{
"Nodes": [
{
"DataId": 31410,
"Locations": [
{
"Position": {
"X": -496.1503,
"Y": 121.0539,
"Z": -272.0342
}
}
]
},
{
"DataId": 31411,
"Locations": [
{
"Position": {
"X": -459.1924,
"Y": 121.1919,
"Z": -280.8376
},
"MinimumAngle": -105,
"MaximumAngle": 55
},
{
"Position": {
"X": -472.298,
"Y": 121.4754,
"Z": -306.8053
},
"MinimumAngle": 30,
"MaximumAngle": 235
},
{
"Position": {
"X": -486.2957,
"Y": 120.9394,
"Z": -257.3133
}
}
]
}
]
}
]
}

View File

@ -1,172 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 397,
"InteractionType": "None",
"AetheryteShortcut": "Coerthas Western Highlands - Falcon's Nest"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 31344,
"Locations": [
{
"Position": {
"X": 40.36132,
"Y": 217.3049,
"Z": 405.1829
},
"MinimumAngle": 100,
"MaximumAngle": 250,
"MinimumDistance": 1.5,
"MaximumDistance": 3
}
]
},
{
"DataId": 31345,
"Fly": false,
"Locations": [
{
"Position": {
"X": 20.19547,
"Y": 216.5585,
"Z": 412.4353
},
"MinimumAngle": 75,
"MaximumAngle": 145,
"MinimumDistance": 1.5,
"MaximumDistance": 3
},
{
"Position": {
"X": 17.58205,
"Y": 216.0664,
"Z": 421.5481
},
"MinimumAngle": 0,
"MaximumAngle": 145,
"MinimumDistance": 1.5,
"MaximumDistance": 3
},
{
"Position": {
"X": 51.50931,
"Y": 217.6516,
"Z": 408.2164
},
"MinimumAngle": 155,
"MaximumAngle": 225,
"MinimumDistance": 1.5,
"MaximumDistance": 3
}
]
}
]
},
{
"Nodes": [
{
"DataId": 31340,
"Locations": [
{
"Position": {
"X": 56.06712,
"Y": 216.6702,
"Z": 225.849
},
"MinimumAngle": -20,
"MaximumAngle": 105
}
]
},
{
"DataId": 31341,
"Locations": [
{
"Position": {
"X": 85.05425,
"Y": 218.7078,
"Z": 220.0463
},
"MinimumAngle": -110,
"MaximumAngle": 25
},
{
"Position": {
"X": 78.99079,
"Y": 215.9441,
"Z": 228.9527
},
"MinimumAngle": -110,
"MaximumAngle": 40
},
{
"Position": {
"X": 67.29195,
"Y": 216.4685,
"Z": 228.7955
},
"MinimumAngle": -35,
"MaximumAngle": 80
}
]
},
{
"DataId": 31342,
"Locations": [
{
"Position": {
"X": -124.1629,
"Y": 221.9654,
"Z": 197.8645
},
"MinimumAngle": -15,
"MaximumAngle": 20
}
]
}
]
},
{
"Nodes": [
{
"DataId": 31343,
"Locations": [
{
"Position": {
"X": -138.4112,
"Y": 220.679,
"Z": 204.6822
},
"MinimumAngle": -20,
"MaximumAngle": 20
},
{
"Position": {
"X": -90.40117,
"Y": 223.687,
"Z": 202.5069
},
"MinimumAngle": -90,
"MaximumAngle": 45
},
{
"Position": {
"X": -50.76083,
"Y": 222.9418,
"Z": 217.8322
},
"MinimumAngle": 50,
"MaximumAngle": 140
}
]
}
]
}
]
}

View File

@ -1,136 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 397,
"InteractionType": "None",
"AetheryteShortcut": "Coerthas Western Highlands - Falcon's Nest"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 32349,
"Locations": [
{
"Position": {
"X": 63.68,
"Y": 227.89,
"Z": 570.31
},
"MinimumAngle": 140,
"MaximumAngle": 275
},
{
"Position": {
"X": 100.3585,
"Y": 236.1064,
"Z": 551.248
},
"MinimumAngle": 110,
"MaximumAngle": 245
}
]
},
{
"DataId": 32348,
"Locations": [
{
"Position": {
"X": 68.42817,
"Y": 226.018,
"Z": 558.3953
},
"MinimumAngle": -15,
"MaximumAngle": 105
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32346,
"Locations": [
{
"Position": {
"X": -19.27065,
"Y": 219.13,
"Z": 618.5656
},
"MinimumAngle": 70,
"MaximumAngle": 205
}
]
},
{
"DataId": 32347,
"Locations": [
{
"Position": {
"X": -11.97839,
"Y": 222.4612,
"Z": 613.5499
},
"MinimumAngle": 80,
"MaximumAngle": 235
},
{
"Position": {
"X": -9.830506,
"Y": 220.8649,
"Z": 596.9268
},
"MinimumAngle": 70,
"MaximumAngle": 170
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32344,
"Locations": [
{
"Position": {
"X": -60.89,
"Y": 241.99,
"Z": 692.56
},
"MinimumAngle": 60,
"MaximumAngle": 220
}
]
},
{
"DataId": 32345,
"Locations": [
{
"Position": {
"X": -70.72009,
"Y": 242.5652,
"Z": 704.0363
},
"MinimumAngle": 70,
"MaximumAngle": 225
},
{
"Position": {
"X": -49.4545,
"Y": 241.67,
"Z": 686.183
},
"MinimumAngle": 100,
"MaximumAngle": 235
}
]
}
]
}
]
}

View File

@ -1,124 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 397,
"InteractionType": "None",
"AetheryteShortcut": "Coerthas Western Highlands - Falcon's Nest"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 32355,
"Locations": [
{
"Position": {
"X": 484.6112,
"Y": 160.7014,
"Z": -339.9558
}
},
{
"Position": {
"X": 479.6101,
"Y": 160.8177,
"Z": -328.4199
},
"MinimumAngle": 160,
"MaximumAngle": 335
}
]
},
{
"DataId": 32354,
"Locations": [
{
"Position": {
"X": 481.3153,
"Y": 160.57,
"Z": -339.8337
},
"MinimumAngle": -150,
"MaximumAngle": 45
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32351,
"Locations": [
{
"Position": {
"X": 602.9045,
"Y": 172.9519,
"Z": -376.0714
}
},
{
"Position": {
"X": 610.5079,
"Y": 174.6463,
"Z": -380.3387
}
}
]
},
{
"DataId": 32350,
"Locations": [
{
"Position": {
"X": 609.4385,
"Y": 174.6537,
"Z": -376.958
}
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32353,
"Locations": [
{
"Position": {
"X": 457.2875,
"Y": 160.5861,
"Z": -451.3749
}
},
{
"Position": {
"X": 471.3904,
"Y": 159.7412,
"Z": -441.1613
}
}
]
},
{
"DataId": 32352,
"Locations": [
{
"Position": {
"X": 478.0674,
"Y": 161.2902,
"Z": -449.485
},
"MinimumAngle": 0,
"MaximumAngle": 210
}
]
}
]
}
]
}

View File

@ -1,118 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 397,
"InteractionType": "None",
"AetheryteShortcut": "Coerthas Western Highlands - Falcon's Nest"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 33290,
"Locations": [
{
"Position": {
"X": -409.5019,
"Y": 171.5775,
"Z": 49.79576
},
"MinimumAngle": -40,
"MaximumAngle": 115
},
{
"Position": {
"X": -418.5088,
"Y": 168.7132,
"Z": 33.29783
},
"MinimumAngle": 10,
"MaximumAngle": 110
}
]
},
{
"DataId": 33289,
"Locations": [
{
"Position": {
"X": -413.911,
"Y": 170.7656,
"Z": 43.01591
},
"MinimumAngle": 0,
"MaximumAngle": 130
}
]
}
]
},
{
"Nodes": [
{
"DataId": 33292,
"Locations": [
{
"Position": {
"X": -510.636,
"Y": 169.9518,
"Z": 119.9934
},
"MinimumAngle": 150,
"MaximumAngle": 310
}
]
},
{
"DataId": 33291,
"Locations": [
{
"Position": {
"X": -519.3103,
"Y": 169.0242,
"Z": 111.3145
},
"MinimumAngle": 125,
"MaximumAngle": 300
}
]
}
]
},
{
"Nodes": [
{
"DataId": 33293,
"Locations": [
{
"Position": {
"X": -563.8201,
"Y": 159.5121,
"Z": -11.58269
},
"MinimumAngle": -100,
"MaximumAngle": 50
}
]
},
{
"DataId": 33294,
"Locations": [
{
"Position": {
"X": -555.6268,
"Y": 159.594,
"Z": -17.77679
},
"MinimumAngle": -145,
"MaximumAngle": 25
}
]
}
]
}
]
}

View File

@ -1,113 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 400,
"InteractionType": "None",
"AetheryteShortcut": "The Churning Mists - Moghome"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 31363,
"Locations": [
{
"Position": {
"X": 338.6716,
"Y": -29.70343,
"Z": -89.65448
},
"MinimumAngle": 145,
"MaximumAngle": 275
},
{
"Position": {
"X": 285.6898,
"Y": -32.99854,
"Z": -100.1466
},
"MinimumAngle": 115,
"MaximumAngle": 275
},
{
"Position": {
"X": 326.7051,
"Y": -27.26759,
"Z": -89.31528
},
"MinimumAngle": 110,
"MaximumAngle": 205
}
]
},
{
"DataId": 31362,
"Locations": [
{
"Position": {
"X": 299.2141,
"Y": -33.21008,
"Z": -103.5859
},
"MinimumAngle": 75,
"MaximumAngle": 295
}
]
}
]
},
{
"Nodes": [
{
"DataId": 31358,
"Locations": [
{
"Position": {
"X": 316.6238,
"Y": -30.77305,
"Z": -230.0326
},
"MinimumAngle": -35,
"MaximumAngle": 75
}
]
},
{
"DataId": 31359,
"Locations": [
{
"Position": {
"X": 297.7187,
"Y": -32.66696,
"Z": -234.9031
},
"MinimumAngle": 15,
"MaximumAngle": 135
},
{
"Position": {
"X": 288.7547,
"Y": -33.61605,
"Z": -239.764
},
"MinimumAngle": -30,
"MaximumAngle": 65
},
{
"Position": {
"X": 324.8526,
"Y": -28.45777,
"Z": -209.4378
},
"MinimumAngle": -5,
"MaximumAngle": 120
}
]
}
]
}
]
}

View File

@ -1,149 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 400,
"InteractionType": "None",
"AetheryteShortcut": "The Churning Mists - Zenith"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 31419,
"Locations": [
{
"Position": {
"X": -204.7827,
"Y": -18.18443,
"Z": 272.0514
}
},
{
"Position": {
"X": -187.8667,
"Y": -18.16559,
"Z": 260.4704
},
"MinimumAngle": -85,
"MaximumAngle": 105
},
{
"Position": {
"X": -219.7478,
"Y": -18.66556,
"Z": 279.3036
}
}
]
},
{
"DataId": 31418,
"Locations": [
{
"Position": {
"X": -216.0198,
"Y": -14.66686,
"Z": 263.2452
}
}
]
}
]
},
{
"Nodes": [
{
"DataId": 31423,
"Locations": [
{
"Position": {
"X": -125.676,
"Y": -13.40994,
"Z": 434.1913
},
"MinimumAngle": 25,
"MaximumAngle": 260
},
{
"Position": {
"X": -99.86462,
"Y": -11.67334,
"Z": 437.7415
},
"MinimumAngle": 85,
"MaximumAngle": 300
},
{
"Position": {
"X": -71.04668,
"Y": -8.40571,
"Z": 445.0867
},
"MinimumAngle": -40,
"MaximumAngle": 170
}
]
},
{
"DataId": 31422,
"Locations": [
{
"Position": {
"X": -88.15926,
"Y": -8.882813,
"Z": 447.7102
},
"MinimumAngle": 155,
"MaximumAngle": 360
}
]
}
]
},
{
"Nodes": [
{
"DataId": 31420,
"Locations": [
{
"Position": {
"X": 12.52414,
"Y": -14.81244,
"Z": 375.4579
}
}
]
},
{
"DataId": 31421,
"Locations": [
{
"Position": {
"X": -11.31142,
"Y": -19.80939,
"Z": 383.9503
}
},
{
"Position": {
"X": 4.771156,
"Y": -17.64155,
"Z": 386.0074
}
},
{
"Position": {
"X": 9.879506,
"Y": -13.13191,
"Z": 358.7252
}
}
]
}
]
}
]
}

View File

@ -1,136 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 400,
"InteractionType": "None",
"AetheryteShortcut": "The Churning Mists - Moghome"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 32357,
"Locations": [
{
"Position": {
"X": 557.625,
"Y": 5.119438,
"Z": 180.6541
},
"MinimumAngle": -70,
"MaximumAngle": 55
},
{
"Position": {
"X": 570.8357,
"Y": 11.89507,
"Z": 164.9729
},
"MinimumAngle": 55,
"MaximumAngle": 130
}
]
},
{
"DataId": 32356,
"Locations": [
{
"Position": {
"X": 572.8384,
"Y": 11.68007,
"Z": 155.6572
},
"MinimumAngle": 70,
"MaximumAngle": 165
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32358,
"Locations": [
{
"Position": {
"X": 665.114,
"Y": 43.93011,
"Z": 151.3629
},
"MinimumAngle": -80,
"MaximumAngle": 40
}
]
},
{
"DataId": 32359,
"Locations": [
{
"Position": {
"X": 697.7376,
"Y": 41.87314,
"Z": 124.1553
},
"MinimumAngle": -125,
"MaximumAngle": 30
},
{
"Position": {
"X": 681.178,
"Y": 41.71732,
"Z": 147.9972
},
"MinimumAngle": -15,
"MaximumAngle": 85
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32360,
"Locations": [
{
"Position": {
"X": 755.3978,
"Y": 20.37826,
"Z": 201.3921
},
"MinimumAngle": -30,
"MaximumAngle": 70
}
]
},
{
"DataId": 32361,
"Locations": [
{
"Position": {
"X": 771.5975,
"Y": 20.41353,
"Z": 204.8761
},
"MinimumAngle": -45,
"MaximumAngle": 65
},
{
"Position": {
"X": 739.1428,
"Y": 23.87582,
"Z": 196.4766
},
"MinimumAngle": -40,
"MaximumAngle": 55
}
]
}
]
}
]
}

View File

@ -1,132 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 400,
"InteractionType": "None",
"AetheryteShortcut": "The Churning Mists - Zenith"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 32366,
"Locations": [
{
"Position": {
"X": -699.5319,
"Y": 91.18189,
"Z": -362.7602
}
}
]
},
{
"DataId": 32367,
"Locations": [
{
"Position": {
"X": -681.9284,
"Y": 91.30399,
"Z": -363.0468
}
},
{
"Position": {
"X": -709.8129,
"Y": 91.42828,
"Z": -361.5186
},
"MinimumAngle": 85,
"MaximumAngle": 285
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32364,
"Locations": [
{
"Position": {
"X": -680.1304,
"Y": 91.30952,
"Z": -479.2773
},
"MinimumAngle": 50,
"MaximumAngle": 275
}
]
},
{
"DataId": 32365,
"Locations": [
{
"Position": {
"X": -691.5847,
"Y": 91.2657,
"Z": -491.8746
},
"MinimumAngle": -115,
"MaximumAngle": 90
},
{
"Position": {
"X": -685.3473,
"Y": 91.26568,
"Z": -474.3657
},
"MinimumAngle": 0,
"MaximumAngle": 205
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32362,
"Locations": [
{
"Position": {
"X": -764.3091,
"Y": 91.5154,
"Z": -554.3649
},
"MinimumAngle": -125,
"MaximumAngle": 65
}
]
},
{
"DataId": 32363,
"Locations": [
{
"Position": {
"X": -763.1495,
"Y": 91.37257,
"Z": -542.7809
},
"MinimumAngle": 70,
"MaximumAngle": 305
},
{
"Position": {
"X": -776.5944,
"Y": 91.16921,
"Z": -566.8766
},
"MinimumAngle": -95,
"MaximumAngle": 110
}
]
}
]
}
]
}

View File

@ -1,113 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 400,
"InteractionType": "None",
"AetheryteShortcut": "The Churning Mists - Zenith"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 33305,
"Locations": [
{
"Position": {
"X": -560.7639,
"Y": 266.9573,
"Z": -744.8922
},
"MinimumAngle": -45,
"MaximumAngle": 80
}
]
},
{
"DataId": 33306,
"Locations": [
{
"Position": {
"X": -547.9997,
"Y": 268.3711,
"Z": -737.2209
},
"MinimumAngle": 0,
"MaximumAngle": 95
}
]
}
]
},
{
"Nodes": [
{
"DataId": 33304,
"Locations": [
{
"Position": {
"X": -682.6185,
"Y": 261.1417,
"Z": -778.2869
},
"MinimumAngle": -50,
"MaximumAngle": 20,
"MinimumDistance": 1.5,
"MaximumDistance": 3
}
]
},
{
"DataId": 33303,
"Locations": [
{
"Position": {
"X": -696.5138,
"Y": 261.6092,
"Z": -759.7711
},
"MinimumAngle": 215,
"MaximumAngle": 310
}
]
}
]
},
{
"Nodes": [
{
"DataId": 33301,
"Locations": [
{
"Position": {
"X": -792.3468,
"Y": 271.3054,
"Z": -737.431
},
"MinimumAngle": 280,
"MaximumAngle": 360,
"MinimumDistance": 2,
"MaximumDistance": 3
}
]
},
{
"DataId": 33302,
"Locations": [
{
"Position": {
"X": -800.0043,
"Y": 269.2748,
"Z": -729.5305
},
"MinimumAngle": 230,
"MaximumAngle": 340
}
]
}
]
}
]
}

View File

@ -1,163 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 398,
"InteractionType": "None",
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 31350,
"Locations": [
{
"Position": {
"X": -115.4501,
"Y": -44.90735,
"Z": 211.8084
},
"MinimumAngle": -5,
"MaximumAngle": 65
}
]
},
{
"DataId": 31351,
"Locations": [
{
"Position": {
"X": -94.4983,
"Y": -46.65615,
"Z": 219.4642
},
"MinimumAngle": -90,
"MaximumAngle": 65
},
{
"Position": {
"X": -133.4304,
"Y": -45.47835,
"Z": 211.6268
},
"MinimumAngle": -50,
"MaximumAngle": 80
},
{
"Position": {
"X": -81.5194,
"Y": -52.42267,
"Z": 241.2021
},
"MinimumAngle": -35,
"MaximumAngle": 85
}
]
}
]
},
{
"Nodes": [
{
"DataId": 31346,
"Locations": [
{
"Position": {
"X": -154.299,
"Y": -70.63795,
"Z": 399.4617
},
"MinimumAngle": 110,
"MaximumAngle": 225
}
]
},
{
"DataId": 31347,
"Locations": [
{
"Position": {
"X": -167.7846,
"Y": -70.11265,
"Z": 418.7766
},
"MinimumAngle": 90,
"MaximumAngle": 235
},
{
"Position": {
"X": -152.9678,
"Y": -68.49996,
"Z": 365.0086
},
"MinimumAngle": -30,
"MaximumAngle": 70
},
{
"Position": {
"X": -189.6693,
"Y": -68.18973,
"Z": 377.6652
},
"MinimumAngle": 205,
"MaximumAngle": 335
}
]
}
]
},
{
"Nodes": [
{
"DataId": 31349,
"Locations": [
{
"Position": {
"X": -312.3143,
"Y": -54.81182,
"Z": 331.0543
},
"MinimumAngle": -145,
"MaximumAngle": 5
},
{
"Position": {
"X": -296.8107,
"Y": -51.96982,
"Z": 310.6086
},
"MinimumAngle": 235,
"MaximumAngle": 330
},
{
"Position": {
"X": -299.3094,
"Y": -46.30565,
"Z": 293.9169
},
"MinimumAngle": 165,
"MaximumAngle": 310
}
]
},
{
"DataId": 31348,
"Locations": [
{
"Position": {
"X": -311.9997,
"Y": -53.59439,
"Z": 326.8317
},
"MinimumAngle": -75,
"MaximumAngle": -20
}
]
}
]
}
]
}

View File

@ -1,139 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 398,
"InteractionType": "None",
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 31413,
"Locations": [
{
"Position": {
"X": -513.1596,
"Y": -85.63485,
"Z": 434.7382
}
},
{
"Position": {
"X": -562.0517,
"Y": -89.33559,
"Z": 445.0961
}
},
{
"Position": {
"X": -523.4441,
"Y": -81.67991,
"Z": 408.9826
}
}
]
},
{
"DataId": 31412,
"Locations": [
{
"Position": {
"X": -553.9171,
"Y": -84.75874,
"Z": 419.2539
}
}
]
}
]
},
{
"Nodes": [
{
"DataId": 31416,
"Locations": [
{
"Position": {
"X": -569.6527,
"Y": -96.50298,
"Z": 547.1465
}
}
]
},
{
"DataId": 31417,
"Locations": [
{
"Position": {
"X": -623.1743,
"Y": -101.8206,
"Z": 574.6146
}
},
{
"Position": {
"X": -562.2545,
"Y": -95.6534,
"Z": 545.6004
}
},
{
"Position": {
"X": -601.669,
"Y": -100.0121,
"Z": 559.5313
}
}
]
}
]
},
{
"Nodes": [
{
"DataId": 31415,
"Locations": [
{
"Position": {
"X": -680.4672,
"Y": -103.4997,
"Z": 624.0101
}
},
{
"Position": {
"X": -700.5361,
"Y": -107.5581,
"Z": 597.0253
}
},
{
"Position": {
"X": -715.8123,
"Y": -105.2011,
"Z": 622.3116
}
}
]
},
{
"DataId": 31414,
"Locations": [
{
"Position": {
"X": -714.2946,
"Y": -113.8825,
"Z": 557.3662
}
}
]
}
]
}
]
}

View File

@ -1,136 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 398,
"InteractionType": "None",
"AetheryteShortcut": "The Dravanian Forelands - Tailfeather"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 33300,
"Locations": [
{
"Position": {
"X": 560.8948,
"Y": -19.68621,
"Z": -534.3345
},
"MinimumAngle": -75,
"MaximumAngle": 30
},
{
"Position": {
"X": 557.1625,
"Y": -19.65358,
"Z": -547.1852
},
"MinimumAngle": 60,
"MaximumAngle": 200
}
]
},
{
"DataId": 33299,
"Locations": [
{
"Position": {
"X": 571.0399,
"Y": -19.2677,
"Z": -544.8133
},
"MinimumAngle": 200,
"MaximumAngle": 320
}
]
}
]
},
{
"Nodes": [
{
"DataId": 33297,
"Locations": [
{
"Position": {
"X": 630.7735,
"Y": -18.70739,
"Z": -566.2144
},
"MinimumAngle": 85,
"MaximumAngle": 240
}
]
},
{
"DataId": 33298,
"Locations": [
{
"Position": {
"X": 639.3101,
"Y": -18.78794,
"Z": -559.5169
},
"MinimumAngle": -175,
"MaximumAngle": 0
},
{
"Position": {
"X": 618.4453,
"Y": -18.9477,
"Z": -559.1786
},
"MinimumAngle": 60,
"MaximumAngle": 150
}
]
}
]
},
{
"Nodes": [
{
"DataId": 33295,
"Locations": [
{
"Position": {
"X": 731.6483,
"Y": -20.17027,
"Z": -614.199
},
"MinimumAngle": -35,
"MaximumAngle": 125
}
]
},
{
"DataId": 33296,
"Locations": [
{
"Position": {
"X": 743.4034,
"Y": -19.02,
"Z": -621.8422
},
"MinimumAngle": 195,
"MaximumAngle": 325
},
{
"Position": {
"X": 727.6966,
"Y": -20.47985,
"Z": -627.8105
},
"MinimumAngle": 60,
"MaximumAngle": 210
}
]
}
]
}
]
}

View File

@ -1,69 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 398,
"InteractionType": "None",
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 34382,
"Locations": [
{
"Position": {
"X": -528.8412,
"Y": -89.70924,
"Z": 458.582
},
"MinimumAngle": -10,
"MaximumAngle": 80,
"MinimumDistance": 2.1,
"MaximumDistance": 3
}
]
}
]
},
{
"Nodes": [
{
"DataId": 34383,
"Locations": [
{
"Position": {
"X": -636.4533,
"Y": -100.1258,
"Z": 484.7436
},
"MinimumAngle": -75,
"MaximumAngle": 35
}
]
}
]
},
{
"Nodes": [
{
"DataId": 34384,
"Locations": [
{
"Position": {
"X": -589.4542,
"Y": -100.4852,
"Z": 528.1926
},
"MinimumAngle": -25,
"MaximumAngle": 120
}
]
}
]
}
]
}

View File

@ -1,61 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 398,
"InteractionType": "None",
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 34391,
"Locations": [
{
"Position": {
"X": -49.75243,
"Y": -31.70323,
"Z": -171.6977
}
}
]
}
]
},
{
"Nodes": [
{
"DataId": 34392,
"Locations": [
{
"Position": {
"X": -44.89702,
"Y": -32.39204,
"Z": -153.4274
}
}
]
}
]
},
{
"Nodes": [
{
"DataId": 34393,
"Locations": [
{
"Position": {
"X": -36.6049,
"Y": -31.32222,
"Z": -134.1001
}
}
]
}
]
}
]
}

View File

@ -1,174 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 399,
"InteractionType": "None",
"AetheryteShortcut": "Idyllshire",
"AethernetShortcut": [
"[Idyllshire] Aetheryte Plaza",
"[Idyllshire] Epilogue Gate (Eastern Hinterlands)"
],
"SkipConditions": {
"AetheryteShortcutIf": {
"InTerritory": [
399
]
}
}
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 31356,
"Locations": [
{
"Position": {
"X": 120.1556,
"Y": 70.42133,
"Z": 30.73328
},
"MinimumAngle": -95,
"MaximumAngle": 70
}
]
},
{
"DataId": 31357,
"Locations": [
{
"Position": {
"X": 137.7684,
"Y": 70.04282,
"Z": 64.77115
},
"MinimumAngle": 30,
"MaximumAngle": 130
},
{
"Position": {
"X": 132.1863,
"Y": 70.08203,
"Z": 57.67828
},
"MinimumAngle": -10,
"MaximumAngle": 105
},
{
"Position": {
"X": 145.684,
"Y": 70.47159,
"Z": 45.05047
},
"MinimumAngle": 80,
"MaximumAngle": 215
}
]
}
]
},
{
"Nodes": [
{
"DataId": 31355,
"Locations": [
{
"Position": {
"X": 59.4164,
"Y": 54.40149,
"Z": 160.6752
},
"MinimumAngle": 155,
"MaximumAngle": 285
},
{
"Position": {
"X": 66.6783,
"Y": 53.80389,
"Z": 177.1926
},
"MinimumAngle": -90,
"MaximumAngle": 0
},
{
"Position": {
"X": 47.04347,
"Y": 53.91698,
"Z": 164.1816
},
"MinimumAngle": 0,
"MaximumAngle": 185
}
]
},
{
"DataId": 31354,
"Locations": [
{
"Position": {
"X": 31.89844,
"Y": 54.71996,
"Z": 173.864
},
"MinimumAngle": 105,
"MaximumAngle": 235
}
]
}
]
},
{
"Nodes": [
{
"DataId": 31352,
"Locations": [
{
"Position": {
"X": 231.3517,
"Y": 74.23511,
"Z": 112.9807
},
"MinimumAngle": 130,
"MaximumAngle": 285
}
]
},
{
"DataId": 31353,
"Locations": [
{
"Position": {
"X": 239.051,
"Y": 80.42557,
"Z": 192.2325
},
"MinimumAngle": 140,
"MaximumAngle": 235
},
{
"Position": {
"X": 237.4622,
"Y": 74.67197,
"Z": 150.8143
},
"MinimumAngle": 60,
"MaximumAngle": 225
},
{
"Position": {
"X": 211.4673,
"Y": 75.37302,
"Z": 169.3396
},
"MinimumAngle": 145,
"MaximumAngle": 285
}
]
}
]
}
]
}

View File

@ -1,160 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 399,
"InteractionType": "None",
"AetheryteShortcut": "Idyllshire",
"AethernetShortcut": [
"[Idyllshire] Aetheryte Plaza",
"[Idyllshire] Prologue Gate (Western Hinterlands)"
],
"SkipConditions": {
"AetheryteShortcutIf": {
"InTerritory": [
399
]
}
}
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 31431,
"Locations": [
{
"Position": {
"X": -494.1652,
"Y": 142.7381,
"Z": -287.4084
},
"MinimumAngle": 0,
"MaximumAngle": 270
},
{
"Position": {
"X": -485.4606,
"Y": 142.9737,
"Z": -290.856
},
"MinimumAngle": 65,
"MaximumAngle": 310
},
{
"Position": {
"X": -533.1213,
"Y": 142.5874,
"Z": -262.2948
},
"MinimumAngle": -255,
"MaximumAngle": 10
}
]
},
{
"DataId": 31430,
"Locations": [
{
"Position": {
"X": -510.6404,
"Y": 141.9014,
"Z": -280.1611
}
}
]
}
]
},
{
"Nodes": [
{
"DataId": 31434,
"Locations": [
{
"Position": {
"X": -562.8221,
"Y": 148.9451,
"Z": -104.9014
}
}
]
},
{
"DataId": 31435,
"Locations": [
{
"Position": {
"X": -520.0394,
"Y": 148.7521,
"Z": -97.8
}
},
{
"Position": {
"X": -570.4307,
"Y": 148.103,
"Z": -130.9921
}
},
{
"Position": {
"X": -573.738,
"Y": 148.4877,
"Z": -158.4798
},
"MinimumAngle": 130,
"MaximumAngle": 360
}
]
}
]
},
{
"Nodes": [
{
"DataId": 31432,
"Locations": [
{
"Position": {
"X": -388.4753,
"Y": 147.345,
"Z": -177.1972
}
}
]
},
{
"DataId": 31433,
"Locations": [
{
"Position": {
"X": -349.5501,
"Y": 144.6325,
"Z": -185.3442
}
},
{
"Position": {
"X": -398.145,
"Y": 145.7528,
"Z": -198.2334
},
"MinimumAngle": 155,
"MaximumAngle": 360
},
{
"Position": {
"X": -374.5566,
"Y": 145.3827,
"Z": -194.8224
}
}
]
}
]
}
]
}

View File

@ -1,119 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 399,
"InteractionType": "None",
"AetheryteShortcut": "Idyllshire",
"AethernetShortcut": [
"[Idyllshire] Aetheryte Plaza",
"[Idyllshire] Prologue Gate (Western Hinterlands)"
],
"SkipConditions": {
"AetheryteShortcutIf": {
"InTerritory": [
399
]
}
}
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 33285,
"Locations": [
{
"Position": {
"X": -426.4134,
"Y": 137.5601,
"Z": 514.3357
}
}
]
},
{
"DataId": 33286,
"Locations": [
{
"Position": {
"X": -448.7838,
"Y": 137.5986,
"Z": 514.3243
}
},
{
"Position": {
"X": -433.5015,
"Y": 137.6451,
"Z": 487.8173
}
}
]
}
]
},
{
"Nodes": [
{
"DataId": 33288,
"Locations": [
{
"Position": {
"X": -354.5423,
"Y": 137.5715,
"Z": 638.9959
}
}
]
},
{
"DataId": 33287,
"Locations": [
{
"Position": {
"X": -352.4377,
"Y": 137.5906,
"Z": 604.364
}
}
]
}
]
},
{
"Nodes": [
{
"DataId": 33284,
"Locations": [
{
"Position": {
"X": -254.4776,
"Y": 137.97,
"Z": 591.0092
},
"MinimumAngle": -20,
"MaximumAngle": 85
}
]
},
{
"DataId": 33283,
"Locations": [
{
"Position": {
"X": -263.1079,
"Y": 137.4419,
"Z": 569.8724
},
"MinimumAngle": -10,
"MaximumAngle": 190
}
]
}
]
}
]
}

View File

@ -1,115 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 399,
"InteractionType": "None",
"AetheryteShortcut": "Idyllshire",
"AethernetShortcut": [
"[Idyllshire] Aetheryte Plaza",
"[Idyllshire] Prologue Gate (Western Hinterlands)"
]
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 33856,
"Locations": [
{
"Position": {
"X": -395.4635,
"Y": 144.1793,
"Z": -249.5864
},
"MinimumAngle": -190,
"MaximumAngle": 0
}
]
},
{
"DataId": 33855,
"Locations": [
{
"Position": {
"X": -398.5591,
"Y": 144.6183,
"Z": -241.8769
},
"MinimumAngle": -140,
"MaximumAngle": -20
}
]
}
]
},
{
"Nodes": [
{
"DataId": 33857,
"Locations": [
{
"Position": {
"X": -407.5786,
"Y": 149.6453,
"Z": -93.85593
},
"MinimumAngle": 185,
"MaximumAngle": 280,
"MinimumDistance": 2,
"MaximumDistance": 3
}
]
},
{
"DataId": 33858,
"Locations": [
{
"Position": {
"X": -413.9488,
"Y": 148.9834,
"Z": -71.42188
},
"MinimumAngle": 165,
"MaximumAngle": 285
}
]
}
]
},
{
"Nodes": [
{
"DataId": 33860,
"Locations": [
{
"Position": {
"X": -254.579,
"Y": 147.4603,
"Z": -91.96173
},
"MinimumAngle": 30,
"MaximumAngle": 130
}
]
},
{
"DataId": 33859,
"Locations": [
{
"Position": {
"X": -254.9425,
"Y": 146.4598,
"Z": -105.2472
},
"MinimumAngle": 35,
"MaximumAngle": 155
}
]
}
]
}
]
}

View File

@ -1,113 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 399,
"InteractionType": "None",
"AetheryteShortcut": "Idyllshire",
"AethernetShortcut": [
"[Idyllshire] Aetheryte Plaza",
"[Idyllshire] Epilogue Gate (Eastern Hinterlands)"
]
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 33866,
"Locations": [
{
"Position": {
"X": 679.6339,
"Y": 116.0614,
"Z": 134.6795
},
"MinimumAngle": 200,
"MaximumAngle": 320
}
]
},
{
"DataId": 33865,
"Locations": [
{
"Position": {
"X": 697.5129,
"Y": 122.1484,
"Z": 146.8725
},
"MinimumAngle": -205,
"MaximumAngle": -10
}
]
}
]
},
{
"Nodes": [
{
"DataId": 33862,
"Locations": [
{
"Position": {
"X": 809.8756,
"Y": 152.7643,
"Z": 205.2242
},
"MinimumAngle": -95,
"MaximumAngle": 90
}
]
},
{
"DataId": 33861,
"Locations": [
{
"Position": {
"X": 834.4771,
"Y": 154.8756,
"Z": 206.0541
},
"MinimumAngle": 35,
"MaximumAngle": 185
}
]
}
]
},
{
"Nodes": [
{
"DataId": 33863,
"Locations": [
{
"Position": {
"X": 781.7728,
"Y": 134.6856,
"Z": -22.00103
},
"MinimumAngle": 0,
"MaximumAngle": 135
}
]
},
{
"DataId": 33864,
"Locations": [
{
"Position": {
"X": 774.9854,
"Y": 134.3857,
"Z": -27.45042
},
"MinimumAngle": -25,
"MaximumAngle": 120
}
]
}
]
}
]
}

View File

@ -1,145 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 401,
"InteractionType": "None",
"AetheryteShortcut": "The Sea of Clouds - Camp Cloudtop"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 31366,
"Locations": [
{
"Position": {
"X": 529.0662,
"Y": -110.3256,
"Z": 434.3149
},
"MinimumAngle": 15,
"MaximumAngle": 135
}
]
},
{
"DataId": 31367,
"Locations": [
{
"Position": {
"X": 541.8505,
"Y": -111.128,
"Z": 452.5471
},
"MinimumAngle": -45,
"MaximumAngle": 40
},
{
"Position": {
"X": 517.9747,
"Y": -109.2984,
"Z": 417.9554
},
"MinimumAngle": -45,
"MaximumAngle": 55
},
{
"Position": {
"X": 499.3676,
"Y": -108.7323,
"Z": 410.8949
},
"MinimumAngle": -5,
"MaximumAngle": 85
}
]
}
]
},
{
"Nodes": [
{
"DataId": 31365,
"Locations": [
{
"Position": {
"X": 625.9688,
"Y": -115.6856,
"Z": 344.535
},
"MinimumAngle": 125,
"MaximumAngle": 185
},
{
"Position": {
"X": 678.5617,
"Y": -122.8687,
"Z": 356.7407
},
"MinimumAngle": 190,
"MaximumAngle": 290
},
{
"Position": {
"X": 644.1035,
"Y": -122.3688,
"Z": 334.0371
},
"MinimumAngle": 105,
"MaximumAngle": 235
}
]
},
{
"DataId": 31364,
"Locations": [
{
"Position": {
"X": 661.9959,
"Y": -122.6855,
"Z": 333.0707
},
"MinimumAngle": 140,
"MaximumAngle": 260
}
]
}
]
},
{
"Nodes": [
{
"DataId": 31369,
"Locations": [
{
"Position": {
"X": 730.9626,
"Y": -96.64706,
"Z": 449.485
},
"MinimumAngle": 45,
"MaximumAngle": 115
}
]
},
{
"DataId": 31368,
"Locations": [
{
"Position": {
"X": 727.2908,
"Y": -95.47571,
"Z": 460.3798
},
"MinimumAngle": 25,
"MaximumAngle": 180
}
]
}
]
}
]
}

View File

@ -1,122 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 401,
"InteractionType": "None",
"AetheryteShortcut": "The Sea of Clouds - Ok' Zundu"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 31425,
"Locations": [
{
"Position": {
"X": -63.97195,
"Y": 13.48263,
"Z": -559.9897
}
},
{
"Position": {
"X": -47.75371,
"Y": 13.66347,
"Z": -571.2774
},
"MinimumAngle": -80,
"MaximumAngle": 115
}
]
},
{
"DataId": 31424,
"Locations": [
{
"Position": {
"X": -26.91866,
"Y": 12.14502,
"Z": -554.869
}
}
]
}
]
},
{
"Nodes": [
{
"DataId": 31426,
"Locations": [
{
"Position": {
"X": -26.56338,
"Y": 12.41532,
"Z": -442.6965
}
}
]
},
{
"DataId": 31427,
"Locations": [
{
"Position": {
"X": 2.215849,
"Y": 12.32494,
"Z": -434.0038
}
},
{
"Position": {
"X": -18.38633,
"Y": 12.4451,
"Z": -427.6107
}
}
]
}
]
},
{
"Nodes": [
{
"DataId": 31429,
"Locations": [
{
"Position": {
"X": 70.59737,
"Y": 13.45543,
"Z": -599.2373
},
"MinimumAngle": -60,
"MaximumAngle": 125
},
{
"Position": {
"X": 50.8525,
"Y": 13.158,
"Z": -646.834
}
}
]
},
{
"DataId": 31428,
"Locations": [
{
"Position": {
"X": 85.6145,
"Y": 12.69149,
"Z": -629.3397
}
}
]
}
]
}
]
}

View File

@ -1,109 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 401,
"InteractionType": "None",
"AetheryteShortcut": "The Sea of Clouds - Camp Cloudtop"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 33308,
"Locations": [
{
"Position": {
"X": 612.0084,
"Y": -154.126,
"Z": 721.6054
},
"MinimumAngle": -220,
"MaximumAngle": 25
}
]
},
{
"DataId": 33307,
"Locations": [
{
"Position": {
"X": 601.7455,
"Y": -154.7067,
"Z": 734.4706
},
"MinimumAngle": -120,
"MaximumAngle": 75
}
]
}
]
},
{
"Nodes": [
{
"DataId": 33311,
"Locations": [
{
"Position": {
"X": 654.2362,
"Y": -159.8305,
"Z": 820.9418
}
}
]
},
{
"DataId": 33312,
"Locations": [
{
"Position": {
"X": 656.2291,
"Y": -160.4766,
"Z": 826.9885
},
"MinimumAngle": 100,
"MaximumAngle": 270
}
]
}
]
},
{
"Nodes": [
{
"DataId": 33309,
"Locations": [
{
"Position": {
"X": 739.0756,
"Y": -158.0396,
"Z": 642.5712
},
"MinimumAngle": 110,
"MaximumAngle": 210,
"MinimumDistance": 1,
"MaximumDistance": 3
}
]
},
{
"DataId": 33310,
"Locations": [
{
"Position": {
"X": 723.027,
"Y": -157.7834,
"Z": 626.666
},
"MinimumAngle": -170,
"MaximumAngle": 35
}
]
}
]
}
]
}

View File

@ -1,113 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 401,
"InteractionType": "None",
"AetheryteShortcut": "The Sea of Clouds - Ok' Zundu"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 33313,
"Locations": [
{
"Position": {
"X": 284.0225,
"Y": -40.41348,
"Z": -766.5984
},
"MinimumAngle": 160,
"MaximumAngle": 245,
"MinimumDistance": 1.6,
"MaximumDistance": 3
}
]
},
{
"DataId": 33314,
"Locations": [
{
"Position": {
"X": 291.4046,
"Y": -40.37925,
"Z": -758.5402
},
"MinimumAngle": 210,
"MaximumAngle": 345
}
]
}
]
},
{
"Nodes": [
{
"DataId": 33315,
"Locations": [
{
"Position": {
"X": 358.8156,
"Y": -41.42974,
"Z": -734.5118
},
"MinimumAngle": 115,
"MaximumAngle": 250
}
]
},
{
"DataId": 33316,
"Locations": [
{
"Position": {
"X": 367.6869,
"Y": -41.54303,
"Z": -735.3597
},
"MinimumAngle": 70,
"MaximumAngle": 220
}
]
}
]
},
{
"Nodes": [
{
"DataId": 33317,
"Locations": [
{
"Position": {
"X": 452.3558,
"Y": -47.13874,
"Z": -752.6805
},
"MinimumAngle": 150,
"MaximumAngle": 275
}
]
},
{
"DataId": 33318,
"Locations": [
{
"Position": {
"X": 465.9165,
"Y": -47.82627,
"Z": -756.4039
},
"MinimumAngle": 35,
"MaximumAngle": 160,
"MinimumDistance": 1.2,
"MaximumDistance": 3
}
]
}
]
}
]
}

View File

@ -1,163 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 622,
"InteractionType": "None",
"AetheryteShortcut": "Azim Steppe - Dawn Throne"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 32176,
"Locations": [
{
"Position": {
"X": 411.0592,
"Y": 2.207043,
"Z": -174.1382
},
"MinimumAngle": -45,
"MaximumAngle": 130
},
{
"Position": {
"X": 382.993,
"Y": 13.25345,
"Z": -207.7346
},
"MinimumAngle": 130,
"MaximumAngle": 295
},
{
"Position": {
"X": 361.387,
"Y": 14.51455,
"Z": -203.9765
},
"MinimumAngle": 90,
"MaximumAngle": 195
}
]
},
{
"DataId": 32175,
"Locations": [
{
"Position": {
"X": 364.0281,
"Y": 14.81319,
"Z": -208.0434
},
"MinimumAngle": 65,
"MaximumAngle": 200
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32177,
"Locations": [
{
"Position": {
"X": 326.783,
"Y": 27.22089,
"Z": -328.1715
},
"MinimumAngle": -130,
"MaximumAngle": -5
}
]
},
{
"DataId": 32178,
"Locations": [
{
"Position": {
"X": 352.0781,
"Y": 33.91527,
"Z": -369.394
},
"MinimumAngle": -55,
"MaximumAngle": 110
},
{
"Position": {
"X": 319.4689,
"Y": 30.05529,
"Z": -341.346
},
"MinimumAngle": 50,
"MaximumAngle": 215
},
{
"Position": {
"X": 340.3498,
"Y": 34.56527,
"Z": -374.391
},
"MinimumAngle": -90,
"MaximumAngle": 85
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32173,
"Locations": [
{
"Position": {
"X": 460.0648,
"Y": 32.44811,
"Z": -382.8145
},
"MinimumAngle": 30,
"MaximumAngle": 135
}
]
},
{
"DataId": 32174,
"Locations": [
{
"Position": {
"X": 488.255,
"Y": 26.08804,
"Z": -365.4641
},
"MinimumAngle": 0,
"MaximumAngle": 195
},
{
"Position": {
"X": 460.4979,
"Y": 30.90669,
"Z": -376.0688
},
"MinimumAngle": 55,
"MaximumAngle": 180
},
{
"Position": {
"X": 438.8477,
"Y": 38.51477,
"Z": -413.352
},
"MinimumAngle": -70,
"MaximumAngle": 115
}
]
}
]
}
]
}

View File

@ -1,143 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 622,
"InteractionType": "None",
"AetheryteShortcut": "Azim Steppe - Dawn Throne"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 32264,
"Locations": [
{
"Position": {
"X": -166.6597,
"Y": 3.616752,
"Z": 361.2099
},
"MinimumAngle": -95,
"MaximumAngle": 130
}
]
},
{
"DataId": 32265,
"Locations": [
{
"Position": {
"X": -191.0201,
"Y": 4.361521,
"Z": 354.6401
}
},
{
"Position": {
"X": -162.6655,
"Y": 3.441799,
"Z": 363.0803
},
"MinimumAngle": -95,
"MaximumAngle": 150
},
{
"Position": {
"X": -167.5898,
"Y": 2.5177,
"Z": 377.1267
}
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32267,
"Locations": [
{
"Position": {
"X": -271.2292,
"Y": 3.341675,
"Z": 401.9989
}
},
{
"Position": {
"X": -349.3433,
"Y": 11.88452,
"Z": 378.1435
}
},
{
"Position": {
"X": -298.7296,
"Y": 5.809261,
"Z": 414.3437
}
}
]
},
{
"DataId": 32266,
"Locations": [
{
"Position": {
"X": -317.19,
"Y": 7.863516,
"Z": 397.5005
}
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32262,
"Locations": [
{
"Position": {
"X": -350.0407,
"Y": 22.68479,
"Z": 230.4606
}
}
]
},
{
"DataId": 32263,
"Locations": [
{
"Position": {
"X": -352.7808,
"Y": 23.99817,
"Z": 203.1617
}
},
{
"Position": {
"X": -345.5888,
"Y": 22.30608,
"Z": 229.8253
}
},
{
"Position": {
"X": -377.2188,
"Y": 22.65303,
"Z": 221.3997
}
}
]
}
]
}
]
}

View File

@ -1,111 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 622,
"InteractionType": "None",
"AetheryteShortcut": "Azim Steppe - Reunion"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 33883,
"Locations": [
{
"Position": {
"X": 128.0255,
"Y": -1.00095,
"Z": 322.0047
},
"MinimumAngle": -120,
"MaximumAngle": 65
}
]
},
{
"DataId": 33884,
"Locations": [
{
"Position": {
"X": 116.5815,
"Y": -1.584854,
"Z": 321.8561
},
"MinimumAngle": -65,
"MaximumAngle": 100
}
]
}
]
},
{
"Nodes": [
{
"DataId": 33882,
"Locations": [
{
"Position": {
"X": -31.5303,
"Y": -2.218102,
"Z": 328.7178
},
"MinimumAngle": 110,
"MaximumAngle": 255
}
]
},
{
"DataId": 33881,
"Locations": [
{
"Position": {
"X": -44.53269,
"Y": -1.966054,
"Z": 332.6949
},
"MinimumAngle": 120,
"MaximumAngle": 225
}
]
}
]
},
{
"Nodes": [
{
"DataId": 33880,
"Locations": [
{
"Position": {
"X": 37.46276,
"Y": -4.431953,
"Z": 425.0844
},
"MinimumAngle": 140,
"MaximumAngle": 240
}
]
},
{
"DataId": 33879,
"Locations": [
{
"Position": {
"X": 46.12198,
"Y": -5.283945,
"Z": 426.5148
},
"MinimumAngle": 115,
"MaximumAngle": 255,
"MinimumDistance": 1.5,
"MaximumDistance": 3
}
]
}
]
}
]
}

View File

@ -1,99 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 622,
"InteractionType": "None",
"AetheryteShortcut": "Azim Steppe - Dawn Throne"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 33885,
"Locations": [
{
"Position": {
"X": 288.2408,
"Y": 23.61323,
"Z": -234.9867
}
}
]
},
{
"DataId": 33886,
"Locations": [
{
"Position": {
"X": 281.9221,
"Y": 23.03055,
"Z": -231.9227
}
}
]
}
]
},
{
"Nodes": [
{
"DataId": 33887,
"Locations": [
{
"Position": {
"X": 407.1815,
"Y": 26.86968,
"Z": -325.3348
},
"MinimumAngle": -60,
"MaximumAngle": 170
}
]
},
{
"DataId": 33888,
"Locations": [
{
"Position": {
"X": 413.6349,
"Y": 25.90826,
"Z": -320.5389
}
}
]
}
]
},
{
"Nodes": [
{
"DataId": 33889,
"Locations": [
{
"Position": {
"X": 451.9882,
"Y": 8.707673,
"Z": -136.5769
}
}
]
},
{
"DataId": 33890,
"Locations": [
{
"Position": {
"X": 458.5264,
"Y": 8.823095,
"Z": -132.5937
}
}
]
}
]
}
]
}

View File

@ -1,141 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 612,
"InteractionType": "None",
"AetheryteShortcut": "Fringes - Castrum Oriens"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 32125,
"Locations": [
{
"Position": {
"X": -317.5445,
"Y": 80.03535,
"Z": -449.2276
},
"MinimumAngle": -80,
"MaximumAngle": 30
}
]
},
{
"DataId": 32126,
"Locations": [
{
"Position": {
"X": -301.3254,
"Y": 69.71587,
"Z": -485.7171
},
"MinimumAngle": -125,
"MaximumAngle": 30
},
{
"Position": {
"X": -311.9155,
"Y": 76.91404,
"Z": -467.1509
},
"MinimumAngle": 160,
"MaximumAngle": 290
},
{
"Position": {
"X": -311.1216,
"Y": 77.83449,
"Z": -454.2029
},
"MinimumAngle": -110,
"MaximumAngle": 30
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32124,
"Locations": [
{
"Position": {
"X": -262.2596,
"Y": 62.06842,
"Z": -550.8122
},
"MinimumAngle": 185,
"MaximumAngle": 335
},
{
"Position": {
"X": -266.0078,
"Y": 62.03654,
"Z": -564.1611
},
"MinimumAngle": 180,
"MaximumAngle": 340
},
{
"Position": {
"X": -255.8366,
"Y": 62.63577,
"Z": -588.0093
},
"MinimumAngle": 245,
"MaximumAngle": 345
}
]
},
{
"DataId": 32123,
"Locations": [
{
"Position": {
"X": -264.8189,
"Y": 62.61843,
"Z": -558.4091
},
"MinimumAngle": 175,
"MaximumAngle": 300
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32127,
"Locations": [
{
"Position": {
"X": -108.2628,
"Y": 64.1357,
"Z": -485.6675
}
}
]
},
{
"DataId": 32128,
"Locations": [
{
"Position": {
"X": -103.2401,
"Y": 59.26093,
"Z": -463.1485
}
}
]
}
]
}
]
}

View File

@ -1,163 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 612,
"InteractionType": "None",
"AetheryteShortcut": "Fringes - Castrum Oriens"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 32132,
"Locations": [
{
"Position": {
"X": 101.0199,
"Y": 50.70325,
"Z": -410.8297
},
"MinimumAngle": -55,
"MaximumAngle": 25
},
{
"Position": {
"X": 78.0303,
"Y": 48.68632,
"Z": -401.5028
},
"MinimumAngle": -50,
"MaximumAngle": 5
},
{
"Position": {
"X": 115.4548,
"Y": 51.50989,
"Z": -415.8416
},
"MinimumAngle": -115,
"MaximumAngle": -40
}
]
},
{
"DataId": 32131,
"Locations": [
{
"Position": {
"X": 90.52106,
"Y": 49.82163,
"Z": -409.1239
},
"MinimumAngle": -35,
"MaximumAngle": 55
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32134,
"Locations": [
{
"Position": {
"X": 84.90259,
"Y": 44.58842,
"Z": -324.1541
},
"MinimumAngle": -10,
"MaximumAngle": 105
},
{
"Position": {
"X": 82.56047,
"Y": 44.08657,
"Z": -269.3104
},
"MinimumAngle": -5,
"MaximumAngle": 80
},
{
"Position": {
"X": 98.20293,
"Y": 43.59855,
"Z": -299.3164
},
"MinimumAngle": 95,
"MaximumAngle": 185
}
]
},
{
"DataId": 32133,
"Locations": [
{
"Position": {
"X": 82.94646,
"Y": 42.55737,
"Z": -292.9016
},
"MinimumAngle": 105,
"MaximumAngle": 165
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32129,
"Locations": [
{
"Position": {
"X": 240.5221,
"Y": 43.60987,
"Z": -301.7685
},
"MinimumAngle": 155,
"MaximumAngle": 255
}
]
},
{
"DataId": 32130,
"Locations": [
{
"Position": {
"X": 265.4354,
"Y": 43.19557,
"Z": -283.7873
},
"MinimumAngle": -155,
"MaximumAngle": -15
},
{
"Position": {
"X": 246.9251,
"Y": 43.54385,
"Z": -296.2532
},
"MinimumAngle": 170,
"MaximumAngle": 225
},
{
"Position": {
"X": 213.1443,
"Y": 43.26488,
"Z": -308.4924
},
"MinimumAngle": 110,
"MaximumAngle": 250
}
]
}
]
}
]
}

View File

@ -1,155 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 612,
"InteractionType": "None",
"AetheryteShortcut": "Fringes - Castrum Oriens"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 32193,
"Locations": [
{
"Position": {
"X": -249.9619,
"Y": 61.05618,
"Z": -604.3008
}
},
{
"Position": {
"X": -238.5267,
"Y": 60.51727,
"Z": -560.746
},
"MinimumAngle": -25,
"MaximumAngle": 120
},
{
"Position": {
"X": -263.4823,
"Y": 61.9943,
"Z": -566.3988
},
"MinimumAngle": 115,
"MaximumAngle": 360
}
]
},
{
"DataId": 32192,
"Locations": [
{
"Position": {
"X": -261.7163,
"Y": 61.86325,
"Z": -574.8586
},
"MinimumAngle": -140,
"MaximumAngle": 125
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32189,
"Locations": [
{
"Position": {
"X": -260.6172,
"Y": 70.60548,
"Z": -685.7728
},
"MinimumAngle": 55,
"MaximumAngle": 265
},
{
"Position": {
"X": -293.3862,
"Y": 75.88585,
"Z": -675.9405
},
"MinimumAngle": -235,
"MaximumAngle": 10
},
{
"Position": {
"X": -289.601,
"Y": 73.41101,
"Z": -659.3271
},
"MinimumAngle": 135,
"MaximumAngle": 350
}
]
},
{
"DataId": 32188,
"Locations": [
{
"Position": {
"X": -267.9963,
"Y": 75.16626,
"Z": -708.2614
},
"MinimumAngle": 150,
"MaximumAngle": 360
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32191,
"Locations": [
{
"Position": {
"X": -97.48006,
"Y": 61.31205,
"Z": -668.7775
},
"MinimumAngle": -50,
"MaximumAngle": 30
},
{
"Position": {
"X": -36.55207,
"Y": 61.9393,
"Z": -606.5457
}
},
{
"Position": {
"X": -79.96028,
"Y": 61.16011,
"Z": -625.305
}
}
]
},
{
"DataId": 32190,
"Locations": [
{
"Position": {
"X": -88.68313,
"Y": 61.06887,
"Z": -653.9121
}
}
]
}
]
}
]
}

View File

@ -1,136 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 612,
"InteractionType": "None",
"AetheryteShortcut": "Fringes - Castrum Oriens"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 32217,
"Locations": [
{
"Position": {
"X": -492.6537,
"Y": 52.48105,
"Z": 114.5392
}
},
{
"Position": {
"X": -523.8553,
"Y": 58.91578,
"Z": 174.0902
},
"MinimumAngle": -185,
"MaximumAngle": 115
},
{
"Position": {
"X": -499.2416,
"Y": 54.9705,
"Z": 144.132
}
}
]
},
{
"DataId": 32216,
"Locations": [
{
"Position": {
"X": -510.2239,
"Y": 55.62017,
"Z": 137.6676
}
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32215,
"Locations": [
{
"Position": {
"X": -498.1188,
"Y": 57.86262,
"Z": 230.4597
}
},
{
"Position": {
"X": -513.0305,
"Y": 56.18323,
"Z": 239.2122
},
"MinimumAngle": -35,
"MaximumAngle": 235
},
{
"Position": {
"X": -506.6473,
"Y": 56.30998,
"Z": 258.2175
}
}
]
},
{
"DataId": 32214,
"Locations": [
{
"Position": {
"X": -509.9459,
"Y": 56.21313,
"Z": 252.2773
}
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32213,
"Locations": [
{
"Position": {
"X": -391.9599,
"Y": 50.21202,
"Z": 184.0853
}
},
{
"Position": {
"X": -419.9665,
"Y": 48.34329,
"Z": 125.2942
}
}
]
},
{
"DataId": 32212,
"Locations": [
{
"Position": {
"X": -391.2807,
"Y": 47.10617,
"Z": 153.422
}
}
]
}
]
}
]
}

View File

@ -1,136 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 612,
"InteractionType": "None",
"AetheryteShortcut": "Fringes - Castrum Oriens"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 32236,
"Locations": [
{
"Position": {
"X": -590.3985,
"Y": 37.74836,
"Z": 392.8004
},
"MinimumAngle": 60,
"MaximumAngle": 260
}
]
},
{
"DataId": 32237,
"Locations": [
{
"Position": {
"X": -713.7814,
"Y": 51.18425,
"Z": 365.8188
},
"MinimumAngle": 145,
"MaximumAngle": 275
},
{
"Position": {
"X": -674.6958,
"Y": 44.06395,
"Z": 347.5866
},
"MinimumAngle": -70,
"MaximumAngle": 75
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32239,
"Locations": [
{
"Position": {
"X": -625.3124,
"Y": 36.73846,
"Z": 442.5669
},
"MinimumAngle": 140,
"MaximumAngle": 235
},
{
"Position": {
"X": -655.4194,
"Y": 40.51354,
"Z": 402.2708
},
"MinimumAngle": -95,
"MaximumAngle": 60
}
]
},
{
"DataId": 32238,
"Locations": [
{
"Position": {
"X": -628.1135,
"Y": 36.66908,
"Z": 480.3016
},
"MinimumAngle": 85,
"MaximumAngle": 250
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32240,
"Locations": [
{
"Position": {
"X": -575.3094,
"Y": 36.61243,
"Z": 500.9136
},
"MinimumAngle": 15,
"MaximumAngle": 180
}
]
},
{
"DataId": 32241,
"Locations": [
{
"Position": {
"X": -560.735,
"Y": 37.00333,
"Z": 439.5417
},
"MinimumAngle": -15,
"MaximumAngle": 95
},
{
"Position": {
"X": -586.5652,
"Y": 37.77999,
"Z": 459.6001
},
"MinimumAngle": 40,
"MaximumAngle": 200
}
]
}
]
}
]
}

View File

@ -1,115 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 612,
"InteractionType": "None",
"AetheryteShortcut": "Fringes - Peering Stones"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 33871,
"Locations": [
{
"Position": {
"X": 556.8531,
"Y": 73.44064,
"Z": 99.57761
},
"MinimumAngle": 35,
"MaximumAngle": 160
}
]
},
{
"DataId": 33872,
"Locations": [
{
"Position": {
"X": 561.7782,
"Y": 73.45153,
"Z": 72.6368
},
"MinimumAngle": 15,
"MaximumAngle": 165,
"MinimumDistance": 1.3,
"MaximumDistance": 3
}
]
}
]
},
{
"Nodes": [
{
"DataId": 33867,
"Locations": [
{
"Position": {
"X": 498.26,
"Y": 76.74628,
"Z": -46.34168
},
"MinimumAngle": -65,
"MaximumAngle": 45
}
]
},
{
"DataId": 33868,
"Locations": [
{
"Position": {
"X": 473.011,
"Y": 76.55681,
"Z": -47.70556
},
"MinimumAngle": -45,
"MaximumAngle": 60,
"MinimumDistance": 1.9,
"MaximumDistance": 3
}
]
}
]
},
{
"Nodes": [
{
"DataId": 33870,
"Locations": [
{
"Position": {
"X": 361.4784,
"Y": 70.79905,
"Z": 146.1887
},
"MinimumAngle": -55,
"MaximumAngle": 40,
"MinimumDistance": 1.3,
"MaximumDistance": 3
}
]
},
{
"DataId": 33869,
"Locations": [
{
"Position": {
"X": 364.7684,
"Y": 70.90228,
"Z": 167.3831
},
"MinimumAngle": 105,
"MaximumAngle": 230
}
]
}
]
}
]
}

View File

@ -1,109 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 612,
"InteractionType": "None",
"AetheryteShortcut": "Fringes - Peering Stones"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 33875,
"Locations": [
{
"Position": {
"X": 567.9412,
"Y": 50.43103,
"Z": 373.1152
},
"MinimumAngle": 200,
"MaximumAngle": 350
}
]
},
{
"DataId": 33876,
"Locations": [
{
"Position": {
"X": 578.4171,
"Y": 48.36443,
"Z": 365.4806
},
"MinimumAngle": -45,
"MaximumAngle": 120
}
]
}
]
},
{
"Nodes": [
{
"DataId": 33873,
"Locations": [
{
"Position": {
"X": 599.5352,
"Y": 75.60928,
"Z": 244.3069
},
"MinimumAngle": -80,
"MaximumAngle": 70
}
]
},
{
"DataId": 33874,
"Locations": [
{
"Position": {
"X": 592.9609,
"Y": 75.62624,
"Z": 268.9515
},
"MinimumAngle": 110,
"MaximumAngle": 285
}
]
}
]
},
{
"Nodes": [
{
"DataId": 33878,
"Locations": [
{
"Position": {
"X": 753.3094,
"Y": 72.73058,
"Z": 364.073
},
"MinimumAngle": 95,
"MaximumAngle": 240
}
]
},
{
"DataId": 33877,
"Locations": [
{
"Position": {
"X": 764.3023,
"Y": 74.18732,
"Z": 337.2563
},
"MinimumAngle": -70,
"MaximumAngle": 105
}
]
}
]
}
]
}

View File

@ -1,163 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 621,
"InteractionType": "None",
"AetheryteShortcut": "Lochs - Porta Praetoria"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 32167,
"Locations": [
{
"Position": {
"X": -569.6677,
"Y": 17.29578,
"Z": -148.952
},
"MinimumAngle": 175,
"MaximumAngle": 300
},
{
"Position": {
"X": -575.41,
"Y": 18.57019,
"Z": -160.1905
},
"MinimumAngle": -90,
"MaximumAngle": 15
},
{
"Position": {
"X": -569.3643,
"Y": 15.97435,
"Z": -170.2152
},
"MinimumAngle": 225,
"MaximumAngle": 350
}
]
},
{
"DataId": 32166,
"Locations": [
{
"Position": {
"X": -578.1491,
"Y": 20.07928,
"Z": -153.1853
},
"MinimumAngle": 205,
"MaximumAngle": 355
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32170,
"Locations": [
{
"Position": {
"X": -542.444,
"Y": 15.60992,
"Z": -299.645
},
"MinimumAngle": 245,
"MaximumAngle": 360
}
]
},
{
"DataId": 32171,
"Locations": [
{
"Position": {
"X": -540.2715,
"Y": 16.96567,
"Z": -304.0383
},
"MinimumAngle": 220,
"MaximumAngle": 350
},
{
"Position": {
"X": -516.496,
"Y": 21.84032,
"Z": -346.177
},
"MinimumAngle": -55,
"MaximumAngle": 75
},
{
"Position": {
"X": -507.6519,
"Y": 9.185992,
"Z": -287.0281
},
"MinimumAngle": 30,
"MaximumAngle": 160
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32168,
"Locations": [
{
"Position": {
"X": -404.0753,
"Y": 14.02301,
"Z": -270.8308
},
"MinimumAngle": 195,
"MaximumAngle": 315
}
]
},
{
"DataId": 32169,
"Locations": [
{
"Position": {
"X": -393.6106,
"Y": 13.93396,
"Z": -262.3799
},
"MinimumAngle": 15,
"MaximumAngle": 130
},
{
"Position": {
"X": -406.0579,
"Y": 12.16138,
"Z": -255.3292
},
"MinimumAngle": -145,
"MaximumAngle": 20
},
{
"Position": {
"X": -394.2554,
"Y": 13.38954,
"Z": -275.8168
},
"MinimumAngle": 60,
"MaximumAngle": 135
}
]
}
]
}
]
}

View File

@ -1,163 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 621,
"InteractionType": "None",
"AetheryteShortcut": "Lochs - Ala Mhigan Quarter"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 32245,
"Locations": [
{
"Position": {
"X": 333.1211,
"Y": 20.88004,
"Z": -522.5363
},
"MinimumAngle": 160,
"MaximumAngle": 335
},
{
"Position": {
"X": 338.3687,
"Y": 21.54188,
"Z": -512.1134
},
"MinimumAngle": 120,
"MaximumAngle": 275
},
{
"Position": {
"X": 374.9138,
"Y": 25.00688,
"Z": -515.2723
},
"MinimumAngle": -85,
"MaximumAngle": 90
}
]
},
{
"DataId": 32244,
"Locations": [
{
"Position": {
"X": 368.5785,
"Y": 24.38493,
"Z": -507.3824
},
"MinimumAngle": 65,
"MaximumAngle": 240
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32243,
"Locations": [
{
"Position": {
"X": 426.1108,
"Y": 25.12664,
"Z": -607.2003
},
"MinimumAngle": -20,
"MaximumAngle": 145
},
{
"Position": {
"X": 400.1029,
"Y": 25.21572,
"Z": -648.0899
},
"MinimumAngle": 190,
"MaximumAngle": 325
},
{
"Position": {
"X": 463.1597,
"Y": 24.9486,
"Z": -602.0026
},
"MinimumAngle": 0,
"MaximumAngle": 150
}
]
},
{
"DataId": 32242,
"Locations": [
{
"Position": {
"X": 396.3124,
"Y": 25.41136,
"Z": -663.1417
},
"MinimumAngle": 20,
"MaximumAngle": 205
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32247,
"Locations": [
{
"Position": {
"X": 274.2476,
"Y": 18.49642,
"Z": -627.4052
},
"MinimumAngle": -95,
"MaximumAngle": 100
},
{
"Position": {
"X": 248.6237,
"Y": 10.63078,
"Z": -592.5243
},
"MinimumAngle": -145,
"MaximumAngle": 35
},
{
"Position": {
"X": 259.3484,
"Y": 11.24844,
"Z": -586.5854
},
"MinimumAngle": -120,
"MaximumAngle": 45
}
]
},
{
"DataId": 32246,
"Locations": [
{
"Position": {
"X": 266.4147,
"Y": 18.26739,
"Z": -620.2316
},
"MinimumAngle": 135,
"MaximumAngle": 305
}
]
}
]
}
]
}

View File

@ -1,43 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 621,
"InteractionType": "None",
"AetheryteShortcut": "Lochs - Porta Praetoria"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 32274,
"Locations": [
{
"Position": {
"X": -737.3265,
"Y": 76.50858,
"Z": -591.2296
}
},
{
"Position": {
"X": -787.0406,
"Y": 78.22382,
"Z": -640.0532
}
},
{
"Position": {
"X": -670.0129,
"Y": 70.42876,
"Z": -645.2087
}
}
]
}
]
}
]
}

View File

@ -1,120 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 621,
"InteractionType": "None",
"AetheryteShortcut": "Lochs - Ala Mhigan Quarter"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 33339,
"Locations": [
{
"Position": {
"X": 440.6299,
"Y": 74.86803,
"Z": -205.3779
},
"MinimumAngle": 85,
"MaximumAngle": 215
}
]
},
{
"DataId": 33340,
"Locations": [
{
"Position": {
"X": 426.4497,
"Y": 70.57706,
"Z": -198.046
},
"MinimumAngle": 95,
"MaximumAngle": 180,
"MinimumDistance": 1.3,
"MaximumDistance": 3
},
{
"Position": {
"X": 453.1248,
"Y": 77.29013,
"Z": -211.6347
},
"MinimumAngle": 85,
"MaximumAngle": 190
}
]
}
]
},
{
"Nodes": [
{
"DataId": 33337,
"Locations": [
{
"Position": {
"X": 561.2196,
"Y": 94.65154,
"Z": -315.6258
},
"MinimumAngle": 50,
"MaximumAngle": 160
}
]
},
{
"DataId": 33338,
"Locations": [
{
"Position": {
"X": 563.1749,
"Y": 93.41929,
"Z": -335.4834
},
"MinimumAngle": -25,
"MaximumAngle": 75
}
]
}
]
},
{
"Nodes": [
{
"DataId": 33341,
"Locations": [
{
"Position": {
"X": 388.9345,
"Y": 54.85489,
"Z": -350.8919
},
"MinimumAngle": 55,
"MaximumAngle": 150
}
]
},
{
"DataId": 33342,
"Locations": [
{
"Position": {
"X": 394.7824,
"Y": 51.66671,
"Z": -369.6645
},
"MinimumAngle": 70,
"MaximumAngle": 135
}
]
}
]
}
]
}

View File

@ -1,163 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 620,
"InteractionType": "None",
"AetheryteShortcut": "Peaks - Ala Gannha"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 32147,
"Locations": [
{
"Position": {
"X": 112.743,
"Y": 115.1324,
"Z": -511.142
},
"MinimumAngle": -165,
"MaximumAngle": -20
}
]
},
{
"DataId": 32148,
"Locations": [
{
"Position": {
"X": 101.6789,
"Y": 114.9711,
"Z": -506.4506
},
"MinimumAngle": 20,
"MaximumAngle": 225
},
{
"Position": {
"X": 122.53,
"Y": 116.4095,
"Z": -533.6536
},
"MinimumAngle": -80,
"MaximumAngle": 75
},
{
"Position": {
"X": 108.0162,
"Y": 115.2875,
"Z": -509.5858
},
"MinimumAngle": -20,
"MaximumAngle": 110
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32152,
"Locations": [
{
"Position": {
"X": -6.542124,
"Y": 113.9997,
"Z": -406.9197
},
"MinimumAngle": 80,
"MaximumAngle": 150
},
{
"Position": {
"X": -4.06374,
"Y": 113.4698,
"Z": -413.3034
},
"MinimumAngle": 80,
"MaximumAngle": 200
},
{
"Position": {
"X": -13.96204,
"Y": 113.9696,
"Z": -383.4135
},
"MinimumAngle": 45,
"MaximumAngle": 160
}
]
},
{
"DataId": 32151,
"Locations": [
{
"Position": {
"X": -11.21539,
"Y": 114.1222,
"Z": -392.7825
},
"MinimumAngle": 70,
"MaximumAngle": 165
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32149,
"Locations": [
{
"Position": {
"X": 167.207,
"Y": 137.3464,
"Z": -336.0433
},
"MinimumAngle": 85,
"MaximumAngle": 225
}
]
},
{
"DataId": 32150,
"Locations": [
{
"Position": {
"X": 176.9339,
"Y": 138.3656,
"Z": -335.729
},
"MinimumAngle": 115,
"MaximumAngle": 220
},
{
"Position": {
"X": 182.5719,
"Y": 138.795,
"Z": -333.3691
},
"MinimumAngle": 195,
"MaximumAngle": 290
},
{
"Position": {
"X": 198.0379,
"Y": 136.6125,
"Z": -337.0126
},
"MinimumAngle": 60,
"MaximumAngle": 160
}
]
}
]
}
]
}

View File

@ -1,145 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 620,
"InteractionType": "None",
"AetheryteShortcut": "Peaks - Ala Gannha"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 32234,
"Locations": [
{
"Position": {
"X": -381.2856,
"Y": 66.03626,
"Z": -548.9689
}
}
]
},
{
"DataId": 32235,
"Locations": [
{
"Position": {
"X": -421.8894,
"Y": 69.34563,
"Z": -520.4478
}
},
{
"Position": {
"X": -376.2228,
"Y": 66.67438,
"Z": -545.8188
}
},
{
"Position": {
"X": -355.3144,
"Y": 66.57961,
"Z": -545.7592
}
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32232,
"Locations": [
{
"Position": {
"X": -517.0562,
"Y": 63.73144,
"Z": -477.6884
}
}
]
},
{
"DataId": 32233,
"Locations": [
{
"Position": {
"X": -550.7997,
"Y": 69.32131,
"Z": -449.5795
},
"MinimumAngle": 0,
"MaximumAngle": 230
},
{
"Position": {
"X": -507.8166,
"Y": 66.39982,
"Z": -470.319
}
},
{
"Position": {
"X": -494.5092,
"Y": 63.5919,
"Z": -497.5369
}
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32230,
"Locations": [
{
"Position": {
"X": -402.3759,
"Y": 95.33111,
"Z": -371.9796
},
"MinimumAngle": -15,
"MaximumAngle": 230
}
]
},
{
"DataId": 32231,
"Locations": [
{
"Position": {
"X": -398.7086,
"Y": 95.14203,
"Z": -377.1731
},
"MinimumAngle": 30,
"MaximumAngle": 230
},
{
"Position": {
"X": -427.5446,
"Y": 90.42126,
"Z": -391.9806
}
},
{
"Position": {
"X": -398.5008,
"Y": 98.82507,
"Z": -351.0829
}
}
]
}
]
}
]
}

View File

@ -1,138 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 620,
"InteractionType": "None",
"AetheryteShortcut": "Peaks - Ala Gannha"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 32286,
"Locations": [
{
"Position": {
"X": 720.7598,
"Y": 247.8707,
"Z": -571.472
},
"MinimumAngle": 115,
"MaximumAngle": 235
}
]
},
{
"DataId": 32287,
"Locations": [
{
"Position": {
"X": 749.6198,
"Y": 250.0555,
"Z": -569.6151
},
"MinimumAngle": 160,
"MaximumAngle": 280
},
{
"Position": {
"X": 700.801,
"Y": 248.3289,
"Z": -569.3172
},
"MinimumAngle": 185,
"MaximumAngle": 275
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32285,
"Locations": [
{
"Position": {
"X": 792.5579,
"Y": 257.8186,
"Z": -661.4872
},
"MinimumAngle": 80,
"MaximumAngle": 155
},
{
"Position": {
"X": 773.1775,
"Y": 253.9753,
"Z": -671.3119
},
"MinimumAngle": -80,
"MaximumAngle": -5
}
]
},
{
"DataId": 32284,
"Locations": [
{
"Position": {
"X": 788.1879,
"Y": 257.4255,
"Z": -669.3115
},
"MinimumAngle": -50,
"MaximumAngle": -15,
"MinimumDistance": 2.1,
"MaximumDistance": 3
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32289,
"Locations": [
{
"Position": {
"X": 846.4332,
"Y": 262.9354,
"Z": -500.6171
},
"MinimumAngle": 40,
"MaximumAngle": 155
},
{
"Position": {
"X": 838.9346,
"Y": 262.0732,
"Z": -527.0631
},
"MinimumAngle": 60,
"MaximumAngle": 145
}
]
},
{
"DataId": 32288,
"Locations": [
{
"Position": {
"X": 845.8228,
"Y": 263.8849,
"Z": -511.0472
},
"MinimumAngle": -30,
"MaximumAngle": 60
}
]
}
]
}
]
}

View File

@ -1,118 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 620,
"InteractionType": "None",
"AetheryteShortcut": "Peaks - Ala Gannha"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 32292,
"Locations": [
{
"Position": {
"X": -276.0765,
"Y": 74.99889,
"Z": -751.7645
}
}
]
},
{
"DataId": 32293,
"Locations": [
{
"Position": {
"X": -291.6779,
"Y": 75.03039,
"Z": -740.0215
}
},
{
"Position": {
"X": -309.4909,
"Y": 74.66329,
"Z": -746.8633
}
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32290,
"Locations": [
{
"Position": {
"X": -377.3709,
"Y": 59.22021,
"Z": -721.5839
}
}
]
},
{
"DataId": 32291,
"Locations": [
{
"Position": {
"X": -385.6718,
"Y": 59.15918,
"Z": -741.5427
}
},
{
"Position": {
"X": -409.1402,
"Y": 56.75652,
"Z": -746.273
}
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32295,
"Locations": [
{
"Position": {
"X": -456.0745,
"Y": 57.47042,
"Z": -804.0213
}
},
{
"Position": {
"X": -455.9548,
"Y": 57.93848,
"Z": -785.8549
}
}
]
},
{
"DataId": 32294,
"Locations": [
{
"Position": {
"X": -472.6482,
"Y": 57.45007,
"Z": -798.8556
}
}
]
}
]
}
]
}

View File

@ -1,118 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 620,
"InteractionType": "None",
"AetheryteShortcut": "Peaks - Ala Gannha"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 33321,
"Locations": [
{
"Position": {
"X": 518.1079,
"Y": 218.4718,
"Z": -593.7597
},
"MinimumAngle": -140,
"MaximumAngle": 70
}
]
},
{
"DataId": 33322,
"Locations": [
{
"Position": {
"X": 543.8551,
"Y": 223.6571,
"Z": -583.9418
},
"MinimumAngle": 175,
"MaximumAngle": 290
},
{
"Position": {
"X": 513.8116,
"Y": 218.4708,
"Z": -580.1434
},
"MinimumAngle": 0,
"MaximumAngle": 145
}
]
}
]
},
{
"Nodes": [
{
"DataId": 33323,
"Locations": [
{
"Position": {
"X": 648.0388,
"Y": 230.7679,
"Z": -678.8027
},
"MinimumAngle": 225,
"MaximumAngle": 345
}
]
},
{
"DataId": 33324,
"Locations": [
{
"Position": {
"X": 675.1682,
"Y": 234.6712,
"Z": -675.749
},
"MinimumAngle": -55,
"MaximumAngle": 85
}
]
}
]
},
{
"Nodes": [
{
"DataId": 33320,
"Locations": [
{
"Position": {
"X": 722.4699,
"Y": 242.8886,
"Z": -598.9974
},
"MinimumAngle": 65,
"MaximumAngle": 195
}
]
},
{
"DataId": 33319,
"Locations": [
{
"Position": {
"X": 718.4479,
"Y": 244.6019,
"Z": -583.6996
},
"MinimumAngle": 45,
"MaximumAngle": 190
}
]
}
]
}
]
}

View File

@ -1,31 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 620,
"InteractionType": "None",
"AetheryteShortcut": "Peaks - Ala Gannha"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 33028,
"Locations": [
{
"Position": {
"X": 454.6367,
"Y": 227.1414,
"Z": -731.7471
},
"MinimumAngle": -120,
"MaximumAngle": 65
}
]
}
]
}
]
}

View File

@ -1,167 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 613,
"InteractionType": "None",
"AetheryteShortcut": "Kugane",
"AethernetShortcut": [
"[Kugane] Aetheryte Plaza",
"[Kugane] The Ruby Price"
]
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 32140,
"Locations": [
{
"Position": {
"X": 210.5032,
"Y": 28.51213,
"Z": 718.0732
},
"MinimumAngle": 210,
"MaximumAngle": 325
},
{
"Position": {
"X": 202.0474,
"Y": 30.18633,
"Z": 700.0951
},
"MinimumAngle": 160,
"MaximumAngle": 295
},
{
"Position": {
"X": 195.6331,
"Y": 33.43727,
"Z": 695.2228
},
"MinimumAngle": 150,
"MaximumAngle": 235
}
]
},
{
"DataId": 32139,
"Locations": [
{
"Position": {
"X": 208.3533,
"Y": 28.65312,
"Z": 706.8864
},
"MinimumAngle": 180,
"MaximumAngle": 250
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32135,
"Locations": [
{
"Position": {
"X": 67.65472,
"Y": 25.89518,
"Z": 652.348
},
"MinimumAngle": -105,
"MaximumAngle": 15
}
]
},
{
"DataId": 32136,
"Locations": [
{
"Position": {
"X": 41.55281,
"Y": 27.65364,
"Z": 654.9735
},
"MinimumAngle": -115,
"MaximumAngle": 35
},
{
"Position": {
"X": 52.98101,
"Y": 27.03981,
"Z": 652.5334
},
"MinimumAngle": -45,
"MaximumAngle": 55
},
{
"Position": {
"X": 71.80375,
"Y": 26.55341,
"Z": 644.8627
},
"MinimumAngle": 205,
"MaximumAngle": 335
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32137,
"Locations": [
{
"Position": {
"X": 136.1673,
"Y": 35.7457,
"Z": 802.5483
},
"MinimumAngle": 175,
"MaximumAngle": 300
}
]
},
{
"DataId": 32138,
"Locations": [
{
"Position": {
"X": 120.3011,
"Y": 33.62519,
"Z": 797.1313
},
"MinimumAngle": 100,
"MaximumAngle": 215
},
{
"Position": {
"X": 137.5746,
"Y": 35.89635,
"Z": 805.4796
},
"MinimumAngle": 195,
"MaximumAngle": 325
},
{
"Position": {
"X": 136.7552,
"Y": 38.41375,
"Z": 817.2667
},
"MinimumAngle": 215,
"MaximumAngle": 325
}
]
}
]
}
]
}

View File

@ -1,149 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"Position": {
"X": 322.1539,
"Y": -121.22571,
"Z": -314.2446
},
"TerritoryId": 613,
"InteractionType": "WalkTo",
"AetheryteShortcut": "Ruby Sea - Tamamizu",
"RestartNavigationIfCancelled": false
},
{
"TerritoryId": 613,
"InteractionType": "None"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 32153,
"Locations": [
{
"Position": {
"X": -373.2205,
"Y": -136.6522,
"Z": -274.8914
}
}
]
},
{
"DataId": 32154,
"Locations": [
{
"Position": {
"X": -448.4877,
"Y": -116.7225,
"Z": -302.5894
}
},
{
"Position": {
"X": -367.8707,
"Y": -141.2844,
"Z": -234.9824
}
},
{
"Position": {
"X": -410.8549,
"Y": -118.3526,
"Z": -327.6413
}
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32158,
"Locations": [
{
"Position": {
"X": -541.3218,
"Y": -110.9725,
"Z": -162.0661
}
},
{
"Position": {
"X": -541.0571,
"Y": -101.0088,
"Z": -238.4313
}
},
{
"Position": {
"X": -557.3869,
"Y": -91.38704,
"Z": -232.6365
}
}
]
},
{
"DataId": 32157,
"Locations": [
{
"Position": {
"X": -527.4707,
"Y": -125.4386,
"Z": -165.366
}
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32155,
"Locations": [
{
"Position": {
"X": -460.3799,
"Y": -154.5827,
"Z": -110.9484
}
}
]
},
{
"DataId": 32156,
"Locations": [
{
"Position": {
"X": -399.089,
"Y": -145.1425,
"Z": -6.001478
}
},
{
"Position": {
"X": -474.2804,
"Y": -142.6447,
"Z": -92.2213
}
},
{
"Position": {
"X": -474.9154,
"Y": -132.8651,
"Z": -73.47042
}
}
]
}
]
}
]
}

View File

@ -1,143 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 613,
"InteractionType": "None",
"AetheryteShortcut": "Ruby Sea - Onokoro"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 32205,
"Locations": [
{
"Position": {
"X": 58.18178,
"Y": 2.700867,
"Z": -778.6965
},
"MinimumAngle": 45,
"MaximumAngle": 235
}
]
},
{
"DataId": 32204,
"Locations": [
{
"Position": {
"X": 72.41409,
"Y": 3.151178,
"Z": -776.8186
},
"MinimumAngle": 80,
"MaximumAngle": 255
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32200,
"Locations": [
{
"Position": {
"X": -69.36879,
"Y": 3.296089,
"Z": -821.5594
},
"MinimumAngle": -120,
"MaximumAngle": 40
}
]
},
{
"DataId": 32201,
"Locations": [
{
"Position": {
"X": -69.29061,
"Y": 3.013922,
"Z": -803.5723
},
"MinimumAngle": 30,
"MaximumAngle": 185
},
{
"Position": {
"X": -58.63464,
"Y": 2.637568,
"Z": -819.6691
},
"MinimumAngle": 0,
"MaximumAngle": 195
},
{
"Position": {
"X": -58.09113,
"Y": 3.463745,
"Z": -787.4418
}
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32202,
"Locations": [
{
"Position": {
"X": -73.56532,
"Y": 2.819433,
"Z": -633.0066
},
"MinimumAngle": 195,
"MaximumAngle": 335
}
]
},
{
"DataId": 32203,
"Locations": [
{
"Position": {
"X": -22.5884,
"Y": 3.535999,
"Z": -617.6862
},
"MinimumAngle": 35,
"MaximumAngle": 225
},
{
"Position": {
"X": -84.8622,
"Y": 3.222104,
"Z": -642.1901
},
"MinimumAngle": 75,
"MaximumAngle": 305
},
{
"Position": {
"X": -74.18819,
"Y": 2.731044,
"Z": -645.1037
},
"MinimumAngle": 20,
"MaximumAngle": 220
}
]
}
]
}
]
}

View File

@ -1,138 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 613,
"InteractionType": "None",
"AetheryteShortcut": "Ruby Sea - Onokoro"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 32223,
"Locations": [
{
"Position": {
"X": -741.6174,
"Y": 6.276045,
"Z": -639.2435
}
},
{
"Position": {
"X": -724.2017,
"Y": 2.514658,
"Z": -647.5651
}
}
]
},
{
"DataId": 32222,
"Locations": [
{
"Position": {
"X": -719.345,
"Y": 2.520793,
"Z": -645.692
}
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32218,
"Locations": [
{
"Position": {
"X": -664.7355,
"Y": 15.23751,
"Z": -801.2688
},
"MinimumAngle": -60,
"MaximumAngle": 185
}
]
},
{
"DataId": 32219,
"Locations": [
{
"Position": {
"X": -673.4941,
"Y": 16.74037,
"Z": -818.1156
}
},
{
"Position": {
"X": -677.8458,
"Y": 15.77772,
"Z": -809.6718
}
},
{
"Position": {
"X": -663.3188,
"Y": 14.57053,
"Z": -797.132
}
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32221,
"Locations": [
{
"Position": {
"X": -502.177,
"Y": 36.7399,
"Z": -724.8087
}
},
{
"Position": {
"X": -508.0492,
"Y": 33.89026,
"Z": -703.5477
}
},
{
"Position": {
"X": -490.3923,
"Y": 36.73062,
"Z": -685.7646
},
"MinimumAngle": -40,
"MaximumAngle": 150
}
]
},
{
"DataId": 32220,
"Locations": [
{
"Position": {
"X": -493.5531,
"Y": 36.08752,
"Z": -687.7089
},
"MinimumAngle": -70,
"MaximumAngle": 160
}
]
}
]
}
]
}

View File

@ -1,149 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"Position": {
"X": 322.1539,
"Y": -121.22571,
"Z": -314.2446
},
"TerritoryId": 613,
"InteractionType": "WalkTo",
"AetheryteShortcut": "Ruby Sea - Tamamizu",
"RestartNavigationIfCancelled": false
},
{
"TerritoryId": 613,
"InteractionType": "None"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 32225,
"Locations": [
{
"Position": {
"X": 283.2321,
"Y": -105.8964,
"Z": -89.553
}
},
{
"Position": {
"X": 251.241,
"Y": -112.7794,
"Z": -103.9756
}
},
{
"Position": {
"X": 338.0264,
"Y": -86.76475,
"Z": -30.31015
}
}
]
},
{
"DataId": 32224,
"Locations": [
{
"Position": {
"X": 304.9474,
"Y": -98.91968,
"Z": -59.39315
}
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32228,
"Locations": [
{
"Position": {
"X": 260.0728,
"Y": -124.0964,
"Z": 68.48814
}
}
]
},
{
"DataId": 32229,
"Locations": [
{
"Position": {
"X": 265.4464,
"Y": -128.0422,
"Z": 88.30737
}
},
{
"Position": {
"X": 256.5239,
"Y": -113.9164,
"Z": -3.19258
}
},
{
"Position": {
"X": 237.8169,
"Y": -122.1193,
"Z": -35.11102
}
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32226,
"Locations": [
{
"Position": {
"X": 318.7197,
"Y": -88.4566,
"Z": 91.66042
}
}
]
},
{
"DataId": 32227,
"Locations": [
{
"Position": {
"X": 281.2504,
"Y": -113.1205,
"Z": 176.6557
}
},
{
"Position": {
"X": 309.1248,
"Y": -88.04077,
"Z": 109.5688
}
},
{
"Position": {
"X": 312.3843,
"Y": -95.51873,
"Z": 79.94166
}
}
]
}
]
}
]
}

View File

@ -1,146 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"Position": {
"X": 322.1539,
"Y": -121.22571,
"Z": -314.2446
},
"TerritoryId": 613,
"InteractionType": "WalkTo",
"AetheryteShortcut": "Ruby Sea - Tamamizu",
"RestartNavigationIfCancelled": false
},
{
"TerritoryId": 613,
"InteractionType": "None"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 32282,
"Locations": [
{
"Position": {
"X": -332.5556,
"Y": -139.5151,
"Z": -276.7727
}
},
{
"Position": {
"X": -398.5437,
"Y": -137.4753,
"Z": -264.6068
}
}
]
},
{
"DataId": 32281,
"Locations": [
{
"Position": {
"X": -377.4165,
"Y": -151.0521,
"Z": -211.4394
}
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32277,
"Locations": [
{
"Position": {
"X": -509.283,
"Y": -107.1854,
"Z": -389.3152
}
}
]
},
{
"DataId": 32278,
"Locations": [
{
"Position": {
"X": -470.5726,
"Y": -93.28533,
"Z": -430.0346
}
},
{
"Position": {
"X": -549.3453,
"Y": -103.2194,
"Z": -352.9945
}
},
{
"Position": {
"X": -548.5269,
"Y": -99.45416,
"Z": -459.6198
}
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32279,
"Locations": [
{
"Position": {
"X": -347.0872,
"Y": -72.09894,
"Z": -420.7435
},
"MinimumAngle": -80,
"MaximumAngle": 100
}
]
},
{
"DataId": 32280,
"Locations": [
{
"Position": {
"X": -410.6145,
"Y": -86.76735,
"Z": -432.2196
}
},
{
"Position": {
"X": -407.9324,
"Y": -108.0931,
"Z": -384.4449
}
},
{
"Position": {
"X": -341.0429,
"Y": -89.68655,
"Z": -396.5815
},
"MinimumAngle": -45,
"MaximumAngle": 110
}
]
}
]
}
]
}

View File

@ -1,143 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 613,
"InteractionType": "None",
"AetheryteShortcut": "Kugane",
"AethernetShortcut": [
"[Kugane] Aetheryte Plaza",
"[Kugane] The Ruby Price"
]
}
],
"FlyBetweenNodes": true,
"Groups": [
{
"Nodes": [
{
"DataId": 32296,
"Locations": [
{
"Position": {
"X": -216.1387,
"Y": 0.6300181,
"Z": 616.7697
},
"MinimumAngle": 180,
"MaximumAngle": 265
}
]
},
{
"DataId": 32297,
"Locations": [
{
"Position": {
"X": -236.5302,
"Y": 0.503479,
"Z": 634.821
},
"MinimumAngle": 45,
"MaximumAngle": 65,
"MinimumDistance": 1.6,
"MaximumDistance": 3
},
{
"Position": {
"X": -242.0282,
"Y": 1.464991,
"Z": 649.7866
},
"MinimumAngle": -20,
"MaximumAngle": 70
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32298,
"Locations": [
{
"Position": {
"X": -267.9128,
"Y": 0.6036554,
"Z": 722.319
},
"MinimumAngle": 230,
"MaximumAngle": 330
}
]
},
{
"DataId": 32299,
"Locations": [
{
"Position": {
"X": -275.2201,
"Y": 1.438162,
"Z": 727.0667
},
"MinimumAngle": 0,
"MaximumAngle": 105
},
{
"Position": {
"X": -277.8375,
"Y": 2.060616,
"Z": 721.6605
},
"MinimumAngle": 20,
"MaximumAngle": 85
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32300,
"Locations": [
{
"Position": {
"X": -148.4246,
"Y": 11.42871,
"Z": 776.8299
},
"MinimumAngle": 105,
"MaximumAngle": 240
}
]
},
{
"DataId": 32301,
"Locations": [
{
"Position": {
"X": -135.4789,
"Y": 11.61927,
"Z": 765.4382
},
"MinimumAngle": 45,
"MaximumAngle": 155
},
{
"Position": {
"X": -169.3294,
"Y": 11.36792,
"Z": 784.0237
},
"MinimumAngle": 85,
"MaximumAngle": 210
}
]
}
]
}
]
}

View File

@ -1,120 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 613,
"InteractionType": "None",
"AetheryteShortcut": "Ruby Sea - Tamamizu"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 32302,
"Locations": [
{
"Position": {
"X": 831.4452,
"Y": 48.62377,
"Z": -131.4108
}
}
]
},
{
"DataId": 32303,
"Locations": [
{
"Position": {
"X": 865.9036,
"Y": 46.76892,
"Z": -129.9611
}
},
{
"Position": {
"X": 822.6691,
"Y": 48.57434,
"Z": -130.6889
}
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32305,
"Locations": [
{
"Position": {
"X": 780.787,
"Y": 51.3394,
"Z": -265.6496
}
},
{
"Position": {
"X": 824.1245,
"Y": 40.93994,
"Z": -250.4464
}
}
]
},
{
"DataId": 32304,
"Locations": [
{
"Position": {
"X": 816.6475,
"Y": 41.2146,
"Z": -263.6606
}
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32306,
"Locations": [
{
"Position": {
"X": 648.2073,
"Y": 75.29906,
"Z": -226.7926
},
"MinimumAngle": 25,
"MaximumAngle": 290
}
]
},
{
"DataId": 32307,
"Locations": [
{
"Position": {
"X": 652.0435,
"Y": 71.82505,
"Z": -241.2778
}
},
{
"Position": {
"X": 645.0362,
"Y": 69.79202,
"Z": -255.1373
}
}
]
}
]
}
]
}

View File

@ -1,49 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 613,
"InteractionType": "None",
"AetheryteShortcut": "Ruby Sea - Onokoro"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 32308,
"Locations": [
{
"Position": {
"X": -531.8166,
"Y": 16.39526,
"Z": 34.16671
},
"MinimumAngle": 245,
"MaximumAngle": 325
},
{
"Position": {
"X": -532.9277,
"Y": 15.60621,
"Z": 50.29741
},
"MinimumAngle": 190,
"MaximumAngle": 330
},
{
"Position": {
"X": -520.6714,
"Y": 14.15115,
"Z": 73.84262
},
"MinimumAngle": 105,
"MaximumAngle": 230
}
]
}
]
}
]
}

View File

@ -1,150 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"Position": {
"X": 322.1539,
"Y": -121.22571,
"Z": -314.2446
},
"TerritoryId": 613,
"InteractionType": "WalkTo",
"AetheryteShortcut": "Ruby Sea - Tamamizu",
"RestartNavigationIfCancelled": false
},
{
"TerritoryId": 613,
"InteractionType": "None"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 33325,
"Locations": [
{
"Position": {
"X": 953.1041,
"Y": -127.1716,
"Z": -816.3145
},
"MinimumAngle": -25,
"MaximumAngle": 100
}
]
},
{
"DataId": 33326,
"Locations": [
{
"Position": {
"X": 956.8734,
"Y": -129.366,
"Z": -843.1625
},
"MinimumAngle": 75,
"MaximumAngle": 210
},
{
"Position": {
"X": 976.0558,
"Y": -131.5356,
"Z": -813.2305
},
"MinimumAngle": -65,
"MaximumAngle": 30,
"MinimumDistance": 1.4,
"MaximumDistance": 3
}
]
}
]
},
{
"Nodes": [
{
"DataId": 33327,
"Locations": [
{
"Position": {
"X": 887.1607,
"Y": -141.6279,
"Z": -863.3355
},
"MinimumAngle": 185,
"MaximumAngle": 340
}
]
},
{
"DataId": 33328,
"Locations": [
{
"Position": {
"X": 874.0369,
"Y": -135.9791,
"Z": -848.3512
},
"MinimumAngle": -80,
"MaximumAngle": 60
},
{
"Position": {
"X": 895.865,
"Y": -144.0468,
"Z": -890.5269
},
"MinimumAngle": 195,
"MaximumAngle": 315
}
]
}
]
},
{
"Nodes": [
{
"DataId": 33329,
"Locations": [
{
"Position": {
"X": 836.5433,
"Y": -140.1729,
"Z": -948.7974
},
"MinimumAngle": 130,
"MaximumAngle": 295
}
]
},
{
"DataId": 33330,
"Locations": [
{
"Position": {
"X": 843.2012,
"Y": -139.2853,
"Z": -961.9124
},
"MinimumAngle": -95,
"MaximumAngle": 15,
"MinimumDistance": 1.3,
"MaximumDistance": 3
},
{
"Position": {
"X": 856.3994,
"Y": -142.4276,
"Z": -941.0324
},
"MinimumAngle": 115,
"MaximumAngle": 265
}
]
}
]
}
]
}

View File

@ -1,163 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 614,
"InteractionType": "None",
"AetheryteShortcut": "Yanxia - Namai"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 32144,
"Locations": [
{
"Position": {
"X": 407.4102,
"Y": 68.66914,
"Z": 19.0117
},
"MinimumAngle": 105,
"MaximumAngle": 255
},
{
"Position": {
"X": 376.4243,
"Y": 61.81466,
"Z": 5.657309
},
"MinimumAngle": 170,
"MaximumAngle": 275
},
{
"Position": {
"X": 441.2355,
"Y": 75.06916,
"Z": 17.49573
},
"MinimumAngle": 110,
"MaximumAngle": 235
}
]
},
{
"DataId": 32143,
"Locations": [
{
"Position": {
"X": 417.9466,
"Y": 70.24178,
"Z": 19.50875
},
"MinimumAngle": 140,
"MaximumAngle": 215,
"MinimumDistance": 1.8,
"MaximumDistance": 3
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32142,
"Locations": [
{
"Position": {
"X": 606.259,
"Y": 93.63981,
"Z": 85.09741
},
"MinimumAngle": 65,
"MaximumAngle": 185
},
{
"Position": {
"X": 594.0188,
"Y": 87.54358,
"Z": 51.05505
}
},
{
"Position": {
"X": 576.0488,
"Y": 91.74075,
"Z": 114.4922
},
"MinimumAngle": 75,
"MaximumAngle": 165
}
]
},
{
"DataId": 32141,
"Locations": [
{
"Position": {
"X": 608.4475,
"Y": 94.5528,
"Z": 80.633
},
"MinimumAngle": 45,
"MaximumAngle": 135
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32146,
"Locations": [
{
"Position": {
"X": 519.749,
"Y": 46.5653,
"Z": -59.9632
},
"MinimumAngle": 25,
"MaximumAngle": 125
},
{
"Position": {
"X": 532.2807,
"Y": 41.75984,
"Z": -85.99076
},
"MinimumAngle": 55,
"MaximumAngle": 190
},
{
"Position": {
"X": 519.0377,
"Y": 44.42293,
"Z": -67.19048
},
"MinimumAngle": 30,
"MaximumAngle": 175
}
]
},
{
"DataId": 32145,
"Locations": [
{
"Position": {
"X": 520.0951,
"Y": 43.35083,
"Z": -70.45672
},
"MinimumAngle": 40,
"MaximumAngle": 145
}
]
}
]
}
]
}

View File

@ -1,163 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 614,
"InteractionType": "None",
"AetheryteShortcut": "Yanxia - Namai"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 32160,
"Locations": [
{
"Position": {
"X": 708.6117,
"Y": 111.2374,
"Z": -117.7716
},
"MinimumAngle": -65,
"MaximumAngle": 45
},
{
"Position": {
"X": 719.1514,
"Y": 103.8884,
"Z": -115.8518
},
"MinimumAngle": 170,
"MaximumAngle": 240
},
{
"Position": {
"X": 719.6881,
"Y": 103.6927,
"Z": -122.8691
},
"MinimumAngle": -85,
"MaximumAngle": 15
}
]
},
{
"DataId": 32159,
"Locations": [
{
"Position": {
"X": 728.5063,
"Y": 104.6812,
"Z": -115.4031
},
"MinimumAngle": 160,
"MaximumAngle": 260
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32162,
"Locations": [
{
"Position": {
"X": 786.5566,
"Y": 127.8859,
"Z": 12.83276
},
"MinimumAngle": 200,
"MaximumAngle": 280
},
{
"Position": {
"X": 843.5591,
"Y": 136.583,
"Z": 25.3552
},
"MinimumAngle": 150,
"MaximumAngle": 205
},
{
"Position": {
"X": 822.8708,
"Y": 132.8188,
"Z": 15.71949
},
"MinimumAngle": 120,
"MaximumAngle": 220
}
]
},
{
"DataId": 32161,
"Locations": [
{
"Position": {
"X": 814.1754,
"Y": 132.0118,
"Z": 22.69431
},
"MinimumAngle": 70,
"MaximumAngle": 175
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32163,
"Locations": [
{
"Position": {
"X": 893.1265,
"Y": 141.6431,
"Z": -143.2574
},
"MinimumAngle": 25,
"MaximumAngle": 140
}
]
},
{
"DataId": 32164,
"Locations": [
{
"Position": {
"X": 885.5841,
"Y": 139.7701,
"Z": -160.253
},
"MinimumAngle": 35,
"MaximumAngle": 110
},
{
"Position": {
"X": 894.9779,
"Y": 147.4415,
"Z": -128.2257
},
"MinimumAngle": 20,
"MaximumAngle": 190
},
{
"Position": {
"X": 893.0733,
"Y": 142.1001,
"Z": -140.2642
},
"MinimumAngle": 30,
"MaximumAngle": 155
}
]
}
]
}
]
}

View File

@ -1,152 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 614,
"InteractionType": "None",
"AetheryteShortcut": "Yanxia - Namai"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 32209,
"Locations": [
{
"Position": {
"X": 631.2573,
"Y": 127.0901,
"Z": -332.0291
},
"MinimumAngle": 155,
"MaximumAngle": 300
},
{
"Position": {
"X": 622.622,
"Y": 131.7365,
"Z": -383.0027
}
},
{
"Position": {
"X": 652.4154,
"Y": 136.6543,
"Z": -419.1716
},
"MinimumAngle": -25,
"MaximumAngle": 140
}
]
},
{
"DataId": 32208,
"Locations": [
{
"Position": {
"X": 629.0482,
"Y": 138.9971,
"Z": -423.2108
},
"MinimumAngle": 240,
"MaximumAngle": 360
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32207,
"Locations": [
{
"Position": {
"X": 708.5831,
"Y": 127.3671,
"Z": -351.2474
},
"MinimumAngle": 0,
"MaximumAngle": 100
},
{
"Position": {
"X": 684.129,
"Y": 126.6719,
"Z": -335.2414
},
"MinimumAngle": 80,
"MaximumAngle": 235
}
]
},
{
"DataId": 32206,
"Locations": [
{
"Position": {
"X": 705.5267,
"Y": 125.35,
"Z": -370.0978
},
"MinimumAngle": -35,
"MaximumAngle": 105
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32210,
"Locations": [
{
"Position": {
"X": 791.947,
"Y": 101.7719,
"Z": -288.1637
},
"MinimumAngle": 0,
"MaximumAngle": 155
}
]
},
{
"DataId": 32211,
"Locations": [
{
"Position": {
"X": 788.803,
"Y": 103.5642,
"Z": -240.686
},
"MinimumAngle": 75,
"MaximumAngle": 270
},
{
"Position": {
"X": 809.0134,
"Y": 110.9159,
"Z": -306.1294
},
"MinimumAngle": 120,
"MaximumAngle": 255
},
{
"Position": {
"X": 760.2955,
"Y": 98.77714,
"Z": -209.9551
},
"MinimumAngle": 0,
"MaximumAngle": 115
}
]
}
]
}
]
}

View File

@ -1,120 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 614,
"InteractionType": "None",
"AetheryteShortcut": "Yanxia - Namai"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 33334,
"Locations": [
{
"Position": {
"X": -222.386,
"Y": 23.28162,
"Z": 425.76
}
},
{
"Position": {
"X": -209.1725,
"Y": 22.35068,
"Z": 425.5524
}
}
]
},
{
"DataId": 33333,
"Locations": [
{
"Position": {
"X": -219.9592,
"Y": 22.78741,
"Z": 431.5036
}
}
]
}
]
},
{
"Nodes": [
{
"DataId": 33335,
"Locations": [
{
"Position": {
"X": -349.8553,
"Y": 33.90925,
"Z": 452.5893
},
"MinimumAngle": -90,
"MaximumAngle": 90
}
]
},
{
"DataId": 33336,
"Locations": [
{
"Position": {
"X": -361.5062,
"Y": 33.49068,
"Z": 453.4639
}
},
{
"Position": {
"X": -359.826,
"Y": 35.47207,
"Z": 442.164
}
}
]
}
]
},
{
"Nodes": [
{
"DataId": 33331,
"Locations": [
{
"Position": {
"X": -231.3864,
"Y": 17.74118,
"Z": 511.0694
}
}
]
},
{
"DataId": 33332,
"Locations": [
{
"Position": {
"X": -219.0789,
"Y": 18.05494,
"Z": 525.418
}
},
{
"Position": {
"X": -220.9139,
"Y": 17.97838,
"Z": 514.0063
}
}
]
}
]
}
]
}

View File

@ -1,138 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 815,
"InteractionType": "None",
"AetheryteShortcut": "Amh Araeng - Inn at Journey's Head"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 32625,
"Locations": [
{
"Position": {
"X": 451.1189,
"Y": -40.18039,
"Z": 184.7025
},
"MinimumAngle": 95,
"MaximumAngle": 245
},
{
"Position": {
"X": 471.4881,
"Y": -41.63216,
"Z": 185.0577
},
"MinimumAngle": 160,
"MaximumAngle": 285
}
]
},
{
"DataId": 32624,
"Locations": [
{
"Position": {
"X": 463.4016,
"Y": -41.51461,
"Z": 181.6076
},
"MinimumAngle": 90,
"MaximumAngle": 250
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32622,
"Locations": [
{
"Position": {
"X": 507.8041,
"Y": -33.50595,
"Z": 26.54234
},
"MinimumAngle": 60,
"MaximumAngle": 180,
"MinimumDistance": 1,
"MaximumDistance": 3
}
]
},
{
"DataId": 32623,
"Locations": [
{
"Position": {
"X": 509.3797,
"Y": -30.43971,
"Z": -2.22134
},
"MinimumAngle": -55,
"MaximumAngle": 30
},
{
"Position": {
"X": 490.9295,
"Y": -30.41992,
"Z": -0.7659363
},
"MinimumAngle": -70,
"MaximumAngle": 25
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32621,
"Locations": [
{
"Position": {
"X": 378.5,
"Y": -29.83888,
"Z": 25.41485
},
"MinimumAngle": -65,
"MaximumAngle": 30
},
{
"Position": {
"X": 358.2361,
"Y": -30,
"Z": 26.45336
},
"MinimumAngle": -40,
"MaximumAngle": 45
}
]
},
{
"DataId": 32620,
"Locations": [
{
"Position": {
"X": 365.5395,
"Y": -34.4827,
"Z": 42.98462
},
"MinimumAngle": 190,
"MaximumAngle": 285
}
]
}
]
}
]
}

View File

@ -1,132 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 815,
"InteractionType": "None",
"AetheryteShortcut": "Amh Araeng - Mord Souq"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 32686,
"Locations": [
{
"Position": {
"X": 486.6385,
"Y": -28.30028,
"Z": -161.7677
},
"MinimumAngle": 155,
"MaximumAngle": 335
},
{
"Position": {
"X": 494.8945,
"Y": -21.52249,
"Z": -137.1469
}
}
]
},
{
"DataId": 32685,
"Locations": [
{
"Position": {
"X": 503.6436,
"Y": -23.70927,
"Z": -142.2979
}
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32689,
"Locations": [
{
"Position": {
"X": 657.1875,
"Y": -26.81644,
"Z": -235.4547
},
"MinimumAngle": 65,
"MaximumAngle": 270
}
]
},
{
"DataId": 32690,
"Locations": [
{
"Position": {
"X": 655.8629,
"Y": -27.85928,
"Z": -256.156
},
"MinimumAngle": 65,
"MaximumAngle": 235
},
{
"Position": {
"X": 656.6887,
"Y": -26.66475,
"Z": -230.172
},
"MinimumAngle": -75,
"MaximumAngle": 135
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32688,
"Locations": [
{
"Position": {
"X": 487.4965,
"Y": -33.01668,
"Z": -304.6423
},
"MinimumAngle": 150,
"MaximumAngle": 330
},
{
"Position": {
"X": 477.8194,
"Y": -31.87613,
"Z": -320.6989
},
"MinimumAngle": 180,
"MaximumAngle": 310
}
]
},
{
"DataId": 32687,
"Locations": [
{
"Position": {
"X": 481.1932,
"Y": -32.4591,
"Z": -313.7588
},
"MinimumAngle": 170,
"MaximumAngle": 305
}
]
}
]
}
]
}

View File

@ -1,136 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 815,
"InteractionType": "None",
"AetheryteShortcut": "Amh Araeng - Twine"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 34411,
"Locations": [
{
"Position": {
"X": -418.0731,
"Y": 16.25609,
"Z": -127.4739
},
"MinimumAngle": 240,
"MaximumAngle": 360
}
]
},
{
"DataId": 34412,
"Locations": [
{
"Position": {
"X": -436.8404,
"Y": 18.18649,
"Z": -121.9686
},
"MinimumAngle": -80,
"MaximumAngle": 75
},
{
"Position": {
"X": -412.7203,
"Y": 17.72583,
"Z": -144.2871
},
"MinimumAngle": -145,
"MaximumAngle": 5
}
]
}
]
},
{
"Nodes": [
{
"DataId": 34409,
"Locations": [
{
"Position": {
"X": -309.9351,
"Y": 22.43881,
"Z": -196.324
},
"MinimumAngle": -70,
"MaximumAngle": 60
}
]
},
{
"DataId": 34410,
"Locations": [
{
"Position": {
"X": -301.4662,
"Y": 22.08392,
"Z": -205.1306
},
"MinimumAngle": -145,
"MaximumAngle": -20
},
{
"Position": {
"X": -318.3467,
"Y": 23.1723,
"Z": -198.7676
},
"MinimumAngle": -45,
"MaximumAngle": 85
}
]
}
]
},
{
"Nodes": [
{
"DataId": 34414,
"Locations": [
{
"Position": {
"X": -229.6105,
"Y": 5.158276,
"Z": -103.3359
},
"MinimumAngle": -40,
"MaximumAngle": 170
},
{
"Position": {
"X": -247.2413,
"Y": 9.6758,
"Z": -128.0531
},
"MinimumAngle": 30,
"MaximumAngle": 125
}
]
},
{
"DataId": 34413,
"Locations": [
{
"Position": {
"X": -248.8988,
"Y": 7.998118,
"Z": -121.8732
},
"MinimumAngle": 0,
"MaximumAngle": 160
}
]
}
]
}
]
}

View File

@ -1,122 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 815,
"InteractionType": "None",
"AetheryteShortcut": "Amh Araeng - Twine"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 34430,
"Locations": [
{
"Position": {
"X": -449.9385,
"Y": -1.370689,
"Z": -409.258
}
},
{
"Position": {
"X": -445.7757,
"Y": -0.7637522,
"Z": -415.8121
}
}
]
},
{
"DataId": 34429,
"Locations": [
{
"Position": {
"X": -451.2528,
"Y": -1.577711,
"Z": -414.294
}
}
]
}
]
},
{
"Nodes": [
{
"DataId": 34427,
"Locations": [
{
"Position": {
"X": -346.0392,
"Y": 0.6433533,
"Z": -541.9421
}
}
]
},
{
"DataId": 34428,
"Locations": [
{
"Position": {
"X": -326.9622,
"Y": 1.097262,
"Z": -537.5435
},
"MinimumAngle": 0,
"MaximumAngle": 220
},
{
"Position": {
"X": -357.2281,
"Y": 0.4458784,
"Z": -513.3207
}
}
]
}
]
},
{
"Nodes": [
{
"DataId": 34431,
"Locations": [
{
"Position": {
"X": -441.0019,
"Y": -5.337227,
"Z": -636.1525
}
}
]
},
{
"DataId": 34432,
"Locations": [
{
"Position": {
"X": -464.1121,
"Y": -5.420424,
"Z": -649.8243
}
},
{
"Position": {
"X": -436.4872,
"Y": -5.205373,
"Z": -638.8244
},
"MinimumAngle": -95,
"MaximumAngle": 85
}
]
}
]
}
]
}

View File

@ -1,140 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"Position": {
"X": 329.38184,
"Y": 9.586891,
"Z": 749.2314
},
"TerritoryId": 816,
"InteractionType": "WalkTo",
"AetheryteShortcut": "Il Mheg - Lydha Lran",
"Fly": true,
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
}
}
},
{
"Position": {
"X": 351.29465,
"Y": -38.275272,
"Z": 763.0457
},
"TerritoryId": 816,
"InteractionType": "WalkTo",
"Fly": true,
"DisableNavmesh": true
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 32832,
"Locations": [
{
"Position": {
"X": 382.7488,
"Y": -72.47251,
"Z": 794.3513
}
},
{
"Position": {
"X": 388.7861,
"Y": -74.19925,
"Z": 801.0947
}
},
{
"Position": {
"X": 386.1797,
"Y": -73.5009,
"Z": 787.0967
}
}
]
},
{
"DataId": 32831,
"Locations": [
{
"Position": {
"X": 396.5799,
"Y": -76.29187,
"Z": 790.9022
}
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32830,
"Locations": [
{
"Position": {
"X": 492.6384,
"Y": -82.73045,
"Z": 804.714
}
},
{
"Position": {
"X": 482.808,
"Y": -82.61642,
"Z": 802.591
}
}
]
},
{
"DataId": 32829,
"Locations": [
{
"Position": {
"X": 493.5814,
"Y": -82.43644,
"Z": 790.831
}
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32827,
"Locations": [
{
"Position": {
"X": 490.9451,
"Y": -97.88062,
"Z": 636.6115
}
}
]
},
{
"DataId": 32828,
"Locations": [
{
"Position": {
"X": 491.5274,
"Y": -100.762,
"Z": 626.6958
}
}
]
}
]
}
]
}

View File

@ -1,158 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"Position": {
"X": 491.82068,
"Y": 3.9304812,
"Z": 487.9401
},
"TerritoryId": 816,
"InteractionType": "WalkTo",
"AetheryteShortcut": "Il Mheg - Lydha Lran",
"Fly": true,
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
}
}
},
{
"Position": {
"X": 506.00256,
"Y": -37.76961,
"Z": 485.49347
},
"TerritoryId": 816,
"InteractionType": "WalkTo",
"Fly": true,
"DisableNavmesh": true
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 32836,
"Locations": [
{
"Position": {
"X": 539.5437,
"Y": -81.62054,
"Z": 520.1647
},
"MinimumAngle": -30,
"MaximumAngle": 165
},
{
"Position": {
"X": 555.8599,
"Y": -73.65717,
"Z": 494.6164
},
"MinimumAngle": 35,
"MaximumAngle": 240
},
{
"Position": {
"X": 576.4164,
"Y": -69.75835,
"Z": 512.9263
},
"MinimumAngle": -75,
"MaximumAngle": 70
}
]
},
{
"DataId": 32835,
"Locations": [
{
"Position": {
"X": 552.5504,
"Y": -78.23183,
"Z": 512.429
},
"MinimumAngle": -30,
"MaximumAngle": 135
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32838,
"Locations": [
{
"Position": {
"X": 652.7063,
"Y": -46.64378,
"Z": 488.4543
},
"MinimumAngle": 0,
"MaximumAngle": 120
},
{
"Position": {
"X": 669.2959,
"Y": -47.14824,
"Z": 513.9606
},
"MinimumAngle": -20,
"MaximumAngle": 105
}
]
},
{
"DataId": 32837,
"Locations": [
{
"Position": {
"X": 659.1685,
"Y": -46.65159,
"Z": 499.8015
},
"MinimumAngle": 0,
"MaximumAngle": 125
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32834,
"Locations": [
{
"Position": {
"X": 576.1583,
"Y": -46.68682,
"Z": 375.5306
},
"MinimumAngle": -40,
"MaximumAngle": 150
}
]
},
{
"DataId": 32833,
"Locations": [
{
"Position": {
"X": 571.1834,
"Y": -46.41214,
"Z": 360.5112
},
"MinimumAngle": 0,
"MaximumAngle": 115
}
]
}
]
}
]
}

View File

@ -1,134 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 816,
"InteractionType": "None",
"AetheryteShortcut": "Il Mheg - Wolekdorf"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 34407,
"Locations": [
{
"Position": {
"X": 398.7715,
"Y": 58.00708,
"Z": -535.3972
},
"MinimumAngle": 95,
"MaximumAngle": 225
}
]
},
{
"DataId": 34408,
"Locations": [
{
"Position": {
"X": 395.787,
"Y": 57.58823,
"Z": -532.1421
},
"MinimumAngle": 105,
"MaximumAngle": 180,
"MinimumDistance": 1.5,
"MaximumDistance": 3
},
{
"Position": {
"X": 403.3334,
"Y": 58.56588,
"Z": -533.6083
},
"MinimumAngle": 155,
"MaximumAngle": 325
}
]
}
]
},
{
"Nodes": [
{
"DataId": 34405,
"Locations": [
{
"Position": {
"X": 563.6605,
"Y": 96.62567,
"Z": -409.83
},
"MinimumAngle": 60,
"MaximumAngle": 205
}
]
},
{
"DataId": 34406,
"Locations": [
{
"Position": {
"X": 584.2038,
"Y": 97.61217,
"Z": -429.3185
}
},
{
"Position": {
"X": 541.3574,
"Y": 95.33327,
"Z": -385.5562
}
}
]
}
]
},
{
"Nodes": [
{
"DataId": 34403,
"Locations": [
{
"Position": {
"X": 569.0512,
"Y": 96.43839,
"Z": -571.2072
},
"MinimumAngle": 45,
"MaximumAngle": 190
}
]
},
{
"DataId": 34404,
"Locations": [
{
"Position": {
"X": 557.5918,
"Y": 92.0403,
"Z": -582.1814
},
"MinimumAngle": 70,
"MaximumAngle": 200
},
{
"Position": {
"X": 573.9432,
"Y": 96.50874,
"Z": -575.4167
},
"MinimumAngle": 85,
"MaximumAngle": 220
}
]
}
]
}
]
}

View File

@ -1,120 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 816,
"InteractionType": "None",
"AetheryteShortcut": "Il Mheg - Wolekdorf"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 34422,
"Locations": [
{
"Position": {
"X": -161.9915,
"Y": 60.04895,
"Z": -647.3901
}
},
{
"Position": {
"X": -179.2945,
"Y": 60.84981,
"Z": -630.9084
}
}
]
},
{
"DataId": 34421,
"Locations": [
{
"Position": {
"X": -182.311,
"Y": 60.81965,
"Z": -640.2197
}
}
]
}
]
},
{
"Nodes": [
{
"DataId": 34423,
"Locations": [
{
"Position": {
"X": -182.0749,
"Y": 60.70063,
"Z": -567.6271
}
}
]
},
{
"DataId": 34424,
"Locations": [
{
"Position": {
"X": -184.7115,
"Y": 59.23207,
"Z": -573.9592
}
},
{
"Position": {
"X": -171.0273,
"Y": 62.20385,
"Z": -576.3321
}
}
]
}
]
},
{
"Nodes": [
{
"DataId": 34425,
"Locations": [
{
"Position": {
"X": -333.3387,
"Y": 82.66466,
"Z": -505.7937
}
}
]
},
{
"DataId": 34426,
"Locations": [
{
"Position": {
"X": -333.0683,
"Y": 82.72758,
"Z": -501.5885
},
"MinimumAngle": 75,
"MaximumAngle": 265
},
{
"Position": {
"X": -349.0388,
"Y": 89.44427,
"Z": -512.492
}
}
]
}
]
}
]
}

View File

@ -1,134 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 814,
"InteractionType": "None",
"AetheryteShortcut": "Kholusia - Wright"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 32816,
"Locations": [
{
"Position": {
"X": -210.0211,
"Y": 27.87489,
"Z": 244.1517
}
},
{
"Position": {
"X": -184.2966,
"Y": 33.53575,
"Z": 220.416
},
"MinimumAngle": -70,
"MaximumAngle": 100
}
]
},
{
"DataId": 32815,
"Locations": [
{
"Position": {
"X": -194.756,
"Y": 30.00866,
"Z": 235.5003
},
"MinimumAngle": 85,
"MaximumAngle": 290
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32819,
"Locations": [
{
"Position": {
"X": -184.1455,
"Y": 44.3671,
"Z": 162.0892
},
"MinimumAngle": -90,
"MaximumAngle": 100
}
]
},
{
"DataId": 32820,
"Locations": [
{
"Position": {
"X": -164.9459,
"Y": 43.40527,
"Z": 153.1118
},
"MinimumAngle": -100,
"MaximumAngle": 75
},
{
"Position": {
"X": -167.3752,
"Y": 47.25292,
"Z": 136.0359
},
"MinimumAngle": -105,
"MaximumAngle": 105
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32818,
"Locations": [
{
"Position": {
"X": -246.385,
"Y": 72.55199,
"Z": 90.56253
},
"MinimumAngle": -85,
"MaximumAngle": 80
},
{
"Position": {
"X": -208.7709,
"Y": 77.46264,
"Z": 68.17573
},
"MinimumAngle": -105,
"MaximumAngle": 90
}
]
},
{
"DataId": 32817,
"Locations": [
{
"Position": {
"X": -243.0861,
"Y": 79.1743,
"Z": 75.10091
},
"MinimumAngle": -120,
"MaximumAngle": 95
}
]
}
]
}
]
}

View File

@ -1,136 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 814,
"InteractionType": "None",
"AetheryteShortcut": "Kholusia - Wright"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 32825,
"Locations": [
{
"Position": {
"X": -482.4797,
"Y": 39.54587,
"Z": 243.9857
},
"MinimumAngle": -95,
"MaximumAngle": 30
}
]
},
{
"DataId": 32826,
"Locations": [
{
"Position": {
"X": -479.1443,
"Y": 39.79183,
"Z": 240.7795
},
"MinimumAngle": -75,
"MaximumAngle": 15
},
{
"Position": {
"X": -486.3334,
"Y": 39.4147,
"Z": 246.6178
},
"MinimumAngle": -105,
"MaximumAngle": 35
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32824,
"Locations": [
{
"Position": {
"X": -591.8113,
"Y": 26.1771,
"Z": 413.057
},
"MinimumAngle": 165,
"MaximumAngle": 265
},
{
"Position": {
"X": -583.5104,
"Y": 26.20471,
"Z": 419.7504
},
"MinimumAngle": 180,
"MaximumAngle": 280
}
]
},
{
"DataId": 32823,
"Locations": [
{
"Position": {
"X": -587.8331,
"Y": 26.20816,
"Z": 416.5177
},
"MinimumAngle": 155,
"MaximumAngle": 250
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32821,
"Locations": [
{
"Position": {
"X": -667.9664,
"Y": 24.58142,
"Z": 365.2537
},
"MinimumAngle": 165,
"MaximumAngle": 240
}
]
},
{
"DataId": 32822,
"Locations": [
{
"Position": {
"X": -672.0605,
"Y": 24.69111,
"Z": 363.4729
},
"MinimumAngle": 115,
"MaximumAngle": 215
},
{
"Position": {
"X": -663.9247,
"Y": 24.84755,
"Z": 366.6812
},
"MinimumAngle": 170,
"MaximumAngle": 310
}
]
}
]
}
]
}

View File

@ -1,69 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 817,
"InteractionType": "None",
"AetheryteShortcut": "Rak'tika - Slitherbough"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 32993,
"Locations": [
{
"Position": {
"X": -704.8221,
"Y": 2.162976,
"Z": 563.2257
},
"MinimumAngle": 35,
"MaximumAngle": 120,
"MinimumDistance": 1,
"MaximumDistance": 2.4
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32991,
"Locations": [
{
"Position": {
"X": -702.9366,
"Y": 3.147394,
"Z": 580.9824
},
"MinimumAngle": 20,
"MaximumAngle": 120
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32992,
"Locations": [
{
"Position": {
"X": -731.9697,
"Y": 2.883299,
"Z": 562.4577
},
"MinimumAngle": 100,
"MaximumAngle": 245
}
]
}
]
}
]
}

View File

@ -1,90 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"Position": {
"X": -790.09827,
"Y": 5.6,
"Z": 239.26955
},
"TerritoryId": 817,
"InteractionType": "WalkTo",
"AetheryteShortcut": "Rak'tika - Slitherbough",
"Fly": true
},
{
"Position": {
"X": -789.0584,
"Y": -26.2001,
"Z": 239.5829
},
"TerritoryId": 817,
"InteractionType": "WalkTo",
"DisableNavmesh": true,
"Fly": true
},
{
"TerritoryId": 817,
"InteractionType": "None"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 32996,
"Locations": [
{
"Position": {
"X": -831.8083,
"Y": -41.57311,
"Z": 115.2932
},
"MinimumAngle": 40,
"MaximumAngle": 145,
"MinimumDistance": 1.4,
"MaximumDistance": 3
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32994,
"Locations": [
{
"Position": {
"X": -874.5662,
"Y": -38.51086,
"Z": 112.2362
},
"MinimumAngle": -75,
"MaximumAngle": 10
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32995,
"Locations": [
{
"Position": {
"X": -885.0585,
"Y": -37.47266,
"Z": 140.9555
},
"MinimumAngle": 225,
"MaximumAngle": 335
}
]
}
]
}
]
}

View File

@ -1,66 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 817,
"InteractionType": "None"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 32997,
"Locations": [
{
"Position": {
"X": 476.9907,
"Y": -2.17159,
"Z": -464.3045
},
"MinimumAngle": -10,
"MaximumAngle": 110
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32999,
"Locations": [
{
"Position": {
"X": 447.1716,
"Y": -0.6280748,
"Z": -467.6738
},
"MinimumAngle": -120,
"MaximumAngle": -5
}
]
}
]
},
{
"Nodes": [
{
"DataId": 32998,
"Locations": [
{
"Position": {
"X": 438.931,
"Y": -1.880641,
"Z": -455.9972
},
"MinimumAngle": -80,
"MaximumAngle": 40
}
]
}
]
}
]
}

View File

@ -1,66 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 817,
"InteractionType": "None"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 33002,
"Locations": [
{
"Position": {
"X": 164.1997,
"Y": 24.4362,
"Z": 58.99305
},
"MinimumAngle": 85,
"MaximumAngle": 225
}
]
}
]
},
{
"Nodes": [
{
"DataId": 33001,
"Locations": [
{
"Position": {
"X": 131.2174,
"Y": 27.21391,
"Z": 45.33313
},
"MinimumAngle": 160,
"MaximumAngle": 275
}
]
}
]
},
{
"Nodes": [
{
"DataId": 33000,
"Locations": [
{
"Position": {
"X": 65.9342,
"Y": 22.4589,
"Z": 45.68196
},
"MinimumAngle": 180,
"MaximumAngle": 265
}
]
}
]
}
]
}

View File

@ -1,67 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 817,
"InteractionType": "None",
"AetheryteShortcut": "Rak'tika - Slitherbough"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 33005,
"Locations": [
{
"Position": {
"X": 214.7744,
"Y": -19.57758,
"Z": 623.6767
},
"MinimumAngle": -15,
"MaximumAngle": 55
}
]
}
]
},
{
"Nodes": [
{
"DataId": 33004,
"Locations": [
{
"Position": {
"X": 235.4031,
"Y": -17.474,
"Z": 645.2612
},
"MinimumAngle": -75,
"MaximumAngle": 60
}
]
}
]
},
{
"Nodes": [
{
"DataId": 33003,
"Locations": [
{
"Position": {
"X": 263.691,
"Y": -15.7453,
"Z": 659.6932
},
"MinimumAngle": 5,
"MaximumAngle": 110
}
]
}
]
}
]
}

View File

@ -1,65 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 817,
"InteractionType": "None",
"AetheryteShortcut": "Rak'tika - Slitherbough"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 33007,
"Locations": [
{
"Position": {
"X": -643.0819,
"Y": 1.715566,
"Z": 600.3007
}
}
]
}
]
},
{
"Nodes": [
{
"DataId": 33006,
"Locations": [
{
"Position": {
"X": -664.0663,
"Y": 4.130917,
"Z": 608.2639
},
"MinimumAngle": 100,
"MaximumAngle": 235
}
]
}
]
},
{
"Nodes": [
{
"DataId": 33008,
"Locations": [
{
"Position": {
"X": -689.2495,
"Y": 4.592032,
"Z": 603.05
},
"MinimumAngle": -95,
"MaximumAngle": 85
}
]
}
]
}
]
}

View File

@ -1,82 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"Position": {
"X": -790.09827,
"Y": 5.6,
"Z": 239.26955
},
"TerritoryId": 817,
"InteractionType": "WalkTo",
"AetheryteShortcut": "Rak'tika - Slitherbough",
"Fly": true
},
{
"Position": {
"X": -789.0584,
"Y": -26.2001,
"Z": 239.5829
},
"TerritoryId": 817,
"InteractionType": "WalkTo",
"DisableNavmesh": true,
"Fly": true
},
{
"TerritoryId": 817,
"InteractionType": "None"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 33011,
"Locations": [
{
"Position": {
"X": -833.2918,
"Y": -44.18139,
"Z": 229.6708
}
}
]
}
]
},
{
"Nodes": [
{
"DataId": 33010,
"Locations": [
{
"Position": {
"X": -869.9858,
"Y": -41.20595,
"Z": 221.9869
}
}
]
}
]
},
{
"Nodes": [
{
"DataId": 33009,
"Locations": [
{
"Position": {
"X": -847.5519,
"Y": -41.43839,
"Z": 195.9766
}
}
]
}
]
}
]
}

View File

@ -1,64 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 817,
"InteractionType": "None"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 33013,
"Locations": [
{
"Position": {
"X": 471.6041,
"Y": 0.1209641,
"Z": -476.659
},
"MinimumAngle": 0,
"MaximumAngle": 125
}
]
}
]
},
{
"Nodes": [
{
"DataId": 33012,
"Locations": [
{
"Position": {
"X": 448.4756,
"Y": 2.033593,
"Z": -482.1674
},
"MinimumAngle": 155,
"MaximumAngle": 345
}
]
}
]
},
{
"Nodes": [
{
"DataId": 33014,
"Locations": [
{
"Position": {
"X": 433.1882,
"Y": 10.99631,
"Z": -517.6039
}
}
]
}
]
}
]
}

View File

@ -1,66 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 817,
"InteractionType": "None"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 33015,
"Locations": [
{
"Position": {
"X": 301.3512,
"Y": 8.535884,
"Z": 8.796566
},
"MinimumAngle": 55,
"MaximumAngle": 245
}
]
}
]
},
{
"Nodes": [
{
"DataId": 33016,
"Locations": [
{
"Position": {
"X": 273.905,
"Y": 10.59709,
"Z": 19.72124
},
"MinimumAngle": 135,
"MaximumAngle": 340
}
]
}
]
},
{
"Nodes": [
{
"DataId": 33017,
"Locations": [
{
"Position": {
"X": 271.7985,
"Y": 7.424402,
"Z": -29.68495
},
"MinimumAngle": -165,
"MaximumAngle": 15
}
]
}
]
}
]
}

View File

@ -1,67 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 817,
"InteractionType": "None",
"AetheryteShortcut": "Rak'tika - Slitherbough"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 33020,
"Locations": [
{
"Position": {
"X": 226.1767,
"Y": -20.10281,
"Z": 643.5543
},
"MinimumAngle": -50,
"MaximumAngle": 120
}
]
}
]
},
{
"Nodes": [
{
"DataId": 33018,
"Locations": [
{
"Position": {
"X": 248.9525,
"Y": -17.98949,
"Z": 657.4498
},
"MinimumAngle": -55,
"MaximumAngle": 100,
"MinimumDistance": 1,
"MaximumDistance": 3
}
]
}
]
},
{
"Nodes": [
{
"DataId": 33019,
"Locations": [
{
"Position": {
"X": 209.0277,
"Y": -25.56828,
"Z": 701.8604
}
}
]
}
]
}
]
}

View File

@ -1,132 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 818,
"InteractionType": "None",
"AetheryteShortcut": "Tempest - Ondo Cups"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 34458,
"Locations": [
{
"Position": {
"X": 44.00173,
"Y": 428.2346,
"Z": -656.6179
},
"MinimumAngle": -65,
"MaximumAngle": 10
},
{
"Position": {
"X": 16.55597,
"Y": 426.627,
"Z": -670.5577
},
"MinimumAngle": -25,
"MaximumAngle": 110
}
]
},
{
"DataId": 34457,
"Locations": [
{
"Position": {
"X": 37.23584,
"Y": 427.2601,
"Z": -653.0619
},
"MinimumAngle": 245,
"MaximumAngle": 335
}
]
}
]
},
{
"Nodes": [
{
"DataId": 34461,
"Locations": [
{
"Position": {
"X": -65.51347,
"Y": 400.3132,
"Z": -539.7745
}
}
]
},
{
"DataId": 34462,
"Locations": [
{
"Position": {
"X": -67.70384,
"Y": 400.7841,
"Z": -542.4638
},
"MinimumAngle": -85,
"MaximumAngle": 55
},
{
"Position": {
"X": -55.10947,
"Y": 399.0878,
"Z": -536.9024
},
"MinimumDistance": 1,
"MaximumDistance": 2.5
}
]
}
]
},
{
"Nodes": [
{
"DataId": 34459,
"Locations": [
{
"Position": {
"X": -216.086,
"Y": 426.8226,
"Z": -649.2361
}
}
]
},
{
"DataId": 34460,
"Locations": [
{
"Position": {
"X": -215.228,
"Y": 427.4708,
"Z": -653.9598
},
"MinimumAngle": -55,
"MaximumAngle": 135
},
{
"Position": {
"X": -201.5463,
"Y": 427.882,
"Z": -655.0467
},
"MinimumAngle": -70,
"MaximumAngle": 65
}
]
}
]
}
]
}

View File

@ -1,136 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 818,
"InteractionType": "None",
"AetheryteShortcut": "Tempest - Ondo Cups"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 34466,
"Locations": [
{
"Position": {
"X": 403.2184,
"Y": 408.0598,
"Z": -755.5223
},
"MinimumAngle": 80,
"MaximumAngle": 190
},
{
"Position": {
"X": 438.6136,
"Y": 416.6389,
"Z": -758.985
},
"MinimumAngle": 110,
"MaximumAngle": 240
}
]
},
{
"DataId": 34465,
"Locations": [
{
"Position": {
"X": 415.5816,
"Y": 412.4482,
"Z": -758.7325
},
"MinimumAngle": 90,
"MaximumAngle": 195
}
]
}
]
},
{
"Nodes": [
{
"DataId": 34463,
"Locations": [
{
"Position": {
"X": 415.8845,
"Y": 431.2351,
"Z": -896.2997
},
"MinimumAngle": -65,
"MaximumAngle": 45
}
]
},
{
"DataId": 34464,
"Locations": [
{
"Position": {
"X": 400.7106,
"Y": 428.3826,
"Z": -893.9595
},
"MinimumAngle": -40,
"MaximumAngle": 50
},
{
"Position": {
"X": 431.8092,
"Y": 434.546,
"Z": -902.1445
},
"MinimumAngle": -95,
"MaximumAngle": 35
}
]
}
]
},
{
"Nodes": [
{
"DataId": 34467,
"Locations": [
{
"Position": {
"X": 284.0778,
"Y": 433.4644,
"Z": -916.6171
},
"MinimumAngle": -75,
"MaximumAngle": 30
}
]
},
{
"DataId": 34468,
"Locations": [
{
"Position": {
"X": 278.6176,
"Y": 428.9509,
"Z": -904.3234
},
"MinimumAngle": 220,
"MaximumAngle": 345
},
{
"Position": {
"X": 305.7502,
"Y": 432.027,
"Z": -912.7272
},
"MinimumAngle": -80,
"MaximumAngle": 40
}
]
}
]
}
]
}

View File

@ -1,163 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 961,
"InteractionType": "None",
"AetheryteShortcut": "Elpis - Poieten Oikos"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 33938,
"Locations": [
{
"Position": {
"X": 44.65063,
"Y": 100.2818,
"Z": -531.6971
},
"MinimumAngle": 150,
"MaximumAngle": 310
}
]
},
{
"DataId": 33939,
"Locations": [
{
"Position": {
"X": 33.19277,
"Y": 104.5029,
"Z": -555.932
},
"MinimumAngle": 190,
"MaximumAngle": 350
},
{
"Position": {
"X": 65.9342,
"Y": 97.38677,
"Z": -524.9155
},
"MinimumAngle": 125,
"MaximumAngle": 295
},
{
"Position": {
"X": 74.52164,
"Y": 98.45871,
"Z": -489.864
},
"MinimumAngle": 165,
"MaximumAngle": 300
}
]
}
]
},
{
"Nodes": [
{
"DataId": 33941,
"Locations": [
{
"Position": {
"X": 279.4078,
"Y": 101.9103,
"Z": -511.9555
},
"MinimumAngle": 80,
"MaximumAngle": 215
},
{
"Position": {
"X": 265.2476,
"Y": 100.4918,
"Z": -491.8746
},
"MinimumAngle": 110,
"MaximumAngle": 180
},
{
"Position": {
"X": 290.6152,
"Y": 102.41,
"Z": -549.2336
},
"MinimumAngle": 40,
"MaximumAngle": 185
}
]
},
{
"DataId": 33940,
"Locations": [
{
"Position": {
"X": 288.9601,
"Y": 101.2474,
"Z": -520.9278
},
"MinimumAngle": 35,
"MaximumAngle": 145
}
]
}
]
},
{
"Nodes": [
{
"DataId": 33937,
"Locations": [
{
"Position": {
"X": 124.7882,
"Y": 105.6518,
"Z": -712.3575
},
"MinimumAngle": -45,
"MaximumAngle": 70
},
{
"Position": {
"X": 94.71277,
"Y": 105.52,
"Z": -696.7798
},
"MinimumAngle": -60,
"MaximumAngle": 80
},
{
"Position": {
"X": 172.8746,
"Y": 102.9022,
"Z": -700.0879
},
"MinimumAngle": -50,
"MaximumAngle": 125
}
]
},
{
"DataId": 33936,
"Locations": [
{
"Position": {
"X": 156.3894,
"Y": 103.6386,
"Z": -707.1092
},
"MinimumAngle": -85,
"MaximumAngle": 60
}
]
}
]
}
]
}

View File

@ -1,165 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 961,
"InteractionType": "None",
"AetheryteShortcut": "Elpis - Poieten Oikos"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 33945,
"Locations": [
{
"Position": {
"X": -478.091,
"Y": 136.505,
"Z": -144.7721
},
"MinimumAngle": 185,
"MaximumAngle": 360
},
{
"Position": {
"X": -472.7283,
"Y": 136.9691,
"Z": -153.0142
},
"MinimumAngle": -105,
"MaximumAngle": 20,
"MinimumDistance": 1.6,
"MaximumDistance": 3
},
{
"Position": {
"X": -457.2324,
"Y": 136.2298,
"Z": -153.2787
},
"MinimumAngle": 70,
"MaximumAngle": 195
}
]
},
{
"DataId": 33944,
"Locations": [
{
"Position": {
"X": -477.1867,
"Y": 137.1741,
"Z": -150.0524
},
"MinimumAngle": -95,
"MaximumAngle": 20
}
]
}
]
},
{
"Nodes": [
{
"DataId": 33946,
"Locations": [
{
"Position": {
"X": -335.5337,
"Y": 148.5269,
"Z": -83.30743
},
"MinimumAngle": 140,
"MaximumAngle": 275
}
]
},
{
"DataId": 33947,
"Locations": [
{
"Position": {
"X": -333.4615,
"Y": 148.59,
"Z": -78.42037
},
"MinimumAngle": -160,
"MaximumAngle": -15
},
{
"Position": {
"X": -342.3078,
"Y": 145.4429,
"Z": -109.3348
},
"MinimumAngle": 210,
"MaximumAngle": 355
},
{
"Position": {
"X": -327.4102,
"Y": 143.6382,
"Z": -118.3601
},
"MinimumAngle": -30,
"MaximumAngle": 85
}
]
}
]
},
{
"Nodes": [
{
"DataId": 33942,
"Locations": [
{
"Position": {
"X": -291.2093,
"Y": 136.4047,
"Z": -228.9244
},
"MinimumAngle": 120,
"MaximumAngle": 225
}
]
},
{
"DataId": 33943,
"Locations": [
{
"Position": {
"X": -343.5337,
"Y": 140.0085,
"Z": -243.2652
},
"MinimumAngle": 115,
"MaximumAngle": 255
},
{
"Position": {
"X": -337.3867,
"Y": 136.3985,
"Z": -237.7285
},
"MinimumAngle": -130,
"MaximumAngle": 10
},
{
"Position": {
"X": -304.9684,
"Y": 136.2381,
"Z": -229.2424
},
"MinimumAngle": 115,
"MaximumAngle": 240
}
]
}
]
}
]
}

View File

@ -1,118 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"TerritoryId": 961,
"InteractionType": "None",
"AetheryteShortcut": "Elpis - Anagnorisis"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 34020,
"Locations": [
{
"Position": {
"X": 44.78436,
"Y": 7.229512,
"Z": 98.57001
}
}
]
},
{
"DataId": 34021,
"Locations": [
{
"Position": {
"X": 46.74728,
"Y": 7.877012,
"Z": 88.79111
}
},
{
"Position": {
"X": 34.40783,
"Y": 3.908499,
"Z": 67.13975
}
}
]
}
]
},
{
"Nodes": [
{
"DataId": 34023,
"Locations": [
{
"Position": {
"X": -91.27831,
"Y": -8.489767,
"Z": 69.08894
}
},
{
"Position": {
"X": -117.3572,
"Y": -11.70367,
"Z": 38.49854
}
}
]
},
{
"DataId": 34022,
"Locations": [
{
"Position": {
"X": -124.86,
"Y": -11.29384,
"Z": 89.80068
}
}
]
}
]
},
{
"Nodes": [
{
"DataId": 34019,
"Locations": [
{
"Position": {
"X": -13.48685,
"Y": 4.629431,
"Z": 208.5452
}
},
{
"Position": {
"X": -65.74567,
"Y": -2.738637,
"Z": 195.961
}
}
]
},
{
"DataId": 34018,
"Locations": [
{
"Position": {
"X": -41.94958,
"Y": -0.697382,
"Z": 173.7239
}
}
]
}
]
}
]
}

View File

@ -1,84 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"DataId": 2013074,
"Position": {
"X": 304.3412,
"Y": 483.48206,
"Z": 143.11438
},
"TerritoryId": 960,
"InteractionType": "Interact",
"TargetTerritoryId": 1073,
"SkipConditions": {
"StepIf": {
"InTerritory": [
1073
]
}
}
},
{
"TerritoryId": 1073,
"InteractionType": "None"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 31819,
"Locations": [
{
"Position": {
"X": -5.492728,
"Y": 499.6548,
"Z": 37.58726
},
"MinimumAngle": 145,
"MaximumAngle": 300
}
]
}
]
},
{
"Nodes": [
{
"DataId": 31700,
"Locations": [
{
"Position": {
"X": 27.22863,
"Y": 499.8322,
"Z": 2.94655
},
"MinimumAngle": -15,
"MaximumAngle": 210
}
]
}
]
},
{
"Nodes": [
{
"DataId": 31489,
"Locations": [
{
"Position": {
"X": 28.38036,
"Y": 500.019,
"Z": -0.7058061
},
"MinimumAngle": 0,
"MaximumAngle": 210
}
]
}
]
}
]
}

View File

@ -1,80 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"DataId": 2013074,
"Position": {
"X": 304.3412,
"Y": 483.48206,
"Z": 143.11438
},
"TerritoryId": 960,
"InteractionType": "Interact",
"TargetTerritoryId": 1073,
"SkipConditions": {
"StepIf": {
"InTerritory": [
1073
]
}
}
},
{
"TerritoryId": 1073,
"InteractionType": "None"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 31822,
"Locations": [
{
"Position": {
"X": -4.054798,
"Y": 494.3483,
"Z": -54.37905
}
}
]
}
]
},
{
"Nodes": [
{
"DataId": 31821,
"Locations": [
{
"Position": {
"X": -5.287843,
"Y": 494.2204,
"Z": -66.80152
}
}
]
}
]
},
{
"Nodes": [
{
"DataId": 31820,
"Locations": [
{
"Position": {
"X": -9.143447,
"Y": 494.1166,
"Z": -82.62958
},
"MinimumAngle": -75,
"MaximumAngle": 95
}
]
}
]
}
]
}

View File

@ -1,78 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"DataId": 2013074,
"Position": {
"X": 304.3412,
"Y": 483.48206,
"Z": 143.11438
},
"TerritoryId": 960,
"InteractionType": "Interact",
"TargetTerritoryId": 1073,
"SkipConditions": {
"StepIf": {
"InTerritory": [
1073
]
}
}
},
{
"TerritoryId": 1073,
"InteractionType": "None"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 33840,
"Locations": [
{
"Position": {
"X": 10.28351,
"Y": 486.144,
"Z": -136.9586
}
}
]
}
]
},
{
"Nodes": [
{
"DataId": 33841,
"Locations": [
{
"Position": {
"X": 19.46428,
"Y": 485.9226,
"Z": -136.738
}
}
]
}
]
},
{
"Nodes": [
{
"DataId": 33643,
"Locations": [
{
"Position": {
"X": 14.21117,
"Y": 486.0551,
"Z": -143.435
}
}
]
}
]
}
]
}

View File

@ -1,84 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"DataId": 2013074,
"Position": {
"X": 304.3412,
"Y": 483.48206,
"Z": 143.11438
},
"TerritoryId": 960,
"InteractionType": "Interact",
"TargetTerritoryId": 1073,
"SkipConditions": {
"StepIf": {
"InTerritory": [
1073
]
}
}
},
{
"TerritoryId": 1073,
"InteractionType": "None"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 33842,
"Locations": [
{
"Position": {
"X": -71.72573,
"Y": 495.8044,
"Z": -23.42241
},
"MinimumAngle": -15,
"MaximumAngle": 90
}
]
}
]
},
{
"Nodes": [
{
"DataId": 33846,
"Locations": [
{
"Position": {
"X": -85.765,
"Y": 493.9822,
"Z": -11.33734
},
"MinimumAngle": -185,
"MaximumAngle": 20
}
]
}
]
},
{
"Nodes": [
{
"DataId": 33847,
"Locations": [
{
"Position": {
"X": -100.52,
"Y": 493.6702,
"Z": -9.731167
},
"MinimumAngle": -185,
"MaximumAngle": -25
}
]
}
]
}
]
}

View File

@ -1,84 +0,0 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
"Author": "liza",
"Steps": [
{
"DataId": 2013074,
"Position": {
"X": 304.3412,
"Y": 483.48206,
"Z": 143.11438
},
"TerritoryId": 960,
"InteractionType": "Interact",
"TargetTerritoryId": 1073,
"SkipConditions": {
"StepIf": {
"InTerritory": [
1073
]
}
}
},
{
"TerritoryId": 1073,
"InteractionType": "None"
}
],
"Groups": [
{
"Nodes": [
{
"DataId": 33848,
"Locations": [
{
"Position": {
"X": -109.0629,
"Y": 491.0458,
"Z": 34.78553
},
"MinimumAngle": -110,
"MaximumAngle": 35
}
]
}
]
},
{
"Nodes": [
{
"DataId": 33849,
"Locations": [
{
"Position": {
"X": -110.2371,
"Y": 491.0116,
"Z": 54.68977
},
"MinimumAngle": -170,
"MaximumAngle": -45
}
]
}
]
},
{
"Nodes": [
{
"DataId": 33850,
"Locations": [
{
"Position": {
"X": -101.4737,
"Y": 490.7073,
"Z": 54.9267
},
"MinimumAngle": 90,
"MaximumAngle": 220
}
]
}
]
}
]
}

Some files were not shown because too many files have changed in this diff Show More