diff --git a/Assets/Scripts/Functional Definitions/Abilities/Control.cs b/Assets/Scripts/Functional Definitions/Abilities/Control.cs index 2838bb463..5bf32ac21 100644 --- a/Assets/Scripts/Functional Definitions/Abilities/Control.cs +++ b/Assets/Scripts/Functional Definitions/Abilities/Control.cs @@ -7,7 +7,7 @@ public class Control : PassiveAbility const float healthAddition = 200; const float damageAddition = 200; - + private bool activated; List boosted = new List(); protected override void Awake() @@ -17,18 +17,24 @@ protected override void Awake() } public override void SetDestroyed(bool input) { - for (int i = 0; i < boosted.Count; i++) + if(activated && input) { - var entity = boosted[i]; - var maxHealths = entity.GetMaxHealth(); - maxHealths[0] -= healthAddition * abilityTier; - - // Remove a percentage of health from the ship, based on what max health the core had before destruction - var healths = entity.GetHealth(); - healths[0] -= (healths[0] / maxHealths[0]) * healthAddition * abilityTier; - entity.damageAddition -= damageAddition; + for (int i = 0; i < boosted.Count; i++) + { + var entity = boosted[i]; + if (!entity) + continue; + var maxHealths = entity.GetMaxHealth(); + maxHealths[0] -= healthAddition * abilityTier; + + // Remove a percentage of health from the ship, based on what max health the core had before destruction + var healths = entity.GetHealth(); + healths[0] -= (healths[0] / maxHealths[0]) * healthAddition * abilityTier; + entity.damageAddition -= damageAddition; + } + Entity.OnEntitySpawn -= EntitySpawn; } - Entity.OnEntitySpawn -= EntitySpawn; + base.SetDestroyed(input); } @@ -39,6 +45,9 @@ protected override void Execute() if (!(AIData.entities[i] is Turret) && AIData.entities[i].faction == Core.faction && AIData.entities[i] != Core) // All drones or only ones owned by the player? { var entity = AIData.entities[i]; + if(!entity) + continue; + var maxHealths = entity.GetMaxHealth(); maxHealths[0] += healthAddition * abilityTier; var healths = entity.GetHealth(); @@ -47,6 +56,7 @@ protected override void Execute() boosted.Add(entity); } } + activated = true; Entity.OnEntitySpawn += EntitySpawn; } @@ -59,29 +69,14 @@ void EntitySpawn(Entity entity) var healths = entity.GetHealth(); healths[0] += healthAddition * abilityTier; entity.damageAddition += damageAddition; - boosted.Add(entity); + if(!boosted.Contains(entity)) + boosted.Add(entity); } } - private void OnDestroy() + void OnDestroy() { - if (!isDestroyed) - { - for (int i = 0; i < boosted.Count; i++) - { - var entity = boosted[i]; - if (!entity) - continue; - var maxHealths = entity.GetMaxHealth(); - maxHealths[0] -= healthAddition * abilityTier; - - // Remove a percentage of health from the ship, based on what max health the core had before destruction - var healths = entity.GetHealth(); - healths[0] -= (healths[0] / maxHealths[0]) * healthAddition * abilityTier; - entity.damageAddition -= damageAddition; - } - - Entity.OnEntitySpawn -= EntitySpawn; - } + if(!isDestroyed) + SetDestroyed(true); } } diff --git a/Assets/Scripts/Functional Definitions/Interaction Definitions/SectorManager.cs b/Assets/Scripts/Functional Definitions/Interaction Definitions/SectorManager.cs index 1fabcc503..9912b88bf 100644 --- a/Assets/Scripts/Functional Definitions/Interaction Definitions/SectorManager.cs +++ b/Assets/Scripts/Functional Definitions/Interaction Definitions/SectorManager.cs @@ -441,6 +441,14 @@ public Entity SpawnEntity(EntityBlueprint blueprint, Sector.LevelEntity data) if(current.type == Sector.SectorType.BattleZone) { + // add core arrow + if(MinimapArrowScript.instance && !(shellcore is PlayerCore)) + { + shellcore.faction = data.faction; + MinimapArrowScript.instance.AddCoreArrow(shellcore); + } + + // set the carrier of the shellcore to the associated faction's carrier if(carriers.ContainsKey(data.faction)) shellcore.SetCarrier(carriers[data.faction]); diff --git a/Assets/Scripts/Functional Definitions/Saving Scripts/VersionNumberScript.cs b/Assets/Scripts/Functional Definitions/Saving Scripts/VersionNumberScript.cs index 439ee2723..b8ab12427 100644 --- a/Assets/Scripts/Functional Definitions/Saving Scripts/VersionNumberScript.cs +++ b/Assets/Scripts/Functional Definitions/Saving Scripts/VersionNumberScript.cs @@ -5,8 +5,8 @@ public class VersionNumberScript : MonoBehaviour { - public static string version = "Alpha 5.2.0"; - public static string mapVersion = "Alpha 5.2.0"; + public static string version = "Alpha 5.3.0"; + public static string mapVersion = "Alpha 5.3.0"; static VersionNumberScript instance; public Text episodeText; diff --git a/Assets/Scripts/Graphs/FinishTaskNode.cs b/Assets/Scripts/Graphs/FinishTaskNode.cs index 7b68c23f2..d1acbdb63 100644 --- a/Assets/Scripts/Graphs/FinishTaskNode.cs +++ b/Assets/Scripts/Graphs/FinishTaskNode.cs @@ -67,6 +67,10 @@ void SetEntityID(string ID) public void OnDialogue() { + // draw objectives + TaskManager.objectiveLocations[(Canvas as QuestCanvas).missionName].Remove(objectiveLocation); + TaskManager.DrawObjectiveLocations(); + DialogueSystem.ShowPopup(rewardText, textColor, SectorManager.instance.GetEntity(rewardGiverID)); DialogueSystem.OnDialogueEnd = (int _) => { @@ -120,25 +124,23 @@ public override int Traverse() } SectorManager.instance.player.alerter.showMessage("TASK COMPLETE", "clip_victory"); + + TaskManager.speakerIDList.Add(rewardGiverID); if (TaskManager.interactionOverrides.ContainsKey(rewardGiverID)) { Debug.Log("Contains key"); TaskManager.interactionOverrides[rewardGiverID].Push(() => { - Debug.Log(TaskManager.interactionOverrides[rewardGiverID].Count); TaskManager.interactionOverrides[rewardGiverID].Pop(); OnDialogue(); - Debug.Log(TaskManager.interactionOverrides[rewardGiverID].Count); }); } else { var stack = new Stack(); stack.Push(() => { - Debug.Log(TaskManager.interactionOverrides[rewardGiverID].Count); TaskManager.interactionOverrides[rewardGiverID].Pop(); OnDialogue(); - Debug.Log(TaskManager.interactionOverrides[rewardGiverID].Count); }); TaskManager.interactionOverrides.Add(rewardGiverID, stack); Debug.Log("ADDED " + rewardGiverID); @@ -148,6 +150,7 @@ public override int Traverse() return -1; } + TaskManager.ObjectiveLocation objectiveLocation; void TryAddObjective() { foreach(var ent in AIData.entities) @@ -156,12 +159,13 @@ void TryAddObjective() if(ent.ID == rewardGiverID) { TaskManager.objectiveLocations[(Canvas as QuestCanvas).missionName].Clear(); - TaskManager.objectiveLocations[(Canvas as QuestCanvas).missionName].Add(new TaskManager.ObjectiveLocation( + objectiveLocation = new TaskManager.ObjectiveLocation( ent.transform.position, true, (Canvas as QuestCanvas).missionName, ent - )); + ); + TaskManager.objectiveLocations[(Canvas as QuestCanvas).missionName].Add(objectiveLocation); TaskManager.DrawObjectiveLocations(); break; } diff --git a/Assets/Scripts/Graphs/UsePartCondition.cs b/Assets/Scripts/Graphs/UsePartCondition.cs index 0077dfcd0..dd4ff5bd8 100644 --- a/Assets/Scripts/Graphs/UsePartCondition.cs +++ b/Assets/Scripts/Graphs/UsePartCondition.cs @@ -41,7 +41,7 @@ public void Init(int index) { OnPlayerReconstruct.AddListener(CheckParts); State = ConditionState.Listening; - TryAddObjective(false); + TryAddObjective(true); } public void DeInit() @@ -80,7 +80,7 @@ void TryAddObjective(bool clear) // TODO: Disambiguate name and entityName if(ent.name == "Yard" || ent.entityName == "Yard") { - if(clear) TaskManager.objectiveLocations.Clear(); + if(clear) TaskManager.objectiveLocations[(Canvas as QuestCanvas).missionName].Clear(); objectiveLocation = new TaskManager.ObjectiveLocation( ent.transform.position, true, diff --git a/Assets/Scripts/HUD Scripts/MinimapArrowScript.cs b/Assets/Scripts/HUD Scripts/MinimapArrowScript.cs index 788ed9b80..7dc25a769 100644 --- a/Assets/Scripts/HUD Scripts/MinimapArrowScript.cs +++ b/Assets/Scripts/HUD Scripts/MinimapArrowScript.cs @@ -146,6 +146,9 @@ public void ClearCoreArrows() public void AddCoreArrow(ShellCore core) { + if(coreArrows.ContainsKey(core)) + return; + coreArrows.Add(core, Instantiate(arrowPrefab, transform, false).transform); coreArrows[core].GetComponent().color = FactionColors.colors[core.faction]; UpdatePosition(coreArrows[core], core.transform.position, core.faction != PlayerCore.Instance.faction); diff --git a/Assets/Scripts/HUD Scripts/SaveMenuHandler.cs b/Assets/Scripts/HUD Scripts/SaveMenuHandler.cs index 1f882dc62..b62f52742 100644 --- a/Assets/Scripts/HUD Scripts/SaveMenuHandler.cs +++ b/Assets/Scripts/HUD Scripts/SaveMenuHandler.cs @@ -114,7 +114,7 @@ void InitializeSaves() else icon.transform.SetSiblingIndex(1); } else icon.transform.SetSiblingIndex(0); - if((resourcePath == "" && saves[i].resourcePath != null && !saves[i].resourcePath.Contains("main")) + if((resourcePath == "" && saves[i].resourcePath != null && !saves[i].resourcePath.Contains("main") && saves[i].resourcePath != "") || (resourcePath != "" && saves[i].resourcePath != resourcePath)) icon.gameObject.SetActive(false); } } diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.2.0/.Danger Zone 0-2070.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.2.0/.Danger Zone 0-2070.json new file mode 100644 index 000000000..29c79d044 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.2.0/.Danger Zone 0-2070.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Danger Zone 0-2070\",\"bounds\":{\"x\":-120,\"y\":-1740,\"w\":380,\"h\":660},\"type\":3,\"backgroundColor\":{\"r\":0.6499999761581421,\"g\":0.0,\"b\":0.0,\"a\":1.0},\"entities\":[],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[],\"hasMusic\":true,\"musicID\":\"music_overworld\",\"partDropsDisabled\":false,\"backgroundSpawns\":[],\"waveSetPath\":\"\",\"rectangleEffectSkin\":1,\"backgroundTileSkin\":1,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.2.0/.Sector 120-980.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.2.0/.Sector 120-980.json index 0d29f4028..93bc97ee0 100644 --- a/Assets/StreamingAssets/Sectors/main - Alpha 5.2.0/.Sector 120-980.json +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.2.0/.Sector 120-980.json @@ -1 +1 @@ -{"sectorjson":"{\"sectorName\":\"Sector 120-980\",\"bounds\":{\"x\":0,\"y\":-650,\"w\":490,\"h\":120},\"type\":5,\"backgroundColor\":{\"r\":0.15000000596046449,\"g\":0.15000000596046449,\"b\":0.15000000596046449,\"a\":1.0},\"entities\":[{\"name\":\"ShellCore\",\"ID\":\"502\",\"faction\":0,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":210.0,\"y\":-657.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Map Background 3\",\"ID\":\"503\",\"faction\":0,\"assetID\":\"mapbg3\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":245.0,\"y\":-710.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"504\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Fake Heavy\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":20.0,\"y\":-675.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"505\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Block Core\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":75.0,\"y\":-707.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"506\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Block Core\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":57.5,\"y\":-727.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"507\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Block Core\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":185.0,\"y\":-685.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"508\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Fake Heavy\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":167.5,\"y\":-670.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"509\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Fake Heavy\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":122.5,\"y\":-670.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"510\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Block Core\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":277.5,\"y\":-707.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"511\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Block Core\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":242.5,\"y\":-687.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"512\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Block Core\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":380.0,\"y\":-705.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"513\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Rusher\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":347.5,\"y\":-712.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"514\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Block Core\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":410.0,\"y\":-735.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"515\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Fake Heavy\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":412.5,\"y\":-710.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"516\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Block Core\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":392.5,\"y\":-690.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"517\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Rusher\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":355.0,\"y\":-680.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"120-980-beamer\",\"faction\":0,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Beamer\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":192.5,\"y\":-747.5},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[\"502\",\"504\",\"505\",\"506\",\"507\",\"508\",\"509\",\"510\",\"511\",\"512\",\"513\",\"514\",\"515\",\"516\",\"517\",\"120-980-beamer\"],\"hasMusic\":true,\"musicID\":\"music_overworld\",\"partDropsDisabled\":false,\"backgroundSpawns\":[{\"entity\":{\"name\":\"Mini Drone\",\"ID\":\"\",\"faction\":1,\"assetID\":\"mini_drone_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":0.0,\"y\":0.0},\"patrolPath\":{\"waypoints\":[]}},\"timePerSpawn\":8,\"radius\":15.0},{\"entity\":{\"name\":\"Strike Drone\",\"ID\":\"\",\"faction\":1,\"assetID\":\"strike_drone_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":0.0,\"y\":0.0},\"patrolPath\":{\"waypoints\":[]}},\"timePerSpawn\":8,\"radius\":15.0},{\"entity\":{\"name\":\"Unnamed\",\"ID\":\"\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"{\\\"entityName\\\":\\\"Unnamed\\\",\\\"coreSpriteID\\\":\\\"core1_light\\\",\\\"coreShellSpriteID\\\":\\\"core1_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":0,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":-0.7466667294502258,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":5,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"{\\\\\\\"drone\\\\\\\":\\\\\\\"{\\\\\\\\\\\\\\\"entityName\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Strike Drone\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_light\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreShellSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_shell\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"shellHealth\\\\\\\\\\\\\\\":[1000.0,250.0,500.0],\\\\\\\\\\\\\\\"baseRegen\\\\\\\\\\\\\\\":[60.0,0.0,60.0],\\\\\\\\\\\\\\\"intendedType\\\\\\\\\\\\\\\":7,\\\\\\\\\\\\\\\"parts\\\\\\\\\\\\\\\":[{\\\\\\\\\\\\\\\"location\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\\":-0.2485615760087967,\\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\\":0.0},\\\\\\\\\\\\\\\"rotation\\\\\\\\\\\\\\\":0.0,\\\\\\\\\\\\\\\"mirrored\\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\\"abilityID\\\\\\\\\\\\\\\":5,\\\\\\\\\\\\\\\"tier\\\\\\\\\\\\\\\":1,\\\\\\\\\\\\\\\"secondaryData\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"partID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"SmallWing1\\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\\"location\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\\":0.2485615760087967,\\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\\":0.0},\\\\\\\\\\\\\\\"rotation\\\\\\\\\\\\\\\":0.0,\\\\\\\\\\\\\\\"mirrored\\\\\\\\\\\\\\\":false,\\\\\\\\\\\\\\\"abilityID\\\\\\\\\\\\\\\":0,\\\\\\\\\\\\\\\"tier\\\\\\\\\\\\\\\":0,\\\\\\\\\\\\\\\"secondaryData\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"partID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"SmallWing1\\\\\\\\\\\\\\\"}],\\\\\\\\\\\\\\\"dialogue\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"instanceID\\\\\\\\\\\\\\\":0}}\\\\\\\",\\\\\\\"energyCost\\\\\\\":150.0,\\\\\\\"delay\\\\\\\":3.0,\\\\\\\"cooldown\\\\\\\":15.0,\\\\\\\"type\\\\\\\":2}\\\",\\\"partID\\\":\\\"SmallWing1\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":0.7466667294502258,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":5,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"{\\\\\\\"drone\\\\\\\":\\\\\\\"{\\\\\\\\\\\\\\\"entityName\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Strike Drone\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_light\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreShellSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_shell\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"shellHealth\\\\\\\\\\\\\\\":[1000.0,250.0,500.0],\\\\\\\\\\\\\\\"baseRegen\\\\\\\\\\\\\\\":[60.0,0.0,60.0],\\\\\\\\\\\\\\\"intendedType\\\\\\\\\\\\\\\":7,\\\\\\\\\\\\\\\"parts\\\\\\\\\\\\\\\":[{\\\\\\\\\\\\\\\"location\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\\":-0.2485615760087967,\\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\\":0.0},\\\\\\\\\\\\\\\"rotation\\\\\\\\\\\\\\\":0.0,\\\\\\\\\\\\\\\"mirrored\\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\\"abilityID\\\\\\\\\\\\\\\":5,\\\\\\\\\\\\\\\"tier\\\\\\\\\\\\\\\":1,\\\\\\\\\\\\\\\"secondaryData\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"partID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"SmallWing1\\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\\"location\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\\":0.2485615760087967,\\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\\":0.0},\\\\\\\\\\\\\\\"rotation\\\\\\\\\\\\\\\":0.0,\\\\\\\\\\\\\\\"mirrored\\\\\\\\\\\\\\\":false,\\\\\\\\\\\\\\\"abilityID\\\\\\\\\\\\\\\":0,\\\\\\\\\\\\\\\"tier\\\\\\\\\\\\\\\":0,\\\\\\\\\\\\\\\"secondaryData\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"partID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"SmallWing1\\\\\\\\\\\\\\\"}],\\\\\\\\\\\\\\\"dialogue\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"instanceID\\\\\\\\\\\\\\\":0}}\\\\\\\",\\\\\\\"energyCost\\\\\\\":150.0,\\\\\\\"delay\\\\\\\":3.0,\\\\\\\"cooldown\\\\\\\":15.0,\\\\\\\"type\\\\\\\":2}\\\",\\\"partID\\\":\\\"SmallWing1\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":0.5333333611488342,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":18,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"{\\\\\\\"drone\\\\\\\":\\\\\\\"{\\\\\\\\\\\\\\\"entityName\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Gun Drone\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_light\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreShellSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_shell\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"shellHealth\\\\\\\\\\\\\\\":[1000.0,250.0,500.0],\\\\\\\\\\\\\\\"baseRegen\\\\\\\\\\\\\\\":[60.0,0.0,60.0],\\\\\\\\\\\\\\\"intendedType\\\\\\\\\\\\\\\":7,\\\\\\\\\\\\\\\"parts\\\\\\\\\\\\\\\":[{\\\\\\\\\\\\\\\"location\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\\":0.2485615760087967,\\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\\":0.0},\\\\\\\\\\\\\\\"rotation\\\\\\\\\\\\\\\":0.0,\\\\\\\\\\\\\\\"mirrored\\\\\\\\\\\\\\\":false,\\\\\\\\\\\\\\\"abilityID\\\\\\\\\\\\\\\":6,\\\\\\\\\\\\\\\"tier\\\\\\\\\\\\\\\":1,\\\\\\\\\\\\\\\"secondaryData\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"partID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"SmallSide4\\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\\"location\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\\":-0.2485615760087967,\\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\\":0.0},\\\\\\\\\\\\\\\"rotation\\\\\\\\\\\\\\\":0.0,\\\\\\\\\\\\\\\"mirrored\\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\\"abilityID\\\\\\\\\\\\\\\":6,\\\\\\\\\\\\\\\"tier\\\\\\\\\\\\\\\":1,\\\\\\\\\\\\\\\"secondaryData\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"partID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"SmallSide4\\\\\\\\\\\\\\\"}],\\\\\\\\\\\\\\\"dialogue\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"instanceID\\\\\\\\\\\\\\\":0}}\\\\\\\",\\\\\\\"energyCost\\\\\\\":150.0,\\\\\\\"delay\\\\\\\":3.0,\\\\\\\"cooldown\\\\\\\":15.0,\\\\\\\"type\\\\\\\":4}\\\",\\\"partID\\\":\\\"SmallWing2\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":-0.5333333611488342,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":1,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"{\\\\\\\"drone\\\\\\\":\\\\\\\"{\\\\\\\\\\\\\\\"entityName\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Worker Drone\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_light\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreShellSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"worker_drone_shell_sprite\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"shellHealth\\\\\\\\\\\\\\\":[1000.0,250.0,500.0],\\\\\\\\\\\\\\\"baseRegen\\\\\\\\\\\\\\\":[60.0,0.0,60.0],\\\\\\\\\\\\\\\"intendedType\\\\\\\\\\\\\\\":7,\\\\\\\\\\\\\\\"parts\\\\\\\\\\\\\\\":[],\\\\\\\\\\\\\\\"dialogue\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"instanceID\\\\\\\\\\\\\\\":0}}\\\\\\\",\\\\\\\"energyCost\\\\\\\":100.0,\\\\\\\"delay\\\\\\\":2.0,\\\\\\\"cooldown\\\\\\\":10.0,\\\\\\\"type\\\\\\\":1}\\\",\\\"partID\\\":\\\"SmallWing2\\\",\\\"shiny\\\":false}],\\\"dialogue\\\":{\\\"m_FileID\\\":0,\\\"m_PathID\\\":0},\\\"useCustomDroneType\\\":false,\\\"customDroneType\\\":0}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":0.0,\"y\":0.0},\"patrolPath\":{\"waypoints\":[]}},\"timePerSpawn\":8,\"radius\":15.0},{\"entity\":{\"name\":\"Unnamed\",\"ID\":\"\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"{\\\"entityName\\\":\\\"Unnamed\\\",\\\"coreSpriteID\\\":\\\"core1_light\\\",\\\"coreShellSpriteID\\\":\\\"core1_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":0,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":0.5,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":2,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallSide3\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":-0.5,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":13,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallSide3\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":0.30000001192092898},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":20,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallCenter2\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":0.30000001192092898,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":5,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing2\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":-0.30000001192092898,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":4,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing2\\\",\\\"shiny\\\":false}],\\\"dialogue\\\":{\\\"m_FileID\\\":0,\\\"m_PathID\\\":0},\\\"useCustomDroneType\\\":false,\\\"customDroneType\\\":0}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":0.0,\"y\":0.0},\"patrolPath\":{\"waypoints\":[]}},\"timePerSpawn\":8,\"radius\":15.0}],\"waveSetPath\":\"\",\"rectangleEffectSkin\":0,\"backgroundTileSkin\":0,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file +{"sectorjson":"{\"sectorName\":\"Sector 120-980\",\"bounds\":{\"x\":0,\"y\":-650,\"w\":490,\"h\":120},\"type\":5,\"backgroundColor\":{\"r\":0.15000000596046449,\"g\":0.15000000596046449,\"b\":0.15000000596046449,\"a\":1.0},\"entities\":[{\"name\":\"120-980flag2\",\"ID\":\"120-980flag2\",\"faction\":0,\"assetID\":\"flag\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":390.0,\"y\":-712.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"120-980flag1\",\"ID\":\"120-980flag1\",\"faction\":0,\"assetID\":\"flag\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":10.0,\"y\":-657.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Air Carrier\",\"ID\":\"120-980carrier\",\"faction\":1,\"assetID\":\"carrier_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":10.0,\"y\":-657.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"478\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":17.5,\"y\":-652.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"479\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":5.0,\"y\":-665.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"480\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":10.0,\"y\":-667.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Siege Turret\",\"ID\":\"481\",\"faction\":1,\"assetID\":\"siege_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":10.0,\"y\":-665.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"482\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":17.5,\"y\":-665.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Turret\",\"ID\":\"483\",\"faction\":1,\"assetID\":\"missile_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":15.0,\"y\":-662.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"484\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":20.0,\"y\":-657.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Siege Turret\",\"ID\":\"485\",\"faction\":1,\"assetID\":\"siege_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":17.5,\"y\":-657.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"486\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":362.5,\"y\":-697.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"487\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":390.0,\"y\":-710.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Power Rock\",\"ID\":\"488\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":387.5,\"y\":-715.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"489\",\"faction\":1,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":392.5,\"y\":-715.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"490\",\"faction\":1,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":360.0,\"y\":-692.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Power Rock\",\"ID\":\"491\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":365.0,\"y\":-692.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Map Background 3\",\"ID\":\"492\",\"faction\":0,\"assetID\":\"mapbg3\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":245.0,\"y\":-710.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"493\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Fake Heavy\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":20.0,\"y\":-675.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"494\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Block Core\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":75.0,\"y\":-707.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"495\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Block Core\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":57.5,\"y\":-727.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"496\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Block Core\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":185.0,\"y\":-685.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"497\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Fake Heavy\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":167.5,\"y\":-670.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"498\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Fake Heavy\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":122.5,\"y\":-670.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"499\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Block Core\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":277.5,\"y\":-707.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"500\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Block Core\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":242.5,\"y\":-687.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"501\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Block Core\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":380.0,\"y\":-705.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"502\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Rusher\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":347.5,\"y\":-712.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"503\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Southern Missile\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":410.0,\"y\":-735.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"504\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Southern Missile\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":412.5,\"y\":-710.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"505\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Block Core\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":392.5,\"y\":-690.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"506\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Rusher\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":355.0,\"y\":-680.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"120-980-beamer\",\"faction\":0,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Beamer\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":192.5,\"y\":-747.5},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[],\"platform\":{\"m_FileID\":0,\"m_PathID\":0},\"targets\":[\"120-980carrier\",\"493\",\"493\",\"494\",\"494\",\"495\",\"495\",\"496\",\"496\",\"497\",\"497\",\"498\",\"498\",\"499\",\"499\",\"500\",\"500\",\"501\",\"501\",\"502\",\"502\",\"503\",\"503\",\"504\",\"504\",\"505\",\"505\",\"506\",\"506\",\"120-980-beamer\",\"120-980-beamer\"],\"hasMusic\":true,\"musicID\":\"music_overworld\",\"partDropsDisabled\":false,\"backgroundSpawns\":[{\"entity\":{\"name\":\"Unnamed\",\"ID\":\"\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"{\\\"entityName\\\":\\\"Unnamed\\\",\\\"coreSpriteID\\\":\\\"core1_light\\\",\\\"coreShellSpriteID\\\":\\\"core1_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":0,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":-0.7466667294502258,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":5,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"{\\\\\\\"drone\\\\\\\":\\\\\\\"{\\\\\\\\\\\\\\\"entityName\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Strike Drone\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_light\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreShellSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_shell\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"shellHealth\\\\\\\\\\\\\\\":[1000.0,250.0,500.0],\\\\\\\\\\\\\\\"baseRegen\\\\\\\\\\\\\\\":[60.0,0.0,60.0],\\\\\\\\\\\\\\\"intendedType\\\\\\\\\\\\\\\":7,\\\\\\\\\\\\\\\"parts\\\\\\\\\\\\\\\":[{\\\\\\\\\\\\\\\"location\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\\":-0.2485615760087967,\\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\\":0.0},\\\\\\\\\\\\\\\"rotation\\\\\\\\\\\\\\\":0.0,\\\\\\\\\\\\\\\"mirrored\\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\\"abilityID\\\\\\\\\\\\\\\":5,\\\\\\\\\\\\\\\"tier\\\\\\\\\\\\\\\":1,\\\\\\\\\\\\\\\"secondaryData\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"partID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"SmallWing1\\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\\"location\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\\":0.2485615760087967,\\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\\":0.0},\\\\\\\\\\\\\\\"rotation\\\\\\\\\\\\\\\":0.0,\\\\\\\\\\\\\\\"mirrored\\\\\\\\\\\\\\\":false,\\\\\\\\\\\\\\\"abilityID\\\\\\\\\\\\\\\":0,\\\\\\\\\\\\\\\"tier\\\\\\\\\\\\\\\":0,\\\\\\\\\\\\\\\"secondaryData\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"partID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"SmallWing1\\\\\\\\\\\\\\\"}],\\\\\\\\\\\\\\\"dialogue\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"instanceID\\\\\\\\\\\\\\\":0}}\\\\\\\",\\\\\\\"energyCost\\\\\\\":150.0,\\\\\\\"delay\\\\\\\":3.0,\\\\\\\"cooldown\\\\\\\":15.0,\\\\\\\"type\\\\\\\":2}\\\",\\\"partID\\\":\\\"SmallWing1\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":0.7466667294502258,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":5,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"{\\\\\\\"drone\\\\\\\":\\\\\\\"{\\\\\\\\\\\\\\\"entityName\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Strike Drone\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_light\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreShellSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_shell\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"shellHealth\\\\\\\\\\\\\\\":[1000.0,250.0,500.0],\\\\\\\\\\\\\\\"baseRegen\\\\\\\\\\\\\\\":[60.0,0.0,60.0],\\\\\\\\\\\\\\\"intendedType\\\\\\\\\\\\\\\":7,\\\\\\\\\\\\\\\"parts\\\\\\\\\\\\\\\":[{\\\\\\\\\\\\\\\"location\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\\":-0.2485615760087967,\\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\\":0.0},\\\\\\\\\\\\\\\"rotation\\\\\\\\\\\\\\\":0.0,\\\\\\\\\\\\\\\"mirrored\\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\\"abilityID\\\\\\\\\\\\\\\":5,\\\\\\\\\\\\\\\"tier\\\\\\\\\\\\\\\":1,\\\\\\\\\\\\\\\"secondaryData\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"partID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"SmallWing1\\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\\"location\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\\":0.2485615760087967,\\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\\":0.0},\\\\\\\\\\\\\\\"rotation\\\\\\\\\\\\\\\":0.0,\\\\\\\\\\\\\\\"mirrored\\\\\\\\\\\\\\\":false,\\\\\\\\\\\\\\\"abilityID\\\\\\\\\\\\\\\":0,\\\\\\\\\\\\\\\"tier\\\\\\\\\\\\\\\":0,\\\\\\\\\\\\\\\"secondaryData\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"partID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"SmallWing1\\\\\\\\\\\\\\\"}],\\\\\\\\\\\\\\\"dialogue\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"instanceID\\\\\\\\\\\\\\\":0}}\\\\\\\",\\\\\\\"energyCost\\\\\\\":150.0,\\\\\\\"delay\\\\\\\":3.0,\\\\\\\"cooldown\\\\\\\":15.0,\\\\\\\"type\\\\\\\":2}\\\",\\\"partID\\\":\\\"SmallWing1\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":0.5333333611488342,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":18,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"{\\\\\\\"drone\\\\\\\":\\\\\\\"{\\\\\\\\\\\\\\\"entityName\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Gun Drone\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_light\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreShellSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_shell\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"shellHealth\\\\\\\\\\\\\\\":[1000.0,250.0,500.0],\\\\\\\\\\\\\\\"baseRegen\\\\\\\\\\\\\\\":[60.0,0.0,60.0],\\\\\\\\\\\\\\\"intendedType\\\\\\\\\\\\\\\":7,\\\\\\\\\\\\\\\"parts\\\\\\\\\\\\\\\":[{\\\\\\\\\\\\\\\"location\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\\":0.2485615760087967,\\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\\":0.0},\\\\\\\\\\\\\\\"rotation\\\\\\\\\\\\\\\":0.0,\\\\\\\\\\\\\\\"mirrored\\\\\\\\\\\\\\\":false,\\\\\\\\\\\\\\\"abilityID\\\\\\\\\\\\\\\":6,\\\\\\\\\\\\\\\"tier\\\\\\\\\\\\\\\":1,\\\\\\\\\\\\\\\"secondaryData\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"partID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"SmallSide4\\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\\"location\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\\":-0.2485615760087967,\\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\\":0.0},\\\\\\\\\\\\\\\"rotation\\\\\\\\\\\\\\\":0.0,\\\\\\\\\\\\\\\"mirrored\\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\\"abilityID\\\\\\\\\\\\\\\":6,\\\\\\\\\\\\\\\"tier\\\\\\\\\\\\\\\":1,\\\\\\\\\\\\\\\"secondaryData\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"partID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"SmallSide4\\\\\\\\\\\\\\\"}],\\\\\\\\\\\\\\\"dialogue\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"instanceID\\\\\\\\\\\\\\\":0}}\\\\\\\",\\\\\\\"energyCost\\\\\\\":150.0,\\\\\\\"delay\\\\\\\":3.0,\\\\\\\"cooldown\\\\\\\":15.0,\\\\\\\"type\\\\\\\":4}\\\",\\\"partID\\\":\\\"SmallWing2\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":-0.5333333611488342,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":1,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"{\\\\\\\"drone\\\\\\\":\\\\\\\"{\\\\\\\\\\\\\\\"entityName\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Worker Drone\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_light\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreShellSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"worker_drone_shell_sprite\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"shellHealth\\\\\\\\\\\\\\\":[1000.0,250.0,500.0],\\\\\\\\\\\\\\\"baseRegen\\\\\\\\\\\\\\\":[60.0,0.0,60.0],\\\\\\\\\\\\\\\"intendedType\\\\\\\\\\\\\\\":7,\\\\\\\\\\\\\\\"parts\\\\\\\\\\\\\\\":[],\\\\\\\\\\\\\\\"dialogue\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"instanceID\\\\\\\\\\\\\\\":0}}\\\\\\\",\\\\\\\"energyCost\\\\\\\":100.0,\\\\\\\"delay\\\\\\\":2.0,\\\\\\\"cooldown\\\\\\\":10.0,\\\\\\\"type\\\\\\\":1}\\\",\\\"partID\\\":\\\"SmallWing2\\\",\\\"shiny\\\":false}],\\\"dialogue\\\":{\\\"instanceID\\\":0},\\\"useCustomDroneType\\\":false,\\\"customDroneType\\\":0}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":0.0,\"y\":0.0},\"patrolPath\":{\"waypoints\":[]}},\"timePerSpawn\":8,\"radius\":15.0},{\"entity\":{\"name\":\"Counter Drone\",\"ID\":\"\",\"faction\":1,\"assetID\":\"counter_drone_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":0.0,\"y\":0.0},\"patrolPath\":{\"waypoints\":[]}},\"timePerSpawn\":8,\"radius\":15.0},{\"entity\":{\"name\":\"Gun Drone\",\"ID\":\"\",\"faction\":1,\"assetID\":\"gun_drone_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":0.0,\"y\":0.0},\"patrolPath\":{\"waypoints\":[]}},\"timePerSpawn\":8,\"radius\":15.0},{\"entity\":{\"name\":\"Mini Drone\",\"ID\":\"\",\"faction\":1,\"assetID\":\"mini_drone_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":0.0,\"y\":0.0},\"patrolPath\":{\"waypoints\":[]}},\"timePerSpawn\":8,\"radius\":15.0},{\"entity\":{\"name\":\"Strike Drone\",\"ID\":\"\",\"faction\":1,\"assetID\":\"strike_drone_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":0.0,\"y\":0.0},\"patrolPath\":{\"waypoints\":[]}},\"timePerSpawn\":8,\"radius\":15.0}],\"waveSetPath\":\"\",\"rectangleEffectSkin\":0,\"backgroundTileSkin\":0,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.2.0/.dd.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.2.0/.dd.json deleted file mode 100644 index 8759e0d39..000000000 --- a/Assets/StreamingAssets/Sectors/main - Alpha 5.2.0/.dd.json +++ /dev/null @@ -1 +0,0 @@ -{"sectorjson":"{\"sectorName\":\"dd\",\"bounds\":{\"x\":-120,\"y\":-1740,\"w\":380,\"h\":660},\"type\":3,\"backgroundColor\":{\"r\":0.6499999761581421,\"g\":0.0,\"b\":0.0,\"a\":1.0},\"entities\":[],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[],\"hasMusic\":true,\"musicID\":\"music_overworld\",\"partDropsDisabled\":false,\"backgroundSpawns\":[],\"waveSetPath\":\"\",\"rectangleEffectSkin\":1,\"backgroundTileSkin\":1,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.2.0/Canvases/120-980-beamerpassive.dialoguedata b/Assets/StreamingAssets/Sectors/main - Alpha 5.2.0/Canvases/120-980-beamerpassive.dialoguedata new file mode 100644 index 000000000..08b8ab229 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.2.0/Canvases/120-980-beamerpassive.dialoguedata @@ -0,0 +1,67 @@ + + + + + + + + + + + + Dialogue + Out + Single + Right + 228 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + true + false + false + Mission + + + + + true + + false + false + Mission + + + + + + + + + Thanks for checking up on me, but theres nothing left you can do here right now. + +I'll let you know if anything pops up. + + + + Ok. + + + + 120-980-beamer + + + \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.2.0/Canvases/120-980-beamerpassive.dialoguedata.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.2.0/Canvases/120-980-beamerpassive.dialoguedata.meta new file mode 100644 index 000000000..e17b8108e --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.2.0/Canvases/120-980-beamerpassive.dialoguedata.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: a7254ad83f8c5ed408e47660ecc406a7 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.2.0/Canvases/The Carrier Conundrum.taskdata b/Assets/StreamingAssets/Sectors/main - Alpha 5.2.0/Canvases/The Carrier Conundrum.taskdata new file mode 100644 index 000000000..c9297a180 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.2.0/Canvases/The Carrier Conundrum.taskdata @@ -0,0 +1,602 @@ + + + + + + + + + + + + Dialogue + Out + Single + Right + 256 + 0 + + + Dialogue + Out + Single + Right + 312 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + false + false + false + Mission + + + + + true + + false + false + Mission + + + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + false + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 256 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + 0 + 0 + + false + true + false + 0 + + + + + + + + + + true + + true + false + Mission + + + + + + + + + + true + + false + false + Mission + + + + + + 0 + 0 + + false + true + false + 0 + + + + + + 0 + 0 + + false + true + false + 0 + + + + + Condition + In + Multi + Left + 59 + 0 + + + TaskFlow + Out + Single + Right + 59 + 0 + + + + + false + + 1 + 1 + false + + + + + + + + + 0 + 1 + 0 + 1 + + + 250 + true + + 17 + 2 + + 0 + + + + false + + + + + true + + true + false + Mission + + + + + + + + + 0 + 1 + 0 + 1 + + + + + + + + + + + + + 0 + 0 + + false + false + false + 1.5 + + + + + + + 0 + 0 + + false + false + false + 3 + + + + + + + + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + false + false + false + Mission + + + + + + + + + + + + + + + + + + + + + true + + + + + + + + + + 0 + 1 + 0 + 1 + + false + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + I’m surprised to see you back here, but I’m glad you came. + +The infected here appear to be gathering in strength – If we don’t do anything about it soon, this sector will become completely overrun. + + + + What do you want me to do? + Perhaps another time. + + + + 120-980-beamer + + + The infected have bought in a carrier located in the North-Western corner of this sector. + +I believe its destruction is imperative if we ever hope to see the infected be cleansed from this sector. + + + + But how can I get close? + + + + 120-980carrier + + + There are 2 infected outposts located in the North-Eastern side of this sector. If you can capture them, you can utilise siege turrets to take out the carrier. + + + - Destroy the Infected Carrier in Sector 120-980 + + + SmallCenter2 + + + + + + The Carrier Conundrum + + + Sounds like a plan, I’m in! + + + Sorry, it will have to wait. + + + Thank you, hopefully now we can begin to reclaim this sector. + +I don’t have much, but this part should help you on your journey. I’ll stay here and monitor the situation. + + + THOUGH COMPLETING THIS MISSION, YOU: + +Helped to clear the infected and their carrier from Sector 120-980. + + + clip_missioncompleteep1 + + + 120-980flag1 + + + 120-980flag2 + + + C + + + Speak to the Uninfected scout in Sector 120-980, + + + + The Scourge of Secrecy + + + + Thanks for checking up on me, but theres nothing left you can do here right now. + +I'll let you know if anything pops up. + + + \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.2.0/Canvases/The Carrier Conundrum.taskdata.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.2.0/Canvases/The Carrier Conundrum.taskdata.meta new file mode 100644 index 000000000..6588aa301 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.2.0/Canvases/The Carrier Conundrum.taskdata.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 6d5c6e0f8b882c04aba23f62c10d77a1 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0.meta new file mode 100644 index 000000000..fe445e67b --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 405f8134a140a73428f76d7e500a0dc3 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.BattleZone Alpha.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.BattleZone Alpha.json new file mode 100644 index 000000000..3b82d62e6 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.BattleZone Alpha.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"BattleZone Alpha\",\"bounds\":{\"x\":650,\"y\":30,\"w\":110,\"h\":200},\"type\":2,\"backgroundColor\":{\"r\":0.4000000059604645,\"g\":0.0,\"b\":0.0,\"a\":1.0},\"entities\":[{\"name\":\"Map Background 1\",\"ID\":\"0\",\"faction\":0,\"assetID\":\"mapbg1\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":705.0,\"y\":-70.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"1\",\"faction\":1,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":695.0,\"y\":-135.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Air Carrier\",\"ID\":\"2\",\"faction\":1,\"assetID\":\"carrier_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":705.0,\"y\":-145.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Power Rock\",\"ID\":\"3\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":735.0,\"y\":-90.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Power Rock\",\"ID\":\"4\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":735.0,\"y\":-45.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"5\",\"faction\":1,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":730.0,\"y\":-95.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"6\",\"faction\":1,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":730.0,\"y\":-40.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"7\",\"faction\":0,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":695.0,\"y\":-5.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Air Carrier\",\"ID\":\"8\",\"faction\":0,\"assetID\":\"carrier_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":705.0,\"y\":5.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[\"2\",\"8\"],\"hasMusic\":true,\"musicID\":\"music_fast\",\"partDropsDisabled\":false,\"backgroundSpawns\":[],\"waveSetPath\":\"\",\"rectangleEffectSkin\":0,\"backgroundTileSkin\":0,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.BattleZone Delta.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.BattleZone Delta.json new file mode 100644 index 000000000..638c2351a --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.BattleZone Delta.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"BattleZone Delta\",\"bounds\":{\"x\":110,\"y\":-410,\"w\":290,\"h\":120},\"type\":2,\"backgroundColor\":{\"r\":0.4000000059604645,\"g\":0.0,\"b\":0.0,\"a\":1.0},\"entities\":[{\"name\":\"Defense Turret\",\"ID\":\"9\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":150.0,\"y\":-477.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"10\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":155.0,\"y\":-470.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"11\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":150.0,\"y\":-462.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Siege Turret\",\"ID\":\"12\",\"faction\":1,\"assetID\":\"siege_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":145.0,\"y\":-472.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Siege Turret\",\"ID\":\"13\",\"faction\":1,\"assetID\":\"siege_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":145.0,\"y\":-467.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Siege Turret\",\"ID\":\"14\",\"faction\":1,\"assetID\":\"siege_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":145.0,\"y\":-470.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Power Rock\",\"ID\":\"15\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":255.0,\"y\":-497.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Power Rock\",\"ID\":\"16\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":255.0,\"y\":-442.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Power Rock\",\"ID\":\"17\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":202.5,\"y\":-497.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Power Rock\",\"ID\":\"18\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":202.5,\"y\":-442.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Power Rock\",\"ID\":\"19\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":307.5,\"y\":-442.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Power Rock\",\"ID\":\"20\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":307.5,\"y\":-497.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"21\",\"faction\":1,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":305.0,\"y\":-495.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"22\",\"faction\":1,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":305.0,\"y\":-445.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"23\",\"faction\":1,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":255.0,\"y\":-495.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"24\",\"faction\":1,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":255.0,\"y\":-445.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"25\",\"faction\":1,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":205.0,\"y\":-495.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"26\",\"faction\":1,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":205.0,\"y\":-445.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Air Carrier\",\"ID\":\"27\",\"faction\":1,\"assetID\":\"carrier_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":140.0,\"y\":-470.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"28\",\"faction\":0,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":360.0,\"y\":-470.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"29\",\"faction\":1,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":150.0,\"y\":-470.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Air Carrier\",\"ID\":\"30\",\"faction\":0,\"assetID\":\"carrier_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":370.0,\"y\":-470.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Map Background 5\",\"ID\":\"31\",\"faction\":0,\"assetID\":\"mapbg5\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":255.0,\"y\":-470.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[\"27\",\"30\"],\"hasMusic\":true,\"musicID\":\"music_fast\",\"partDropsDisabled\":false,\"backgroundSpawns\":[],\"waveSetPath\":\"\",\"rectangleEffectSkin\":0,\"backgroundTileSkin\":0,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.BattleZone Epsilon.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.BattleZone Epsilon.json new file mode 100644 index 000000000..caefce1ea --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.BattleZone Epsilon.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"BattleZone Epsilon\",\"bounds\":{\"x\":1100,\"y\":-590,\"w\":470,\"h\":270},\"type\":2,\"backgroundColor\":{\"r\":0.4000000059604645,\"g\":0.0,\"b\":0.0,\"a\":1.0},\"entities\":[{\"name\":\"Outpost\",\"ID\":\"32\",\"faction\":1,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1400.0,\"y\":-770.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"33\",\"faction\":1,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1270.0,\"y\":-680.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"34\",\"faction\":1,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1290.0,\"y\":-820.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"35\",\"faction\":1,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1380.0,\"y\":-820.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"36\",\"faction\":1,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1290.0,\"y\":-630.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"37\",\"faction\":1,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1380.0,\"y\":-630.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"38\",\"faction\":1,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1220.0,\"y\":-780.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"39\",\"faction\":1,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1450.0,\"y\":-670.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"40\",\"faction\":1,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1370.0,\"y\":-795.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"41\",\"faction\":1,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1300.0,\"y\":-655.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Power Rock\",\"ID\":\"42\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1185.0,\"y\":-672.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Power Rock\",\"ID\":\"43\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1485.0,\"y\":-777.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"44\",\"faction\":1,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1485.0,\"y\":-780.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"45\",\"faction\":1,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1185.0,\"y\":-670.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"46\",\"faction\":1,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1335.0,\"y\":-725.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Power Rock\",\"ID\":\"47\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1250.0,\"y\":-712.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Power Rock\",\"ID\":\"48\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1420.0,\"y\":-737.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"49\",\"faction\":1,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1420.0,\"y\":-740.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"50\",\"faction\":1,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1250.0,\"y\":-710.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Power Rock\",\"ID\":\"51\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1297.5,\"y\":-792.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Power Rock\",\"ID\":\"52\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1372.5,\"y\":-657.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"53\",\"faction\":1,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1370.0,\"y\":-655.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"54\",\"faction\":1,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1300.0,\"y\":-795.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"flag_scourgepythaspawnepsilon\",\"ID\":\"55\",\"faction\":0,\"assetID\":\"flag\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1505.0,\"y\":-732.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"flag_scourgedaayospawnepsilon\",\"ID\":\"56\",\"faction\":0,\"assetID\":\"flag\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1505.0,\"y\":-730.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Siege Turret\",\"ID\":\"57\",\"faction\":1,\"assetID\":\"siege_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1502.5,\"y\":-727.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Siege Turret\",\"ID\":\"58\",\"faction\":1,\"assetID\":\"siege_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1505.0,\"y\":-727.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Siege Turret\",\"ID\":\"59\",\"faction\":1,\"assetID\":\"siege_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1507.5,\"y\":-727.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Siege Turret\",\"ID\":\"60\",\"faction\":1,\"assetID\":\"siege_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1507.5,\"y\":-722.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Siege Turret\",\"ID\":\"61\",\"faction\":1,\"assetID\":\"siege_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1505.0,\"y\":-722.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Siege Turret\",\"ID\":\"62\",\"faction\":1,\"assetID\":\"siege_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1502.5,\"y\":-722.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"63\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1525.0,\"y\":-732.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"64\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1525.0,\"y\":-717.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"65\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1512.5,\"y\":-705.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"66\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1512.5,\"y\":-745.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"67\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1497.5,\"y\":-745.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"68\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1485.0,\"y\":-732.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"69\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1485.0,\"y\":-717.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"70\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1497.5,\"y\":-705.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"71\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1515.0,\"y\":-715.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"72\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1520.0,\"y\":-725.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"73\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1515.0,\"y\":-735.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"74\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1505.0,\"y\":-740.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"75\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1495.0,\"y\":-735.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"76\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1490.0,\"y\":-725.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"77\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1495.0,\"y\":-715.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"78\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1505.0,\"y\":-710.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Power Rock\",\"ID\":\"79\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1135.0,\"y\":-647.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Power Rock\",\"ID\":\"80\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1135.0,\"y\":-802.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Power Rock\",\"ID\":\"81\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1422.5,\"y\":-615.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Power Rock\",\"ID\":\"82\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1422.5,\"y\":-835.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Power Rock\",\"ID\":\"83\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1332.5,\"y\":-845.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Power Rock\",\"ID\":\"84\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1337.5,\"y\":-605.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Power Rock\",\"ID\":\"85\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1247.5,\"y\":-615.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Power Rock\",\"ID\":\"86\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1247.5,\"y\":-835.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"87\",\"faction\":1,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1425.0,\"y\":-615.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"88\",\"faction\":1,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1425.0,\"y\":-835.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"89\",\"faction\":1,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1245.0,\"y\":-835.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"90\",\"faction\":1,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1245.0,\"y\":-615.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"91\",\"faction\":1,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1335.0,\"y\":-605.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"92\",\"faction\":1,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1335.0,\"y\":-845.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"93\",\"faction\":1,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1535.0,\"y\":-805.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"94\",\"faction\":1,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1535.0,\"y\":-645.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Power Rock\",\"ID\":\"95\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1535.0,\"y\":-647.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"96\",\"faction\":0,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1135.0,\"y\":-805.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"97\",\"faction\":0,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1135.0,\"y\":-645.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Air Carrier\",\"ID\":\"98\",\"faction\":0,\"assetID\":\"carrier_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1165.0,\"y\":-725.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Air Carrier\",\"ID\":\"99\",\"faction\":1,\"assetID\":\"carrier_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1505.0,\"y\":-725.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Power Rock\",\"ID\":\"100\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1535.0,\"y\":-802.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Map Background 1\",\"ID\":\"101\",\"faction\":0,\"assetID\":\"mapbg1\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1335.0,\"y\":-725.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[\"98\",\"99\"],\"hasMusic\":true,\"musicID\":\"music_fast\",\"partDropsDisabled\":false,\"backgroundSpawns\":[],\"waveSetPath\":\"\",\"rectangleEffectSkin\":0,\"backgroundTileSkin\":0,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.BattleZone Gamma.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.BattleZone Gamma.json new file mode 100644 index 000000000..962af6698 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.BattleZone Gamma.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"BattleZone Gamma\",\"bounds\":{\"x\":920,\"y\":-170,\"w\":240,\"h\":240},\"type\":2,\"backgroundColor\":{\"r\":0.4000000059604645,\"g\":0.0,\"b\":0.0,\"a\":1.0},\"entities\":[{\"name\":\"Power Rock\",\"ID\":\"102\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1092.5,\"y\":-347.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"103\",\"faction\":1,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1087.5,\"y\":-347.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Power Rock\",\"ID\":\"104\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1137.5,\"y\":-235.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"105\",\"faction\":1,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1140.0,\"y\":-235.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Power Rock\",\"ID\":\"106\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1115.0,\"y\":-317.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Power Rock\",\"ID\":\"107\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":965.0,\"y\":-262.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"108\",\"faction\":0,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":965.0,\"y\":-260.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Power Rock\",\"ID\":\"109\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1100.0,\"y\":-287.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"110\",\"faction\":1,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1100.0,\"y\":-285.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"111\",\"faction\":1,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1115.0,\"y\":-320.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Power Rock\",\"ID\":\"112\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1135.0,\"y\":-360.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"113\",\"faction\":1,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1140.0,\"y\":-360.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Air Carrier\",\"ID\":\"114\",\"faction\":1,\"assetID\":\"carrier_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1140.0,\"y\":-392.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Power Rock\",\"ID\":\"115\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1080.0,\"y\":-207.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Power Rock\",\"ID\":\"116\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1000.0,\"y\":-372.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Power Rock\",\"ID\":\"117\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":980.0,\"y\":-292.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"118\",\"faction\":0,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1080.0,\"y\":-205.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"119\",\"faction\":1,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1000.0,\"y\":-375.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"120\",\"faction\":0,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":980.0,\"y\":-295.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"flag_trialpythaspawngamma\",\"ID\":\"121\",\"faction\":0,\"assetID\":\"flag\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1137.5,\"y\":-397.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"flag_trialdaayospawngamma\",\"ID\":\"122\",\"faction\":0,\"assetID\":\"flag\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1137.5,\"y\":-395.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Map Background 3\",\"ID\":\"123\",\"faction\":0,\"assetID\":\"mapbg3\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1040.0,\"y\":-290.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Power Rock\",\"ID\":\"124\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1040.0,\"y\":-380.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Power Rock\",\"ID\":\"125\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":945.0,\"y\":-345.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Power Rock\",\"ID\":\"126\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1045.0,\"y\":-200.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Power Rock\",\"ID\":\"127\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":987.5,\"y\":-232.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Power Rock\",\"ID\":\"128\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":945.0,\"y\":-220.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"129\",\"faction\":0,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":940.0,\"y\":-345.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"130\",\"faction\":1,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1045.0,\"y\":-380.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"131\",\"faction\":0,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1040.0,\"y\":-200.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"132\",\"faction\":0,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":992.5,\"y\":-232.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"133\",\"faction\":0,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":940.0,\"y\":-220.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Air Carrier\",\"ID\":\"134\",\"faction\":0,\"assetID\":\"carrier_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":940.0,\"y\":-187.5},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[\"114\",\"134\"],\"hasMusic\":true,\"musicID\":\"music_fast\",\"partDropsDisabled\":false,\"backgroundSpawns\":[],\"waveSetPath\":\"\",\"rectangleEffectSkin\":0,\"backgroundTileSkin\":0,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.BattleZone Ta Hetera.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.BattleZone Ta Hetera.json new file mode 100644 index 000000000..0747f7760 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.BattleZone Ta Hetera.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"BattleZone Ta Hetera\",\"bounds\":{\"x\":320,\"y\":-1740,\"w\":160,\"h\":80},\"type\":2,\"backgroundColor\":{\"r\":0.4000000059604645,\"g\":0.0,\"b\":0.0,\"a\":1.0},\"entities\":[{\"name\":\"ShellCore\",\"ID\":\"135\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Advanced Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":335.0,\"y\":-1785.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"136\",\"faction\":0,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":442.5,\"y\":-1782.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Bunker\",\"ID\":\"137\",\"faction\":0,\"assetID\":\"bunker_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":445.0,\"y\":-1757.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Bunker\",\"ID\":\"138\",\"faction\":0,\"assetID\":\"bunker_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":445.0,\"y\":-1802.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Bunker\",\"ID\":\"139\",\"faction\":1,\"assetID\":\"bunker_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":355.0,\"y\":-1757.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Bunker\",\"ID\":\"140\",\"faction\":1,\"assetID\":\"bunker_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":355.0,\"y\":-1802.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"141\",\"faction\":1,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":420.0,\"y\":-1777.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"142\",\"faction\":1,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":380.0,\"y\":-1782.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"143\",\"faction\":1,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":357.5,\"y\":-1777.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Power Rock\",\"ID\":\"144\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":422.5,\"y\":-1780.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Power Rock\",\"ID\":\"145\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":377.5,\"y\":-1780.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Power Rock\",\"ID\":\"146\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":355.0,\"y\":-1780.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Power Rock\",\"ID\":\"147\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":445.0,\"y\":-1780.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Ground Base\",\"ID\":\"148\",\"faction\":1,\"assetID\":\"groundcarrier_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":335.0,\"y\":-1780.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Ground Base\",\"ID\":\"149\",\"faction\":0,\"assetID\":\"groundcarrier_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":465.0,\"y\":-1780.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Map Background 1\",\"ID\":\"150\",\"faction\":0,\"assetID\":\"mapbg1\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":400.0,\"y\":-1780.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[\"0A0e0407020z0e03010d04020d03010d05020d02010d06020d01010c06020c01010b06020b01010a06020a01010906020901010806020801010706020701010606020601010506020501010406020401010306020301010206020201010205020202010204020203010104020103010e0307030z0e04030d03020d04030d02020d05030d01020d06030c01020c06030b01020b06030a01020a0603090102090603080102080603070102070603060102060603050102050603040102040603030102030603020102020603020202020503020302020403010302010403010407010z0103010204000203010205000202010206000201010306000301010406000401010506000501010606000601010706000701010806000801010906000901010a06000a01010b06000b01010c06000c01010d06000d01010d05000d02010d04000d03010e04000e0301010307000z0104030203000204030202000205030201000206030301000306030401000406030501000506030601000606030701000706030801000806030901000906030a01000a06030b01000b06030c01000c06030d01000d06030d02000d05030d03000d04030e03000e04030d040a020z0e04000d03010d05030e03000d02010d06030d01010c06030c01010b06030b01010a06030a01010906030901010806030801010706030701010606030601010506030501010406030401010306030301010206030201010205030202010204030203010104030103010d030a020z0e03000d04030d02010e04000d05030d01010d06030c01010c06030b01010b06030a01010a060309010109060308010108060307010107060306010106060305010105060304010104060303010103060302010102060302020102050302030102040301030101040302040a000z0104020203010205030103020202010206030201010306030301010406030401010506030501010606030601010706030701010806030801010906030901010a06030a01010b06030b01010c06030c01010d06030d01010d05030d02010d04030d03010e04030e030102030a000z0103020204030202010104020205030201010206030301010306030401010406030501010506030601010606030701010706030801010806030901010906030a01010a06030b01010b06030c01010c06030d01010d06030d02010d05030d03010d04030e03010e0403030109000z0401000201020501000202020601000203020701000103020204020801000104020205020901000206020a01000306020b01000406020c01000506020d01000606020d02000706020d03000806020e03000d04000906020e04000d05000a06020d06000b06020c0600040109000z0301020501000201020601000202020701000203020801000103020204020901000104020205020a01000206020b01000306020c01000406020d01000506020d02000606020d03000706020e03000d04000806020e04000d05000906020d06000a06020c06000b0602050109000z0401020601000301020701000201020801000202020901000203020a01000103020204020b01000104020205020c01000206020d01000306020d02000406020d03000506020e03000d04000606020e04000d05000706020d06000806020c06000906020b06000a0602060109000z0501020701000401020801000301020901000201020a01000202020b01000203020c01000103020204020d01000104020205020d02000206020d03000306020e03000d04000406020e04000d05000506020d06000606020c06000706020b06000806020a0600090602070109000z0601020801000501020901000401020a01000301020b01000201020c01000202020d01000203020d02000103020204020d03000104020205020e03000d04000206020e04000d05000306020d06000406020c06000506020b06000606020a0600070602090600080602080109000z0701020901000601020a01000501020b01000401020c01000301020d01000201020d02000202020d03000203020e03000d04000103020204020e04000d05000104020205020d06000206020c06000306020b06000406020a0600050602090600060602080600070602090109000z0801020a01000701020b01000601020c01000501020d01000401020d02000301020d03000201020e03000d04000202020e04000d05000203020d06000103020204020c06000104020205020b06000206020a06000306020906000406020806000506020706000606020a0109000z0901020b01000801020c01000701020d01000601020d02000501020d03000401020e03000d04000301020e04000d05000201020d06000202020c06000203020b06000103020204020a06000104020205020906000206020806000306020706000406020606000506020b0109000z0a01020c01000901020d01000801020d02000701020d03000601020e03000d04000501020e04000d05000401020d06000301020c06000201020b06000202020a06000203020906000103020204020806000104020205020706000206020606000306020506000406020c0109000z0b01020d01000a01020d02000901020d03000801020e03000d04000701020e04000d05000601020d06000501020c06000401020b06000301020a06000201020906000202020806000203020706000103020204020606000104020205020506000206020406000306020d0209030z0d03030d01010e03030d04030c01010e04030d05030b01010d06030a01010c06030901010b06030801010a06030701010906030601010806030501010706030401010606030301010506030201010406030202010306030203010206030103010204010205030104010d0509030z0d04010d06030e04010d03010c06030e03010d02010b06030d01010a06030c01010906030b01010806030a01010706030901010606030801010506030701010406030601010306030501010206030401010205030301010204030201010104030203030202010103030c0609020z0b06020d06000a06020d05000906020d04000806020e04000d03000706020e03000d02000606020d01000506020c01000406020b01000306020a01000206020901000205020801000204020701000104020203020601000103020202020501000201020401000301020b0609020z0c06000a06020d06000906020d05000806020d04000706020e04000d03000606020e03000d02000506020d01000406020c01000306020b01000206020a01000205020901000204020801000104020203020701000103020202020601000201020501000301020401000a0609020z0b06000906020c06000806020d06000706020d05000606020d04000506020e04000d03000406020e03000d02000306020d01000206020c01000205020b01000204020a0100010402020302090100010302020202080100020102070100030102060100040102050100090609020z0a06000806020b06000706020c06000606020d06000506020d05000406020d04000306020e04000d03000206020e03000d02000205020d01000204020c01000104020203020b01000103020202020a0100020102090100030102080100040102070100050102060100080609020z0906000706020a06000606020b06000506020c06000406020d06000306020d05000206020d04000205020e04000d03000204020e03000d02000104020203020d01000103020202020c01000201020b01000301020a0100040102090100050102080100060102070100070609020z0806000606020906000506020a06000406020b06000306020c06000206020d06000205020d05000204020d04000104020203020e04000d03000103020202020e03000d02000201020d01000301020c01000401020b01000501020a0100060102090100070102080100060609020z0706000506020806000406020906000306020a06000206020b06000205020c06000204020d06000104020203020d05000103020202020d04000201020e04000d03000301020e03000d02000401020d01000501020c01000601020b01000701020a0100080102090100050609020z0606000406020706000306020806000206020906000205020a06000204020b06000104020203020c06000103020202020d06000201020d05000301020d04000401020e04000d03000501020e03000d02000601020d01000701020c01000801020b01000901020a0100040609020z0506000306020606000206020706000205020806000204020906000104020203020a06000103020202020b06000201020c06000301020d06000401020d05000501020d04000601020e04000d03000701020e03000d02000801020d01000901020c01000a01020b0100030609020z0406000206020506000205020606000204020706000104020203020806000103020202020906000201020a06000301020b06000401020c06000501020d06000601020d05000701020d04000801020e04000d03000901020e03000d02000a01020d01000b01020c0100020509010z0204010206030104010203010306030103010202010406030201010506030301010606030401010706030501010806030601010906030701010a06030801010b06030901010c06030a01010d06030b01010d05030c01010d04030d01010e04030d03030d02010e0303020107000z0301000202030401000203030501000103030204030601000104030205030701000206030801000306030901000406030a01000506030b01000606030c01000706030d01000806030d02000906030d03000a06030e03000d04000b06030e04000d05000c06030d0600020607010z0306000205010406000204010506000104010203010606000103010202010706000201010806000301010906000401010a06000501010b06000601010c06000701010d06000801010d05000901010d04000a01010e04000d03000b01010e03000d02000c01010d01000d0607020z0d05010c06020d04010b06020e04010d03010a06020e03010d02010906020d01010806020c01010706020b01010606020a01010506020901010406020801010306020701010206020601010205020501010204020401010104020203020301010103020202020201010d0107030z0c01020d02030b01020d03030a01020e03030d04030901020e04030d05030801020d06030701020c06030601020b06030501020a0603040102090603030102080603020102070603020202060603020302050603010302020402040603010402020502030603020602020209010z0203030201010103030204030301010104030205030401010206030501010306030601010406030701010506030801010606030901010706030a01010806030b01010906030c01010a06030d01010b06030d02010c06030d03010d06030e03010d04010d05030e0401\"],\"platform\":{\"instanceID\":0},\"targets\":[\"135\",\"148\",\"149\"],\"hasMusic\":true,\"musicID\":\"music_fast\",\"partDropsDisabled\":false,\"backgroundSpawns\":[],\"waveSetPath\":\"\",\"rectangleEffectSkin\":1,\"backgroundTileSkin\":1,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.BattleZone Zeta.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.BattleZone Zeta.json new file mode 100644 index 000000000..4f0e76e55 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.BattleZone Zeta.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"BattleZone Zeta\",\"bounds\":{\"x\":410,\"y\":-2010,\"w\":290,\"h\":80},\"type\":2,\"backgroundColor\":{\"r\":0.0,\"g\":0.4000000059604645,\"b\":0.0,\"a\":1.0},\"entities\":[{\"name\":\"Power Rock\",\"ID\":\"151\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":542.5,\"y\":-2042.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Power Rock\",\"ID\":\"152\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":567.5,\"y\":-2037.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Map Background 5\",\"ID\":\"153\",\"faction\":0,\"assetID\":\"mapbg5\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":555.0,\"y\":-2050.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"154\",\"faction\":1,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":540.0,\"y\":-2040.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"155\",\"faction\":0,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":570.0,\"y\":-2040.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"156\",\"faction\":0,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":600.0,\"y\":-2050.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"157\",\"faction\":1,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":510.0,\"y\":-2050.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Bunker\",\"ID\":\"158\",\"faction\":0,\"assetID\":\"bunker_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":565.0,\"y\":-2062.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Bunker\",\"ID\":\"159\",\"faction\":1,\"assetID\":\"bunker_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":545.0,\"y\":-2062.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Ground Base\",\"ID\":\"160\",\"faction\":1,\"assetID\":\"groundcarrier_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":475.0,\"y\":-2045.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Ground Base\",\"ID\":\"161\",\"faction\":0,\"assetID\":\"groundcarrier_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":635.0,\"y\":-2045.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[\"0l060308010k0604030605030705030805030905030a05030b05030c05030d05030e05030f05030g05030h05030i05030j05030k05030l05030m05030m04030m03030m0308010k0m04030m05030l05030k05030j05030i05030h05030g05030f05030e05030d05030c05030b05030a0503090503080503070503060503060403060303060409010k0603010605030705030805030905030a05030b05030c05030d05030e05030f05030g05030h05030i05030j05030k05030l05030m05030m04030m03030m0409010k0m03010m05030l05030k05030j05030i05030h05030g05030f05030e05030d05030c05030b05030a0503090503080503070503060503060403060303060507010k0604010705000603010805000905000a05000b05000c05000d05000e05000f05000g05000h05000i05000j05000k05000l05000m05000m04000m0300070509000k0605020805000604020905000603020a05000b05000c05000d05000e05000f05000g05000h05000i05000j05000k05000l05000m05000m04000m0300080509000k0705020905000605020a05000604020b05000603020c05000d05000e05000f05000g05000h05000i05000j05000k05000l05000m05000m04000m0300090509000k0805020a05000705020b05000605020c05000604020d05000603020e05000f05000g05000h05000i05000j05000k05000l05000m05000m04000m03000a0509000k0905020b05000805020c05000705020d05000605020e05000604020f05000603020g05000h05000i05000j05000k05000l05000m05000m04000m03000b0509000k0a05020c05000905020d05000805020e05000705020f05000605020g05000604020h05000603020i05000j05000k05000l05000m05000m04000m03000c0509000k0b05020d05000a05020e05000905020f05000805020g05000705020h05000605020i05000604020j05000603020k05000l05000m05000m04000m03000d0509000k0c05020e05000b05020f05000a05020g05000905020h05000805020i05000705020j05000605020k05000604020l05000603020m05000m04000m03000e0509000k0d05020f05000c05020g05000b05020h05000a05020i05000905020j05000805020k05000705020l05000605020m05000604020m04000603020m03000f0509000k0e05020g05000d05020h05000c05020i05000b05020j05000a05020k05000905020l05000805020m05000705020m04000605020m03000604020603020g0509000k0f05020h05000e05020i05000d05020j05000c05020k05000b05020l05000a05020m05000905020m04000805020m03000705020605020604020603020h0509000k0g05020i05000f05020j05000e05020k05000d05020l05000c05020m05000b05020m04000a05020m03000905020805020705020605020604020603020i0509000k0h05020j05000g05020k05000f05020l05000e05020m05000d05020m04000c05020m03000b05020a05020905020805020705020605020604020603020j0509000k0i05020k05000h05020l05000g05020m05000f05020m04000e05020m03000d05020c05020b05020a05020905020805020705020605020604020603020k0509000k0j05020l05000i05020m05000h05020m04000g05020m03000f05020e05020d05020c05020b05020a05020905020805020705020605020604020603020l0509000k0k05020m05000j05020m04000i05020m03000h05020g05020f05020e05020d05020c05020b05020a05020905020805020705020605020604020603020m0507020k0m04010l05020m03010k05020j05020i05020h05020g05020f05020e05020d05020c05020b05020a0502090502080502070502060502060402060302\"],\"platform\":{\"instanceID\":0},\"targets\":[\"160\",\"161\"],\"hasMusic\":true,\"musicID\":\"music_fast\",\"partDropsDisabled\":false,\"backgroundSpawns\":[],\"waveSetPath\":\"\",\"rectangleEffectSkin\":1,\"backgroundTileSkin\":1,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Capitol Advanced Trade Sector.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Capitol Advanced Trade Sector.json new file mode 100644 index 000000000..a1cbde764 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Capitol Advanced Trade Sector.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Capitol Advanced Trade Sector\",\"bounds\":{\"x\":1020,\"y\":-1600,\"w\":100,\"h\":100},\"type\":4,\"backgroundColor\":{\"r\":0.0,\"g\":0.4000000059604645,\"b\":0.0,\"a\":1.0},\"entities\":[{\"name\":\"flag-capitolaristuspawn1\",\"ID\":\"flag-capitolaristuspawn1\",\"faction\":0,\"assetID\":\"flag\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1035.0,\"y\":-1620.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"flag-capitolsukratspawn1\",\"ID\":\"flag-capitolsukratspawn1\",\"faction\":0,\"assetID\":\"flag\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1032.5,\"y\":-1652.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"advanced-trader-explainer\",\"faction\":0,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Crusader\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1065.0,\"y\":-1670.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Power Rock\",\"ID\":\"162\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1077.5,\"y\":-1625.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Power Rock\",\"ID\":\"163\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1052.5,\"y\":-1625.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Turret\",\"ID\":\"164\",\"faction\":0,\"assetID\":\"missile_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1107.5,\"y\":-1687.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"165\",\"faction\":0,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1077.5,\"y\":-1622.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"166\",\"faction\":0,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1052.5,\"y\":-1622.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Trader\",\"ID\":\"capitol-advanced-weapons\",\"faction\":0,\"assetID\":\"trader_blueprint\",\"blueprintJSON\":\"{\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":9,\\\"tier\\\":2,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"MediumSide4\\\"},{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":4,\\\"tier\\\":2,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"MediumSide4\\\"},{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":8,\\\"tier\\\":2,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"MediumWing2\\\"},{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":7,\\\"tier\\\":2,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"MediumWing2\\\"},{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":5,\\\"tier\\\":2,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing3\\\"},{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":6,\\\"tier\\\":2,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing3\\\"}]}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1080.0,\"y\":-1662.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Trader\",\"ID\":\"capitol-advanced-spawns\",\"faction\":0,\"assetID\":\"trader_blueprint\",\"blueprintJSON\":\"{\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":10,\\\"tier\\\":0,\\\"secondaryData\\\":\\\"strike_drone\\\",\\\"partID\\\":\\\"MediumSide1\\\"},{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":10,\\\"tier\\\":0,\\\"secondaryData\\\":\\\"counter_drone\\\",\\\"partID\\\":\\\"MediumSide1\\\"},{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":10,\\\"tier\\\":0,\\\"secondaryData\\\":\\\"torpedo_drone\\\",\\\"partID\\\":\\\"MediumSide2\\\"},{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":10,\\\"tier\\\":0,\\\"secondaryData\\\":\\\"gun_drone\\\",\\\"partID\\\":\\\"MediumSide2\\\"}]}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1050.0,\"y\":-1662.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Trader\",\"ID\":\"capitol-advanced-skills\",\"faction\":0,\"assetID\":\"trader_blueprint\",\"blueprintJSON\":\"{\\\"parts\\\":[]}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1040.0,\"y\":-1645.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Trader\",\"ID\":\"capitol-advanced-passives\",\"faction\":0,\"assetID\":\"trader_blueprint\",\"blueprintJSON\":\"{\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":18,\\\"tier\\\":2,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"MediumSide3\\\"},{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":17,\\\"tier\\\":2,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"MediumSide3\\\"},{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":13,\\\"tier\\\":2,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"MediumWing1\\\"},{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":20,\\\"tier\\\":2,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"MediumWing3\\\"},{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":19,\\\"tier\\\":2,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"MediumWing3\\\"}]}\\r\\n\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1090.0,\"y\":-1645.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Turret\",\"ID\":\"167\",\"faction\":0,\"assetID\":\"missile_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1037.5,\"y\":-1685.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Turret\",\"ID\":\"168\",\"faction\":0,\"assetID\":\"missile_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1105.0,\"y\":-1617.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Tank\",\"ID\":\"169\",\"faction\":0,\"assetID\":\"missile_tank\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1105.0,\"y\":-1655.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Tank\",\"ID\":\"170\",\"faction\":0,\"assetID\":\"missile_tank\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1075.0,\"y\":-1685.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Ground Base\",\"ID\":\"171\",\"faction\":0,\"assetID\":\"groundcarrier_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1065.0,\"y\":-1645.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Map Background 3\",\"ID\":\"172\",\"faction\":0,\"assetID\":\"mapbg3\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1070.0,\"y\":-1650.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[\"010404040000\",\"0d080208010c080303080403080503080603080703080803070803060803050803040803030803020803080309010c080201080403080503080603080703080803070803060803050803040803030803020803080409010c080301080503080201080603080703080803070803060803050803040803030803020803080509010c080401080603080301080703080201080803070803060803050803040803030803020803080609010c080501080703080401080803080301070803080201060803050803040803030803020803080709010c080601080803080501070803080401060803080301050803080201040803030803020803020808020c030800040800050800060800070800080800080700080600080500080400080300080200030809000c020802040800050800060800070800080800080700080600080500080400080300080200040809000c030802050800020802060800070800080800080700080600080500080400080300080200050809000c040802060800030802070800020802080800080700080600080500080400080300080200060809000c050802070800040802080800030802080700020802080600080500080400080300080200070809000c060802080800050802080700040802080600030802080500020802080400080300080200080807020c080701070802080601060802080501050802080401040802080301030802080201020802\",\"0803030700070403000304030503000305030504000405030505000403090007030302050300030402050400030502050500040502050307030704030205040303030205050303040204050303050203040901070303010305030403010405030503010505030504010504090107050301050503040301040503030301030503030401030507010703040104050003030105050004030105040005030104050900070305020505000304020504000303020503000403020505070207050401040502050301030502040301030402030301\"],\"platform\":{\"instanceID\":0},\"targets\":[\"advanced-trader-explainer\",\"171\"],\"hasMusic\":true,\"musicID\":\"music_funktify\",\"partDropsDisabled\":false,\"backgroundSpawns\":[],\"waveSetPath\":\"\",\"rectangleEffectSkin\":1,\"backgroundTileSkin\":1,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Capitol Basic Trade Sector.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Capitol Basic Trade Sector.json new file mode 100644 index 000000000..85cd357e5 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Capitol Basic Trade Sector.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Capitol Basic Trade Sector\",\"bounds\":{\"x\":1020,\"y\":-1440,\"w\":100,\"h\":160},\"type\":4,\"backgroundColor\":{\"r\":0.0,\"g\":0.4000000059604645,\"b\":0.0,\"a\":1.0},\"entities\":[{\"name\":\"Power Rock\",\"ID\":\"173\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1092.5,\"y\":-1477.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Power Rock\",\"ID\":\"174\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1092.5,\"y\":-1562.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"175\",\"faction\":0,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1095.0,\"y\":-1475.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"176\",\"faction\":0,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1095.0,\"y\":-1565.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Yard\",\"ID\":\"capitol-basic-yard\",\"faction\":0,\"assetID\":\"yard_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1037.5,\"y\":-1520.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Turret\",\"ID\":\"177\",\"faction\":0,\"assetID\":\"missile_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1110.0,\"y\":-1520.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Tank\",\"ID\":\"178\",\"faction\":0,\"assetID\":\"missile_tank\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1105.0,\"y\":-1535.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Tank\",\"ID\":\"179\",\"faction\":0,\"assetID\":\"missile_tank\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1105.0,\"y\":-1505.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Turret\",\"ID\":\"180\",\"faction\":0,\"assetID\":\"missile_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1105.0,\"y\":-1457.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Turret\",\"ID\":\"181\",\"faction\":0,\"assetID\":\"missile_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1105.0,\"y\":-1582.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Trader\",\"ID\":\"capitol-basic-spawns\",\"faction\":0,\"assetID\":\"trader_blueprint\",\"blueprintJSON\":\"{\\\"parts\\\":[]}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1082.5,\"y\":-1515.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Trader\",\"ID\":\"capitol-basic-weapons\",\"faction\":0,\"assetID\":\"trader_blueprint\",\"blueprintJSON\":\"{\\\"parts\\\":[]}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1082.5,\"y\":-1525.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Trader\",\"ID\":\"capitol-basic-passive\",\"faction\":0,\"assetID\":\"trader_blueprint\",\"blueprintJSON\":\"{\\\"parts\\\":[]}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1072.5,\"y\":-1535.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Trader\",\"ID\":\"capitol-basic-skills\",\"faction\":0,\"assetID\":\"trader_blueprint\",\"blueprintJSON\":\"{\\\"parts\\\":[]}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1072.5,\"y\":-1505.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Map Background 5\",\"ID\":\"182\",\"faction\":0,\"assetID\":\"mapbg5\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1070.0,\"y\":-1520.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[\"0e070208020d080200080300080400080500080600080700080800080900080a00080b00080c00080d00070d00080207030d070202080303080403080503080603080703080803080903080a03080b03080c03080d03070d03080309010d080201080403070201080503080603080703080803080903080a03080b03080c03080d03070d03080409010d080301080503080201080603070201080703080803080903080a03080b03080c03080d03070d03080509010d080401080603080301080703080201080803070201080903080a03080b03080c03080d03070d03080609010d080501080703080401080803080301080903080201080a03070201080b03080c03080d03070d03080709010d080601080803080501080903080401080a03080301080b03080201080c03070201080d03070d03080809010d080701080903080601080a03080501080b03080401080c03080301080d03080201070d03070201080909010d080801080a03080701080b03080601080c03080501080d03080401070d03080301080201070201080a09010d080901080b03080801080c03080701080d03080601070d03080501080401080301080201070201080b09010d080a01080c03080901080d03080801070d03080701080601080501080401080301080201070201080c09010d080b01080d03080a01070d03080901080801080701080601080501080401080301080201070201070d08020d080d00080c00080b00080a00080900080800080700080600080500080400080300080200070200080d07020d080c01070d02080b01080a01080901080801080701080601080501080401080301080201070201\"],\"platform\":{\"instanceID\":0},\"targets\":[],\"hasMusic\":true,\"musicID\":\"music_funktify\",\"partDropsDisabled\":false,\"backgroundSpawns\":[],\"waveSetPath\":\"\",\"rectangleEffectSkin\":1,\"backgroundTileSkin\":1,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Capitol Center.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Capitol Center.json new file mode 100644 index 000000000..f69fb87bc --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Capitol Center.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Capitol Center\",\"bounds\":{\"x\":860,\"y\":-1440,\"w\":160,\"h\":160},\"type\":4,\"backgroundColor\":{\"r\":0.0,\"g\":0.800000011920929,\"b\":0.0,\"a\":1.0},\"entities\":[{\"name\":\"Missile Station\",\"ID\":\"183\",\"faction\":0,\"assetID\":\"missile_station\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":987.5,\"y\":-1565.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Station\",\"ID\":\"184\",\"faction\":0,\"assetID\":\"missile_station\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":987.5,\"y\":-1475.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Station\",\"ID\":\"185\",\"faction\":0,\"assetID\":\"missile_station\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":892.5,\"y\":-1565.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Station\",\"ID\":\"186\",\"faction\":0,\"assetID\":\"missile_station\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":892.5,\"y\":-1475.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Uninfected Leader\",\"ID\":\"187\",\"faction\":0,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Uninfected Leader\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":940.0,\"y\":-1510.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"shoot-things\",\"faction\":0,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Shoots Things\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":927.5,\"y\":-1527.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"shoot-things-praise\",\"faction\":0,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Shoots Things\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":952.5,\"y\":-1527.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Map Background 5\",\"ID\":\"188\",\"faction\":0,\"assetID\":\"mapbg5\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":940.0,\"y\":-1520.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[\"0I030207000H0402000303030502000203030602000204030702000205030802000206030902000207030a02000208030b02000209030c0200020a030c0300020b030d0300020c030d0400030c030d0500030d030d0600040d030d0700050d030d0800060d030d0900070d030d0a00080d030d0b00090d030d0c000a0d030c0c000b0d030c0d00040209000H0302020502000303020602000203020702000204020802000205020902000206020a02000207020b02000208020c02000209020c0300020a020d0300020b020d0400020c020d0500030c020d0600030d020d0700040d020d0800050d020d0900060d020d0a00070d020d0b00080d020d0c00090d020c0c000a0d020c0d000b0d02050209000H0402020602000302020702000303020802000203020902000204020a02000205020b02000206020c02000207020c03000208020d03000209020d0400020a020d0500020b020d0600020c020d0700030c020d0800030d020d0900040d020d0a00050d020d0b00060d020d0c00070d020c0c00080d020c0d00090d020b0d000a0d02060209000H0502020702000402020802000302020902000303020a02000203020b02000204020c02000205020c03000206020d03000207020d04000208020d05000209020d0600020a020d0700020b020d0800020c020d0900030c020d0a00030d020d0b00040d020d0c00050d020c0c00060d020c0d00070d020b0d00080d020a0d00090d02070209000H0602020802000502020902000402020a02000302020b02000303020c02000203020c03000204020d03000205020d04000206020d05000207020d06000208020d07000209020d0800020a020d0900020b020d0a00020c020d0b00030c020d0c00030d020c0c00040d020c0d00050d020b0d00060d020a0d00070d02090d00080d02080209000H0702020902000602020a02000502020b02000402020c02000302020c03000303020d03000203020d04000204020d05000205020d06000206020d07000207020d08000208020d09000209020d0a00020a020d0b00020b020d0c00020c020c0c00030c020c0d00030d020b0d00040d020a0d00050d02090d00060d02080d00070d02090209000H0802020a02000702020b02000602020c02000502020c03000402020d03000302020d04000303020d05000203020d06000204020d07000205020d08000206020d09000207020d0a000208020d0b000209020d0c00020a020c0c00020b020c0d00020c020b0d00030c020a0d00030d02090d00040d02080d00050d02070d00060d020a0209000H0902020b02000802020c02000702020c03000602020d03000502020d04000402020d05000302020d06000303020d07000203020d08000204020d09000205020d0a000206020d0b000207020d0c000208020c0c000209020c0d00020a020b0d00020b020a0d00020c02090d00030c02080d00030d02070d00040d02060d00050d020b0209000H0a02020c02000902020c03000802020d03000702020d04000602020d05000502020d06000402020d07000302020d08000303020d09000203020d0a000204020d0b000205020d0c000206020c0c000207020c0d000208020b0d000209020a0d00020a02090d00020b02080d00020c02070d00030c02060d00030d02050d00040d020c0207030H0b02020c03030a02020d03030902020d04030802020d05030702020d06030602020d07030502020d08030402020d09030302020d0a030303020d0b030203020d0c030204020c0c030205020c0d030206020b0d030207020a0d03020802090d03020902080d03020a02070d03020b02060d03020c02050d03030c02040d03030d02020307000H030300020403030200020503040200020603050200020703060200020803070200020903080200020a03090200020b030a0200020c030b0200030c030c0200030d030c0300040d030d0300050d030d0400060d030d0500070d030d0600080d030d0700090d030d08000a0d030d09000b0d030d0a000c0d030d0b000c0c030d0c00030307020H0302010203020402010204020502010205020602010206020702010207020802010208020902010209020a0201020a020b0201020b020c0201020c020c0301030c020d0301030d020d0401040d020d0501050d020d0601060d020d0701070d020d0801080d020d0901090d020d0a010a0d020d0b010b0d020d0c010c0d020c0c010c0307010H0c02010d03000b02010d04000a02010d05000902010d06000802010d07000702010d08000602010d09000502010d0a000402010d0b000302010d0c000303010c0c000203010c0d000204010b0d000205010a0d00020601090d00020701080d00020801070d00020901060d00020a01050d00020b01040d00020c01030d00030c010d0307030H0c03020d04030c02020d05030b02020d06030a02020d07030902020d08030802020d09030702020d0a030602020d0b030502020d0c030402020c0c030302020c0d030303020b0d030203020a0d03020402090d03020502080d03020602070d03020702060d03020802050d03020902040d03020a02030d03020b02030c03020c02020409010H020301020503030301020603030201020703040201020803050201020903060201020a03070201020b03080201020c03090201030c030a0201030d030b0201040d030c0201050d030c0301060d030d0301070d030d0401080d030d0501090d030d06010a0d030d07010b0d030d08010c0d030d09010c0c030d0a010d0c030d0b010d0409010H0d03010d05030c03010d06030c02010d07030b02010d08030a02010d09030902010d0a030802010d0b030702010d0c030602010c0c030502010c0d030402010b0d030302010a0d03030301090d03020301080d03020401070d03020501060d03020601050d03020701040d03020801030d03020901030c03020a01020c03020b01020509010H020401020603020301020703030301020803030201020903040201020a03050201020b03060201020c03070201030c03080201030d03090201040d030a0201050d030b0201060d030c0201070d030c0301080d030d0301090d030d04010a0d030d05010b0d030d06010c0d030d07010c0c030d08010d0c030d09010d0b030d0a010d0509010H0d04010d06030d03010d07030c03010d08030c02010d09030b02010d0a030a02010d0b030902010d0c030802010c0c030702010c0d030602010b0d030502010a0d03040201090d03030201080d03030301070d03020301060d03020401050d03020501040d03020601030d03020701030c03020801020c03020901020b03020a01020609010H020501020703020401020803020301020903030301020a03030201020b03040201020c03050201030c03060201030d03070201040d03080201050d03090201060d030a0201070d030b0201080d030c0201090d030c03010a0d030d03010b0d030d04010c0d030d05010c0c030d06010d0c030d07010d0b030d08010d0a030d09010d0609010H0d05010d07030d04010d08030d03010d09030c03010d0a030c02010d0b030b02010d0c030a02010c0c030902010c0d030802010b0d030702010a0d03060201090d03050201080d03040201070d03030201060d03030301050d03020301040d03020401030d03020501030c03020601020c03020701020b03020801020a03020901020709010H020601020803020501020903020401020a03020301020b03030301020c03030201030c03040201030d03050201040d03060201050d03070201060d03080201070d03090201080d030a0201090d030b02010a0d030c02010b0d030c03010c0d030d03010c0c030d04010d0c030d05010d0b030d06010d0a030d07010d09030d08010d0709010H0d06010d08030d05010d09030d04010d0a030d03010d0b030c03010d0c030c02010c0c030b02010c0d030a02010b0d030902010a0d03080201090d03070201080d03060201070d03050201060d03040201050d03030201040d03030301030d03020301030c03020401020c03020501020b03020601020a03020701020903020801020809010H020701020903020601020a03020501020b03020401020c03020301030c03030301030d03030201040d03040201050d03050201060d03060201070d03070201080d03080201090d030902010a0d030a02010b0d030b02010c0d030c02010c0c030c03010d0c030d03010d0b030d04010d0a030d05010d09030d06010d08030d07010d0809010H0d07010d09030d06010d0a030d05010d0b030d04010d0c030d03010c0c030c03010c0d030c02010b0d030b02010a0d030a0201090d03090201080d03080201070d03070201060d03060201050d03050201040d03040201030d03030201030c03030301020c03020301020b03020401020a03020501020903020601020803020701020909010H020801020a03020701020b03020601020c03020501030c03020401030d03020301040d03030301050d03030201060d03040201070d03050201080d03060201090d030702010a0d030802010b0d030902010c0d030a02010c0c030b02010d0c030c02010d0b030c03010d0a030d03010d09030d04010d08030d05010d07030d06010d0909010H0d08010d0a030d07010d0b030d06010d0c030d05010c0c030d04010c0d030d03010b0d030c03010a0d030c0201090d030b0201080d030a0201070d03090201060d03080201050d03070201040d03060201030d03050201030c03040201020c03030201020b03030301020a03020301020903020401020803020501020703020601020a09010H020901020b03020801020c03020701030c03020601030d03020501040d03020401050d03020301060d03030301070d03030201080d03040201090d030502010a0d030602010b0d030702010c0d030802010c0c030902010d0c030a02010d0b030b02010d0a030c02010d09030c03010d08030d03010d07030d04010d06030d05010d0a09010H0d09010d0b030d08010d0c030d07010c0c030d06010c0d030d05010b0d030d04010a0d030d0301090d030c0301080d030c0201070d030b0201060d030a0201050d03090201040d03080201030d03070201030c03060201020c03050201020b03040201020a03030201020903030301020803020301020703020401020603020501020b09010H020a01020c03020901030c03020801030d03020701040d03020601050d03020501060d03020401070d03020301080d03030301090d030302010a0d030402010b0d030502010c0d030602010c0c030702010d0c030802010d0b030902010d0a030a02010d09030b02010d08030c02010d07030c03010d06030d03010d05030d04010d0b09010H0d0a010d0c030d09010c0c030d08010c0d030d07010b0d030d06010a0d030d0501090d030d0401080d030d0301070d030c0301060d030c0201050d030b0201040d030a0201030d03090201030c03080201020c03070201020b03060201020a03050201020903040201020803030201020703030301020603020301020503020401020c07010H020b01030c00020a01030d00020901040d00020801050d00020701060d00020601070d00020501080d00020401090d000203010a0d000303010b0d000302010c0d000402010c0c000502010d0c000602010d0b000702010d0a000802010d09000902010d08000a02010d07000b02010d06000c02010d05000c03010d04000d0301030c07030H020c02030d03020b02040d03020a02050d03020902060d03020802070d03020702080d03020602090d030205020a0d030204020b0d030203020c0d030303020c0c030302020d0c030402020d0b030502020d0a030602020d09030702020d08030802020d07030902020d06030a02020d05030b02020d04030c02020d03030c03020c0c07000H0d0c000c0d030d0b000b0d030d0a000a0d030d0900090d030d0800080d030d0700070d030d0600060d030d0500050d030d0400040d030d0300030d030c0300030c030c0200020c030b0200020b030a0200020a030902000209030802000208030702000207030602000206030502000205030402000204030302000203030303000d0c07020H0d0b010c0c020d0a010c0d020d09010b0d020d08010a0d020d0701090d020d0601080d020d0501070d020d0401060d020d0301050d020c0301040d020c0201030d020b0201030c020a0201020c02090201020b02080201020a02070201020902060201020802050201020702040201020602030201020502030301020402020301030d07010H030c01040d00020c01050d00020b01060d00020a01070d00020901080d00020801090d000207010a0d000206010b0d000205010c0d000204010c0c000203010d0c000303010d0b000302010d0a000402010d09000502010d08000602010d07000702010d06000802010d05000902010d04000a02010d03000b02010c03000c0201040d09000H030d02050d00030c02060d00020c02070d00020b02080d00020a02090d000209020a0d000208020b0d000207020c0d000206020c0c000205020d0c000204020d0b000203020d0a000303020d09000302020d08000402020d07000502020d06000602020d05000702020d04000802020d03000902020c03000a02020c02000b0202050d09000H040d02060d00030d02070d00030c02080d00020c02090d00020b020a0d00020a020b0d000209020c0d000208020c0c000207020d0c000206020d0b000205020d0a000204020d09000203020d08000303020d07000302020d06000402020d05000502020d04000602020d03000702020c03000802020c02000902020b02000a0202060d09000H050d02070d00040d02080d00030d02090d00030c020a0d00020c020b0d00020b020c0d00020a020c0c000209020d0c000208020d0b000207020d0a000206020d09000205020d08000204020d07000203020d06000303020d05000302020d04000402020d03000502020c03000602020c02000702020b02000802020a0200090202070d09000H060d02080d00050d02090d00040d020a0d00030d020b0d00030c020c0d00020c020c0c00020b020d0c00020a020d0b000209020d0a000208020d09000207020d08000206020d07000205020d06000204020d05000203020d04000303020d03000302020c03000402020c02000502020b02000602020a0200070202090200080202080d09000H070d02090d00060d020a0d00050d020b0d00040d020c0d00030d020c0c00030c020d0c00020c020d0b00020b020d0a00020a020d09000209020d08000208020d07000207020d06000206020d05000205020d04000204020d03000203020c03000303020c02000302020b02000402020a0200050202090200060202080200070202090d09000H080d020a0d00070d020b0d00060d020c0d00050d020c0c00040d020d0c00030d020d0b00030c020d0a00020c020d0900020b020d0800020a020d07000209020d06000208020d05000207020d04000206020d03000205020c03000204020c02000203020b02000303020a02000302020902000402020802000502020702000602020a0d09000H090d020b0d00080d020c0d00070d020c0c00060d020d0c00050d020d0b00040d020d0a00030d020d0900030c020d0800020c020d0700020b020d0600020a020d05000209020d04000208020d03000207020c03000206020c02000205020b02000204020a02000203020902000303020802000302020702000402020602000502020b0d09000H0a0d020c0d00090d020c0c00080d020d0c00070d020d0b00060d020d0a00050d020d0900040d020d0800030d020d0700030c020d0600020c020d0500020b020d0400020a020d03000209020c03000208020c02000207020b02000206020a02000205020902000204020802000203020702000303020602000302020502000402020c0d07020H0c0c010b0d020d0c010a0d020d0b01090d020d0a01080d020d0901070d020d0801060d020d0701050d020d0601040d020d0501030d020d0401030c020d0301020c020c0301020b020c0201020a020b02010209020a0201020802090201020702080201020602070201020502060201020402050201020302040201030302030201\"],\"platform\":{\"instanceID\":0},\"targets\":[\"187\",\"shoot-things\",\"shoot-things-praise\"],\"hasMusic\":true,\"musicID\":\"music_funktify\",\"partDropsDisabled\":false,\"backgroundSpawns\":[],\"waveSetPath\":\"\",\"rectangleEffectSkin\":1,\"backgroundTileSkin\":1,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Capitol Challenge Sector.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Capitol Challenge Sector.json new file mode 100644 index 000000000..74bbb6af7 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Capitol Challenge Sector.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Capitol Challenge Sector\",\"bounds\":{\"x\":760,\"y\":-1440,\"w\":100,\"h\":160},\"type\":4,\"backgroundColor\":{\"r\":0.0,\"g\":0.4000000059604645,\"b\":0.0,\"a\":1.0},\"entities\":[{\"name\":\"Power Rock\",\"ID\":\"189\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":797.5,\"y\":-1572.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Power Rock\",\"ID\":\"190\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":797.5,\"y\":-1467.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"challenge-explainer\",\"faction\":0,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Beamer\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":800.0,\"y\":-1505.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"fighting-style\",\"faction\":0,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Cruiser - ep1\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":800.0,\"y\":-1535.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Crusader\",\"ID\":\"missile-station-failure\",\"faction\":0,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Crusader\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":800.0,\"y\":-1557.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Yard\",\"ID\":\"capitol-challenge-yard\",\"faction\":0,\"assetID\":\"yard_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":820.0,\"y\":-1520.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Turret\",\"ID\":\"191\",\"faction\":0,\"assetID\":\"missile_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":770.0,\"y\":-1520.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Turret\",\"ID\":\"192\",\"faction\":0,\"assetID\":\"missile_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":775.0,\"y\":-1592.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Turret\",\"ID\":\"193\",\"faction\":0,\"assetID\":\"missile_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":775.0,\"y\":-1447.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Tank\",\"ID\":\"194\",\"faction\":0,\"assetID\":\"missile_tank\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":775.0,\"y\":-1495.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Tank\",\"ID\":\"195\",\"faction\":0,\"assetID\":\"missile_tank\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":775.0,\"y\":-1545.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Jump Gate\",\"ID\":\"196\",\"faction\":0,\"assetID\":\"core_gate\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":842.5,\"y\":-1520.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"The Architect\",\"ID\":\"the-architect\",\"faction\":0,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Frigate\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":827.5,\"y\":-1520.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"197\",\"faction\":0,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":795.0,\"y\":-1465.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"198\",\"faction\":0,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":795.0,\"y\":-1575.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Map Background 1\",\"ID\":\"199\",\"faction\":0,\"assetID\":\"mapbg1\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":810.0,\"y\":-1520.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[\"070101070006020100010203030100010303010403010503020109000601010203010001020201030201040201050203010800060201020101020102020103020104020105020102090106010101010303020101010403030101010503010309010601020101040301010101050302010103010101040901060103010105030102010101010201010301010105080306010401010301010201010101020101030101\",\"040307070003040700030803040800040707030303070204080303080203080701030307010408000407010408070203040701030802030701\",\"07010a080106010b03010c03010d03010e03020e03030e03010b090106010a01010c03010d03010e03020e03030e03010c090106010b01010d03010a01010e03020e03030e03010d090106010c01010e03010b01020e03010a01030e03010e070106010d01020e00010c01030e00010b01010a01020e090006010e02030e00010d02010c02010b02010a02030e080006020e02010e02010d02010c02010b02010a02\"],\"platform\":{\"instanceID\":0},\"targets\":[\"challenge-explainer\",\"fighting-style\",\"missile-station-failure\",\"the-architect\"],\"hasMusic\":true,\"musicID\":\"music_funktify\",\"partDropsDisabled\":false,\"backgroundSpawns\":[],\"waveSetPath\":\"\",\"rectangleEffectSkin\":1,\"backgroundTileSkin\":1,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Capitol North-West.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Capitol North-West.json new file mode 100644 index 000000000..6b4153b6b --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Capitol North-West.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Capitol North-West\",\"bounds\":{\"x\":760,\"y\":-1340,\"w\":100,\"h\":100},\"type\":4,\"backgroundColor\":{\"r\":0.0,\"g\":0.4000000059604645,\"b\":0.0,\"a\":1.0},\"entities\":[{\"name\":\"ShellCore\",\"ID\":\"infected-attack-capitol\",\"faction\":0,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Frigate\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":832.5,\"y\":-1412.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"lost-scouter\",\"faction\":0,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Heavy Scouter\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":822.5,\"y\":-1420.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Power Rock\",\"ID\":\"200\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":835.0,\"y\":-1367.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Power Rock\",\"ID\":\"201\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":787.5,\"y\":-1415.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Tank\",\"ID\":\"202\",\"faction\":0,\"assetID\":\"missile_tank\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":805.0,\"y\":-1355.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Tank\",\"ID\":\"203\",\"faction\":0,\"assetID\":\"missile_tank\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":775.0,\"y\":-1385.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Turret\",\"ID\":\"204\",\"faction\":0,\"assetID\":\"missile_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":772.5,\"y\":-1352.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Turret\",\"ID\":\"205\",\"faction\":0,\"assetID\":\"missile_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":775.0,\"y\":-1422.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Turret\",\"ID\":\"206\",\"faction\":0,\"assetID\":\"missile_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":842.5,\"y\":-1355.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"207\",\"faction\":0,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":835.0,\"y\":-1365.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"208\",\"faction\":0,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":785.0,\"y\":-1415.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Ground Base\",\"ID\":\"209\",\"faction\":0,\"assetID\":\"groundcarrier_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":815.0,\"y\":-1395.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"capitol-not-newborn\",\"faction\":0,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Newborn\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":790.0,\"y\":-1370.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Map Background 2\",\"ID\":\"210\",\"faction\":0,\"assetID\":\"mapbg2\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":810.0,\"y\":-1390.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[\"0d010107000c020100010203030100010303040100010403050100010503060100010603070100010703020109000c010102030100010202040100010302050100010402060100010502070100010602010702030109000c020102040100010102050100010202060100010302070100010402010502010602010702040109000c030102050100020102060100010102070100010202010302010402010502010602010702050109000c040102060100030102070100020102010102010202010302010402010502010602010702060109000c050102070100040102030102020102010102010202010302010402010502010602010702070108000c060102050102040102030102020102010102010202010302010402010502010602010702010209010c010101010303020101010403030101010503040101010603050101010703060101070101010309010c010201010403010101010503020101010603030101010703040101050101060101070101010409010c010301010503010201010603010101010703020101030101040101050101060101070101010509010c010401010603010301010703010201010101020101030101040101050101060101070101010609010c010501010703010401010301010201010101020101030101040101050101060101070101010708030c010601010501010401010301010201010101020101030101040101050101060101070101\",\"0804040700070504000405030604000406030605000506030606000504090007040402060400040502060500040602060600050602060407030705040206050304040206060304050205060304060204050901070404010406030504010506030604010606030605010605090107060401060603050401050603040401040603040501040607010704050105060004040106060005040106050006040105060900070406020606000405020605000404020604000504020606070207060501050602060401040602050401040502040401\",\"010505040000\"],\"platform\":{\"instanceID\":0},\"targets\":[\"infected-attack-capitol\",\"lost-scouter\",\"209\",\"capitol-not-newborn\"],\"hasMusic\":true,\"musicID\":\"music_funktify\",\"partDropsDisabled\":false,\"backgroundSpawns\":[],\"waveSetPath\":\"\",\"rectangleEffectSkin\":1,\"backgroundTileSkin\":1,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Capitol North.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Capitol North.json new file mode 100644 index 000000000..f00307c49 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Capitol North.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Capitol North\",\"bounds\":{\"x\":860,\"y\":-1340,\"w\":160,\"h\":100},\"type\":4,\"backgroundColor\":{\"r\":0.0,\"g\":0.4000000059604645,\"b\":0.0,\"a\":1.0},\"entities\":[{\"name\":\"Power Rock\",\"ID\":\"211\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":977.5,\"y\":-1372.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Power Rock\",\"ID\":\"212\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":902.5,\"y\":-1372.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"213\",\"faction\":0,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":980.0,\"y\":-1370.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"214\",\"faction\":0,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":900.0,\"y\":-1370.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Turret\",\"ID\":\"215\",\"faction\":0,\"assetID\":\"missile_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":940.0,\"y\":-1350.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Turret\",\"ID\":\"216\",\"faction\":0,\"assetID\":\"missile_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":880.0,\"y\":-1355.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Turret\",\"ID\":\"217\",\"faction\":0,\"assetID\":\"missile_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1000.0,\"y\":-1355.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Tank\",\"ID\":\"218\",\"faction\":0,\"assetID\":\"missile_tank\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":925.0,\"y\":-1355.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Tank\",\"ID\":\"219\",\"faction\":0,\"assetID\":\"missile_tank\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":955.0,\"y\":-1355.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"clearly-delusional\",\"ID\":\"clearly-delusional\",\"faction\":0,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":917.5,\"y\":-1362.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"capitol-northern-heavy-scouter\",\"faction\":0,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Heavy Scouter\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":925.0,\"y\":-1370.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Tank\",\"ID\":\"220\",\"faction\":0,\"assetID\":\"missile_tank\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":995.0,\"y\":-1365.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Tank\",\"ID\":\"221\",\"faction\":0,\"assetID\":\"missile_tank\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":885.0,\"y\":-1365.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"222\",\"faction\":0,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":955.0,\"y\":-1405.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"223\",\"faction\":0,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":925.0,\"y\":-1405.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Jump Gate\",\"ID\":\"224\",\"faction\":0,\"assetID\":\"core_gate\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":940.0,\"y\":-1415.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Map Background 3\",\"ID\":\"225\",\"faction\":0,\"assetID\":\"mapbg3\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":940.0,\"y\":-1390.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[\"0e020107000d0301000202030401000501000601000701000801000901000a01000b01000c01000d01000d0200030109000d0201020401000202020501000601000701000801000901000a01000b01000c01000d01000d0200040109000d0301020501000201020601000202020701000801000901000a01000b01000c01000d01000d0200050109000d0401020601000301020701000201020801000202020901000a01000b01000c01000d01000d0200060109000d0501020701000401020801000301020901000201020a01000202020b01000c01000d01000d0200070109000d0601020801000501020901000401020a01000301020b01000201020c01000202020d01000d0200080109000d0701020901000601020a01000501020b01000401020c01000301020d01000201020d0200020202090109000d0801020a01000701020b01000601020c01000501020d01000401020d02000301020201020202020a0109000d0901020b01000801020c01000701020d01000601020d02000501020401020301020201020202020b0109000d0a01020c01000901020d01000801020d02000701020601020501020401020301020201020202020c0109000d0b01020d01000a01020d02000901020801020701020601020501020401020301020201020202020d0107030d0c01020d02030b01020a0102090102080102070102060102050102040102030102020102020202020208030d0201010301010401010501010601010701010801010901010a01010b01010c01010d01010d02010d0208030d0d01010c01010b01010a0101090101080101070101060101050101040101030101020101020201\"],\"platform\":{\"instanceID\":0},\"targets\":[\"clearly-delusional\",\"capitol-northern-heavy-scouter\"],\"hasMusic\":true,\"musicID\":\"music_funktify\",\"partDropsDisabled\":false,\"backgroundSpawns\":[],\"waveSetPath\":\"\",\"rectangleEffectSkin\":1,\"backgroundTileSkin\":1,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Capitol South-West.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Capitol South-West.json new file mode 100644 index 000000000..7cf32909b --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Capitol South-West.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Capitol South-West\",\"bounds\":{\"x\":760,\"y\":-1600,\"w\":100,\"h\":100},\"type\":4,\"backgroundColor\":{\"r\":0.0,\"g\":0.4000000059604645,\"b\":0.0,\"a\":1.0},\"entities\":[{\"name\":\"ShellCore\",\"ID\":\"core-of-world-explainer\",\"faction\":0,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Frigate\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":840.0,\"y\":-1635.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Power Rock\",\"ID\":\"226\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":787.5,\"y\":-1625.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Power Rock\",\"ID\":\"227\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":792.5,\"y\":-1667.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Power Rock\",\"ID\":\"228\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":835.0,\"y\":-1672.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Perfectly Sane\",\"ID\":\"perfectly-sane\",\"faction\":0,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"{\\\"entityName\\\":\\\"Unnamed\\\",\\\"coreSpriteID\\\":\\\"core1_light\\\",\\\"coreShellSpriteID\\\":\\\"core2_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":0,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":-0.699999988079071},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":21,\\\"tier\\\":0,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"MediumCenter5\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":1.399999976158142,\\\"y\\\":-1.2999999523162842},\\\"rotation\\\":90.0,\\\"mirrored\\\":true,\\\"abilityID\\\":13,\\\"tier\\\":2,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"MediumSide3\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":-1.399999976158142,\\\"y\\\":-1.2999999523162842},\\\"rotation\\\":-90.0,\\\"mirrored\\\":false,\\\"abilityID\\\":13,\\\"tier\\\":2,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"MediumSide3\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":-1.2999999523162842},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":2,\\\"tier\\\":2,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"MediumCenter3\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":1.7000000476837159,\\\"y\\\":1.2999999523162842},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":6,\\\"tier\\\":2,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing3\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":-1.600000023841858,\\\"y\\\":1.2999999523162842},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":6,\\\"tier\\\":2,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing3\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":0.800000011920929,\\\"y\\\":1.2000000476837159},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":26,\\\"tier\\\":0,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"MediumWing2\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":-0.800000011920929,\\\"y\\\":1.2000000476837159},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":7,\\\"tier\\\":2,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"MediumWing2\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":1.0,\\\"y\\\":-0.20000000298023225},\\\"rotation\\\":-90.0,\\\"mirrored\\\":false,\\\"abilityID\\\":4,\\\"tier\\\":2,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"MediumWing1\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":-1.0,\\\"y\\\":-0.20000000298023225},\\\"rotation\\\":90.0,\\\"mirrored\\\":true,\\\"abilityID\\\":4,\\\"tier\\\":2,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"MediumWing1\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":2.0999999046325685},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":1,\\\"tier\\\":2,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallCenter4\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":1.399999976158142},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":27,\\\"tier\\\":0,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"MediumCenter4\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":0.5},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":13,\\\"tier\\\":2,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"MediumCenter3\\\",\\\"shiny\\\":false}],\\\"dialogue\\\":{\\\"instanceID\\\":0},\\\"useCustomDroneType\\\":false,\\\"customDroneType\\\":0}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":822.5,\"y\":-1617.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Tank\",\"ID\":\"229\",\"faction\":0,\"assetID\":\"missile_tank\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":805.0,\"y\":-1685.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Tank\",\"ID\":\"230\",\"faction\":0,\"assetID\":\"missile_tank\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":775.0,\"y\":-1655.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Turret\",\"ID\":\"231\",\"faction\":0,\"assetID\":\"missile_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":772.5,\"y\":-1687.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"232\",\"faction\":0,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":790.0,\"y\":-1670.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Turret\",\"ID\":\"233\",\"faction\":0,\"assetID\":\"missile_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":842.5,\"y\":-1685.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Turret\",\"ID\":\"234\",\"faction\":0,\"assetID\":\"missile_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":775.0,\"y\":-1615.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"235\",\"faction\":0,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":785.0,\"y\":-1625.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"236\",\"faction\":0,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":835.0,\"y\":-1675.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Ground Base\",\"ID\":\"237\",\"faction\":0,\"assetID\":\"groundcarrier_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":815.0,\"y\":-1645.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Map Background 4\",\"ID\":\"238\",\"faction\":0,\"assetID\":\"mapbg4\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":810.0,\"y\":-1650.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[\"0d030809000c020802040800010802050800010702060800010602070800010502010402010302010202010208010c010303010403010503010603010703010803020803030803040803050803060803070803010309010c010201010403010503010603010703010803020803030803040803050803060803070803010409010c010301010503010201010603010703010803020803030803040803050803060803070803010509010c010401010603010301010703010201010803020803030803040803050803060803070803010609010c010501010703010401010803010301020803010201030803040803050803060803070803010709010c010601010803010501020803010401030803010301040803010201050803060803070803010807010c010701020800010601030800010501040800010401050800010301060800010201070800020809000c030800010802040800010702050800010602060800010502070800010402010302010202040809000c030802050800020802060800010802070800010702010602010502010402010302010202050809000c040802060800030802070800020802010802010702010602010502010402010302010202060809000c050802070800040802030802020802010802010702010602010502010402010302010202070808000c060802050802040802030802020802010802010702010602010502010402010302010202\",\"0804030700070503000404030603000405030604000505030605000503090007040302060300040402060400040502060500050502060307030705030206040304030206050304040205050304050204040901070403010405030503010505030603010605030604010604090107060301060503050301050503040301040503040401040507010704040105050004030106050005030106040006030105050900070405020605000404020604000403020603000503020605070207060401050502060301040502050301040402040301\",\"010504040000\"],\"platform\":{\"instanceID\":0},\"targets\":[\"core-of-world-explainer\",\"perfectly-sane\",\"237\"],\"hasMusic\":true,\"musicID\":\"music_funktify\",\"partDropsDisabled\":false,\"backgroundSpawns\":[],\"waveSetPath\":\"\",\"rectangleEffectSkin\":1,\"backgroundTileSkin\":1,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Capitol South.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Capitol South.json new file mode 100644 index 000000000..0de4d31b8 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Capitol South.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Capitol South\",\"bounds\":{\"x\":860,\"y\":-1600,\"w\":160,\"h\":100},\"type\":4,\"backgroundColor\":{\"r\":0.0,\"g\":0.4000000059604645,\"b\":0.0,\"a\":1.0},\"entities\":[{\"name\":\"ShellCore\",\"ID\":\"capitol-south-informant\",\"faction\":0,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Cruiser - ep1\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":925.0,\"y\":-1670.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Power Rock\",\"ID\":\"239\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":977.5,\"y\":-1667.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Power Rock\",\"ID\":\"240\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":902.5,\"y\":-1667.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Turret\",\"ID\":\"241\",\"faction\":0,\"assetID\":\"missile_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":940.0,\"y\":-1690.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Turret\",\"ID\":\"242\",\"faction\":0,\"assetID\":\"missile_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1000.0,\"y\":-1685.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Turret\",\"ID\":\"243\",\"faction\":0,\"assetID\":\"missile_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":880.0,\"y\":-1685.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Tank\",\"ID\":\"244\",\"faction\":0,\"assetID\":\"missile_tank\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":955.0,\"y\":-1685.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Tank\",\"ID\":\"245\",\"faction\":0,\"assetID\":\"missile_tank\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":925.0,\"y\":-1685.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Tank\",\"ID\":\"246\",\"faction\":0,\"assetID\":\"missile_tank\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":995.0,\"y\":-1675.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Tank\",\"ID\":\"247\",\"faction\":0,\"assetID\":\"missile_tank\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":885.0,\"y\":-1675.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"capitol-south-control\",\"faction\":0,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Shoots Things\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":940.0,\"y\":-1630.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"not-born-for-war\",\"faction\":0,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Heavy Scouter\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":912.5,\"y\":-1655.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"248\",\"faction\":0,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":980.0,\"y\":-1670.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"249\",\"faction\":0,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":900.0,\"y\":-1670.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Map Background 4\",\"ID\":\"250\",\"faction\":0,\"assetID\":\"mapbg4\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":940.0,\"y\":-1650.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[\"0e0d0807020d0d07010c08020b08020a0802090802080802070802060802050802040802030802020802020702020807010d0207010308000408000508000608000708000808000908000a08000b08000c08000d08000d0700020708010d0208030308030408030508030608030708030808030908030a08030b08030c08030d08030d07030d0708010d0d08030c08030b08030a0803090803080803070803060803050803040803030803020803020703030809000d0208020408000207020508000608000708000808000908000a08000b08000c08000d08000d0700040809000d0308020508000208020608000207020708000808000908000a08000b08000c08000d08000d0700050809000d0408020608000308020708000208020808000207020908000a08000b08000c08000d08000d0700060809000d0508020708000408020808000308020908000208020a08000207020b08000c08000d08000d0700070809000d0608020808000508020908000408020a08000308020b08000208020c08000207020d08000d0700080809000d0708020908000608020a08000508020b08000408020c08000308020d08000208020d0700020702090809000d0808020a08000708020b08000608020c08000508020d08000408020d07000308020208020207020a0809000d0908020b08000808020c08000708020d08000608020d07000508020408020308020208020207020b0809000d0a08020c08000908020d08000808020d07000708020608020508020408020308020208020207020c0809000d0d08000b08020d07000a0802090802080802070802060802050802040802030802020802020702\"],\"platform\":{\"instanceID\":0},\"targets\":[\"capitol-south-informant\",\"capitol-south-control\",\"not-born-for-war\"],\"hasMusic\":true,\"musicID\":\"music_funktify\",\"partDropsDisabled\":false,\"backgroundSpawns\":[],\"waveSetPath\":\"\",\"rectangleEffectSkin\":1,\"backgroundTileSkin\":1,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Capitol Upgrade Sector.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Capitol Upgrade Sector.json new file mode 100644 index 000000000..2704e6767 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Capitol Upgrade Sector.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Capitol Upgrade Sector\",\"bounds\":{\"x\":1020,\"y\":-1340,\"w\":100,\"h\":100},\"type\":4,\"backgroundColor\":{\"r\":0.0,\"g\":0.4000000059604645,\"b\":0.0,\"a\":1.0},\"entities\":[{\"name\":\"ShellCore\",\"ID\":\"capitol-design-comp-2nd-place\",\"faction\":0,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Shellcore_comp_design_2\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1067.5,\"y\":-1365.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"core-upgrader-explainer\",\"faction\":0,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Frigate\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1082.5,\"y\":-1400.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Power Rock\",\"ID\":\"251\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1092.5,\"y\":-1415.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Power Rock\",\"ID\":\"252\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1087.5,\"y\":-1372.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Power Rock\",\"ID\":\"253\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1045.0,\"y\":-1367.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Turret\",\"ID\":\"254\",\"faction\":0,\"assetID\":\"missile_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1107.5,\"y\":-1352.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Turret\",\"ID\":\"255\",\"faction\":0,\"assetID\":\"missile_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1037.5,\"y\":-1355.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Turret\",\"ID\":\"256\",\"faction\":0,\"assetID\":\"missile_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1105.0,\"y\":-1422.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"257\",\"faction\":0,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1095.0,\"y\":-1415.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"258\",\"faction\":0,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1045.0,\"y\":-1365.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Ground Base\",\"ID\":\"259\",\"faction\":0,\"assetID\":\"groundcarrier_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1065.0,\"y\":-1395.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"260\",\"faction\":0,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1090.0,\"y\":-1370.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Tank\",\"ID\":\"261\",\"faction\":0,\"assetID\":\"missile_tank\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1105.0,\"y\":-1385.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Tank\",\"ID\":\"262\",\"faction\":0,\"assetID\":\"missile_tank\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1075.0,\"y\":-1355.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Core Upgrader\",\"ID\":\"263\",\"faction\":0,\"assetID\":\"coreupgrader_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1090.0,\"y\":-1395.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Map Background 1\",\"ID\":\"264\",\"faction\":0,\"assetID\":\"mapbg1\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1070.0,\"y\":-1390.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[\"0d020108020c030100040100050100060100070100080100080200080300080400080500080600080700030109000c020102040100050100060100070100080100080200080300080400080500080600080700040109000c030102050100020102060100070100080100080200080300080400080500080600080700050109000c040102060100030102070100020102080100080200080300080400080500080600080700060109000c050102070100040102080100030102080200020102080300080400080500080600080700070109000c060102080100050102080200040102080300030102080400020102080500080600080700080107030c070102080203060102080303050102080403040102080503030102080603020102080703080209010c080101080303070101080403060101080503050101080603040101080703030101020101080309010c080201080403080101080503070101080603060101080703050101040101030101020101080409010c080301080503080201080603080101080703070101060101050101040101030101020101080509010c080401080603080301080703080201080101070101060101050101040101030101020101080609010c080501080703080401080301080201080101070101060101050101040101030101020101080708030c080601080501080401080301080201080101070101060101050101040101030101020101\",\"0803040700070404000305030504000306030505000406030506000404090007030402050400030502050500030602050600040602050407030704040205050303040205060303050204060303060203050901070304010306030404010406030504010506030505010505090107050401050603040401040603030401030603030501030607010703050104060003040105060004040105050005040104060900070306020506000305020505000304020504000404020506070207050501040602050401030602040401030502030401\",\"010405040000\"],\"platform\":{\"instanceID\":0},\"targets\":[\"capitol-design-comp-2nd-place\",\"core-upgrader-explainer\",\"259\"],\"hasMusic\":true,\"musicID\":\"music_funktify\",\"partDropsDisabled\":false,\"backgroundSpawns\":[],\"waveSetPath\":\"\",\"rectangleEffectSkin\":1,\"backgroundTileSkin\":1,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 0-0.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 0-0.json new file mode 100644 index 000000000..b5d20bff0 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 0-0.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Danger Zone 0-0\",\"bounds\":{\"x\":-120,\"y\":330,\"w\":610,\"h\":150},\"type\":3,\"backgroundColor\":{\"r\":0.6499999761581421,\"g\":0.0,\"b\":0.0,\"a\":1.0},\"entities\":[{\"name\":\"Map Background 1\",\"ID\":\"265\",\"faction\":0,\"assetID\":\"mapbg1\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":185.0,\"y\":255.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Map Background 1\",\"ID\":\"266\",\"faction\":0,\"assetID\":\"mapbg1\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":255.0,\"y\":210.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[],\"hasMusic\":true,\"musicID\":\"music_overworld\",\"partDropsDisabled\":false,\"backgroundSpawns\":[],\"waveSetPath\":\"\",\"rectangleEffectSkin\":0,\"backgroundTileSkin\":0,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 0-1280.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 0-1280.json new file mode 100644 index 000000000..739aeea12 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 0-1280.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Danger Zone 0-1280\",\"bounds\":{\"x\":-120,\"y\":-950,\"w\":120,\"h\":400},\"type\":3,\"backgroundColor\":{\"r\":0.6499999761581421,\"g\":0.0,\"b\":0.0,\"a\":1.0},\"entities\":[{\"name\":\"Map Background 2\",\"ID\":\"267\",\"faction\":0,\"assetID\":\"mapbg2\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":-60.0,\"y\":-1150.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Flag\",\"ID\":\"268\",\"faction\":0,\"assetID\":\"flag\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":-7.5,\"y\":-1280.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[],\"hasMusic\":true,\"musicID\":\"music_overworld_enemy\",\"partDropsDisabled\":false,\"backgroundSpawns\":[],\"waveSetPath\":\"\",\"rectangleEffectSkin\":1,\"backgroundTileSkin\":1,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 0-150.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 0-150.json new file mode 100644 index 000000000..44529988c --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 0-150.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Danger Zone 0-150\",\"bounds\":{\"x\":-120,\"y\":180,\"w\":150,\"h\":150},\"type\":3,\"backgroundColor\":{\"r\":0.6499999761581421,\"g\":0.0,\"b\":0.0,\"a\":1.0},\"entities\":[{\"name\":\"Map Background 1\",\"ID\":\"269\",\"faction\":0,\"assetID\":\"mapbg1\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":-5.0,\"y\":125.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[],\"hasMusic\":true,\"musicID\":\"music_overworld\",\"partDropsDisabled\":false,\"backgroundSpawns\":[],\"waveSetPath\":\"\",\"rectangleEffectSkin\":0,\"backgroundTileSkin\":0,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 0-1680.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 0-1680.json new file mode 100644 index 000000000..d6649a793 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 0-1680.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Danger Zone 0-1680\",\"bounds\":{\"x\":-120,\"y\":-1350,\"w\":480,\"h\":240},\"type\":3,\"backgroundColor\":{\"r\":0.6499999761581421,\"g\":0.0,\"b\":0.0,\"a\":1.0},\"entities\":[{\"name\":\"Map Background 2\",\"ID\":\"270\",\"faction\":0,\"assetID\":\"mapbg2\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":120.0,\"y\":-1470.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[],\"hasMusic\":true,\"musicID\":\"music_overworld_enemy\",\"partDropsDisabled\":false,\"backgroundSpawns\":[{\"entity\":{\"name\":\"BattleCore\",\"ID\":\"\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"{\\\"entityName\\\":\\\"BattleCore\\\",\\\"coreSpriteID\\\":\\\"core1_light\\\",\\\"coreShellSpriteID\\\":\\\"core3weapons_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":0,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":-2.200000047683716,\\\"y\\\":0.6000000238418579},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":9,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigSide2\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":-1.399999976158142,\\\"y\\\":-1.2000000476837159},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":13,\\\"tier\\\":2,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"MediumSide3\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":1.399999976158142,\\\"y\\\":-1.2000000476837159},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":13,\\\"tier\\\":2,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"MediumSide3\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":2.200000047683716,\\\"y\\\":0.6000000834465027},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":9,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigSide2\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":-1.2000000476837159,\\\"y\\\":0.20000000298023225},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":4,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigWing1\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":1.2000000476837159,\\\"y\\\":0.20000000298023225},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":4,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigWing1\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":0.6000000238418579},\\\"rotation\\\":-180.0,\\\"mirrored\\\":false,\\\"abilityID\\\":13,\\\"tier\\\":2,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"MediumCenter3\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":-0.800000011920929},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":13,\\\"tier\\\":2,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"MediumCenter6\\\",\\\"shiny\\\":false}],\\\"dialogue\\\":{\\\"instanceID\\\":0},\\\"useCustomDroneType\\\":false,\\\"customDroneType\\\":0}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":0.0,\"y\":0.0},\"patrolPath\":{\"waypoints\":[]}},\"timePerSpawn\":8,\"radius\":15.0}],\"waveSetPath\":\"\",\"rectangleEffectSkin\":1,\"backgroundTileSkin\":1,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 0-1920.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 0-1920.json new file mode 100644 index 000000000..fa359ab53 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 0-1920.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Danger Zone 0-1920\",\"bounds\":{\"x\":-120,\"y\":-1590,\"w\":760,\"h\":150},\"type\":3,\"backgroundColor\":{\"r\":0.6499999761581421,\"g\":0.0,\"b\":0.0,\"a\":1.0},\"entities\":[{\"name\":\"Map Background 3\",\"ID\":\"271\",\"faction\":0,\"assetID\":\"mapbg3\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":260.0,\"y\":-1665.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[],\"hasMusic\":true,\"musicID\":\"music_overworld_enemy\",\"partDropsDisabled\":false,\"backgroundSpawns\":[{\"entity\":{\"name\":\"BattleCore\",\"ID\":\"\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"{\\\"entityName\\\":\\\"BattleCore\\\",\\\"coreSpriteID\\\":\\\"core1_light\\\",\\\"coreShellSpriteID\\\":\\\"core3weapons_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":0,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":-2.200000047683716,\\\"y\\\":0.6000000238418579},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":9,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigSide2\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":-1.399999976158142,\\\"y\\\":-1.2000000476837159},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":13,\\\"tier\\\":2,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"MediumSide3\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":1.399999976158142,\\\"y\\\":-1.2000000476837159},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":13,\\\"tier\\\":2,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"MediumSide3\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":2.200000047683716,\\\"y\\\":0.6000000834465027},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":9,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigSide2\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":-1.2000000476837159,\\\"y\\\":0.20000000298023225},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":4,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigWing1\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":1.2000000476837159,\\\"y\\\":0.20000000298023225},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":4,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigWing1\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":0.6000000238418579},\\\"rotation\\\":-180.0,\\\"mirrored\\\":false,\\\"abilityID\\\":13,\\\"tier\\\":2,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"MediumCenter3\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":-0.800000011920929},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":13,\\\"tier\\\":2,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"MediumCenter6\\\",\\\"shiny\\\":false}],\\\"dialogue\\\":{\\\"instanceID\\\":0},\\\"useCustomDroneType\\\":false,\\\"customDroneType\\\":0}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":0.0,\"y\":0.0},\"patrolPath\":{\"waypoints\":[]}},\"timePerSpawn\":8,\"radius\":15.0}],\"waveSetPath\":\"\",\"rectangleEffectSkin\":1,\"backgroundTileSkin\":1,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 0-2070.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 0-2070.json new file mode 100644 index 000000000..29c79d044 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 0-2070.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Danger Zone 0-2070\",\"bounds\":{\"x\":-120,\"y\":-1740,\"w\":380,\"h\":660},\"type\":3,\"backgroundColor\":{\"r\":0.6499999761581421,\"g\":0.0,\"b\":0.0,\"a\":1.0},\"entities\":[],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[],\"hasMusic\":true,\"musicID\":\"music_overworld\",\"partDropsDisabled\":false,\"backgroundSpawns\":[],\"waveSetPath\":\"\",\"rectangleEffectSkin\":1,\"backgroundTileSkin\":1,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 0-300.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 0-300.json new file mode 100644 index 000000000..23fab9643 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 0-300.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Danger Zone 0-300\",\"bounds\":{\"x\":-120,\"y\":30,\"w\":300,\"h\":200},\"type\":3,\"backgroundColor\":{\"r\":0.6499999761581421,\"g\":0.0,\"b\":0.0,\"a\":1.0},\"entities\":[{\"name\":\"Map Background 1\",\"ID\":\"272\",\"faction\":0,\"assetID\":\"mapbg1\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":35.0,\"y\":-80.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[],\"hasMusic\":true,\"musicID\":\"music_overworld\",\"partDropsDisabled\":false,\"backgroundSpawns\":[],\"waveSetPath\":\"\",\"rectangleEffectSkin\":0,\"backgroundTileSkin\":0,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 0-500.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 0-500.json new file mode 100644 index 000000000..065516501 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 0-500.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Danger Zone 0-500\",\"bounds\":{\"x\":-120,\"y\":-170,\"w\":610,\"h\":240},\"type\":3,\"backgroundColor\":{\"r\":0.6499999761581421,\"g\":0.0,\"b\":0.0,\"a\":1.0},\"entities\":[{\"name\":\"Map Background 1\",\"ID\":\"273\",\"faction\":0,\"assetID\":\"mapbg1\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":185.0,\"y\":-290.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[],\"hasMusic\":true,\"musicID\":\"music_overworld\",\"partDropsDisabled\":false,\"backgroundSpawns\":[],\"waveSetPath\":\"\",\"rectangleEffectSkin\":0,\"backgroundTileSkin\":0,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 0-740.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 0-740.json new file mode 100644 index 000000000..1cadcc0db --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 0-740.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Danger Zone 0-740\",\"bounds\":{\"x\":-120,\"y\":-410,\"w\":230,\"h\":120},\"type\":3,\"backgroundColor\":{\"r\":0.6499999761581421,\"g\":0.0,\"b\":0.0,\"a\":1.0},\"entities\":[{\"name\":\"Map Background 2\",\"ID\":\"274\",\"faction\":0,\"assetID\":\"mapbg2\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":-5.0,\"y\":-470.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"flag_scourgedeltaenemyspawn2\",\"ID\":\"275\",\"faction\":0,\"assetID\":\"flag\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":42.5,\"y\":-475.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"flag_scourgedeltaenemyspawn\",\"ID\":\"276\",\"faction\":0,\"assetID\":\"flag\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":42.5,\"y\":-472.5},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[],\"hasMusic\":true,\"musicID\":\"music_overworld\",\"partDropsDisabled\":false,\"backgroundSpawns\":[],\"waveSetPath\":\"\",\"rectangleEffectSkin\":0,\"backgroundTileSkin\":0,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 0-860.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 0-860.json new file mode 100644 index 000000000..577c05091 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 0-860.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Danger Zone 0-860\",\"bounds\":{\"x\":-120,\"y\":-530,\"w\":120,\"h\":420},\"type\":3,\"backgroundColor\":{\"r\":0.6499999761581421,\"g\":0.0,\"b\":0.0,\"a\":1.0},\"entities\":[{\"name\":\"Map Background 2\",\"ID\":\"277\",\"faction\":0,\"assetID\":\"mapbg2\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":-60.0,\"y\":-680.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[],\"hasMusic\":true,\"musicID\":\"music_overworld\",\"partDropsDisabled\":false,\"backgroundSpawns\":[],\"waveSetPath\":\"\",\"rectangleEffectSkin\":0,\"backgroundTileSkin\":0,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 1040-1100.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 1040-1100.json new file mode 100644 index 000000000..8d1e017e5 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 1040-1100.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Danger Zone 1040-1100\",\"bounds\":{\"x\":920,\"y\":-770,\"w\":180,\"h\":180},\"type\":3,\"backgroundColor\":{\"r\":0.6499999761581421,\"g\":0.0,\"b\":0.0,\"a\":1.0},\"entities\":[{\"name\":\"Map Background 1\",\"ID\":\"278\",\"faction\":0,\"assetID\":\"mapbg1\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1010.0,\"y\":-860.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[],\"hasMusic\":true,\"musicID\":\"music_overworld\",\"partDropsDisabled\":false,\"backgroundSpawns\":[{\"entity\":{\"name\":\"BattleCore\",\"ID\":\"\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"{\\\"entityName\\\":\\\"BattleCore\\\",\\\"coreSpriteID\\\":\\\"core1_light\\\",\\\"coreShellSpriteID\\\":\\\"core3_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":0,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":0.4000000059604645,\\\"y\\\":0.0},\\\"rotation\\\":180.0,\\\"mirrored\\\":true,\\\"abilityID\\\":13,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigSide4\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":-0.4000000059604645,\\\"y\\\":0.0},\\\"rotation\\\":180.0,\\\"mirrored\\\":false,\\\"abilityID\\\":13,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigSide4\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":1.399999976158142,\\\"y\\\":0.5},\\\"rotation\\\":180.0,\\\"mirrored\\\":false,\\\"abilityID\\\":4,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigWing5\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":-1.399999976158142,\\\"y\\\":0.5},\\\"rotation\\\":-180.0,\\\"mirrored\\\":true,\\\"abilityID\\\":4,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigWing5\\\",\\\"shiny\\\":false}],\\\"dialogue\\\":{\\\"instanceID\\\":0},\\\"useCustomDroneType\\\":false,\\\"customDroneType\\\":0}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":0.0,\"y\":0.0},\"patrolPath\":{\"waypoints\":[]}},\"timePerSpawn\":8,\"radius\":15.0}],\"waveSetPath\":\"\",\"rectangleEffectSkin\":0,\"backgroundTileSkin\":0,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 1040-740.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 1040-740.json new file mode 100644 index 000000000..09a7cecce --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 1040-740.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Danger Zone 1040-740\",\"bounds\":{\"x\":920,\"y\":-410,\"w\":650,\"h\":180},\"type\":3,\"backgroundColor\":{\"r\":0.6499999761581421,\"g\":0.0,\"b\":0.0,\"a\":1.0},\"entities\":[{\"name\":\"Map Background 1\",\"ID\":\"279\",\"faction\":0,\"assetID\":\"mapbg1\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1245.0,\"y\":-500.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[],\"hasMusic\":true,\"musicID\":\"music_overworld\",\"partDropsDisabled\":false,\"backgroundSpawns\":[{\"entity\":{\"name\":\"BattleCore\",\"ID\":\"\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"{\\\"entityName\\\":\\\"BattleCore\\\",\\\"coreSpriteID\\\":\\\"core1_light\\\",\\\"coreShellSpriteID\\\":\\\"core3_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":0,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":0.4000000059604645,\\\"y\\\":0.0},\\\"rotation\\\":180.0,\\\"mirrored\\\":true,\\\"abilityID\\\":13,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigSide4\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":-0.4000000059604645,\\\"y\\\":0.0},\\\"rotation\\\":180.0,\\\"mirrored\\\":false,\\\"abilityID\\\":13,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigSide4\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":1.399999976158142,\\\"y\\\":0.5},\\\"rotation\\\":180.0,\\\"mirrored\\\":false,\\\"abilityID\\\":4,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigWing5\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":-1.399999976158142,\\\"y\\\":0.5},\\\"rotation\\\":-180.0,\\\"mirrored\\\":true,\\\"abilityID\\\":4,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigWing5\\\",\\\"shiny\\\":false}],\\\"dialogue\\\":{\\\"instanceID\\\":0},\\\"useCustomDroneType\\\":false,\\\"customDroneType\\\":0}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":0.0,\"y\":0.0},\"patrolPath\":{\"waypoints\":[]}},\"timePerSpawn\":8,\"radius\":15.0}],\"waveSetPath\":\"\",\"rectangleEffectSkin\":0,\"backgroundTileSkin\":0,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 1120-1280.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 1120-1280.json new file mode 100644 index 000000000..76bbb994e --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 1120-1280.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Danger Zone 1120-1280\",\"bounds\":{\"x\":1000,\"y\":-950,\"w\":480,\"h\":270},\"type\":3,\"backgroundColor\":{\"r\":0.6499999761581421,\"g\":0.0,\"b\":0.0,\"a\":1.0},\"entities\":[],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[],\"hasMusic\":true,\"musicID\":\"music_overworld_2\",\"partDropsDisabled\":false,\"backgroundSpawns\":[{\"entity\":{\"name\":\"BattleCore\",\"ID\":\"\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"{\\\"entityName\\\":\\\"BattleCore\\\",\\\"coreSpriteID\\\":\\\"core1_light\\\",\\\"coreShellSpriteID\\\":\\\"core3weapons_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":0,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":-2.200000047683716,\\\"y\\\":0.6000000238418579},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":9,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigSide2\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":-1.399999976158142,\\\"y\\\":-1.2000000476837159},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":13,\\\"tier\\\":2,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"MediumSide3\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":1.399999976158142,\\\"y\\\":-1.2000000476837159},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":13,\\\"tier\\\":2,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"MediumSide3\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":2.200000047683716,\\\"y\\\":0.6000000834465027},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":9,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigSide2\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":-1.2000000476837159,\\\"y\\\":0.20000000298023225},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":4,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigWing1\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":1.2000000476837159,\\\"y\\\":0.20000000298023225},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":4,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigWing1\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":0.6000000238418579},\\\"rotation\\\":-180.0,\\\"mirrored\\\":false,\\\"abilityID\\\":13,\\\"tier\\\":2,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"MediumCenter3\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":-0.800000011920929},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":13,\\\"tier\\\":2,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"MediumCenter6\\\",\\\"shiny\\\":false}],\\\"dialogue\\\":{\\\"instanceID\\\":0},\\\"useCustomDroneType\\\":false,\\\"customDroneType\\\":0}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":0.0,\"y\":0.0},\"patrolPath\":{\"waypoints\":[]}},\"timePerSpawn\":8,\"radius\":15.0}],\"waveSetPath\":\"\",\"rectangleEffectSkin\":1,\"backgroundTileSkin\":1,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 1140-2420.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 1140-2420.json new file mode 100644 index 000000000..9eb9304de --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 1140-2420.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Danger Zone 1140-2420\",\"bounds\":{\"x\":1020,\"y\":-2090,\"w\":360,\"h\":310},\"type\":3,\"backgroundColor\":{\"r\":0.6499999761581421,\"g\":0.0,\"b\":0.0,\"a\":1.0},\"entities\":[],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[],\"hasMusic\":true,\"musicID\":\"music_overworld_2\",\"partDropsDisabled\":false,\"backgroundSpawns\":[],\"waveSetPath\":\"\",\"rectangleEffectSkin\":1,\"backgroundTileSkin\":1,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 120-860.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 120-860.json new file mode 100644 index 000000000..b58ef590d --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 120-860.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Danger Zone 120-860\",\"bounds\":{\"x\":0,\"y\":-530,\"w\":490,\"h\":120},\"type\":3,\"backgroundColor\":{\"r\":0.6499999761581421,\"g\":0.0,\"b\":0.0,\"a\":1.0},\"entities\":[{\"name\":\"Map Background 2\",\"ID\":\"280\",\"faction\":0,\"assetID\":\"mapbg2\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":245.0,\"y\":-590.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[],\"hasMusic\":true,\"musicID\":\"music_overworld\",\"partDropsDisabled\":false,\"backgroundSpawns\":[],\"waveSetPath\":\"\",\"rectangleEffectSkin\":0,\"backgroundTileSkin\":0,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 1220-1190.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 1220-1190.json new file mode 100644 index 000000000..847ecf4e5 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 1220-1190.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Danger Zone 1220-1190\",\"bounds\":{\"x\":1100,\"y\":-860,\"w\":470,\"h\":90},\"type\":3,\"backgroundColor\":{\"r\":0.6499999761581421,\"g\":0.0,\"b\":0.0,\"a\":1.0},\"entities\":[{\"name\":\"Map Background 1\",\"ID\":\"281\",\"faction\":0,\"assetID\":\"mapbg1\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1335.0,\"y\":-905.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[],\"hasMusic\":true,\"musicID\":\"music_overworld\",\"partDropsDisabled\":false,\"backgroundSpawns\":[{\"entity\":{\"name\":\"BattleCore\",\"ID\":\"\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"{\\\"entityName\\\":\\\"BattleCore\\\",\\\"coreSpriteID\\\":\\\"core1_light\\\",\\\"coreShellSpriteID\\\":\\\"core3_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":0,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":0.4000000059604645,\\\"y\\\":0.0},\\\"rotation\\\":180.0,\\\"mirrored\\\":true,\\\"abilityID\\\":13,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigSide4\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":-0.4000000059604645,\\\"y\\\":0.0},\\\"rotation\\\":180.0,\\\"mirrored\\\":false,\\\"abilityID\\\":13,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigSide4\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":1.399999976158142,\\\"y\\\":0.5},\\\"rotation\\\":180.0,\\\"mirrored\\\":false,\\\"abilityID\\\":4,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigWing5\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":-1.399999976158142,\\\"y\\\":0.5},\\\"rotation\\\":-180.0,\\\"mirrored\\\":true,\\\"abilityID\\\":4,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigWing5\\\",\\\"shiny\\\":false}],\\\"dialogue\\\":{\\\"instanceID\\\":0},\\\"useCustomDroneType\\\":false,\\\"customDroneType\\\":0}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":0.0,\"y\":0.0},\"patrolPath\":{\"waypoints\":[]}},\"timePerSpawn\":8,\"radius\":15.0}],\"waveSetPath\":\"\",\"rectangleEffectSkin\":0,\"backgroundTileSkin\":0,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 1280-0.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 1280-0.json new file mode 100644 index 000000000..b20d879d3 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 1280-0.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Danger Zone 1280-0\",\"bounds\":{\"x\":1160,\"y\":330,\"w\":150,\"h\":300},\"type\":3,\"backgroundColor\":{\"r\":0.6499999761581421,\"g\":0.0,\"b\":0.0,\"a\":1.0},\"entities\":[{\"name\":\"Map Background 1\",\"ID\":\"282\",\"faction\":0,\"assetID\":\"mapbg1\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1235.0,\"y\":180.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[],\"hasMusic\":true,\"musicID\":\"music_overworld\",\"partDropsDisabled\":false,\"backgroundSpawns\":[{\"entity\":{\"name\":\"BattleCore\",\"ID\":\"\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"{\\\"entityName\\\":\\\"BattleCore\\\",\\\"coreSpriteID\\\":\\\"core1_light\\\",\\\"coreShellSpriteID\\\":\\\"core3_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":0,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":1.600000023841858,\\\"y\\\":-0.30000001192092898},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":1,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigSide2\\\"},{\\\"location\\\":{\\\"x\\\":-1.600000023841858,\\\"y\\\":-0.30000001192092898},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":20,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigSide2\\\"},{\\\"location\\\":{\\\"x\\\":0.800000011920929,\\\"y\\\":0.4000000059604645},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":7,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigSide1\\\"},{\\\"location\\\":{\\\"x\\\":-0.800000011920929,\\\"y\\\":0.4000000059604645},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":4,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigSide1\\\"}],\\\"dialogue\\\":{\\\"instanceID\\\":0},\\\"useCustomDroneType\\\":false,\\\"customDroneType\\\":0}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":0.0,\"y\":0.0},\"patrolPath\":{\"waypoints\":[]}},\"timePerSpawn\":8,\"radius\":15.0}],\"waveSetPath\":\"\",\"rectangleEffectSkin\":0,\"backgroundTileSkin\":0,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 1280-300.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 1280-300.json new file mode 100644 index 000000000..1e2746467 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 1280-300.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Danger Zone 1280-300\",\"bounds\":{\"x\":1160,\"y\":30,\"w\":150,\"h\":440},\"type\":3,\"backgroundColor\":{\"r\":0.6499999761581421,\"g\":0.0,\"b\":0.0,\"a\":1.0},\"entities\":[{\"name\":\"Map Background 1\",\"ID\":\"283\",\"faction\":0,\"assetID\":\"mapbg1\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1235.0,\"y\":-190.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[],\"hasMusic\":true,\"musicID\":\"music_overworld\",\"partDropsDisabled\":false,\"backgroundSpawns\":[{\"entity\":{\"name\":\"BattleCore\",\"ID\":\"\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"{\\\"entityName\\\":\\\"BattleCore\\\",\\\"coreSpriteID\\\":\\\"core1_light\\\",\\\"coreShellSpriteID\\\":\\\"core1_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":0,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":1.0,\\\"y\\\":0.6000000238418579},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":4,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigWing5\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":-1.0,\\\"y\\\":0.6000000238418579},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":4,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigWing5\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":1.2000000476837159},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":5,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigCenter3\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":2.0999999046325685,\\\"y\\\":-1.0},\\\"rotation\\\":90.0,\\\"mirrored\\\":false,\\\"abilityID\\\":13,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigWing4\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":-2.0999999046325685,\\\"y\\\":-1.0},\\\"rotation\\\":-90.0,\\\"mirrored\\\":true,\\\"abilityID\\\":13,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigWing4\\\",\\\"shiny\\\":false}],\\\"dialogue\\\":{\\\"instanceID\\\":0},\\\"useCustomDroneType\\\":false,\\\"customDroneType\\\":0}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":0.0,\"y\":0.0},\"patrolPath\":{\"waypoints\":[]}},\"timePerSpawn\":8,\"radius\":15.0}],\"waveSetPath\":\"\",\"rectangleEffectSkin\":0,\"backgroundTileSkin\":0,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 1430-0.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 1430-0.json new file mode 100644 index 000000000..894d564e2 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 1430-0.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Danger Zone 1430-0\",\"bounds\":{\"x\":1310,\"y\":330,\"w\":270,\"h\":90},\"type\":3,\"backgroundColor\":{\"r\":0.6499999761581421,\"g\":0.0,\"b\":0.0,\"a\":1.0},\"entities\":[],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[],\"hasMusic\":true,\"musicID\":\"music_overworld\",\"partDropsDisabled\":false,\"backgroundSpawns\":[{\"entity\":{\"name\":\"BattleCore\",\"ID\":\"\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"{\\\"entityName\\\":\\\"BattleCore\\\",\\\"coreSpriteID\\\":\\\"core1_light\\\",\\\"coreShellSpriteID\\\":\\\"core3_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":0,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":1.600000023841858,\\\"y\\\":-0.30000001192092898},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":1,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigSide2\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":-1.600000023841858,\\\"y\\\":-0.30000001192092898},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":20,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigSide2\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":0.800000011920929,\\\"y\\\":0.4000000059604645},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":7,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigSide1\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":-0.800000011920929,\\\"y\\\":0.4000000059604645},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":4,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigSide1\\\",\\\"shiny\\\":false}],\\\"dialogue\\\":{\\\"instanceID\\\":0},\\\"useCustomDroneType\\\":false,\\\"customDroneType\\\":0}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":0.0,\"y\":0.0},\"patrolPath\":{\"waypoints\":[]}},\"timePerSpawn\":8,\"radius\":15.0}],\"waveSetPath\":\"\",\"rectangleEffectSkin\":0,\"backgroundTileSkin\":0,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 1430-270.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 1430-270.json new file mode 100644 index 000000000..306b1f4ba --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 1430-270.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Danger Zone 1430-270\",\"bounds\":{\"x\":1310,\"y\":60,\"w\":90,\"h\":90},\"type\":3,\"backgroundColor\":{\"r\":0.6499999761581421,\"g\":0.0,\"b\":0.0,\"a\":1.0},\"entities\":[],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[],\"hasMusic\":true,\"musicID\":\"music_overworld\",\"partDropsDisabled\":false,\"backgroundSpawns\":[{\"entity\":{\"name\":\"BattleCore\",\"ID\":\"\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"{\\\"entityName\\\":\\\"BattleCore\\\",\\\"coreSpriteID\\\":\\\"core1_light\\\",\\\"coreShellSpriteID\\\":\\\"core3_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":0,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":1.600000023841858,\\\"y\\\":-0.30000001192092898},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":1,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigSide2\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":-1.600000023841858,\\\"y\\\":-0.30000001192092898},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":20,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigSide2\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":0.800000011920929,\\\"y\\\":0.4000000059604645},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":7,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigSide1\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":-0.800000011920929,\\\"y\\\":0.4000000059604645},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":4,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigSide1\\\",\\\"shiny\\\":false}],\\\"dialogue\\\":{\\\"instanceID\\\":0},\\\"useCustomDroneType\\\":false,\\\"customDroneType\\\":0}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":0.0,\"y\":0.0},\"patrolPath\":{\"waypoints\":[]}},\"timePerSpawn\":8,\"radius\":15.0}],\"waveSetPath\":\"\",\"rectangleEffectSkin\":0,\"backgroundTileSkin\":0,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 1430-360.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 1430-360.json new file mode 100644 index 000000000..d85e992d8 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 1430-360.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Danger Zone 1430-360\",\"bounds\":{\"x\":1310,\"y\":-30,\"w\":270,\"h\":90},\"type\":3,\"backgroundColor\":{\"r\":0.6499999761581421,\"g\":0.0,\"b\":0.0,\"a\":1.0},\"entities\":[],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[],\"hasMusic\":true,\"musicID\":\"music_overworld\",\"partDropsDisabled\":false,\"backgroundSpawns\":[{\"entity\":{\"name\":\"BattleCore\",\"ID\":\"\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"{\\\"entityName\\\":\\\"BattleCore\\\",\\\"coreSpriteID\\\":\\\"core1_light\\\",\\\"coreShellSpriteID\\\":\\\"core3_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":0,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":1.600000023841858,\\\"y\\\":-0.30000001192092898},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":1,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigSide2\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":-1.600000023841858,\\\"y\\\":-0.30000001192092898},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":20,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigSide2\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":0.800000011920929,\\\"y\\\":0.4000000059604645},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":7,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigSide1\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":-0.800000011920929,\\\"y\\\":0.4000000059604645},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":4,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigSide1\\\",\\\"shiny\\\":false}],\\\"dialogue\\\":{\\\"instanceID\\\":0},\\\"useCustomDroneType\\\":false,\\\"customDroneType\\\":0}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":0.0,\"y\":0.0},\"patrolPath\":{\"waypoints\":[]}},\"timePerSpawn\":8,\"radius\":15.0}],\"waveSetPath\":\"\",\"rectangleEffectSkin\":0,\"backgroundTileSkin\":0,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 1430-90.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 1430-90.json new file mode 100644 index 000000000..707fc5df7 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 1430-90.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Danger Zone 1430-90\",\"bounds\":{\"x\":1310,\"y\":240,\"w\":90,\"h\":90},\"type\":3,\"backgroundColor\":{\"r\":0.6499999761581421,\"g\":0.0,\"b\":0.0,\"a\":1.0},\"entities\":[],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[],\"hasMusic\":true,\"musicID\":\"music_overworld\",\"partDropsDisabled\":false,\"backgroundSpawns\":[{\"entity\":{\"name\":\"BattleCore\",\"ID\":\"\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"{\\\"entityName\\\":\\\"BattleCore\\\",\\\"coreSpriteID\\\":\\\"core1_light\\\",\\\"coreShellSpriteID\\\":\\\"core3_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":0,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":1.600000023841858,\\\"y\\\":-0.30000001192092898},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":1,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigSide2\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":-1.600000023841858,\\\"y\\\":-0.30000001192092898},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":20,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigSide2\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":0.800000011920929,\\\"y\\\":0.4000000059604645},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":7,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigSide1\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":-0.800000011920929,\\\"y\\\":0.4000000059604645},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":4,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigSide1\\\",\\\"shiny\\\":false}],\\\"dialogue\\\":{\\\"instanceID\\\":0},\\\"useCustomDroneType\\\":false,\\\"customDroneType\\\":0}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":0.0,\"y\":0.0},\"patrolPath\":{\"waypoints\":[]}},\"timePerSpawn\":8,\"radius\":15.0}],\"waveSetPath\":\"\",\"rectangleEffectSkin\":0,\"backgroundTileSkin\":0,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 1500-2030.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 1500-2030.json new file mode 100644 index 000000000..3e2ae6614 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 1500-2030.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Danger Zone 1500-2030\",\"bounds\":{\"x\":1380,\"y\":-1700,\"w\":170,\"h\":260},\"type\":3,\"backgroundColor\":{\"r\":0.6499999761581421,\"g\":0.0,\"b\":0.0,\"a\":1.0},\"entities\":[],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[],\"hasMusic\":true,\"musicID\":\"music_overworld_2\",\"partDropsDisabled\":false,\"backgroundSpawns\":[],\"waveSetPath\":\"\",\"rectangleEffectSkin\":1,\"backgroundTileSkin\":1,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 1500-2670.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 1500-2670.json new file mode 100644 index 000000000..47d89c93c --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 1500-2670.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Danger Zone 1500-2670\",\"bounds\":{\"x\":1380,\"y\":-2340,\"w\":170,\"h\":60},\"type\":3,\"backgroundColor\":{\"r\":0.6499999761581421,\"g\":0.0,\"b\":0.0,\"a\":1.0},\"entities\":[],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[],\"hasMusic\":true,\"musicID\":\"music_overworld_2\",\"partDropsDisabled\":false,\"backgroundSpawns\":[],\"waveSetPath\":\"\",\"rectangleEffectSkin\":1,\"backgroundTileSkin\":1,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 1570-1770.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 1570-1770.json new file mode 100644 index 000000000..e761c73ed --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 1570-1770.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Danger Zone 1570-1770\",\"bounds\":{\"x\":1450,\"y\":-1440,\"w\":100,\"h\":160},\"type\":3,\"backgroundColor\":{\"r\":0.6499999761581421,\"g\":0.0,\"b\":0.0,\"a\":1.0},\"entities\":[],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[],\"hasMusic\":true,\"musicID\":\"music_overworld_2\",\"partDropsDisabled\":false,\"backgroundSpawns\":[],\"waveSetPath\":\"\",\"rectangleEffectSkin\":1,\"backgroundTileSkin\":1,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 1600-1280.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 1600-1280.json new file mode 100644 index 000000000..715aab052 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 1600-1280.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Danger Zone 1600-1280\",\"bounds\":{\"x\":1480,\"y\":-950,\"w\":360,\"h\":270},\"type\":3,\"backgroundColor\":{\"r\":0.6499999761581421,\"g\":0.0,\"b\":0.0,\"a\":1.0},\"entities\":[],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[],\"hasMusic\":true,\"musicID\":\"music_overworld_2\",\"partDropsDisabled\":false,\"backgroundSpawns\":[{\"entity\":{\"name\":\"BattleCore\",\"ID\":\"\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"{\\\"entityName\\\":\\\"BattleCore\\\",\\\"coreSpriteID\\\":\\\"core1_light\\\",\\\"coreShellSpriteID\\\":\\\"core3weapons_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":0,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":-2.200000047683716,\\\"y\\\":0.6000000238418579},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":9,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigSide2\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":-1.399999976158142,\\\"y\\\":-1.2000000476837159},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":13,\\\"tier\\\":2,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"MediumSide3\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":1.399999976158142,\\\"y\\\":-1.2000000476837159},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":13,\\\"tier\\\":2,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"MediumSide3\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":2.200000047683716,\\\"y\\\":0.6000000834465027},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":9,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigSide2\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":-1.2000000476837159,\\\"y\\\":0.20000000298023225},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":4,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigWing1\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":1.2000000476837159,\\\"y\\\":0.20000000298023225},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":4,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigWing1\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":0.6000000238418579},\\\"rotation\\\":-180.0,\\\"mirrored\\\":false,\\\"abilityID\\\":13,\\\"tier\\\":2,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"MediumCenter3\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":-0.800000011920929},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":13,\\\"tier\\\":2,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"MediumCenter6\\\",\\\"shiny\\\":false}],\\\"dialogue\\\":{\\\"instanceID\\\":0},\\\"useCustomDroneType\\\":false,\\\"customDroneType\\\":0}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":0.0,\"y\":0.0},\"patrolPath\":{\"waypoints\":[]}},\"timePerSpawn\":8,\"radius\":15.0}],\"waveSetPath\":\"\",\"rectangleEffectSkin\":1,\"backgroundTileSkin\":1,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 1670-1550.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 1670-1550.json new file mode 100644 index 000000000..988c2ab23 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 1670-1550.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Danger Zone 1670-1550\",\"bounds\":{\"x\":1550,\"y\":-1220,\"w\":110,\"h\":1180},\"type\":3,\"backgroundColor\":{\"r\":0.6499999761581421,\"g\":0.0,\"b\":0.0,\"a\":1.0},\"entities\":[],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[],\"hasMusic\":true,\"musicID\":\"music_overworld_2\",\"partDropsDisabled\":false,\"backgroundSpawns\":[],\"waveSetPath\":\"\",\"rectangleEffectSkin\":1,\"backgroundTileSkin\":1,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 1690-740.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 1690-740.json new file mode 100644 index 000000000..061bc4910 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 1690-740.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Danger Zone 1690-740\",\"bounds\":{\"x\":1570,\"y\":-410,\"w\":120,\"h\":540},\"type\":3,\"backgroundColor\":{\"r\":0.6499999761581421,\"g\":0.0,\"b\":0.0,\"a\":1.0},\"entities\":[{\"name\":\"Map Background 3\",\"ID\":\"284\",\"faction\":0,\"assetID\":\"mapbg3\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1630.0,\"y\":-680.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[],\"hasMusic\":true,\"musicID\":\"music_overworld\",\"partDropsDisabled\":false,\"backgroundSpawns\":[{\"entity\":{\"name\":\"BattleCore\",\"ID\":\"\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"{\\\"entityName\\\":\\\"BattleCore\\\",\\\"coreSpriteID\\\":\\\"core1_light\\\",\\\"coreShellSpriteID\\\":\\\"core3_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":0,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":0.4000000059604645,\\\"y\\\":0.0},\\\"rotation\\\":180.0,\\\"mirrored\\\":true,\\\"abilityID\\\":13,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigSide4\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":-0.4000000059604645,\\\"y\\\":0.0},\\\"rotation\\\":180.0,\\\"mirrored\\\":false,\\\"abilityID\\\":13,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigSide4\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":1.399999976158142,\\\"y\\\":0.5},\\\"rotation\\\":180.0,\\\"mirrored\\\":false,\\\"abilityID\\\":4,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigWing5\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":-1.399999976158142,\\\"y\\\":0.5},\\\"rotation\\\":-180.0,\\\"mirrored\\\":true,\\\"abilityID\\\":4,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigWing5\\\",\\\"shiny\\\":false}],\\\"dialogue\\\":{\\\"instanceID\\\":0},\\\"useCustomDroneType\\\":false,\\\"customDroneType\\\":0}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":0.0,\"y\":0.0},\"patrolPath\":{\"waypoints\":[]}},\"timePerSpawn\":8,\"radius\":15.0}],\"waveSetPath\":\"\",\"rectangleEffectSkin\":0,\"backgroundTileSkin\":0,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 1700-0.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 1700-0.json new file mode 100644 index 000000000..4926b8ef4 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 1700-0.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Danger Zone 1700-0\",\"bounds\":{\"x\":1580,\"y\":330,\"w\":90,\"h\":450},\"type\":3,\"backgroundColor\":{\"r\":0.6499999761581421,\"g\":0.0,\"b\":0.0,\"a\":1.0},\"entities\":[],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[],\"hasMusic\":true,\"musicID\":\"music_overworld\",\"partDropsDisabled\":false,\"backgroundSpawns\":[{\"entity\":{\"name\":\"BattleCore\",\"ID\":\"\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"{\\\"entityName\\\":\\\"BattleCore\\\",\\\"coreSpriteID\\\":\\\"core1_light\\\",\\\"coreShellSpriteID\\\":\\\"core3_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":0,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":1.600000023841858,\\\"y\\\":-0.30000001192092898},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":1,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigSide2\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":-1.600000023841858,\\\"y\\\":-0.30000001192092898},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":20,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigSide2\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":0.800000011920929,\\\"y\\\":0.4000000059604645},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":7,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigSide1\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":-0.800000011920929,\\\"y\\\":0.4000000059604645},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":4,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigSide1\\\",\\\"shiny\\\":false}],\\\"dialogue\\\":{\\\"instanceID\\\":0},\\\"useCustomDroneType\\\":false,\\\"customDroneType\\\":0}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":0.0,\"y\":0.0},\"patrolPath\":{\"waypoints\":[]}},\"timePerSpawn\":8,\"radius\":15.0}],\"waveSetPath\":\"\",\"rectangleEffectSkin\":0,\"backgroundTileSkin\":0,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 230-1100.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 230-1100.json new file mode 100644 index 000000000..dbad47e24 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 230-1100.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Danger Zone 230-1100\",\"bounds\":{\"x\":110,\"y\":-770,\"w\":810,\"h\":180},\"type\":3,\"backgroundColor\":{\"r\":0.6499999761581421,\"g\":0.0,\"b\":0.0,\"a\":1.0},\"entities\":[{\"name\":\"Map Background 1\",\"ID\":\"285\",\"faction\":0,\"assetID\":\"mapbg1\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":515.0,\"y\":-860.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[],\"hasMusic\":true,\"musicID\":\"music_overworld\",\"partDropsDisabled\":false,\"backgroundSpawns\":[{\"entity\":{\"name\":\"BattleCore\",\"ID\":\"\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"{\\\"entityName\\\":\\\"BattleCore\\\",\\\"coreSpriteID\\\":\\\"core1_light\\\",\\\"coreShellSpriteID\\\":\\\"core3_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":0,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":-1.0,\\\"y\\\":0.6000000238418579},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":7,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigWing5\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":1.0,\\\"y\\\":0.6000000238418579},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":7,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigWing5\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":-2.200000047683716,\\\"y\\\":1.100000023841858},\\\"rotation\\\":180.0,\\\"mirrored\\\":false,\\\"abilityID\\\":13,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigWing3\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":2.200000047683716,\\\"y\\\":1.100000023841858},\\\"rotation\\\":180.0,\\\"mirrored\\\":true,\\\"abilityID\\\":13,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigWing3\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":1.5},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":7,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigCenter2\\\",\\\"shiny\\\":false}],\\\"dialogue\\\":{\\\"instanceID\\\":0},\\\"useCustomDroneType\\\":false,\\\"customDroneType\\\":0}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":0.0,\"y\":0.0},\"patrolPath\":{\"waypoints\":[]}},\"timePerSpawn\":8,\"radius\":15.0}],\"waveSetPath\":\"\",\"rectangleEffectSkin\":0,\"backgroundTileSkin\":0,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 230-1280.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 230-1280.json new file mode 100644 index 000000000..a274a96f6 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 230-1280.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Danger Zone 230-1280\",\"bounds\":{\"x\":110,\"y\":-950,\"w\":430,\"h\":220},\"type\":3,\"backgroundColor\":{\"r\":0.6499999761581421,\"g\":0.0,\"b\":0.0,\"a\":1.0},\"entities\":[],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[],\"hasMusic\":true,\"musicID\":\"music_overworld_enemy\",\"partDropsDisabled\":false,\"backgroundSpawns\":[{\"entity\":{\"name\":\"BattleCore\",\"ID\":\"\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"{\\\"entityName\\\":\\\"BattleCore\\\",\\\"coreSpriteID\\\":\\\"core1_light\\\",\\\"coreShellSpriteID\\\":\\\"core3_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":0,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":-1.0,\\\"y\\\":0.6000000238418579},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":7,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigWing5\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":1.0,\\\"y\\\":0.6000000238418579},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":7,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigWing5\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":-2.200000047683716,\\\"y\\\":1.100000023841858},\\\"rotation\\\":180.0,\\\"mirrored\\\":false,\\\"abilityID\\\":13,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigWing3\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":2.200000047683716,\\\"y\\\":1.100000023841858},\\\"rotation\\\":180.0,\\\"mirrored\\\":true,\\\"abilityID\\\":13,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigWing3\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":1.5},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":7,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigCenter2\\\",\\\"shiny\\\":false}],\\\"dialogue\\\":{\\\"instanceID\\\":0},\\\"useCustomDroneType\\\":false,\\\"customDroneType\\\":0}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":0.0,\"y\":0.0},\"patrolPath\":{\"waypoints\":[]}},\"timePerSpawn\":8,\"radius\":15.0}],\"waveSetPath\":\"\",\"rectangleEffectSkin\":1,\"backgroundTileSkin\":1,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 300-1500.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 300-1500.json new file mode 100644 index 000000000..61174e364 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 300-1500.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Danger Zone 300-1500\",\"bounds\":{\"x\":180,\"y\":-1170,\"w\":360,\"h\":110},\"type\":3,\"backgroundColor\":{\"r\":0.6499999761581421,\"g\":0.0,\"b\":0.0,\"a\":1.0},\"entities\":[{\"name\":\"Map Background 2\",\"ID\":\"286\",\"faction\":0,\"assetID\":\"mapbg2\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":360.0,\"y\":-1225.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[],\"hasMusic\":true,\"musicID\":\"music_overworld_enemy\",\"partDropsDisabled\":false,\"backgroundSpawns\":[{\"entity\":{\"name\":\"BattleCore\",\"ID\":\"\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"{\\\"entityName\\\":\\\"BattleCore\\\",\\\"coreSpriteID\\\":\\\"core1_light\\\",\\\"coreShellSpriteID\\\":\\\"core3_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":0,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":-1.0,\\\"y\\\":0.6000000238418579},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":7,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigWing5\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":1.0,\\\"y\\\":0.6000000238418579},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":7,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigWing5\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":-2.200000047683716,\\\"y\\\":1.100000023841858},\\\"rotation\\\":180.0,\\\"mirrored\\\":false,\\\"abilityID\\\":13,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigWing3\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":2.200000047683716,\\\"y\\\":1.100000023841858},\\\"rotation\\\":180.0,\\\"mirrored\\\":true,\\\"abilityID\\\":13,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigWing3\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":1.5},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":7,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigCenter2\\\",\\\"shiny\\\":false}],\\\"dialogue\\\":{\\\"instanceID\\\":0},\\\"useCustomDroneType\\\":false,\\\"customDroneType\\\":0}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":0.0,\"y\":0.0},\"patrolPath\":{\"waypoints\":[]}},\"timePerSpawn\":8,\"radius\":15.0}],\"waveSetPath\":\"\",\"rectangleEffectSkin\":1,\"backgroundTileSkin\":1,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 380-2070.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 380-2070.json new file mode 100644 index 000000000..cc45348fd --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 380-2070.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Danger Zone 380-2070\",\"bounds\":{\"x\":260,\"y\":-1740,\"w\":60,\"h\":80},\"type\":3,\"backgroundColor\":{\"r\":0.6499999761581421,\"g\":0.0,\"b\":0.0,\"a\":1.0},\"entities\":[],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[],\"hasMusic\":true,\"musicID\":\"music_overworld\",\"partDropsDisabled\":false,\"backgroundSpawns\":[],\"waveSetPath\":\"\",\"rectangleEffectSkin\":1,\"backgroundTileSkin\":1,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 380-2150.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 380-2150.json new file mode 100644 index 000000000..36a656b6a --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 380-2150.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Danger Zone 380-2150\",\"bounds\":{\"x\":260,\"y\":-1820,\"w\":150,\"h\":580},\"type\":3,\"backgroundColor\":{\"r\":0.6499999761581421,\"g\":0.0,\"b\":0.0,\"a\":1.0},\"entities\":[{\"name\":\"Map Background 3\",\"ID\":\"287\",\"faction\":0,\"assetID\":\"mapbg3\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":380.0,\"y\":-2025.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[],\"hasMusic\":true,\"musicID\":\"music_overworld\",\"partDropsDisabled\":false,\"backgroundSpawns\":[],\"waveSetPath\":\"\",\"rectangleEffectSkin\":1,\"backgroundTileSkin\":1,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 460-300.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 460-300.json new file mode 100644 index 000000000..d675de910 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 460-300.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Danger Zone 460-300\",\"bounds\":{\"x\":340,\"y\":30,\"w\":310,\"h\":200},\"type\":3,\"backgroundColor\":{\"r\":0.6499999761581421,\"g\":0.0,\"b\":0.0,\"a\":1.0},\"entities\":[{\"name\":\"Map Background 1\",\"ID\":\"288\",\"faction\":0,\"assetID\":\"mapbg1\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":495.0,\"y\":-70.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[],\"hasMusic\":true,\"musicID\":\"music_overworld\",\"partDropsDisabled\":false,\"backgroundSpawns\":[],\"waveSetPath\":\"\",\"rectangleEffectSkin\":0,\"backgroundTileSkin\":0,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 480-1790.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 480-1790.json new file mode 100644 index 000000000..669db98b2 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 480-1790.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Danger Zone 480-1790\",\"bounds\":{\"x\":360,\"y\":-1460,\"w\":100,\"h\":130},\"type\":3,\"backgroundColor\":{\"r\":0.6499999761581421,\"g\":0.0,\"b\":0.0,\"a\":1.0},\"entities\":[{\"name\":\"Map Background 1\",\"ID\":\"289\",\"faction\":0,\"assetID\":\"mapbg1\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":410.0,\"y\":-1490.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Map Background 3\",\"ID\":\"290\",\"faction\":0,\"assetID\":\"mapbg3\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":410.0,\"y\":-1555.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[],\"hasMusic\":true,\"musicID\":\"music_overworld\",\"partDropsDisabled\":false,\"backgroundSpawns\":[],\"waveSetPath\":\"\",\"rectangleEffectSkin\":1,\"backgroundTileSkin\":1,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 530-2150.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 530-2150.json new file mode 100644 index 000000000..e284a8f62 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 530-2150.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Danger Zone 530-2150\",\"bounds\":{\"x\":410,\"y\":-1820,\"w\":160,\"h\":190},\"type\":3,\"backgroundColor\":{\"r\":0.6499999761581421,\"g\":0.0,\"b\":0.0,\"a\":1.0},\"entities\":[{\"name\":\"Map Background 3\",\"ID\":\"291\",\"faction\":0,\"assetID\":\"mapbg3\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":490.0,\"y\":-1915.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[],\"hasMusic\":true,\"musicID\":\"music_overworld_2\",\"partDropsDisabled\":false,\"backgroundSpawns\":[{\"entity\":{\"name\":\"BattleCore\",\"ID\":\"\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"{\\\"entityName\\\":\\\"BattleCore\\\",\\\"coreSpriteID\\\":\\\"core1_light\\\",\\\"coreShellSpriteID\\\":\\\"core3weapons_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":0,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":-2.200000047683716,\\\"y\\\":0.6000000238418579},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":9,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigSide2\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":-1.399999976158142,\\\"y\\\":-1.2000000476837159},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":13,\\\"tier\\\":2,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"MediumSide3\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":1.399999976158142,\\\"y\\\":-1.2000000476837159},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":13,\\\"tier\\\":2,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"MediumSide3\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":2.200000047683716,\\\"y\\\":0.6000000834465027},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":9,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigSide2\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":-1.2000000476837159,\\\"y\\\":0.20000000298023225},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":4,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigWing1\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":1.2000000476837159,\\\"y\\\":0.20000000298023225},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":4,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigWing1\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":0.6000000238418579},\\\"rotation\\\":-180.0,\\\"mirrored\\\":false,\\\"abilityID\\\":13,\\\"tier\\\":2,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"MediumCenter3\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":-0.800000011920929},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":13,\\\"tier\\\":2,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"MediumCenter6\\\",\\\"shiny\\\":false}],\\\"dialogue\\\":{\\\"instanceID\\\":0},\\\"useCustomDroneType\\\":false,\\\"customDroneType\\\":0}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":0.0,\"y\":0.0},\"patrolPath\":{\"waypoints\":[]}},\"timePerSpawn\":8,\"radius\":15.0}],\"waveSetPath\":\"\",\"rectangleEffectSkin\":1,\"backgroundTileSkin\":1,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 530-2420.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 530-2420.json new file mode 100644 index 000000000..da17e13e3 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 530-2420.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Danger Zone 530-2420\",\"bounds\":{\"x\":410,\"y\":-2090,\"w\":450,\"h\":310},\"type\":3,\"backgroundColor\":{\"r\":0.6499999761581421,\"g\":0.0,\"b\":0.0,\"a\":1.0},\"entities\":[{\"name\":\"Map Background 3\",\"ID\":\"292\",\"faction\":0,\"assetID\":\"mapbg3\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":590.0,\"y\":-2120.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[],\"hasMusic\":true,\"musicID\":\"music_overworld\",\"partDropsDisabled\":false,\"backgroundSpawns\":[],\"waveSetPath\":\"\",\"rectangleEffectSkin\":1,\"backgroundTileSkin\":1,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 610-0.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 610-0.json new file mode 100644 index 000000000..7ad7977e2 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 610-0.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Danger Zone 610-0\",\"bounds\":{\"x\":490,\"y\":330,\"w\":670,\"h\":150},\"type\":3,\"backgroundColor\":{\"r\":0.6499999761581421,\"g\":0.0,\"b\":0.0,\"a\":1.0},\"entities\":[{\"name\":\"Map Background 1\",\"ID\":\"293\",\"faction\":0,\"assetID\":\"mapbg1\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":825.0,\"y\":255.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[],\"hasMusic\":true,\"musicID\":\"music_overworld\",\"partDropsDisabled\":false,\"backgroundSpawns\":[],\"waveSetPath\":\"\",\"rectangleEffectSkin\":0,\"backgroundTileSkin\":0,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 660-1280.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 660-1280.json new file mode 100644 index 000000000..ffdda2736 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 660-1280.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Danger Zone 660-1280\",\"bounds\":{\"x\":540,\"y\":-950,\"w\":460,\"h\":270},\"type\":3,\"backgroundColor\":{\"r\":0.6499999761581421,\"g\":0.0,\"b\":0.0,\"a\":1.0},\"entities\":[],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[],\"hasMusic\":true,\"musicID\":\"music_overworld_2\",\"partDropsDisabled\":false,\"backgroundSpawns\":[{\"entity\":{\"name\":\"BattleCore\",\"ID\":\"\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"{\\\"entityName\\\":\\\"BattleCore\\\",\\\"coreSpriteID\\\":\\\"core1_light\\\",\\\"coreShellSpriteID\\\":\\\"core3_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":0,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":-1.0,\\\"y\\\":0.6000000238418579},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":7,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigWing5\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":1.0,\\\"y\\\":0.6000000238418579},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":7,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigWing5\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":-2.200000047683716,\\\"y\\\":1.100000023841858},\\\"rotation\\\":180.0,\\\"mirrored\\\":false,\\\"abilityID\\\":13,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigWing3\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":2.200000047683716,\\\"y\\\":1.100000023841858},\\\"rotation\\\":180.0,\\\"mirrored\\\":true,\\\"abilityID\\\":13,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigWing3\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":1.5},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":7,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigCenter2\\\",\\\"shiny\\\":false}],\\\"dialogue\\\":{\\\"instanceID\\\":0},\\\"useCustomDroneType\\\":false,\\\"customDroneType\\\":0}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":0.0,\"y\":0.0},\"patrolPath\":{\"waypoints\":[]}},\"timePerSpawn\":8,\"radius\":15.0}],\"waveSetPath\":\"\",\"rectangleEffectSkin\":1,\"backgroundTileSkin\":1,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 820-2340.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 820-2340.json new file mode 100644 index 000000000..1a0d96942 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 820-2340.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Danger Zone 820-2340\",\"bounds\":{\"x\":700,\"y\":-2010,\"w\":160,\"h\":80},\"type\":3,\"backgroundColor\":{\"r\":0.6499999761581421,\"g\":0.0,\"b\":0.0,\"a\":1.0},\"entities\":[{\"name\":\"Map Background 3\",\"ID\":\"294\",\"faction\":0,\"assetID\":\"mapbg3\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":800.0,\"y\":-2050.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[],\"hasMusic\":true,\"musicID\":\"music_overworld_2\",\"partDropsDisabled\":false,\"backgroundSpawns\":[],\"waveSetPath\":\"\",\"rectangleEffectSkin\":1,\"backgroundTileSkin\":1,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 980-2290.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 980-2290.json new file mode 100644 index 000000000..c7013bd67 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 980-2290.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Danger Zone 980-2290\",\"bounds\":{\"x\":860,\"y\":-1960,\"w\":160,\"h\":130},\"type\":3,\"backgroundColor\":{\"r\":0.6499999761581421,\"g\":0.0,\"b\":0.0,\"a\":1.0},\"entities\":[{\"name\":\"Map Background 3\",\"ID\":\"295\",\"faction\":0,\"assetID\":\"mapbg3\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":965.0,\"y\":-1985.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[],\"hasMusic\":true,\"musicID\":\"music_overworld_2\",\"partDropsDisabled\":false,\"backgroundSpawns\":[],\"waveSetPath\":\"\",\"rectangleEffectSkin\":1,\"backgroundTileSkin\":1,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 980-2420.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 980-2420.json new file mode 100644 index 000000000..bb98e4ff6 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Danger Zone 980-2420.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Danger Zone 980-2420\",\"bounds\":{\"x\":860,\"y\":-2090,\"w\":160,\"h\":310},\"type\":3,\"backgroundColor\":{\"r\":0.6499999761581421,\"g\":0.0,\"b\":0.0,\"a\":1.0},\"entities\":[],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[],\"hasMusic\":true,\"musicID\":\"music_overworld_2\",\"partDropsDisabled\":false,\"backgroundSpawns\":[],\"waveSetPath\":\"\",\"rectangleEffectSkin\":1,\"backgroundTileSkin\":1,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Haven 1.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Haven 1.json new file mode 100644 index 000000000..be312031a --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Haven 1.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Haven 1\",\"bounds\":{\"x\":180,\"y\":180,\"w\":160,\"h\":90},\"type\":1,\"backgroundColor\":{\"r\":0.0,\"g\":0.4000000059604645,\"b\":0.0,\"a\":1.0},\"entities\":[{\"name\":\"sukrat\",\"ID\":\"sukrat\",\"faction\":0,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":282.5,\"y\":137.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"haven1-combatexplainer\",\"faction\":0,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"{\\\"entityName\\\":\\\"Unnamed\\\",\\\"coreSpriteID\\\":\\\"core1_light\\\",\\\"coreShellSpriteID\\\":\\\"core1_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":0,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":-0.3199999928474426},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":1,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"{\\\\\\\"drone\\\\\\\":\\\\\\\"{\\\\\\\\\\\\\\\"entityName\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Strike Drone\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_light\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreShellSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_shell\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"shellHealth\\\\\\\\\\\\\\\":[1000.0,250.0,500.0],\\\\\\\\\\\\\\\"baseRegen\\\\\\\\\\\\\\\":[60.0,0.0,60.0],\\\\\\\\\\\\\\\"intendedType\\\\\\\\\\\\\\\":7,\\\\\\\\\\\\\\\"parts\\\\\\\\\\\\\\\":[{\\\\\\\\\\\\\\\"location\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\\":-0.2485615760087967,\\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\\":0.0},\\\\\\\\\\\\\\\"rotation\\\\\\\\\\\\\\\":0.0,\\\\\\\\\\\\\\\"mirrored\\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\\"abilityID\\\\\\\\\\\\\\\":5,\\\\\\\\\\\\\\\"tier\\\\\\\\\\\\\\\":1,\\\\\\\\\\\\\\\"secondaryData\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"partID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"SmallWing1\\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\\"location\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\\":0.2485615760087967,\\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\\":0.0},\\\\\\\\\\\\\\\"rotation\\\\\\\\\\\\\\\":0.0,\\\\\\\\\\\\\\\"mirrored\\\\\\\\\\\\\\\":false,\\\\\\\\\\\\\\\"abilityID\\\\\\\\\\\\\\\":0,\\\\\\\\\\\\\\\"tier\\\\\\\\\\\\\\\":0,\\\\\\\\\\\\\\\"secondaryData\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"partID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"SmallWing1\\\\\\\\\\\\\\\"}],\\\\\\\\\\\\\\\"dialogue\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"instanceID\\\\\\\\\\\\\\\":0}}\\\\\\\",\\\\\\\"energyCost\\\\\\\":150.0,\\\\\\\"delay\\\\\\\":3.0,\\\\\\\"cooldown\\\\\\\":15.0,\\\\\\\"type\\\\\\\":2}\\\",\\\"partID\\\":\\\"SmallCenter5\\\"},{\\\"location\\\":{\\\"x\\\":0.5333333611488342,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":4,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"{\\\\\\\"drone\\\\\\\":\\\\\\\"{\\\\\\\\\\\\\\\"entityName\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Worker Drone\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_light\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreShellSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"worker_drone_shell_sprite\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"shellHealth\\\\\\\\\\\\\\\":[1000.0,250.0,500.0],\\\\\\\\\\\\\\\"baseRegen\\\\\\\\\\\\\\\":[60.0,0.0,60.0],\\\\\\\\\\\\\\\"intendedType\\\\\\\\\\\\\\\":7,\\\\\\\\\\\\\\\"parts\\\\\\\\\\\\\\\":[],\\\\\\\\\\\\\\\"dialogue\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"instanceID\\\\\\\\\\\\\\\":0}}\\\\\\\",\\\\\\\"energyCost\\\\\\\":100.0,\\\\\\\"delay\\\\\\\":2.0,\\\\\\\"cooldown\\\\\\\":10.0,\\\\\\\"type\\\\\\\":1}\\\",\\\"partID\\\":\\\"SmallWing2\\\"},{\\\"location\\\":{\\\"x\\\":-0.5333333611488342,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":2,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"{\\\\\\\"drone\\\\\\\":\\\\\\\"{\\\\\\\\\\\\\\\"entityName\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Worker Drone\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_light\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreShellSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"worker_drone_shell_sprite\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"shellHealth\\\\\\\\\\\\\\\":[1000.0,250.0,500.0],\\\\\\\\\\\\\\\"baseRegen\\\\\\\\\\\\\\\":[60.0,0.0,60.0],\\\\\\\\\\\\\\\"intendedType\\\\\\\\\\\\\\\":7,\\\\\\\\\\\\\\\"parts\\\\\\\\\\\\\\\":[],\\\\\\\\\\\\\\\"dialogue\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"instanceID\\\\\\\\\\\\\\\":0}}\\\\\\\",\\\\\\\"energyCost\\\\\\\":100.0,\\\\\\\"delay\\\\\\\":2.0,\\\\\\\"cooldown\\\\\\\":10.0,\\\\\\\"type\\\\\\\":1}\\\",\\\"partID\\\":\\\"SmallWing2\\\"}],\\\"dialogue\\\":{\\\"instanceID\\\":0}}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":250.0,\"y\":120.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Map Background 2\",\"ID\":\"296\",\"faction\":0,\"assetID\":\"mapbg2\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":260.0,\"y\":135.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"haven1-bluevoiceexplainer\",\"faction\":0,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"{\\\"entityName\\\":\\\"Unnamed\\\",\\\"coreSpriteID\\\":\\\"core1_light\\\",\\\"coreShellSpriteID\\\":\\\"core1_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":0,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":-0.3199999928474426},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":1,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"{\\\\\\\"drone\\\\\\\":\\\\\\\"{\\\\\\\\\\\\\\\"entityName\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Strike Drone\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_light\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreShellSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_shell\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"shellHealth\\\\\\\\\\\\\\\":[1000.0,250.0,500.0],\\\\\\\\\\\\\\\"baseRegen\\\\\\\\\\\\\\\":[60.0,0.0,60.0],\\\\\\\\\\\\\\\"intendedType\\\\\\\\\\\\\\\":7,\\\\\\\\\\\\\\\"parts\\\\\\\\\\\\\\\":[{\\\\\\\\\\\\\\\"location\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\\":-0.2485615760087967,\\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\\":0.0},\\\\\\\\\\\\\\\"rotation\\\\\\\\\\\\\\\":0.0,\\\\\\\\\\\\\\\"mirrored\\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\\"abilityID\\\\\\\\\\\\\\\":5,\\\\\\\\\\\\\\\"tier\\\\\\\\\\\\\\\":1,\\\\\\\\\\\\\\\"secondaryData\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"partID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"SmallWing1\\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\\"location\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\\":0.2485615760087967,\\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\\":0.0},\\\\\\\\\\\\\\\"rotation\\\\\\\\\\\\\\\":0.0,\\\\\\\\\\\\\\\"mirrored\\\\\\\\\\\\\\\":false,\\\\\\\\\\\\\\\"abilityID\\\\\\\\\\\\\\\":0,\\\\\\\\\\\\\\\"tier\\\\\\\\\\\\\\\":0,\\\\\\\\\\\\\\\"secondaryData\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"partID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"SmallWing1\\\\\\\\\\\\\\\"}],\\\\\\\\\\\\\\\"dialogue\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"instanceID\\\\\\\\\\\\\\\":0}}\\\\\\\",\\\\\\\"energyCost\\\\\\\":150.0,\\\\\\\"delay\\\\\\\":3.0,\\\\\\\"cooldown\\\\\\\":15.0,\\\\\\\"type\\\\\\\":2}\\\",\\\"partID\\\":\\\"SmallCenter5\\\"},{\\\"location\\\":{\\\"x\\\":0.5333333611488342,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":4,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"{\\\\\\\"drone\\\\\\\":\\\\\\\"{\\\\\\\\\\\\\\\"entityName\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Worker Drone\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_light\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreShellSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"worker_drone_shell_sprite\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"shellHealth\\\\\\\\\\\\\\\":[1000.0,250.0,500.0],\\\\\\\\\\\\\\\"baseRegen\\\\\\\\\\\\\\\":[60.0,0.0,60.0],\\\\\\\\\\\\\\\"intendedType\\\\\\\\\\\\\\\":7,\\\\\\\\\\\\\\\"parts\\\\\\\\\\\\\\\":[],\\\\\\\\\\\\\\\"dialogue\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"instanceID\\\\\\\\\\\\\\\":0}}\\\\\\\",\\\\\\\"energyCost\\\\\\\":100.0,\\\\\\\"delay\\\\\\\":2.0,\\\\\\\"cooldown\\\\\\\":10.0,\\\\\\\"type\\\\\\\":1}\\\",\\\"partID\\\":\\\"SmallWing2\\\"},{\\\"location\\\":{\\\"x\\\":-0.5333333611488342,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":2,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"{\\\\\\\"drone\\\\\\\":\\\\\\\"{\\\\\\\\\\\\\\\"entityName\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Worker Drone\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_light\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreShellSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"worker_drone_shell_sprite\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"shellHealth\\\\\\\\\\\\\\\":[1000.0,250.0,500.0],\\\\\\\\\\\\\\\"baseRegen\\\\\\\\\\\\\\\":[60.0,0.0,60.0],\\\\\\\\\\\\\\\"intendedType\\\\\\\\\\\\\\\":7,\\\\\\\\\\\\\\\"parts\\\\\\\\\\\\\\\":[],\\\\\\\\\\\\\\\"dialogue\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"instanceID\\\\\\\\\\\\\\\":0}}\\\\\\\",\\\\\\\"energyCost\\\\\\\":100.0,\\\\\\\"delay\\\\\\\":2.0,\\\\\\\"cooldown\\\\\\\":10.0,\\\\\\\"type\\\\\\\":1}\\\",\\\"partID\\\":\\\"SmallWing2\\\"}],\\\"dialogue\\\":{\\\"instanceID\\\":0}}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":240.0,\"y\":130.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"haven1-infectionexplainer\",\"faction\":0,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"{\\\"entityName\\\":\\\"Unnamed\\\",\\\"coreSpriteID\\\":\\\"core1_light\\\",\\\"coreShellSpriteID\\\":\\\"core1_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":0,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":-0.3199999928474426},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":1,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"{\\\\\\\"drone\\\\\\\":\\\\\\\"{\\\\\\\\\\\\\\\"entityName\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Strike Drone\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_light\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreShellSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_shell\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"shellHealth\\\\\\\\\\\\\\\":[1000.0,250.0,500.0],\\\\\\\\\\\\\\\"baseRegen\\\\\\\\\\\\\\\":[60.0,0.0,60.0],\\\\\\\\\\\\\\\"intendedType\\\\\\\\\\\\\\\":7,\\\\\\\\\\\\\\\"parts\\\\\\\\\\\\\\\":[{\\\\\\\\\\\\\\\"location\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\\":-0.2485615760087967,\\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\\":0.0},\\\\\\\\\\\\\\\"rotation\\\\\\\\\\\\\\\":0.0,\\\\\\\\\\\\\\\"mirrored\\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\\"abilityID\\\\\\\\\\\\\\\":5,\\\\\\\\\\\\\\\"tier\\\\\\\\\\\\\\\":1,\\\\\\\\\\\\\\\"secondaryData\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"partID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"SmallWing1\\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\\"location\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\\":0.2485615760087967,\\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\\":0.0},\\\\\\\\\\\\\\\"rotation\\\\\\\\\\\\\\\":0.0,\\\\\\\\\\\\\\\"mirrored\\\\\\\\\\\\\\\":false,\\\\\\\\\\\\\\\"abilityID\\\\\\\\\\\\\\\":0,\\\\\\\\\\\\\\\"tier\\\\\\\\\\\\\\\":0,\\\\\\\\\\\\\\\"secondaryData\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"partID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"SmallWing1\\\\\\\\\\\\\\\"}],\\\\\\\\\\\\\\\"dialogue\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"instanceID\\\\\\\\\\\\\\\":0}}\\\\\\\",\\\\\\\"energyCost\\\\\\\":150.0,\\\\\\\"delay\\\\\\\":3.0,\\\\\\\"cooldown\\\\\\\":15.0,\\\\\\\"type\\\\\\\":2}\\\",\\\"partID\\\":\\\"SmallCenter5\\\"},{\\\"location\\\":{\\\"x\\\":0.5333333611488342,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":4,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"{\\\\\\\"drone\\\\\\\":\\\\\\\"{\\\\\\\\\\\\\\\"entityName\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Worker Drone\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_light\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreShellSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"worker_drone_shell_sprite\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"shellHealth\\\\\\\\\\\\\\\":[1000.0,250.0,500.0],\\\\\\\\\\\\\\\"baseRegen\\\\\\\\\\\\\\\":[60.0,0.0,60.0],\\\\\\\\\\\\\\\"intendedType\\\\\\\\\\\\\\\":7,\\\\\\\\\\\\\\\"parts\\\\\\\\\\\\\\\":[],\\\\\\\\\\\\\\\"dialogue\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"instanceID\\\\\\\\\\\\\\\":0}}\\\\\\\",\\\\\\\"energyCost\\\\\\\":100.0,\\\\\\\"delay\\\\\\\":2.0,\\\\\\\"cooldown\\\\\\\":10.0,\\\\\\\"type\\\\\\\":1}\\\",\\\"partID\\\":\\\"SmallWing2\\\"},{\\\"location\\\":{\\\"x\\\":-0.5333333611488342,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":2,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"{\\\\\\\"drone\\\\\\\":\\\\\\\"{\\\\\\\\\\\\\\\"entityName\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Worker Drone\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_light\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreShellSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"worker_drone_shell_sprite\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"shellHealth\\\\\\\\\\\\\\\":[1000.0,250.0,500.0],\\\\\\\\\\\\\\\"baseRegen\\\\\\\\\\\\\\\":[60.0,0.0,60.0],\\\\\\\\\\\\\\\"intendedType\\\\\\\\\\\\\\\":7,\\\\\\\\\\\\\\\"parts\\\\\\\\\\\\\\\":[],\\\\\\\\\\\\\\\"dialogue\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"instanceID\\\\\\\\\\\\\\\":0}}\\\\\\\",\\\\\\\"energyCost\\\\\\\":100.0,\\\\\\\"delay\\\\\\\":2.0,\\\\\\\"cooldown\\\\\\\":10.0,\\\\\\\"type\\\\\\\":1}\\\",\\\"partID\\\":\\\"SmallWing2\\\"}],\\\"dialogue\\\":{\\\"instanceID\\\":0}}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":280.0,\"y\":125.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Mission Control\",\"ID\":\"haven1-missioncontrol1\",\"faction\":0,\"assetID\":\"missioncontrol_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":245.0,\"y\":140.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Yard(Clone)\",\"ID\":\"297\",\"faction\":0,\"assetID\":\"yard_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":275.0,\"y\":145.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"GameObject (6)(Clone)\",\"ID\":\"298\",\"faction\":0,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":300.0,\"y\":155.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"GameObject (6)(Clone)\",\"ID\":\"299\",\"faction\":0,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":300.0,\"y\":115.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"GameObject (6)(Clone)\",\"ID\":\"300\",\"faction\":0,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":220.0,\"y\":155.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"GameObject (6)(Clone)\",\"ID\":\"301\",\"faction\":0,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":220.0,\"y\":115.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[\"sukrat\",\"haven1-combatexplainer\",\"haven1-bluevoiceexplainer\",\"haven1-infectionexplainer\"],\"hasMusic\":true,\"musicID\":\"music_overworld\",\"partDropsDisabled\":false,\"backgroundSpawns\":[],\"waveSetPath\":\"\",\"rectangleEffectSkin\":0,\"backgroundTileSkin\":0,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Haven 2.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Haven 2.json new file mode 100644 index 000000000..b623f3f30 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Haven 2.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Haven 2\",\"bounds\":{\"x\":650,\"y\":180,\"w\":110,\"h\":150},\"type\":1,\"backgroundColor\":{\"r\":0.0,\"g\":0.4000000059604645,\"b\":0.0,\"a\":1.0},\"entities\":[{\"name\":\"sukrat\",\"ID\":\"sukrat\",\"faction\":0,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":700.0,\"y\":125.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"flag-playermeetingpointhaven2-0\",\"ID\":\"302\",\"faction\":0,\"assetID\":\"flag\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":705.0,\"y\":130.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"flag-sukratmeetingpointhaven2-0\",\"ID\":\"303\",\"faction\":0,\"assetID\":\"flag\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":705.0,\"y\":125.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"The Bordergazer\",\"ID\":\"haven2-bordergazer\",\"faction\":0,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"{\\\"entityName\\\":\\\"Unnamed\\\",\\\"coreSpriteID\\\":\\\"core1_light\\\",\\\"coreShellSpriteID\\\":\\\"core1_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":0,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":-0.3199999928474426},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":1,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"{\\\\\\\"drone\\\\\\\":\\\\\\\"{\\\\\\\\\\\\\\\"entityName\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Strike Drone\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_light\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreShellSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_shell\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"shellHealth\\\\\\\\\\\\\\\":[1000.0,250.0,500.0],\\\\\\\\\\\\\\\"baseRegen\\\\\\\\\\\\\\\":[60.0,0.0,60.0],\\\\\\\\\\\\\\\"intendedType\\\\\\\\\\\\\\\":7,\\\\\\\\\\\\\\\"parts\\\\\\\\\\\\\\\":[{\\\\\\\\\\\\\\\"location\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\\":-0.2485615760087967,\\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\\":0.0},\\\\\\\\\\\\\\\"rotation\\\\\\\\\\\\\\\":0.0,\\\\\\\\\\\\\\\"mirrored\\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\\"abilityID\\\\\\\\\\\\\\\":5,\\\\\\\\\\\\\\\"tier\\\\\\\\\\\\\\\":1,\\\\\\\\\\\\\\\"secondaryData\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"partID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"SmallWing1\\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\\"location\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\\":0.2485615760087967,\\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\\":0.0},\\\\\\\\\\\\\\\"rotation\\\\\\\\\\\\\\\":0.0,\\\\\\\\\\\\\\\"mirrored\\\\\\\\\\\\\\\":false,\\\\\\\\\\\\\\\"abilityID\\\\\\\\\\\\\\\":0,\\\\\\\\\\\\\\\"tier\\\\\\\\\\\\\\\":0,\\\\\\\\\\\\\\\"secondaryData\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"partID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"SmallWing1\\\\\\\\\\\\\\\"}],\\\\\\\\\\\\\\\"dialogue\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"instanceID\\\\\\\\\\\\\\\":0}}\\\\\\\",\\\\\\\"energyCost\\\\\\\":150.0,\\\\\\\"delay\\\\\\\":3.0,\\\\\\\"cooldown\\\\\\\":15.0,\\\\\\\"type\\\\\\\":2}\\\",\\\"partID\\\":\\\"SmallCenter5\\\"},{\\\"location\\\":{\\\"x\\\":0.5,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":4,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"{\\\\\\\"drone\\\\\\\":\\\\\\\"{\\\\\\\\\\\\\\\"entityName\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Worker Drone\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_light\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreShellSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"worker_drone_shell_sprite\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"shellHealth\\\\\\\\\\\\\\\":[1000.0,250.0,500.0],\\\\\\\\\\\\\\\"baseRegen\\\\\\\\\\\\\\\":[60.0,0.0,60.0],\\\\\\\\\\\\\\\"intendedType\\\\\\\\\\\\\\\":7,\\\\\\\\\\\\\\\"parts\\\\\\\\\\\\\\\":[],\\\\\\\\\\\\\\\"dialogue\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"instanceID\\\\\\\\\\\\\\\":0}}\\\\\\\",\\\\\\\"energyCost\\\\\\\":100.0,\\\\\\\"delay\\\\\\\":2.0,\\\\\\\"cooldown\\\\\\\":10.0,\\\\\\\"type\\\\\\\":1}\\\",\\\"partID\\\":\\\"SmallWing2\\\"},{\\\"location\\\":{\\\"x\\\":-0.5,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":2,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"{\\\\\\\"drone\\\\\\\":\\\\\\\"{\\\\\\\\\\\\\\\"entityName\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Worker Drone\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_light\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreShellSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"worker_drone_shell_sprite\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"shellHealth\\\\\\\\\\\\\\\":[1000.0,250.0,500.0],\\\\\\\\\\\\\\\"baseRegen\\\\\\\\\\\\\\\":[60.0,0.0,60.0],\\\\\\\\\\\\\\\"intendedType\\\\\\\\\\\\\\\":7,\\\\\\\\\\\\\\\"parts\\\\\\\\\\\\\\\":[],\\\\\\\\\\\\\\\"dialogue\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"instanceID\\\\\\\\\\\\\\\":0}}\\\\\\\",\\\\\\\"energyCost\\\\\\\":100.0,\\\\\\\"delay\\\\\\\":2.0,\\\\\\\"cooldown\\\\\\\":10.0,\\\\\\\"type\\\\\\\":1}\\\",\\\"partID\\\":\\\"SmallWing2\\\"}],\\\"dialogue\\\":{\\\"instanceID\\\":0},\\\"useCustomDroneType\\\":false,\\\"customDroneType\\\":0}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":695.0,\"y\":175.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"haven2-sightseer\",\"faction\":0,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"{\\\"entityName\\\":\\\"Unnamed\\\",\\\"coreSpriteID\\\":\\\"core1_light\\\",\\\"coreShellSpriteID\\\":\\\"core1_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":0,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":-0.3199999928474426},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":1,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"{\\\\\\\"drone\\\\\\\":\\\\\\\"{\\\\\\\\\\\\\\\"entityName\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Strike Drone\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_light\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreShellSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_shell\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"shellHealth\\\\\\\\\\\\\\\":[1000.0,250.0,500.0],\\\\\\\\\\\\\\\"baseRegen\\\\\\\\\\\\\\\":[60.0,0.0,60.0],\\\\\\\\\\\\\\\"intendedType\\\\\\\\\\\\\\\":7,\\\\\\\\\\\\\\\"parts\\\\\\\\\\\\\\\":[{\\\\\\\\\\\\\\\"location\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\\":-0.2485615760087967,\\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\\":0.0},\\\\\\\\\\\\\\\"rotation\\\\\\\\\\\\\\\":0.0,\\\\\\\\\\\\\\\"mirrored\\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\\"abilityID\\\\\\\\\\\\\\\":5,\\\\\\\\\\\\\\\"tier\\\\\\\\\\\\\\\":1,\\\\\\\\\\\\\\\"secondaryData\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"partID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"SmallWing1\\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\\"location\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\\":0.2485615760087967,\\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\\":0.0},\\\\\\\\\\\\\\\"rotation\\\\\\\\\\\\\\\":0.0,\\\\\\\\\\\\\\\"mirrored\\\\\\\\\\\\\\\":false,\\\\\\\\\\\\\\\"abilityID\\\\\\\\\\\\\\\":0,\\\\\\\\\\\\\\\"tier\\\\\\\\\\\\\\\":0,\\\\\\\\\\\\\\\"secondaryData\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"partID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"SmallWing1\\\\\\\\\\\\\\\"}],\\\\\\\\\\\\\\\"dialogue\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"instanceID\\\\\\\\\\\\\\\":0}}\\\\\\\",\\\\\\\"energyCost\\\\\\\":150.0,\\\\\\\"delay\\\\\\\":3.0,\\\\\\\"cooldown\\\\\\\":15.0,\\\\\\\"type\\\\\\\":2}\\\",\\\"partID\\\":\\\"SmallCenter5\\\"},{\\\"location\\\":{\\\"x\\\":0.5333333611488342,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":4,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"{\\\\\\\"drone\\\\\\\":\\\\\\\"{\\\\\\\\\\\\\\\"entityName\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Worker Drone\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_light\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreShellSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"worker_drone_shell_sprite\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"shellHealth\\\\\\\\\\\\\\\":[1000.0,250.0,500.0],\\\\\\\\\\\\\\\"baseRegen\\\\\\\\\\\\\\\":[60.0,0.0,60.0],\\\\\\\\\\\\\\\"intendedType\\\\\\\\\\\\\\\":7,\\\\\\\\\\\\\\\"parts\\\\\\\\\\\\\\\":[],\\\\\\\\\\\\\\\"dialogue\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"instanceID\\\\\\\\\\\\\\\":0}}\\\\\\\",\\\\\\\"energyCost\\\\\\\":100.0,\\\\\\\"delay\\\\\\\":2.0,\\\\\\\"cooldown\\\\\\\":10.0,\\\\\\\"type\\\\\\\":1}\\\",\\\"partID\\\":\\\"SmallWing2\\\"},{\\\"location\\\":{\\\"x\\\":-0.5333333611488342,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":2,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"{\\\\\\\"drone\\\\\\\":\\\\\\\"{\\\\\\\\\\\\\\\"entityName\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Worker Drone\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_light\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreShellSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"worker_drone_shell_sprite\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"shellHealth\\\\\\\\\\\\\\\":[1000.0,250.0,500.0],\\\\\\\\\\\\\\\"baseRegen\\\\\\\\\\\\\\\":[60.0,0.0,60.0],\\\\\\\\\\\\\\\"intendedType\\\\\\\\\\\\\\\":7,\\\\\\\\\\\\\\\"parts\\\\\\\\\\\\\\\":[],\\\\\\\\\\\\\\\"dialogue\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"instanceID\\\\\\\\\\\\\\\":0}}\\\\\\\",\\\\\\\"energyCost\\\\\\\":100.0,\\\\\\\"delay\\\\\\\":2.0,\\\\\\\"cooldown\\\\\\\":10.0,\\\\\\\"type\\\\\\\":1}\\\",\\\"partID\\\":\\\"SmallWing2\\\"}],\\\"dialogue\\\":{\\\"instanceID\\\":0}}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":690.0,\"y\":115.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Map Background 1\",\"ID\":\"304\",\"faction\":0,\"assetID\":\"mapbg1\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":705.0,\"y\":95.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"haven2-outpostexplainer\",\"faction\":0,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"{\\\"entityName\\\":\\\"Unnamed\\\",\\\"coreSpriteID\\\":\\\"core1_light\\\",\\\"coreShellSpriteID\\\":\\\"core1_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":0,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":-0.3199999928474426},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":1,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"{\\\\\\\"drone\\\\\\\":\\\\\\\"{\\\\\\\\\\\\\\\"entityName\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Strike Drone\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_light\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreShellSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_shell\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"shellHealth\\\\\\\\\\\\\\\":[1000.0,250.0,500.0],\\\\\\\\\\\\\\\"baseRegen\\\\\\\\\\\\\\\":[60.0,0.0,60.0],\\\\\\\\\\\\\\\"intendedType\\\\\\\\\\\\\\\":7,\\\\\\\\\\\\\\\"parts\\\\\\\\\\\\\\\":[{\\\\\\\\\\\\\\\"location\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\\":-0.2485615760087967,\\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\\":0.0},\\\\\\\\\\\\\\\"rotation\\\\\\\\\\\\\\\":0.0,\\\\\\\\\\\\\\\"mirrored\\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\\"abilityID\\\\\\\\\\\\\\\":5,\\\\\\\\\\\\\\\"tier\\\\\\\\\\\\\\\":1,\\\\\\\\\\\\\\\"secondaryData\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"partID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"SmallWing1\\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\\"location\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\\":0.2485615760087967,\\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\\":0.0},\\\\\\\\\\\\\\\"rotation\\\\\\\\\\\\\\\":0.0,\\\\\\\\\\\\\\\"mirrored\\\\\\\\\\\\\\\":false,\\\\\\\\\\\\\\\"abilityID\\\\\\\\\\\\\\\":0,\\\\\\\\\\\\\\\"tier\\\\\\\\\\\\\\\":0,\\\\\\\\\\\\\\\"secondaryData\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"partID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"SmallWing1\\\\\\\\\\\\\\\"}],\\\\\\\\\\\\\\\"dialogue\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"instanceID\\\\\\\\\\\\\\\":0}}\\\\\\\",\\\\\\\"energyCost\\\\\\\":150.0,\\\\\\\"delay\\\\\\\":3.0,\\\\\\\"cooldown\\\\\\\":15.0,\\\\\\\"type\\\\\\\":2}\\\",\\\"partID\\\":\\\"SmallCenter5\\\"},{\\\"location\\\":{\\\"x\\\":0.5333333611488342,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":4,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"{\\\\\\\"drone\\\\\\\":\\\\\\\"{\\\\\\\\\\\\\\\"entityName\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Worker Drone\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_light\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreShellSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"worker_drone_shell_sprite\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"shellHealth\\\\\\\\\\\\\\\":[1000.0,250.0,500.0],\\\\\\\\\\\\\\\"baseRegen\\\\\\\\\\\\\\\":[60.0,0.0,60.0],\\\\\\\\\\\\\\\"intendedType\\\\\\\\\\\\\\\":7,\\\\\\\\\\\\\\\"parts\\\\\\\\\\\\\\\":[],\\\\\\\\\\\\\\\"dialogue\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"instanceID\\\\\\\\\\\\\\\":0}}\\\\\\\",\\\\\\\"energyCost\\\\\\\":100.0,\\\\\\\"delay\\\\\\\":2.0,\\\\\\\"cooldown\\\\\\\":10.0,\\\\\\\"type\\\\\\\":1}\\\",\\\"partID\\\":\\\"SmallWing2\\\"},{\\\"location\\\":{\\\"x\\\":-0.5333333611488342,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":2,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"{\\\\\\\"drone\\\\\\\":\\\\\\\"{\\\\\\\\\\\\\\\"entityName\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Worker Drone\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_light\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreShellSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"worker_drone_shell_sprite\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"shellHealth\\\\\\\\\\\\\\\":[1000.0,250.0,500.0],\\\\\\\\\\\\\\\"baseRegen\\\\\\\\\\\\\\\":[60.0,0.0,60.0],\\\\\\\\\\\\\\\"intendedType\\\\\\\\\\\\\\\":7,\\\\\\\\\\\\\\\"parts\\\\\\\\\\\\\\\":[],\\\\\\\\\\\\\\\"dialogue\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"instanceID\\\\\\\\\\\\\\\":0}}\\\\\\\",\\\\\\\"energyCost\\\\\\\":100.0,\\\\\\\"delay\\\\\\\":2.0,\\\\\\\"cooldown\\\\\\\":10.0,\\\\\\\"type\\\\\\\":1}\\\",\\\"partID\\\":\\\"SmallWing2\\\"}],\\\"dialogue\\\":{\\\"instanceID\\\":0}}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":725.0,\"y\":95.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Light Drone\",\"ID\":\"305\",\"faction\":0,\"assetID\":\"light_drone_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":700.0,\"y\":85.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"haven2-communicationexplainer\",\"faction\":0,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"{\\\"entityName\\\":\\\"Unnamed\\\",\\\"coreSpriteID\\\":\\\"core1_light\\\",\\\"coreShellSpriteID\\\":\\\"core1_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":0,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":0.30000001192092898,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":4,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing2\\\"},{\\\"location\\\":{\\\"x\\\":-0.30000001192092898,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":4,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing2\\\"},{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":0.30000001192092898},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":18,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallCenter2\\\"},{\\\"location\\\":{\\\"x\\\":0.5,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":20,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallSide3\\\"},{\\\"location\\\":{\\\"x\\\":-0.5,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":2,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallSide3\\\"},{\\\"location\\\":{\\\"x\\\":0.5,\\\"y\\\":-0.699999988079071},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":20,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing1\\\"},{\\\"location\\\":{\\\"x\\\":-0.5,\\\"y\\\":-0.699999988079071},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":20,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing1\\\"},{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":-0.4000000059604645},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":20,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallCenter5\\\"}],\\\"dialogue\\\":{\\\"instanceID\\\":0},\\\"useCustomDroneType\\\":false,\\\"customDroneType\\\":0}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":715.0,\"y\":130.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Mission Control - Haven 2\",\"ID\":\"haven2-missioncontrol1\",\"faction\":0,\"assetID\":\"missioncontrol_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":705.0,\"y\":135.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Yard\",\"ID\":\"haven2-yard1\",\"faction\":0,\"assetID\":\"yard_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":710.0,\"y\":75.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Trader\",\"ID\":\"306\",\"faction\":0,\"assetID\":\"trader_blueprint\",\"blueprintJSON\":\"{\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":1,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallCenter5\\\"},{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":2,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing2\\\"},{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":6,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing2\\\"},{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":18,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallSide3\\\"},{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":20,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallSide3\\\"},{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":13,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallSide4\\\"}]}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":695.0,\"y\":90.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"307\",\"faction\":0,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":735.0,\"y\":65.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"308\",\"faction\":0,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":675.0,\"y\":65.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Power Rock\",\"ID\":\"309\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":705.0,\"y\":100.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"310\",\"faction\":0,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":710.0,\"y\":105.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"311\",\"faction\":0,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":735.0,\"y\":105.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"312\",\"faction\":0,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":675.0,\"y\":105.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"313\",\"faction\":0,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":735.0,\"y\":155.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"314\",\"faction\":0,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":675.0,\"y\":155.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[\"sukrat\",\"haven2-bordergazer\",\"haven2-sightseer\",\"haven2-outpostexplainer\",\"haven2-communicationexplainer\"],\"hasMusic\":true,\"musicID\":\"music_overworld\",\"partDropsDisabled\":false,\"backgroundSpawns\":[],\"waveSetPath\":\"\",\"rectangleEffectSkin\":0,\"backgroundTileSkin\":0,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Haven 3.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Haven 3.json new file mode 100644 index 000000000..3d3595248 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Haven 3.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Haven 3\",\"bounds\":{\"x\":400,\"y\":-410,\"w\":90,\"h\":120},\"type\":1,\"backgroundColor\":{\"r\":0.0,\"g\":0.4000000059604645,\"b\":0.0,\"a\":1.0},\"entities\":[{\"name\":\"sukrat\",\"ID\":\"sukrat\",\"faction\":0,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":442.5,\"y\":-447.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"haven3-landplatformexplainer\",\"faction\":0,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Fighter\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":425.0,\"y\":-427.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"315\",\"faction\":0,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":420.0,\"y\":-430.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"316\",\"faction\":0,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":470.0,\"y\":-430.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"317\",\"faction\":0,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":470.0,\"y\":-510.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"318\",\"faction\":0,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":420.0,\"y\":-510.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"haven3-hopelessexplainer\",\"faction\":0,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Beamer\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":425.0,\"y\":-470.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"haven3-filler3\",\"faction\":0,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Fighter\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":467.5,\"y\":-522.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"haven3-shinyexplainer\",\"faction\":0,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"{\\\"entityName\\\":\\\"Unnamed\\\",\\\"coreSpriteID\\\":\\\"core1_light\\\",\\\"coreShellSpriteID\\\":\\\"core1_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":0,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":-0.3199999928474426},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":1,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallCenter5\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":0.5,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":4,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing2\\\",\\\"shiny\\\":true},{\\\"location\\\":{\\\"x\\\":-0.5,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":2,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing2\\\",\\\"shiny\\\":false}],\\\"dialogue\\\":{\\\"instanceID\\\":0},\\\"useCustomDroneType\\\":false,\\\"customDroneType\\\":0}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":430.0,\"y\":-525.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"haven3-secretabilityexplainer\",\"faction\":0,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Fighter\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":485.0,\"y\":-460.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"haven3-filler2\",\"faction\":0,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Fighter\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":480.0,\"y\":-480.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"haven3-filler1\",\"faction\":0,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Fighter\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":485.0,\"y\":-475.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"haven3-nonverbal\",\"faction\":0,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Fighter\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":407.5,\"y\":-472.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"haven3-nonverbaljokeexplainer\",\"faction\":0,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Fighter\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":412.5,\"y\":-480.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"haven3-siegeexplainer\",\"faction\":0,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Fighter\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":415.0,\"y\":-467.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Map Background 1\",\"ID\":\"319\",\"faction\":0,\"assetID\":\"mapbg1\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":445.0,\"y\":-472.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"haven3-missionexplainer\",\"faction\":0,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Heavy Scouter\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":450.0,\"y\":-445.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"haven3-siegebeamer\",\"faction\":0,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Beamer\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":477.5,\"y\":-470.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"320\",\"faction\":0,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":412.5,\"y\":-475.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"321\",\"faction\":0,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":420.0,\"y\":-455.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"322\",\"faction\":0,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":435.0,\"y\":-520.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"323\",\"faction\":0,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":452.5,\"y\":-492.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"324\",\"faction\":0,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":467.5,\"y\":-482.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"325\",\"faction\":0,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":482.5,\"y\":-450.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"326\",\"faction\":0,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":467.5,\"y\":-445.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"327\",\"faction\":0,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":455.0,\"y\":-427.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"328\",\"faction\":0,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":442.5,\"y\":-425.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Trader\",\"ID\":\"haven3-trader1\",\"faction\":0,\"assetID\":\"trader_blueprint\",\"blueprintJSON\":\"{\\\"parts\\\":[]}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":430.0,\"y\":-477.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"329\",\"faction\":0,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":450.0,\"y\":-475.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Power Rock\",\"ID\":\"330\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":445.0,\"y\":-470.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Yard\",\"ID\":\"haven3-yard1\",\"faction\":0,\"assetID\":\"yard_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":452.5,\"y\":-510.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Mission Control\",\"ID\":\"haven3-missioncontrol1\",\"faction\":0,\"assetID\":\"missioncontrol_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":445.0,\"y\":-440.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[\"010202040100\",\"010602040000\",\"010209040200\",\"010609040300\"],\"platform\":{\"instanceID\":0},\"targets\":[\"sukrat\",\"haven3-landplatformexplainer\",\"haven3-hopelessexplainer\",\"haven3-filler3\",\"haven3-shinyexplainer\",\"haven3-secretabilityexplainer\",\"haven3-filler2\",\"haven3-filler1\",\"haven3-nonverbal\",\"haven3-nonverbaljokeexplainer\",\"haven3-siegeexplainer\",\"haven3-missionexplainer\",\"haven3-siegebeamer\"],\"hasMusic\":true,\"musicID\":\"music_overworld\",\"partDropsDisabled\":false,\"backgroundSpawns\":[],\"waveSetPath\":\"\",\"rectangleEffectSkin\":0,\"backgroundTileSkin\":0,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Infected Hideout C.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Infected Hideout C.json new file mode 100644 index 000000000..dc0345997 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Infected Hideout C.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Infected Hideout C\",\"bounds\":{\"x\":1400,\"y\":240,\"w\":90,\"h\":270},\"type\":5,\"backgroundColor\":{\"r\":0.4000000059604645,\"g\":0.0,\"b\":0.0,\"a\":1.0},\"entities\":[{\"name\":\"Missile Station\",\"ID\":\"331\",\"faction\":1,\"assetID\":\"missile_station\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1455.0,\"y\":5.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Station\",\"ID\":\"332\",\"faction\":1,\"assetID\":\"missile_station\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1435.0,\"y\":5.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Station\",\"ID\":\"333\",\"faction\":1,\"assetID\":\"missile_station\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1455.0,\"y\":25.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Station\",\"ID\":\"334\",\"faction\":1,\"assetID\":\"missile_station\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1435.0,\"y\":25.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Station\",\"ID\":\"335\",\"faction\":1,\"assetID\":\"missile_station\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1445.0,\"y\":225.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Station\",\"ID\":\"336\",\"faction\":1,\"assetID\":\"missile_station\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1445.0,\"y\":205.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Station\",\"ID\":\"337\",\"faction\":1,\"assetID\":\"missile_station\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1445.0,\"y\":185.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Station\",\"ID\":\"338\",\"faction\":1,\"assetID\":\"missile_station\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1445.0,\"y\":165.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Station\",\"ID\":\"339\",\"faction\":1,\"assetID\":\"missile_station\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1445.0,\"y\":145.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Station\",\"ID\":\"340\",\"faction\":1,\"assetID\":\"missile_station\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1445.0,\"y\":65.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Station\",\"ID\":\"341\",\"faction\":1,\"assetID\":\"missile_station\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1445.0,\"y\":45.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"342\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1465.0,\"y\":125.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"343\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1425.0,\"y\":85.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Station\",\"ID\":\"344\",\"faction\":1,\"assetID\":\"missile_station\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1445.0,\"y\":85.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Station\",\"ID\":\"345\",\"faction\":1,\"assetID\":\"missile_station\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1445.0,\"y\":125.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Station\",\"ID\":\"346\",\"faction\":1,\"assetID\":\"missile_station\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1445.0,\"y\":105.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"347\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1485.0,\"y\":145.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"348\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1480.0,\"y\":140.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"349\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1475.0,\"y\":135.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"350\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1470.0,\"y\":130.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"351\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1460.0,\"y\":120.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"352\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1455.0,\"y\":115.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"353\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1405.0,\"y\":65.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"354\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1410.0,\"y\":70.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"355\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1415.0,\"y\":75.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"356\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1420.0,\"y\":80.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"357\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1430.0,\"y\":90.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"358\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1435.0,\"y\":95.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"359\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1440.0,\"y\":100.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"360\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1450.0,\"y\":110.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[\"010401030000\",\"0803030000070403000304030503000305030504000405030505000403020007030302050300030402050400030502050500040502050300030704030205040303030205050303040204050303050203040201070303010305030403010405030503010505030504010504020107050301050503040301040503030301030503030401030500010703040104050003030105050004030105040005030104050200070305020505000304020504000303020503000403020505000207050401040502050301030502040301030402030301\",\"010407030000\",\"010409030000\",\"01040b030000\",\"01040d030000\",\"01040f030000\",\"01040h030000\",\"01040j030000\",\"0a020k000009030k00020l03030l00020m03030m00020n03030n00020o03030o00030k000309020k02030l03020l02030m03020m02030n03020n02030o03020o02020l020109020k01020m03030k01020n03030l01020o03030m01030o03030n01030l020109030k01030m03020k01030n03020l01030o03020m01020o03020n01020m020109020l01020n03020k01020o03030k01030o03030l01030n03030m01030m020109030l01030n03030k01030o03020k01020o03020l01020n03020m01020n020109020m01020o03020l01030o03020k01030n03030k01030m03030l01030n020109030m01030o03030l01020o03030k01020n03020k01020m03020l01020o000109020n01030o00020m01030n00020l01030m00020k01030l00030k01030o000209030n01020o02030m01020n02030l01020m02030k01020l02020k01\",\"0a050k000009060k00050l03060l00050m03060m00050n03060n00050o03060o00060k000309050k02060l03050l02060m03050m02060n03050n02060o03050o02050l020109050k01050m03060k01050n03060l01050o03060m01060o03060n01060l020109060k01060m03050k01060n03050l01060o03050m01050o03050n01050m020109050l01050n03050k01050o03060k01060o03060l01060n03060m01060m020109060l01060n03060k01060o03050k01050o03050l01050n03050m01050n020109050m01050o03050l01060o03050k01060n03060k01060m03060l01060n020109060m01060o03060l01050o03060k01050n03050k01050m03050l01050o000109050n01060o00050m01060n00050l01060m00050k01060l00060k01060o000209060n01050o02060m01050n02060l01050m02060k01050l02050k01\"],\"platform\":{\"instanceID\":0},\"targets\":[],\"hasMusic\":true,\"musicID\":\"music_overworld_enemy\",\"partDropsDisabled\":false,\"backgroundSpawns\":[{\"entity\":{\"name\":\"Counter Drone\",\"ID\":\"\",\"faction\":1,\"assetID\":\"counter_drone_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":0.0,\"y\":0.0},\"patrolPath\":{\"waypoints\":[]}},\"timePerSpawn\":8,\"radius\":15.0},{\"entity\":{\"name\":\"Gun Drone\",\"ID\":\"\",\"faction\":1,\"assetID\":\"gun_drone_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":0.0,\"y\":0.0},\"patrolPath\":{\"waypoints\":[]}},\"timePerSpawn\":8,\"radius\":15.0},{\"entity\":{\"name\":\"Heavy Drone\",\"ID\":\"\",\"faction\":1,\"assetID\":\"heavy_drone_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":0.0,\"y\":0.0},\"patrolPath\":{\"waypoints\":[]}},\"timePerSpawn\":8,\"radius\":15.0}],\"waveSetPath\":\"\",\"rectangleEffectSkin\":0,\"backgroundTileSkin\":0,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Infected Hideout E.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Infected Hideout E.json new file mode 100644 index 000000000..e9d8335fc --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Infected Hideout E.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Infected Hideout E\",\"bounds\":{\"x\":1490,\"y\":150,\"w\":90,\"h\":90},\"type\":5,\"backgroundColor\":{\"r\":0.4000000059604645,\"g\":0.0,\"b\":0.0,\"a\":1.0},\"entities\":[{\"name\":\"ShellCore\",\"ID\":\"361\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Basic Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1562.5,\"y\":82.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"362\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Basic Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1560.0,\"y\":92.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"363\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Basic Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1540.0,\"y\":102.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"364\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Basic Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1555.0,\"y\":127.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"365\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"BattleCore2\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1532.5,\"y\":70.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"366\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"BattleCore2\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1512.5,\"y\":80.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"367\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"BattleCore2\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1512.5,\"y\":105.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"368\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Advanced Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1502.5,\"y\":107.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"369\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Advanced Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1502.5,\"y\":122.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"370\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Advanced Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1512.5,\"y\":132.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"371\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Advanced Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1525.0,\"y\":142.5},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[\"0803030000070403000304030503000305030504000405030505000403020007030302050300030402050400030502050500040502050300030704030205040303030205050303040204050303050203040201070303010305030403010405030503010505030504010504020107050301050503040301040503030301030503030401030500010703040104050003030105050004030105040005030104050200070305020505000304020504000303020503000403020505000207050401040502050301030502040301030402030301\"],\"platform\":{\"instanceID\":0},\"targets\":[\"361\",\"362\",\"363\",\"364\",\"365\",\"366\",\"367\",\"368\",\"369\",\"370\",\"371\"],\"hasMusic\":true,\"musicID\":\"music_overworld_enemy\",\"partDropsDisabled\":false,\"backgroundSpawns\":[{\"entity\":{\"name\":\"Unnamed\",\"ID\":\"\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"{\\\"entityName\\\":\\\"Unnamed\\\",\\\"coreSpriteID\\\":\\\"core1_light\\\",\\\"coreShellSpriteID\\\":\\\"core1_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":0,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":0.4000000059604645,\\\"y\\\":0.0},\\\"rotation\\\":180.0,\\\"mirrored\\\":true,\\\"abilityID\\\":13,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigSide4\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":-0.4000000059604645,\\\"y\\\":0.0},\\\"rotation\\\":180.0,\\\"mirrored\\\":false,\\\"abilityID\\\":13,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigSide4\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":1.399999976158142,\\\"y\\\":0.5},\\\"rotation\\\":180.0,\\\"mirrored\\\":false,\\\"abilityID\\\":4,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigWing5\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":-1.399999976158142,\\\"y\\\":0.5},\\\"rotation\\\":-180.0,\\\"mirrored\\\":true,\\\"abilityID\\\":4,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigWing5\\\",\\\"shiny\\\":false}],\\\"dialogue\\\":{\\\"instanceID\\\":0},\\\"useCustomDroneType\\\":false,\\\"customDroneType\\\":0}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":0.0,\"y\":0.0},\"patrolPath\":{\"waypoints\":[]}},\"timePerSpawn\":8,\"radius\":15.0},{\"entity\":{\"name\":\"Mini Drone\",\"ID\":\"\",\"faction\":1,\"assetID\":\"mini_drone_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":0.0,\"y\":0.0},\"patrolPath\":{\"waypoints\":[]}},\"timePerSpawn\":8,\"radius\":15.0}],\"waveSetPath\":\"\",\"rectangleEffectSkin\":0,\"backgroundTileSkin\":0,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Infected Hideout NE.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Infected Hideout NE.json new file mode 100644 index 000000000..c1ec4c283 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Infected Hideout NE.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Infected Hideout NE\",\"bounds\":{\"x\":1490,\"y\":240,\"w\":90,\"h\":90},\"type\":5,\"backgroundColor\":{\"r\":0.4000000059604645,\"g\":0.0,\"b\":0.0,\"a\":1.0},\"entities\":[{\"name\":\"Missile Station\",\"ID\":\"372\",\"faction\":1,\"assetID\":\"missile_station\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1545.0,\"y\":215.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Station\",\"ID\":\"373\",\"faction\":1,\"assetID\":\"missile_station\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1555.0,\"y\":215.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Station\",\"ID\":\"374\",\"faction\":1,\"assetID\":\"missile_station\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1525.0,\"y\":175.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Station\",\"ID\":\"375\",\"faction\":1,\"assetID\":\"missile_station\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1515.0,\"y\":175.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"376\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Advanced Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1510.0,\"y\":180.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"377\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Advanced Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1512.5,\"y\":200.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"378\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Advanced Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1517.5,\"y\":210.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"379\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Advanced Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1532.5,\"y\":215.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"380\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Basic Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1542.5,\"y\":160.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"381\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Basic Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1550.0,\"y\":202.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"382\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Basic Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1570.0,\"y\":222.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"383\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Basic Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1510.0,\"y\":225.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"384\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Basic Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1552.5,\"y\":230.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"385\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Basic Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1500.0,\"y\":170.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"386\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Basic Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1505.0,\"y\":190.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"387\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Basic Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1560.0,\"y\":180.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[\"0805020101070503030403030303030304030204030205030206030303000007040300030403050300020403050200020503020603040302000703030205030003040205020002040202050202060205030002070502010403020303020304020204020205020206020204000007030400020503030300020603040300050300050200030400020703030102040204030102050205030102060205020102050201070204010206030304010303010403010503010502010206010307020501020401030401030301040301050301050201\",\"0806020101070603030604030504030505030405030305030306030603020107060201060403050403050503040503030503030603050400000706040005050306030004050306020003050303060306040002070603010504020602010505020405020305020306020305000007040500030603050500050400060400060300060200040502000703050205050003060205040006040006030006020005050002070504010405020604010305020603010306020602010306010307030501040501050501050401060401060301060201\"],\"platform\":{\"instanceID\":0},\"targets\":[\"376\",\"377\",\"378\",\"379\",\"380\",\"381\",\"382\",\"383\",\"384\",\"385\",\"386\",\"387\"],\"hasMusic\":true,\"musicID\":\"music_overworld_enemy\",\"partDropsDisabled\":false,\"backgroundSpawns\":[{\"entity\":{\"name\":\"Unnamed\",\"ID\":\"\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"{\\\"entityName\\\":\\\"Unnamed\\\",\\\"coreSpriteID\\\":\\\"core1_light\\\",\\\"coreShellSpriteID\\\":\\\"core1_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":0,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":0.4000000059604645,\\\"y\\\":0.0},\\\"rotation\\\":180.0,\\\"mirrored\\\":true,\\\"abilityID\\\":13,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigSide4\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":-0.4000000059604645,\\\"y\\\":0.0},\\\"rotation\\\":180.0,\\\"mirrored\\\":false,\\\"abilityID\\\":13,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigSide4\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":1.399999976158142,\\\"y\\\":0.5},\\\"rotation\\\":180.0,\\\"mirrored\\\":false,\\\"abilityID\\\":4,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigWing5\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":-1.399999976158142,\\\"y\\\":0.5},\\\"rotation\\\":-180.0,\\\"mirrored\\\":true,\\\"abilityID\\\":4,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigWing5\\\",\\\"shiny\\\":false}],\\\"dialogue\\\":{\\\"instanceID\\\":0},\\\"useCustomDroneType\\\":false,\\\"customDroneType\\\":0}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":0.0,\"y\":0.0},\"patrolPath\":{\"waypoints\":[]}},\"timePerSpawn\":8,\"radius\":15.0},{\"entity\":{\"name\":\"Mini Drone\",\"ID\":\"\",\"faction\":1,\"assetID\":\"mini_drone_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":0.0,\"y\":0.0},\"patrolPath\":{\"waypoints\":[]}},\"timePerSpawn\":8,\"radius\":15.0}],\"waveSetPath\":\"\",\"rectangleEffectSkin\":0,\"backgroundTileSkin\":0,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Infected Hideout SE.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Infected Hideout SE.json new file mode 100644 index 000000000..5c63b393e --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Infected Hideout SE.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Infected Hideout SE\",\"bounds\":{\"x\":1490,\"y\":60,\"w\":90,\"h\":90},\"type\":5,\"backgroundColor\":{\"r\":0.4000000059604645,\"g\":0.0,\"b\":0.0,\"a\":1.0},\"entities\":[{\"name\":\"Missile Station\",\"ID\":\"388\",\"faction\":1,\"assetID\":\"missile_station\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1515.0,\"y\":15.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Station\",\"ID\":\"389\",\"faction\":1,\"assetID\":\"missile_station\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1535.0,\"y\":35.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Station\",\"ID\":\"390\",\"faction\":1,\"assetID\":\"missile_station\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1555.0,\"y\":15.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Station\",\"ID\":\"391\",\"faction\":1,\"assetID\":\"missile_station\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1535.0,\"y\":-5.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"392\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1525.0,\"y\":5.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"393\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1530.0,\"y\":10.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"394\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1540.0,\"y\":10.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"395\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1540.0,\"y\":20.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"396\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1530.0,\"y\":20.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"397\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1545.0,\"y\":5.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"398\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1545.0,\"y\":25.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"399\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1525.0,\"y\":25.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"400\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1512.5,\"y\":5.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"401\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1525.0,\"y\":-7.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"402\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1545.0,\"y\":-7.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"403\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1557.5,\"y\":5.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"404\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1557.5,\"y\":25.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"405\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1545.0,\"y\":37.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"406\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1512.5,\"y\":25.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"407\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1525.0,\"y\":37.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"408\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1517.5,\"y\":-2.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"409\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1552.5,\"y\":-2.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"410\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1552.5,\"y\":32.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"411\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1517.5,\"y\":32.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"412\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"BattleCore1\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1545.0,\"y\":15.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"413\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"BattleCore1\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1535.0,\"y\":5.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"414\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"BattleCore1\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1525.0,\"y\":15.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"415\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"BattleCore1\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1535.0,\"y\":25.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"416\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"BattleCore2\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1535.0,\"y\":15.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[\"010402030000\",\"010204030000\",\"010604030000\",\"010406030000\"],\"platform\":{\"instanceID\":0},\"targets\":[\"412\",\"413\",\"414\",\"415\",\"416\"],\"hasMusic\":true,\"musicID\":\"music_overworld_enemy\",\"partDropsDisabled\":false,\"backgroundSpawns\":[{\"entity\":{\"name\":\"Unnamed\",\"ID\":\"\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"{\\\"entityName\\\":\\\"Unnamed\\\",\\\"coreSpriteID\\\":\\\"core1_light\\\",\\\"coreShellSpriteID\\\":\\\"core1_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":0,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":0.4000000059604645,\\\"y\\\":0.0},\\\"rotation\\\":180.0,\\\"mirrored\\\":true,\\\"abilityID\\\":13,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigSide4\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":-0.4000000059604645,\\\"y\\\":0.0},\\\"rotation\\\":180.0,\\\"mirrored\\\":false,\\\"abilityID\\\":13,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigSide4\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":1.399999976158142,\\\"y\\\":0.5},\\\"rotation\\\":180.0,\\\"mirrored\\\":false,\\\"abilityID\\\":4,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigWing5\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":-1.399999976158142,\\\"y\\\":0.5},\\\"rotation\\\":-180.0,\\\"mirrored\\\":true,\\\"abilityID\\\":4,\\\"tier\\\":3,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"BigWing5\\\",\\\"shiny\\\":false}],\\\"dialogue\\\":{\\\"instanceID\\\":0},\\\"useCustomDroneType\\\":false,\\\"customDroneType\\\":0}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":0.0,\"y\":0.0},\"patrolPath\":{\"waypoints\":[]}},\"timePerSpawn\":8,\"radius\":15.0},{\"entity\":{\"name\":\"Mini Drone\",\"ID\":\"\",\"faction\":1,\"assetID\":\"mini_drone_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":0.0,\"y\":0.0},\"patrolPath\":{\"waypoints\":[]}},\"timePerSpawn\":8,\"radius\":15.0}],\"waveSetPath\":\"\",\"rectangleEffectSkin\":0,\"backgroundTileSkin\":0,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Infected Hideout W.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Infected Hideout W.json new file mode 100644 index 000000000..42ea630d0 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Infected Hideout W.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Infected Hideout W\",\"bounds\":{\"x\":1310,\"y\":150,\"w\":90,\"h\":90},\"type\":5,\"backgroundColor\":{\"r\":0.4000000059604645,\"g\":0.0,\"b\":0.0,\"a\":1.0},\"entities\":[{\"name\":\"ShellCore\",\"ID\":\"417\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Basic Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1370.0,\"y\":67.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"418\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Basic Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1370.0,\"y\":142.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"419\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Basic Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1390.0,\"y\":105.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"420\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Basic Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1327.5,\"y\":77.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"421\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Basic Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1327.5,\"y\":132.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"422\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Basic Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1365.0,\"y\":95.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"423\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Basic Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1345.0,\"y\":95.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"424\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Basic Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1365.0,\"y\":115.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"425\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Basic Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1345.0,\"y\":115.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[\"010202030000\",\"010402030000\",\"010602030000\",\"010204030000\",\"010604030000\",\"010206030000\",\"010406030000\",\"010606030000\"],\"platform\":{\"instanceID\":0},\"targets\":[\"417\",\"418\",\"419\",\"420\",\"421\",\"422\",\"423\",\"424\",\"425\"],\"hasMusic\":true,\"musicID\":\"music_overworld_enemy\",\"partDropsDisabled\":false,\"backgroundSpawns\":[{\"entity\":{\"name\":\"Strike Drone\",\"ID\":\"\",\"faction\":1,\"assetID\":\"strike_drone_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":0.0,\"y\":0.0},\"patrolPath\":{\"waypoints\":[]}},\"timePerSpawn\":8,\"radius\":15.0},{\"entity\":{\"name\":\"Counter Drone\",\"ID\":\"\",\"faction\":1,\"assetID\":\"counter_drone_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":0.0,\"y\":0.0},\"patrolPath\":{\"waypoints\":[]}},\"timePerSpawn\":8,\"radius\":15.0}],\"waveSetPath\":\"\",\"rectangleEffectSkin\":0,\"backgroundTileSkin\":0,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Jump Sector.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Jump Sector.json new file mode 100644 index 000000000..1956ca41d --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Jump Sector.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Jump Sector\",\"bounds\":{\"x\":1380,\"y\":-2280,\"w\":170,\"h\":60},\"type\":0,\"backgroundColor\":{\"r\":0.0,\"g\":0.30000001192092898,\"b\":0.30000001192092898,\"a\":1.0},\"entities\":[{\"name\":\"Map Background 1\",\"ID\":\"426\",\"faction\":0,\"assetID\":\"mapbg1\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1465.0,\"y\":-2310.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Jump Gate\",\"ID\":\"427\",\"faction\":0,\"assetID\":\"core_gate\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1465.0,\"y\":-2325.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[],\"hasMusic\":true,\"musicID\":\"music_overworld_2\",\"partDropsDisabled\":false,\"backgroundSpawns\":[],\"waveSetPath\":\"\",\"rectangleEffectSkin\":1,\"backgroundTileSkin\":1,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 1040-920.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 1040-920.json new file mode 100644 index 000000000..1f2fdd179 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 1040-920.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Sector 1040-920\",\"bounds\":{\"x\":920,\"y\":-590,\"w\":180,\"h\":180},\"type\":5,\"backgroundColor\":{\"r\":0.15000000596046449,\"g\":0.15000000596046449,\"b\":0.15000000596046449,\"a\":1.0},\"entities\":[{\"name\":\"ShellCore\",\"ID\":\"428\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Southern Missile\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1050.0,\"y\":-672.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"429\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Southern Missile\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":990.0,\"y\":-682.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"430\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":992.5,\"y\":-625.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"431\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":962.5,\"y\":-605.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"432\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1020.0,\"y\":-717.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"433\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":942.5,\"y\":-705.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"434\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":985.0,\"y\":-680.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"435\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1000.0,\"y\":-657.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"436\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":962.5,\"y\":-660.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"437\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":977.5,\"y\":-702.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"438\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1045.0,\"y\":-677.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"439\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Missile Gladiator\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":945.0,\"y\":-755.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"440\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Southern Missile\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1020.0,\"y\":-752.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"441\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Missile Gladiator\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1060.0,\"y\":-730.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"442\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Southern Missile\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1085.0,\"y\":-722.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Map Background 3\",\"ID\":\"443\",\"faction\":0,\"assetID\":\"mapbg3\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1010.0,\"y\":-680.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"1040-920-beamer\",\"faction\":0,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Beamer\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1032.5,\"y\":-610.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[\"428\",\"429\",\"439\",\"440\",\"441\",\"442\",\"1040-920-beamer\"],\"hasMusic\":true,\"musicID\":\"music_overworld\",\"partDropsDisabled\":false,\"backgroundSpawns\":[{\"entity\":{\"name\":\"Strike Drone\",\"ID\":\"\",\"faction\":1,\"assetID\":\"strike_drone_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":0.0,\"y\":0.0},\"patrolPath\":{\"waypoints\":[]}},\"timePerSpawn\":8,\"radius\":15.0},{\"entity\":{\"name\":\"Mini Drone\",\"ID\":\"\",\"faction\":1,\"assetID\":\"mini_drone_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":0.0,\"y\":0.0},\"patrolPath\":{\"waypoints\":[]}},\"timePerSpawn\":8,\"radius\":15.0},{\"entity\":{\"name\":\"Counter Drone\",\"ID\":\"\",\"faction\":1,\"assetID\":\"counter_drone_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":0.0,\"y\":0.0},\"patrolPath\":{\"waypoints\":[]}},\"timePerSpawn\":8,\"radius\":15.0}],\"waveSetPath\":\"\",\"rectangleEffectSkin\":0,\"backgroundTileSkin\":0,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 1130-300.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 1130-300.json new file mode 100644 index 000000000..7a2058272 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 1130-300.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Sector 1130-300\",\"bounds\":{\"x\":1010,\"y\":30,\"w\":150,\"h\":200},\"type\":5,\"backgroundColor\":{\"r\":0.15000000596046449,\"g\":0.15000000596046449,\"b\":0.15000000596046449,\"a\":1.0},\"entities\":[{\"name\":\"ShellCore\",\"ID\":\"444\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Northern Missile\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1105.0,\"y\":-82.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"1130-300-beamer\",\"faction\":0,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Beamer\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1125.0,\"y\":-10.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Map Background 3\",\"ID\":\"445\",\"faction\":0,\"assetID\":\"mapbg3\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1085.0,\"y\":-67.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"446\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Northern Missile\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1090.0,\"y\":-60.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"447\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"{\\\"entityName\\\":\\\"Unnamed\\\",\\\"coreSpriteID\\\":\\\"core1_light\\\",\\\"coreShellSpriteID\\\":\\\"core1_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":0,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":0.5,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":2,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallSide3\\\"},{\\\"location\\\":{\\\"x\\\":-0.5,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":13,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallSide3\\\"},{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":0.30000001192092898},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":20,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallCenter2\\\"},{\\\"location\\\":{\\\"x\\\":0.30000001192092898,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":5,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing2\\\"},{\\\"location\\\":{\\\"x\\\":-0.30000001192092898,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":4,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing2\\\"}],\\\"dialogue\\\":{\\\"instanceID\\\":0},\\\"useCustomDroneType\\\":false,\\\"customDroneType\\\":0}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1085.0,\"y\":-70.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"448\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"{\\\"entityName\\\":\\\"Unnamed\\\",\\\"coreSpriteID\\\":\\\"core1_light\\\",\\\"coreShellSpriteID\\\":\\\"core1_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":0,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":0.5,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":2,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallSide3\\\"},{\\\"location\\\":{\\\"x\\\":-0.5,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":13,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallSide3\\\"},{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":0.30000001192092898},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":20,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallCenter2\\\"},{\\\"location\\\":{\\\"x\\\":0.30000001192092898,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":5,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing2\\\"},{\\\"location\\\":{\\\"x\\\":-0.30000001192092898,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":4,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing2\\\"}],\\\"dialogue\\\":{\\\"instanceID\\\":0},\\\"useCustomDroneType\\\":false,\\\"customDroneType\\\":0}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1050.0,\"y\":-95.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"449\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"{\\\"entityName\\\":\\\"Unnamed\\\",\\\"coreSpriteID\\\":\\\"core1_light\\\",\\\"coreShellSpriteID\\\":\\\"core1_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":0,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":0.5,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":2,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallSide3\\\"},{\\\"location\\\":{\\\"x\\\":-0.5,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":13,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallSide3\\\"},{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":0.30000001192092898},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":20,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallCenter2\\\"},{\\\"location\\\":{\\\"x\\\":0.30000001192092898,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":5,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing2\\\"},{\\\"location\\\":{\\\"x\\\":-0.30000001192092898,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":4,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing2\\\"}],\\\"dialogue\\\":{\\\"instanceID\\\":0},\\\"useCustomDroneType\\\":false,\\\"customDroneType\\\":0}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1075.0,\"y\":-85.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"450\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Block Core\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1125.0,\"y\":-70.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"451\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Block Core\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1105.0,\"y\":-60.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"452\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Block Core\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1080.0,\"y\":-55.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"453\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Block Core\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1075.0,\"y\":-40.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"454\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Block Core\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1065.0,\"y\":-25.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[\"444\",\"1130-300-beamer\",\"446\",\"447\",\"448\",\"449\",\"450\",\"451\",\"452\",\"453\",\"454\"],\"hasMusic\":true,\"musicID\":\"music_overworld\",\"partDropsDisabled\":false,\"backgroundSpawns\":[{\"entity\":{\"name\":\"Strike Drone\",\"ID\":\"\",\"faction\":1,\"assetID\":\"strike_drone_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":0.0,\"y\":0.0},\"patrolPath\":{\"waypoints\":[]}},\"timePerSpawn\":8,\"radius\":15.0}],\"waveSetPath\":\"\",\"rectangleEffectSkin\":0,\"backgroundTileSkin\":0,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 1140-2030.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 1140-2030.json new file mode 100644 index 000000000..94e172af6 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 1140-2030.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Sector 1140-2030\",\"bounds\":{\"x\":1020,\"y\":-1700,\"w\":100,\"h\":120},\"type\":0,\"backgroundColor\":{\"r\":0.0,\"g\":0.30000001192092898,\"b\":0.30000001192092898,\"a\":1.0},\"entities\":[{\"name\":\"ShellCore\",\"ID\":\"455\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Basic Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1102.5,\"y\":-1727.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"456\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Basic Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1050.0,\"y\":-1807.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"457\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Basic Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1085.0,\"y\":-1797.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"458\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Basic Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1075.0,\"y\":-1752.5},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":1083.7459716796875,\"y\":-1757.90234375},\"ID\":0,\"children\":[10]},{\"position\":{\"x\":1084.568603515625,\"y\":-1789.0667724609375},\"ID\":10,\"children\":[11]},{\"position\":{\"x\":1052.8485107421875,\"y\":-1786.053955078125},\"ID\":11,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"459\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Basic Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1047.5,\"y\":-1722.5},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":1107.6502685546875,\"y\":-1735.1187744140625},\"ID\":0,\"children\":[1]},{\"position\":{\"x\":1037.8365478515625,\"y\":-1748.4501953125},\"ID\":1,\"children\":[2]},{\"position\":{\"x\":1063.8277587890625,\"y\":-1732.5499267578125},\"ID\":2,\"children\":[3]},{\"position\":{\"x\":1077.5789794921875,\"y\":-1731.693603515625},\"ID\":3,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"460\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Raider\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1097.5,\"y\":-1772.5},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":1070.6121826171875,\"y\":-1782.87548828125},\"ID\":0,\"children\":[6]},{\"position\":{\"x\":1034.311767578125,\"y\":-1758.815185546875},\"ID\":6,\"children\":[9]},{\"position\":{\"x\":1062.4521484375,\"y\":-1748.9256591796875},\"ID\":9,\"children\":[10]},{\"position\":{\"x\":1093.816162109375,\"y\":-1756.666015625},\"ID\":10,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"461\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Basic Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1042.5,\"y\":-1795.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":1045.3585205078125,\"y\":-1783.7623291015625},\"ID\":0,\"children\":[4]},{\"position\":{\"x\":1075.2115478515625,\"y\":-1808.69580078125},\"ID\":4,\"children\":[5]},{\"position\":{\"x\":1092.40478515625,\"y\":-1779.4808349609375},\"ID\":5,\"children\":[]}]}}],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[\"455\",\"456\",\"457\",\"458\",\"459\",\"460\",\"461\"],\"hasMusic\":true,\"musicID\":\"music_overworld_2\",\"partDropsDisabled\":false,\"backgroundSpawns\":[],\"waveSetPath\":\"\",\"rectangleEffectSkin\":1,\"backgroundTileSkin\":1,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 1140-2150.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 1140-2150.json new file mode 100644 index 000000000..3b90a47cd --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 1140-2150.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Sector 1140-2150\",\"bounds\":{\"x\":1020,\"y\":-1820,\"w\":220,\"h\":140},\"type\":5,\"backgroundColor\":{\"r\":0.15000000596046449,\"g\":0.15000000596046449,\"b\":0.15000000596046449,\"a\":1.0},\"entities\":[{\"name\":\"Map Background 3\",\"ID\":\"462\",\"faction\":0,\"assetID\":\"mapbg3\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1170.0,\"y\":-1890.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[],\"hasMusic\":true,\"musicID\":\"music_overworld_2\",\"partDropsDisabled\":false,\"backgroundSpawns\":[],\"waveSetPath\":\"\",\"rectangleEffectSkin\":1,\"backgroundTileSkin\":1,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 1140-2290.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 1140-2290.json new file mode 100644 index 000000000..2fc4a6d71 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 1140-2290.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Sector 1140-2290\",\"bounds\":{\"x\":1020,\"y\":-1960,\"w\":360,\"h\":130},\"type\":0,\"backgroundColor\":{\"r\":0.4000000059604645,\"g\":0.0,\"b\":0.0,\"a\":1.0},\"entities\":[],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[],\"hasMusic\":true,\"musicID\":\"music_overworld_2\",\"partDropsDisabled\":false,\"backgroundSpawns\":[],\"waveSetPath\":\"\",\"rectangleEffectSkin\":1,\"backgroundTileSkin\":1,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 120-1100.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 120-1100.json new file mode 100644 index 000000000..5e0fde745 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 120-1100.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Sector 120-1100\",\"bounds\":{\"x\":0,\"y\":-770,\"w\":110,\"h\":180},\"type\":0,\"backgroundColor\":{\"r\":0.4000000059604645,\"g\":0.0,\"b\":0.0,\"a\":1.0},\"entities\":[{\"name\":\"Map Background 1\",\"ID\":\"463\",\"faction\":0,\"assetID\":\"mapbg1\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":55.0,\"y\":-860.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"flag_scourgeinfectedleaderspawn\",\"ID\":\"464\",\"faction\":0,\"assetID\":\"flag\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":55.0,\"y\":-840.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[],\"hasMusic\":true,\"musicID\":\"music_overworld\",\"partDropsDisabled\":false,\"backgroundSpawns\":[],\"waveSetPath\":\"\",\"rectangleEffectSkin\":0,\"backgroundTileSkin\":0,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 120-1280.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 120-1280.json new file mode 100644 index 000000000..df38bf03f --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 120-1280.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Sector 120-1280\",\"bounds\":{\"x\":0,\"y\":-950,\"w\":110,\"h\":110},\"type\":0,\"backgroundColor\":{\"r\":0.4000000059604645,\"g\":0.0,\"b\":0.0,\"a\":1.0},\"entities\":[{\"name\":\"ShellCore\",\"ID\":\"465\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Cruiser\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":72.5,\"y\":-985.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":72.51033782958985,\"y\":-983.9532470703125},\"ID\":0,\"children\":[18]},{\"position\":{\"x\":81.23809814453125,\"y\":-994.698974609375},\"ID\":18,\"children\":[19]},{\"position\":{\"x\":81.05025482177735,\"y\":-1007.8037719726563},\"ID\":19,\"children\":[20]},{\"position\":{\"x\":71.1807632446289,\"y\":-1020.4803466796875},\"ID\":20,\"children\":[24]},{\"position\":{\"x\":44.433963775634769,\"y\":-1024.9969482421875},\"ID\":24,\"children\":[25]},{\"position\":{\"x\":31.341800689697267,\"y\":-1021.991455078125},\"ID\":25,\"children\":[26]},{\"position\":{\"x\":27.367767333984376,\"y\":-1008.0220336914063},\"ID\":26,\"children\":[27]},{\"position\":{\"x\":31.341800689697267,\"y\":-988.4698486328125},\"ID\":27,\"children\":[28]},{\"position\":{\"x\":53.53740310668945,\"y\":-978.7986450195313},\"ID\":28,\"children\":[29]},{\"position\":{\"x\":72.32249450683594,\"y\":-984.5996704101563},\"ID\":29,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"466\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Advanced Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":32.5,\"y\":-1022.5},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":32.4835319519043,\"y\":-1021.773193359375},\"ID\":0,\"children\":[6,16]},{\"position\":{\"x\":21.674835205078126,\"y\":-1012.3203125},\"ID\":6,\"children\":[7]},{\"position\":{\"x\":22.426197052001954,\"y\":-995.5552978515625},\"ID\":7,\"children\":[8]},{\"position\":{\"x\":31.918960571289064,\"y\":-981.8125},\"ID\":8,\"children\":[9]},{\"position\":{\"x\":48.79731750488281,\"y\":-975.793212890625},\"ID\":9,\"children\":[10]},{\"position\":{\"x\":67.20673370361328,\"y\":-978.5888061523438},\"ID\":10,\"children\":[11]},{\"position\":{\"x\":73.0875015258789,\"y\":-984.3898315429688},\"ID\":11,\"children\":[12]},{\"position\":{\"x\":76.12232971191406,\"y\":-997.7044677734375},\"ID\":12,\"children\":[13]},{\"position\":{\"x\":70.05371856689453,\"y\":-1016.1820678710938},\"ID\":13,\"children\":[14]},{\"position\":{\"x\":57.52507781982422,\"y\":-1024.7786865234375},\"ID\":14,\"children\":[0]},{\"position\":{\"x\":33.24853515625,\"y\":-1022.6295166015625},\"ID\":16,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"467\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Cruiser\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":55.0,\"y\":-1055.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":55.25498580932617,\"y\":-1054.795166015625},\"ID\":0,\"children\":[5]},{\"position\":{\"x\":104.58671569824219,\"y\":-1004.5252685546875},\"ID\":5,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"468\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Basic Patrol\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":5.0,\"y\":-1055.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":5.222442626953125,\"y\":-1055.01171875},\"ID\":0,\"children\":[4]},{\"position\":{\"x\":104.77455139160156,\"y\":-954.4520263671875},\"ID\":4,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"469\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Cruiser\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":5.0,\"y\":-1010.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":4.5904083251953129,\"y\":-1009.551513671875},\"ID\":0,\"children\":[3]},{\"position\":{\"x\":61.495574951171878,\"y\":-954.1270141601563},\"ID\":3,\"children\":[]}]}},{\"name\":\"Map Background 4\",\"ID\":\"470\",\"faction\":0,\"assetID\":\"mapbg4\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":55.0,\"y\":-1005.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[\"465\",\"466\",\"467\",\"468\",\"469\"],\"hasMusic\":true,\"musicID\":\"music_overworld_enemy\",\"partDropsDisabled\":false,\"backgroundSpawns\":[{\"entity\":{\"name\":\"Heavy Drone\",\"ID\":\"\",\"faction\":1,\"assetID\":\"heavy_drone_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":0.0,\"y\":0.0},\"patrolPath\":{\"waypoints\":[]}},\"timePerSpawn\":8,\"radius\":15.0}],\"waveSetPath\":\"\",\"rectangleEffectSkin\":1,\"backgroundTileSkin\":1,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 120-1390.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 120-1390.json new file mode 100644 index 000000000..f76df310d --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 120-1390.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Sector 120-1390\",\"bounds\":{\"x\":0,\"y\":-1060,\"w\":110,\"h\":110},\"type\":0,\"backgroundColor\":{\"r\":0.4000000059604645,\"g\":0.0,\"b\":0.0,\"a\":1.0},\"entities\":[{\"name\":\"ShellCore\",\"ID\":\"471\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Raider\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":37.5,\"y\":-1087.5},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":34.451072692871097,\"y\":-1101.97412109375},\"ID\":0,\"children\":[27]},{\"position\":{\"x\":14.271320343017579,\"y\":-1090.3785400390625},\"ID\":27,\"children\":[28]},{\"position\":{\"x\":15.926563262939454,\"y\":-1074.67041015625},\"ID\":28,\"children\":[29]},{\"position\":{\"x\":34.86838912963867,\"y\":-1067.1690673828125},\"ID\":29,\"children\":[30]},{\"position\":{\"x\":63.94774627685547,\"y\":-1071.2723388671875},\"ID\":30,\"children\":[31]},{\"position\":{\"x\":66.63597106933594,\"y\":-1082.758056640625},\"ID\":31,\"children\":[32]},{\"position\":{\"x\":36.831607818603519,\"y\":-1087.566650390625},\"ID\":32,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"472\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Advanced Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":90.0,\"y\":-1095.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":78.40707397460938,\"y\":-1104.31884765625},\"ID\":0,\"children\":[33]},{\"position\":{\"x\":56.05229568481445,\"y\":-1099.867431640625},\"ID\":33,\"children\":[34]},{\"position\":{\"x\":56.88005828857422,\"y\":-1092.0179443359375},\"ID\":34,\"children\":[35]},{\"position\":{\"x\":67.22997283935547,\"y\":-1076.777099609375},\"ID\":35,\"children\":[36]},{\"position\":{\"x\":90.83039855957031,\"y\":-1075.6138916015625},\"ID\":36,\"children\":[37]},{\"position\":{\"x\":98.27912902832031,\"y\":-1087.9146728515625},\"ID\":37,\"children\":[38]},{\"position\":{\"x\":89.8927230834961,\"y\":-1095.0679931640625},\"ID\":38,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"473\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Raider\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":75.0,\"y\":-1152.5},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":94.05919647216797,\"y\":-1134.4541015625},\"ID\":0,\"children\":[18]},{\"position\":{\"x\":76.36273956298828,\"y\":-1123.20654296875},\"ID\":18,\"children\":[19]},{\"position\":{\"x\":57.633575439453128,\"y\":-1141.7264404296875},\"ID\":19,\"children\":[20]},{\"position\":{\"x\":75.22012329101563,\"y\":-1152.6259765625},\"ID\":20,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"474\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Basic Patrol\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":37.5,\"y\":-1162.5},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":37.41258239746094,\"y\":-1162.2340087890625},\"ID\":0,\"children\":[17]},{\"position\":{\"x\":95.36607360839844,\"y\":-1162.2340087890625},\"ID\":17,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"475\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Raider\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":10.0,\"y\":-1150.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":10.436912536621094,\"y\":-1150.0440673828125},\"ID\":0,\"children\":[16]},{\"position\":{\"x\":10.436912536621094,\"y\":-1111.0361328125},\"ID\":16,\"children\":[]}]}},{\"name\":\"Map Background 5\",\"ID\":\"476\",\"faction\":0,\"assetID\":\"mapbg5\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":55.0,\"y\":-1115.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[\"471\",\"472\",\"473\",\"474\",\"475\"],\"hasMusic\":true,\"musicID\":\"music_overworld_enemy\",\"partDropsDisabled\":false,\"backgroundSpawns\":[{\"entity\":{\"name\":\"Heavy Drone\",\"ID\":\"\",\"faction\":1,\"assetID\":\"heavy_drone_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":0.0,\"y\":0.0},\"patrolPath\":{\"waypoints\":[]}},\"timePerSpawn\":8,\"radius\":15.0}],\"waveSetPath\":\"\",\"rectangleEffectSkin\":1,\"backgroundTileSkin\":1,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 120-1500.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 120-1500.json new file mode 100644 index 000000000..cd8db47f0 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 120-1500.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Sector 120-1500\",\"bounds\":{\"x\":0,\"y\":-1170,\"w\":180,\"h\":180},\"type\":0,\"backgroundColor\":{\"r\":0.4000000059604645,\"g\":0.0,\"b\":0.0,\"a\":1.0},\"entities\":[{\"name\":\"ShellCore\",\"ID\":\"477\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Brigader\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":90.0,\"y\":-1260.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Station\",\"ID\":\"478\",\"faction\":1,\"assetID\":\"missile_station\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":165.0,\"y\":-1285.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Station\",\"ID\":\"479\",\"faction\":1,\"assetID\":\"missile_station\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":125.0,\"y\":-1185.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Station\",\"ID\":\"480\",\"faction\":1,\"assetID\":\"missile_station\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":125.0,\"y\":-1225.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Station\",\"ID\":\"481\",\"faction\":1,\"assetID\":\"missile_station\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":145.0,\"y\":-1225.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Station\",\"ID\":\"482\",\"faction\":1,\"assetID\":\"missile_station\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":145.0,\"y\":-1185.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Station\",\"ID\":\"483\",\"faction\":1,\"assetID\":\"missile_station\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":35.0,\"y\":-1185.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Station\",\"ID\":\"484\",\"faction\":1,\"assetID\":\"missile_station\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":15.0,\"y\":-1205.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"485\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Advanced Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":130.0,\"y\":-1337.5},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":129.96006774902345,\"y\":-1337.8780517578125},\"ID\":0,\"children\":[11]},{\"position\":{\"x\":126.93522644042969,\"y\":-1319.6943359375},\"ID\":11,\"children\":[12]},{\"position\":{\"x\":141.90451049804688,\"y\":-1296.5853271484375},\"ID\":12,\"children\":[13]},{\"position\":{\"x\":163.40158081054688,\"y\":-1289.6195068359375},\"ID\":13,\"children\":[14]},{\"position\":{\"x\":166.5279083251953,\"y\":-1303.839599609375},\"ID\":14,\"children\":[15]},{\"position\":{\"x\":147.81663513183595,\"y\":-1331.7242431640625},\"ID\":15,\"children\":[0]}]}},{\"name\":\"ShellCore\",\"ID\":\"486\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Raider\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":137.5,\"y\":-1215.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":136.8895263671875,\"y\":-1214.34130859375},\"ID\":0,\"children\":[5]},{\"position\":{\"x\":136.6504669189453,\"y\":-1198.4866943359375},\"ID\":5,\"children\":[6]},{\"position\":{\"x\":142.2040252685547,\"y\":-1187.685302734375},\"ID\":6,\"children\":[7]},{\"position\":{\"x\":167.78311157226563,\"y\":-1180.25732421875},\"ID\":7,\"children\":[8]},{\"position\":{\"x\":167.90330505371095,\"y\":-1199.3919677734375},\"ID\":8,\"children\":[9]},{\"position\":{\"x\":156.1805419921875,\"y\":-1214.8406982421875},\"ID\":9,\"children\":[10]},{\"position\":{\"x\":138.08493041992188,\"y\":-1215.2467041015625},\"ID\":10,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"487\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Advanced Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":47.5,\"y\":-1217.5},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":73.30262756347656,\"y\":-1205.45166015625},\"ID\":0,\"children\":[1]},{\"position\":{\"x\":97.19985961914063,\"y\":-1204.4901123046875},\"ID\":1,\"children\":[2]},{\"position\":{\"x\":92.9827651977539,\"y\":-1211.5947265625},\"ID\":2,\"children\":[4]},{\"position\":{\"x\":55.79927062988281,\"y\":-1218.0263671875},\"ID\":4,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"488\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Raider\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":82.5,\"y\":-1282.5},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":81.99652862548828,\"y\":-1282.3089599609375},\"ID\":0,\"children\":[12]},{\"position\":{\"x\":86.65513610839844,\"y\":-1220.101318359375},\"ID\":12,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"489\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Cruiser\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":55.0,\"y\":-1275.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":54.77764129638672,\"y\":-1274.9798583984375},\"ID\":0,\"children\":[11]},{\"position\":{\"x\":106.5197525024414,\"y\":-1221.752197265625},\"ID\":11,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"490\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Raider\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":45.0,\"y\":-1245.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":44.333396911621097,\"y\":-1244.9769287109375},\"ID\":0,\"children\":[10]},{\"position\":{\"x\":130.6331024169922,\"y\":-1234.5419921875},\"ID\":10,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"491\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Cruiser\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":107.5,\"y\":-1190.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":160.56686401367188,\"y\":-1186.9776611328125},\"ID\":0,\"children\":[3]},{\"position\":{\"x\":160.56686401367188,\"y\":-1244.2005615234375},\"ID\":3,\"children\":[4]},{\"position\":{\"x\":121.88605499267578,\"y\":-1257.21630859375},\"ID\":4,\"children\":[5]},{\"position\":{\"x\":77.19278717041016,\"y\":-1224.7803955078125},\"ID\":5,\"children\":[39]},{\"position\":{\"x\":107.472412109375,\"y\":-1189.5877685546875},\"ID\":39,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"492\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Cruiser\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":65.0,\"y\":-1330.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":41.00257873535156,\"y\":-1313.96533203125},\"ID\":0,\"children\":[22]},{\"position\":{\"x\":63.870845794677737,\"y\":-1289.8216552734375},\"ID\":22,\"children\":[23]},{\"position\":{\"x\":52.90555191040039,\"y\":-1271.0894775390625},\"ID\":23,\"children\":[24]},{\"position\":{\"x\":76.8065185546875,\"y\":-1255.1669921875},\"ID\":24,\"children\":[25]},{\"position\":{\"x\":88.18913269042969,\"y\":-1269.116455078125},\"ID\":25,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"493\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Raider\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":115.0,\"y\":-1282.5},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":124.42473602294922,\"y\":-1254.4468994140625},\"ID\":0,\"children\":[14]},{\"position\":{\"x\":109.42366027832031,\"y\":-1230.7672119140625},\"ID\":14,\"children\":[15]},{\"position\":{\"x\":87.37571716308594,\"y\":-1226.07763671875},\"ID\":15,\"children\":[16]},{\"position\":{\"x\":49.8548583984375,\"y\":-1232.5257568359375},\"ID\":16,\"children\":[17]},{\"position\":{\"x\":53.16534423828125,\"y\":-1266.6241455078125},\"ID\":17,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"494\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Cruiser\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":150.0,\"y\":-1252.5},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":151.4430694580078,\"y\":-1267.383056640625},\"ID\":0,\"children\":[42]},{\"position\":{\"x\":137.6721954345703,\"y\":-1270.1949462890625},\"ID\":42,\"children\":[43]},{\"position\":{\"x\":125.264892578125,\"y\":-1274.1092529296875},\"ID\":43,\"children\":[44]},{\"position\":{\"x\":116.46060180664063,\"y\":-1269.4197998046875},\"ID\":44,\"children\":[45]},{\"position\":{\"x\":123.50633239746094,\"y\":-1257.347900390625},\"ID\":45,\"children\":[46]},{\"position\":{\"x\":127.53523254394531,\"y\":-1240.82470703125},\"ID\":46,\"children\":[47]},{\"position\":{\"x\":107.1376953125,\"y\":-1240.238525390625},\"ID\":47,\"children\":[48]},{\"position\":{\"x\":107.1376953125,\"y\":-1239.42333984375},\"ID\":48,\"children\":[50]},{\"position\":{\"x\":105.27722930908203,\"y\":-1222.9168701171875},\"ID\":50,\"children\":[51]},{\"position\":{\"x\":131.86642456054688,\"y\":-1215.1864013671875},\"ID\":51,\"children\":[54]},{\"position\":{\"x\":141.38856506347657,\"y\":-1224.79443359375},\"ID\":54,\"children\":[57]},{\"position\":{\"x\":149.25518798828126,\"y\":-1251.0447998046875},\"ID\":57,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"495\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Cruiser\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":10.0,\"y\":-1232.5},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":24.18716812133789,\"y\":-1202.2486572265625},\"ID\":0,\"children\":[10]},{\"position\":{\"x\":79.93499755859375,\"y\":-1195.4515380859375},\"ID\":10,\"children\":[11]},{\"position\":{\"x\":147.91314697265626,\"y\":-1213.199951171875},\"ID\":11,\"children\":[13]},{\"position\":{\"x\":9.783992767333985,\"y\":-1232.3035888671875},\"ID\":13,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"496\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Basic Patrol\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":82.5,\"y\":-1300.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":125.73689270019531,\"y\":-1258.6263427734375},\"ID\":0,\"children\":[1]},{\"position\":{\"x\":136.70848083496095,\"y\":-1269.40673828125},\"ID\":1,\"children\":[2]},{\"position\":{\"x\":89.90708923339844,\"y\":-1307.625},\"ID\":2,\"children\":[]}]}},{\"name\":\"Missile Station\",\"ID\":\"497\",\"faction\":1,\"assetID\":\"missile_station\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":75.0,\"y\":-1245.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Station\",\"ID\":\"498\",\"faction\":1,\"assetID\":\"missile_station\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":15.0,\"y\":-1325.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Station\",\"ID\":\"499\",\"faction\":1,\"assetID\":\"missile_station\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":15.0,\"y\":-1305.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"500\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Basic Patrol\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":25.0,\"y\":-1335.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":25.278226852416993,\"y\":-1334.8773193359375},\"ID\":0,\"children\":[1]},{\"position\":{\"x\":25.018217086791993,\"y\":-1195.42822265625},\"ID\":1,\"children\":[2]},{\"position\":{\"x\":168.8074493408203,\"y\":-1195.48779296875},\"ID\":2,\"children\":[]}]}},{\"name\":\"Map Background 2\",\"ID\":\"501\",\"faction\":0,\"assetID\":\"mapbg2\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":90.0,\"y\":-1260.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[\"0D030108010C0302030303030203030403030304030103030503030305030603030306030703030307030803030308030903030309030a0303030a030b0303030b030c0303030c030c02030d03030c0403030d030c01030e03030c0503030e030e02030f03030e0403030f030e01030g03030e0503030g030c0108010C0c02030c03030b03030d03030c04030a03030e03030c05030903030e02030f03030e04030803030e01030g03030e0503070303060303050303040303030303030203020303030403030103010303030503030603030703030803030903030a03030b03030c03030d03030e03030f03030g030e0108010C0e02030e03030d03030f03030e04030c03030g03030e05030c02030b03030c04030c01030a03030c0503090303080303070303060303050303040303030303030203020303030403030103010303030503030603030703030803030903030a03030b03030c03030d03030e03030f03030g03030209010C0301010303030203030403030304030103030503030305030603030306030703030307030803030308030903030309030a0303030a030b0303030b030c0303030c030c02030d03030c0403030d030c01030e03030c0503030e030e02030f03030e0403030f030e01030g03030e0503030g030c0209010C0c01010c03030b03030d03030c04030a03030e03030c05030903030e02030f03030e04030803030e01030g03030e0503070303060303050303040303030303030203020303030403030103010303030503030603030703030803030903030a03030b03030c03030d03030e03030f03030g030e0209010C0e01010e03030d03030f03030e04030c03030g03030e05030c02030b03030c04030c01030a03030c0503090303080303070303060303050303040303030303030203020303030403030103010303030503030603030703030803030903030a03030b03030c03030d03030e03030f03030g03010308020C0203000303000302000403000304000301000503000305000603000306000703000307000803000308000903000309000a0300030a000b0300030b000c0300030c000c02000d03000c0400030d000c01000e03000c0500030e000e02000f03000e0400030f000e01000g03000e0500030g00020309000C0103020303000302000403000304000301000503000305000603000306000703000307000803000308000903000309000a0300030a000b0300030b000c0300030c000c02000d03000c0400030d000c01000e03000c0500030e000e02000f03000e0400030f000e01000g03000e0500030g0003030b000C0302010203020403000304030301010103020503000305030603000306030703000307030803000308030903000309030a0300030a030b0300030b030c0300030c030c02000d03000c0400030d030c01000e03000c0500030e030e02000f03000e0400030f030e01000g03000e0500030g03040309000C0303020503000302020203020304020603000301020103020305020703000306020803000307020903000308020a03000309020b0300030a020c0300030b020c02000d03000c0400030c020c01000e03000c0500030d020e02000f03000e0400030e020e01000g03000e0500030f02030g02050309000C0403020603000303020703000302020203020304020803000301020103020305020903000306020a03000307020b03000308020c03000309020c02000d03000c0400030a020c01000e03000c0500030b020e02000f03000e0400030c020e01000g03000e0500030d02030e02030f02030g02060309000C0503020703000403020803000303020903000302020203020304020a03000301020103020305020b03000306020c03000307020c02000d03000c04000308020c01000e03000c05000309020e02000f03000e0400030a020e01000g03000e0500030b02030c02030d02030e02030f02030g02070309000C0603020803000503020903000403020a03000303020b03000302020203020304020c03000301020103020305020c02000d03000c04000306020c01000e03000c05000307020e02000f03000e04000308020e01000g03000e0500030902030a02030b02030c02030d02030e02030f02030g02080309000C0703020903000603020a03000503020b03000403020c03000303020c02000d03000c04000302020203020304020c01000e03000c05000301020103020305020e02000f03000e04000306020e01000g03000e0500030702030802030902030a02030b02030c02030d02030e02030f02030g02090309000C0803020a03000703020b03000603020c03000503020c02000d03000c04000403020c01000e03000c05000303020e02000f03000e04000302020203020304020e01000g03000e0500030102010302030502030602030702030802030902030a02030b02030c02030d02030e02030f02030g020a0309000C0903020b03000803020c03000703020c02000d03000c04000603020c01000e03000c05000503020e02000f03000e04000403020e01000g03000e0500030302030202020302030402030102010302030502030602030702030802030902030a02030b02030c02030d02030e02030f02030g020b0309000C0a03020c03000903020c02000d03000c04000803020c01000e03000c05000703020e02000f03000e04000603020e01000g03000e0500050302040302030302030202020302030402030102010302030502030602030702030802030902030a02030b02030c02030d02030e02030f02030g020c030b000C0c02010b03020d03000c04030c01010a03020e03000c05030903020e02000f03000e04000803020e01000g03000e0500070302060302050302040302030302030202020302030402030102010302030502030602030702030802030902030a02030b02030c02030d02030e02030f02030g020d0309000C0c03020e03000c02020b03020c04020e02000f03000e04000c01020a03020c05020e01000g03000e0500090302080302070302060302050302040302030302030202020302030402030102010302030502030602030702030802030902030a02030b02030c02030d02030e02030f02030g020e030b000C0e02010d03020f03000e04030e01010c03020g03000e05030c02020b03020c04020c01020a03020c0502090302080302070302060302050302040302030302030202020302030402030102010302030502030602030702030802030902030a02030b02030c02030d02030e02030f02030g020f0309000C0e03020g03000e02020d03020e04020e01020c03020e05020c02020b03020c04020c01020a03020c0502090302080302070302060302050302040302030302030202020302030402030102010302030502030602030702030802030902030a02030b02030c02030d02030e02030f02030g020g0308000C0f03020e03020e02020d03020e04020e01020c03020e05020c02020b03020c04020c01020a03020c0502090302080302070302060302050302040302030302030202020302030402030102010302030502030602030702030802030902030a02030b02030c02030d02030e02030f02030g02030409010C030301030503030201020301040301030603030101010301050301030703060301030803070301030903080301030a03090301030b030a0301030c030b0301030d030c0301030e030c02010d03010c0401030f030c01010e03010c0501030g030e02010f03010e04010e01010g03010e05010c0409010C0c03010c05030c02010b03010d03010c01010a03010e03010903010e02010f03010e04010803010e01010g03010e0501070301060301050301040301030301030201020301030401030101010301030501030601030701030801030901030a01030b01030c01030d01030e01030f01030g010e0409010C0e03010e05030e02010d03010f03010e01010c03010g03010c02010b03010c04010c01010a03010c0501090301080301070301060301050301040301030301030201020301030401030101010301030501030601030701030801030901030a01030b01030c01030d01030e01030f01030g01030509010C030401030603030301030703030201020301040301030803030101010301050301030903060301030a03070301030b03080301030c03090301030d030a0301030e030b0301030f030c0301030g030c02010d03010c04010c01010e03010c05010e02010f03010e04010e01010g03010e05010c0508030C0c04010c03010c02010b03010d03010c01010a03010e03010903010e02010f03010e04010803010e01010g03010e0501070301060301050301040301030301030201020301030401030101010301030501030601030701030801030901030a01030b01030c01030d01030e01030f01030g010e0508030C0e04010e03010e02010d03010f03010e01010c03010g03010c02010b03010c04010c01010a03010c0501090301080301070301060301050301040301030301030201020301030401030101010301030501030601030701030801030901030a01030b01030c01030d01030e01030f01030g01030609010C030501030703030401030803030301030903030201020301040301030a03030101010301050301030b03060301030c03070301030d03080301030e03090301030f030a0301030g030b03010c03010c02010d03010c04010c01010e03010c05010e02010f03010e04010e01010g03010e0501030709010C030601030803030501030903030401030a03030301030b03030201020301040301030c03030101010301050301030d03060301030e03070301030f03080301030g030903010a03010b03010c03010c02010d03010c04010c01010e03010c05010e02010f03010e04010e01010g03010e0501030809010C030701030903030601030a03030501030b03030401030c03030301030d03030201020301040301030e03030101010301050301030f03060301030g030703010803010903010a03010b03010c03010c02010d03010c04010c01010e03010c05010e02010f03010e04010e01010g03010e0501030909030C030801030a03030701030b03030601030c03030501030d03030401030e03030301030f03030201020301040301030g030301010103010503010603010703010803010903010a03010b03010c03010c02010d03010c04010c01010e03010c05010e02010f03010e04010e01010g03010e0501030a09010C030901030b03030801030c03030701030d03030601030e03030501030f03030401030g030303010302010203010403010301010103010503010603010703010803010903010a03010b03010c03010c02010d03010c04010c01010e03010c05010e02010f03010e04010e01010g03010e0501030b09010C030a01030c03030901030d03030801030e03030701030f03030601030g030305010304010303010302010203010403010301010103010503010603010703010803010903010a03010b03010c03010c02010d03010c04010c01010e03010c05010e02010f03010e04010e01010g03010e0501030c09010C030b01030d03030a01030e03030901030f03030801030g030307010306010305010304010303010302010203010403010301010103010503010603010703010803010903010a03010b03010c03010c02010d03010c04010c01010e03010c05010e02010f03010e04010e01010g03010e0501030d09010C030c01030e03030b01030f03030a01030g030309010308010307010306010305010304010303010302010203010403010301010103010503010603010703010803010903010a03010b03010c03010c02010d03010c04010c01010e03010c05010e02010f03010e04010e01010g03010e0501030e09010C030d01030f03030c01030g03030b01030a010309010308010307010306010305010304010303010302010203010403010301010103010503010603010703010803010903010a03010b03010c03010c02010d03010c04010c01010e03010c05010e02010f03010e04010e01010g03010e0501030f09010C030e01030g03030d01030c01030b01030a010309010308010307010306010305010304010303010302010203010403010301010103010503010603010703010803010903010a03010b03010c03010c02010d03010c04010c01010e03010c05010e02010f03010e04010e01010g03010e0501030g08030C030f01030e01030d01030c01030b01030a010309010308010307010306010305010304010303010302010203010403010301010103010503010603010703010803010903010a03010b03010c03010c02010d03010c04010c01010e03010c05010e02010f03010e04010e01010g03010e0501\",\"0806060700070706000607030806000608030807000708030808000706090007060602080600060702080700060802080800070802080607030707060208070306060208080306070207080306080206070901070606010608030706010708030806010808030807010807090107080601080803070601070803060601060803060701060807010706070107080006060108080007060108070008060107080900070608020808000607020807000606020806000706020808070207080701070802080601060802070601060702060601\",\"010707040000\",\"0h0e0b07000g0f0b000e0c030g0b000e0d030e0e030d0e030f0e030e0f030c0e030g0e030e0g030b0e030b0d030a0e030b0f030b0g030f0b09000g0e0b020g0b000e0c020e0d020e0e020d0e020f0e020e0f020c0e020g0e020e0g020b0e020b0d020a0e020b0f020b0g020g0b08000g0f0b020e0b020e0c020e0d020e0e020d0e020f0e020e0f020c0e020g0e020e0g020b0e020b0d020a0e020b0f020b0g020e0c09010g0e0b010e0d030f0b010e0e030g0b010d0e030f0e030e0f030c0e030g0e030e0g030b0e030b0d030a0e030b0f030b0g030b0d08010g0b0e030a0e030c0e030b0f030d0e030b0g030e0e030e0d030f0e030e0f030e0c030g0e030e0g030e0b030f0b030g0b030e0d09010g0e0c010e0e030e0b010d0e030f0e030e0f030f0b010c0e030g0e030e0g030g0b010b0e030b0d030a0e030b0f030b0g030a0e08020g0b0e000b0d000c0e000b0f000d0e000b0g000e0e000e0d000f0e000e0f000e0c000g0e000e0g000e0b000f0b000g0b000b0e0b000g0b0d010a0e020c0e000b0f030d0e000b0g030e0e000e0d000f0e000e0f000e0c000g0e000e0g000e0b000f0b000g0b000c0e09000g0b0e020d0e000b0d020a0e020b0f020e0e000b0g020e0d000f0e000e0f000e0c000g0e000e0g000e0b000f0b000g0b000d0e09000g0c0e020e0e000b0e020e0d000f0e000e0f000b0d020a0e020b0f020e0c000g0e000e0g000b0g020e0b000f0b000g0b000e0e0b000g0e0d010d0e020f0e000e0f030e0c010c0e020g0e000e0g030e0b010b0e020f0b010b0d020a0e020b0f020g0b010b0g020f0e09000g0e0e020g0e000e0d020d0e020e0f020e0c020c0e020e0g020e0b020b0e020f0b020b0d020a0e020b0f020g0b020b0g020g0e08000g0f0e020e0e020e0d020d0e020e0f020e0c020c0e020e0g020e0b020b0e020f0b020b0d020a0e020b0f020g0b020b0g020b0f09010g0b0e010b0g030b0d010a0e010c0e010d0e010e0e010e0d010f0e010e0f010e0c010g0e010e0g010e0b010f0b010g0b010e0f09010g0e0e010e0g030e0d010d0e010f0e010e0c010c0e010g0e010e0b010b0e010f0b010b0d010a0e010b0f010g0b010b0g010b0g08030g0b0f010b0e010b0d010a0e010c0e010d0e010e0e010e0d010f0e010e0f010e0c010g0e010e0g010e0b010f0b010g0b010e0g08030g0e0f010e0e010e0d010d0e010f0e010e0c010c0e010g0e010e0b010b0e010f0b010b0d010a0e010b0f010g0b010b0g01\",\"01010d040000\",\"01010f040000\"],\"platform\":{\"instanceID\":0},\"targets\":[\"477\",\"485\",\"486\",\"487\",\"488\",\"489\",\"490\",\"491\",\"492\",\"493\",\"494\",\"495\",\"496\",\"500\"],\"hasMusic\":true,\"musicID\":\"music_overworld_enemy\",\"partDropsDisabled\":false,\"backgroundSpawns\":[{\"entity\":{\"name\":\"Heavy Drone\",\"ID\":\"\",\"faction\":1,\"assetID\":\"heavy_drone_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":0.0,\"y\":0.0},\"patrolPath\":{\"waypoints\":[]}},\"timePerSpawn\":8,\"radius\":15.0}],\"waveSetPath\":\"\",\"rectangleEffectSkin\":1,\"backgroundTileSkin\":1,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 120-980.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 120-980.json new file mode 100644 index 000000000..5d875cbdf --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 120-980.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Sector 120-980\",\"bounds\":{\"x\":0,\"y\":-650,\"w\":490,\"h\":120},\"type\":5,\"backgroundColor\":{\"r\":0.15000000596046449,\"g\":0.15000000596046449,\"b\":0.15000000596046449,\"a\":1.0},\"entities\":[{\"name\":\"120-980flag2\",\"ID\":\"120-980flag2\",\"faction\":0,\"assetID\":\"flag\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":390.0,\"y\":-712.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"120-980flag1\",\"ID\":\"120-980flag1\",\"faction\":0,\"assetID\":\"flag\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":10.0,\"y\":-657.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Air Carrier\",\"ID\":\"120-980carrier\",\"faction\":1,\"assetID\":\"carrier_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":10.0,\"y\":-657.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"502\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":17.5,\"y\":-652.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"503\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":5.0,\"y\":-665.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"504\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":10.0,\"y\":-667.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Siege Turret\",\"ID\":\"505\",\"faction\":1,\"assetID\":\"siege_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":10.0,\"y\":-665.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"506\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":17.5,\"y\":-665.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Turret\",\"ID\":\"507\",\"faction\":1,\"assetID\":\"missile_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":15.0,\"y\":-662.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"508\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":20.0,\"y\":-657.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Siege Turret\",\"ID\":\"509\",\"faction\":1,\"assetID\":\"siege_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":17.5,\"y\":-657.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"510\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":362.5,\"y\":-697.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"511\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":390.0,\"y\":-710.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Power Rock\",\"ID\":\"512\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":387.5,\"y\":-715.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"513\",\"faction\":1,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":392.5,\"y\":-715.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"514\",\"faction\":1,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":360.0,\"y\":-692.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Power Rock\",\"ID\":\"515\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":365.0,\"y\":-692.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Map Background 3\",\"ID\":\"516\",\"faction\":0,\"assetID\":\"mapbg3\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":245.0,\"y\":-710.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"517\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Fake Heavy\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":20.0,\"y\":-675.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"518\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Block Core\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":75.0,\"y\":-707.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"519\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Block Core\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":57.5,\"y\":-727.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"520\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Block Core\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":185.0,\"y\":-685.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"521\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Fake Heavy\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":167.5,\"y\":-670.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"522\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Fake Heavy\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":122.5,\"y\":-670.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"523\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Block Core\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":277.5,\"y\":-707.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"524\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Block Core\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":242.5,\"y\":-687.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"525\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Block Core\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":380.0,\"y\":-705.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"526\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Rusher\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":347.5,\"y\":-712.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"527\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Southern Missile\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":410.0,\"y\":-735.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"528\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Southern Missile\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":412.5,\"y\":-710.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"529\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Block Core\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":392.5,\"y\":-690.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"530\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Rusher\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":355.0,\"y\":-680.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"120-980-beamer\",\"faction\":0,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Beamer\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":192.5,\"y\":-747.5},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[\"120-980carrier\",\"517\",\"518\",\"519\",\"520\",\"521\",\"522\",\"523\",\"524\",\"525\",\"526\",\"527\",\"528\",\"529\",\"530\",\"120-980-beamer\"],\"hasMusic\":true,\"musicID\":\"music_overworld\",\"partDropsDisabled\":false,\"backgroundSpawns\":[{\"entity\":{\"name\":\"Unnamed\",\"ID\":\"\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"{\\\"entityName\\\":\\\"Unnamed\\\",\\\"coreSpriteID\\\":\\\"core1_light\\\",\\\"coreShellSpriteID\\\":\\\"core1_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":0,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":-0.7466667294502258,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":5,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"{\\\\\\\"drone\\\\\\\":\\\\\\\"{\\\\\\\\\\\\\\\"entityName\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Strike Drone\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_light\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreShellSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_shell\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"shellHealth\\\\\\\\\\\\\\\":[1000.0,250.0,500.0],\\\\\\\\\\\\\\\"baseRegen\\\\\\\\\\\\\\\":[60.0,0.0,60.0],\\\\\\\\\\\\\\\"intendedType\\\\\\\\\\\\\\\":7,\\\\\\\\\\\\\\\"parts\\\\\\\\\\\\\\\":[{\\\\\\\\\\\\\\\"location\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\\":-0.2485615760087967,\\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\\":0.0},\\\\\\\\\\\\\\\"rotation\\\\\\\\\\\\\\\":0.0,\\\\\\\\\\\\\\\"mirrored\\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\\"abilityID\\\\\\\\\\\\\\\":5,\\\\\\\\\\\\\\\"tier\\\\\\\\\\\\\\\":1,\\\\\\\\\\\\\\\"secondaryData\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"partID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"SmallWing1\\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\\"location\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\\":0.2485615760087967,\\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\\":0.0},\\\\\\\\\\\\\\\"rotation\\\\\\\\\\\\\\\":0.0,\\\\\\\\\\\\\\\"mirrored\\\\\\\\\\\\\\\":false,\\\\\\\\\\\\\\\"abilityID\\\\\\\\\\\\\\\":0,\\\\\\\\\\\\\\\"tier\\\\\\\\\\\\\\\":0,\\\\\\\\\\\\\\\"secondaryData\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"partID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"SmallWing1\\\\\\\\\\\\\\\"}],\\\\\\\\\\\\\\\"dialogue\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"instanceID\\\\\\\\\\\\\\\":0}}\\\\\\\",\\\\\\\"energyCost\\\\\\\":150.0,\\\\\\\"delay\\\\\\\":3.0,\\\\\\\"cooldown\\\\\\\":15.0,\\\\\\\"type\\\\\\\":2}\\\",\\\"partID\\\":\\\"SmallWing1\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":0.7466667294502258,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":5,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"{\\\\\\\"drone\\\\\\\":\\\\\\\"{\\\\\\\\\\\\\\\"entityName\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Strike Drone\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_light\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreShellSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_shell\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"shellHealth\\\\\\\\\\\\\\\":[1000.0,250.0,500.0],\\\\\\\\\\\\\\\"baseRegen\\\\\\\\\\\\\\\":[60.0,0.0,60.0],\\\\\\\\\\\\\\\"intendedType\\\\\\\\\\\\\\\":7,\\\\\\\\\\\\\\\"parts\\\\\\\\\\\\\\\":[{\\\\\\\\\\\\\\\"location\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\\":-0.2485615760087967,\\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\\":0.0},\\\\\\\\\\\\\\\"rotation\\\\\\\\\\\\\\\":0.0,\\\\\\\\\\\\\\\"mirrored\\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\\"abilityID\\\\\\\\\\\\\\\":5,\\\\\\\\\\\\\\\"tier\\\\\\\\\\\\\\\":1,\\\\\\\\\\\\\\\"secondaryData\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"partID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"SmallWing1\\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\\"location\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\\":0.2485615760087967,\\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\\":0.0},\\\\\\\\\\\\\\\"rotation\\\\\\\\\\\\\\\":0.0,\\\\\\\\\\\\\\\"mirrored\\\\\\\\\\\\\\\":false,\\\\\\\\\\\\\\\"abilityID\\\\\\\\\\\\\\\":0,\\\\\\\\\\\\\\\"tier\\\\\\\\\\\\\\\":0,\\\\\\\\\\\\\\\"secondaryData\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"partID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"SmallWing1\\\\\\\\\\\\\\\"}],\\\\\\\\\\\\\\\"dialogue\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"instanceID\\\\\\\\\\\\\\\":0}}\\\\\\\",\\\\\\\"energyCost\\\\\\\":150.0,\\\\\\\"delay\\\\\\\":3.0,\\\\\\\"cooldown\\\\\\\":15.0,\\\\\\\"type\\\\\\\":2}\\\",\\\"partID\\\":\\\"SmallWing1\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":0.5333333611488342,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":18,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"{\\\\\\\"drone\\\\\\\":\\\\\\\"{\\\\\\\\\\\\\\\"entityName\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Gun Drone\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_light\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreShellSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_shell\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"shellHealth\\\\\\\\\\\\\\\":[1000.0,250.0,500.0],\\\\\\\\\\\\\\\"baseRegen\\\\\\\\\\\\\\\":[60.0,0.0,60.0],\\\\\\\\\\\\\\\"intendedType\\\\\\\\\\\\\\\":7,\\\\\\\\\\\\\\\"parts\\\\\\\\\\\\\\\":[{\\\\\\\\\\\\\\\"location\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\\":0.2485615760087967,\\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\\":0.0},\\\\\\\\\\\\\\\"rotation\\\\\\\\\\\\\\\":0.0,\\\\\\\\\\\\\\\"mirrored\\\\\\\\\\\\\\\":false,\\\\\\\\\\\\\\\"abilityID\\\\\\\\\\\\\\\":6,\\\\\\\\\\\\\\\"tier\\\\\\\\\\\\\\\":1,\\\\\\\\\\\\\\\"secondaryData\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"partID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"SmallSide4\\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\\"location\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\\":-0.2485615760087967,\\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\\":0.0},\\\\\\\\\\\\\\\"rotation\\\\\\\\\\\\\\\":0.0,\\\\\\\\\\\\\\\"mirrored\\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\\"abilityID\\\\\\\\\\\\\\\":6,\\\\\\\\\\\\\\\"tier\\\\\\\\\\\\\\\":1,\\\\\\\\\\\\\\\"secondaryData\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"partID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"SmallSide4\\\\\\\\\\\\\\\"}],\\\\\\\\\\\\\\\"dialogue\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"instanceID\\\\\\\\\\\\\\\":0}}\\\\\\\",\\\\\\\"energyCost\\\\\\\":150.0,\\\\\\\"delay\\\\\\\":3.0,\\\\\\\"cooldown\\\\\\\":15.0,\\\\\\\"type\\\\\\\":4}\\\",\\\"partID\\\":\\\"SmallWing2\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":-0.5333333611488342,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":1,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"{\\\\\\\"drone\\\\\\\":\\\\\\\"{\\\\\\\\\\\\\\\"entityName\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Worker Drone\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_light\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreShellSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"worker_drone_shell_sprite\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"shellHealth\\\\\\\\\\\\\\\":[1000.0,250.0,500.0],\\\\\\\\\\\\\\\"baseRegen\\\\\\\\\\\\\\\":[60.0,0.0,60.0],\\\\\\\\\\\\\\\"intendedType\\\\\\\\\\\\\\\":7,\\\\\\\\\\\\\\\"parts\\\\\\\\\\\\\\\":[],\\\\\\\\\\\\\\\"dialogue\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"instanceID\\\\\\\\\\\\\\\":0}}\\\\\\\",\\\\\\\"energyCost\\\\\\\":100.0,\\\\\\\"delay\\\\\\\":2.0,\\\\\\\"cooldown\\\\\\\":10.0,\\\\\\\"type\\\\\\\":1}\\\",\\\"partID\\\":\\\"SmallWing2\\\",\\\"shiny\\\":false}],\\\"dialogue\\\":{\\\"instanceID\\\":0},\\\"useCustomDroneType\\\":false,\\\"customDroneType\\\":0}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":0.0,\"y\":0.0},\"patrolPath\":{\"waypoints\":[]}},\"timePerSpawn\":8,\"radius\":15.0},{\"entity\":{\"name\":\"Counter Drone\",\"ID\":\"\",\"faction\":1,\"assetID\":\"counter_drone_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":0.0,\"y\":0.0},\"patrolPath\":{\"waypoints\":[]}},\"timePerSpawn\":8,\"radius\":15.0},{\"entity\":{\"name\":\"Gun Drone\",\"ID\":\"\",\"faction\":1,\"assetID\":\"gun_drone_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":0.0,\"y\":0.0},\"patrolPath\":{\"waypoints\":[]}},\"timePerSpawn\":8,\"radius\":15.0},{\"entity\":{\"name\":\"Mini Drone\",\"ID\":\"\",\"faction\":1,\"assetID\":\"mini_drone_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":0.0,\"y\":0.0},\"patrolPath\":{\"waypoints\":[]}},\"timePerSpawn\":8,\"radius\":15.0},{\"entity\":{\"name\":\"Strike Drone\",\"ID\":\"\",\"faction\":1,\"assetID\":\"strike_drone_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":0.0,\"y\":0.0},\"patrolPath\":{\"waypoints\":[]}},\"timePerSpawn\":8,\"radius\":15.0}],\"waveSetPath\":\"\",\"rectangleEffectSkin\":0,\"backgroundTileSkin\":0,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 1240-1670.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 1240-1670.json new file mode 100644 index 000000000..7bbab0e4a --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 1240-1670.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Sector 1240-1670\",\"bounds\":{\"x\":1120,\"y\":-1340,\"w\":120,\"h\":480},\"type\":0,\"backgroundColor\":{\"r\":0.0,\"g\":0.30000001192092898,\"b\":0.30000001192092898,\"a\":1.0},\"entities\":[{\"name\":\"ShellCore\",\"ID\":\"531\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Basic Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1190.0,\"y\":-1610.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":1165.740478515625,\"y\":-1612.30859375},\"ID\":0,\"children\":[41]},{\"position\":{\"x\":1166.5340576171875,\"y\":-1595.5059814453125},\"ID\":41,\"children\":[42]},{\"position\":{\"x\":1196.0186767578125,\"y\":-1588.252685546875},\"ID\":42,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"532\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Raider\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1157.5,\"y\":-1645.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":1166.13720703125,\"y\":-1667.505615234375},\"ID\":0,\"children\":[38]},{\"position\":{\"x\":1180.0096435546875,\"y\":-1683.1177978515625},\"ID\":38,\"children\":[39]},{\"position\":{\"x\":1176.484375,\"y\":-1720.7237548828125},\"ID\":39,\"children\":[40]},{\"position\":{\"x\":1188.2049560546875,\"y\":-1754.6309814453125},\"ID\":40,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"533\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Basic Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1197.5,\"y\":-1710.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":1159.907470703125,\"y\":-1670.538818359375},\"ID\":0,\"children\":[30]},{\"position\":{\"x\":1159.3275146484375,\"y\":-1710.517578125},\"ID\":30,\"children\":[31]},{\"position\":{\"x\":1207.3544921875,\"y\":-1718.7127685546875},\"ID\":31,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"534\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Basic Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1155.0,\"y\":-1732.5},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":1190.17041015625,\"y\":-1726.937255859375},\"ID\":0,\"children\":[25]},{\"position\":{\"x\":1218.876708984375,\"y\":-1699.2076416015625},\"ID\":25,\"children\":[26]},{\"position\":{\"x\":1176.1148681640625,\"y\":-1667.6029052734375},\"ID\":26,\"children\":[27]},{\"position\":{\"x\":1174.939697265625,\"y\":-1638.316650390625},\"ID\":27,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"535\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Basic Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1167.5,\"y\":-1502.5},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":1205.401123046875,\"y\":-1471.1751708984375},\"ID\":0,\"children\":[22]},{\"position\":{\"x\":1201.4942626953125,\"y\":-1524.566162109375},\"ID\":22,\"children\":[23]},{\"position\":{\"x\":1165.1878662109375,\"y\":-1550.2430419921875},\"ID\":23,\"children\":[24]},{\"position\":{\"x\":1166.7445068359375,\"y\":-1583.38037109375},\"ID\":24,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"536\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Raider\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1187.5,\"y\":-1567.5},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":1160.1058349609375,\"y\":-1605.110107421875},\"ID\":0,\"children\":[19]},{\"position\":{\"x\":1204.8211669921875,\"y\":-1639.478271484375},\"ID\":19,\"children\":[20]},{\"position\":{\"x\":1223.76025390625,\"y\":-1593.0533447265625},\"ID\":20,\"children\":[21]},{\"position\":{\"x\":1202.08935546875,\"y\":-1548.521240234375},\"ID\":21,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"537\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Raider\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1160.0,\"y\":-1460.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":1177.552001953125,\"y\":-1466.7525634765625},\"ID\":0,\"children\":[7]},{\"position\":{\"x\":1211.48828125,\"y\":-1485.740478515625},\"ID\":7,\"children\":[8]},{\"position\":{\"x\":1177.0299072265625,\"y\":-1508.589111328125},\"ID\":8,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"538\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Basic Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1190.0,\"y\":-1657.5},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":1182.3719482421875,\"y\":-1669.992431640625},\"ID\":0,\"children\":[16]},{\"position\":{\"x\":1155.420654296875,\"y\":-1703.5823974609375},\"ID\":16,\"children\":[17]},{\"position\":{\"x\":1156.7789306640625,\"y\":-1746.0849609375},\"ID\":17,\"children\":[18]},{\"position\":{\"x\":1201.1126708984375,\"y\":-1742.9564208984375},\"ID\":18,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"539\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Raider\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1195.0,\"y\":-1777.5},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":1159.534423828125,\"y\":-1743.6766357421875},\"ID\":0,\"children\":[12]},{\"position\":{\"x\":1202.49462890625,\"y\":-1718.075439453125},\"ID\":12,\"children\":[13]},{\"position\":{\"x\":1159.93115234375,\"y\":-1680.265869140625},\"ID\":13,\"children\":[14]},{\"position\":{\"x\":1162.26611328125,\"y\":-1645.4779052734375},\"ID\":14,\"children\":[15]},{\"position\":{\"x\":1199.3660888671875,\"y\":-1645.392822265625},\"ID\":15,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"540\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Basic Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1175.0,\"y\":-1427.5},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":1210.197021484375,\"y\":-1441.659912109375},\"ID\":0,\"children\":[11]},{\"position\":{\"x\":1143.041748046875,\"y\":-1451.9732666015625},\"ID\":11,\"children\":[12]},{\"position\":{\"x\":1169.6400146484375,\"y\":-1422.825927734375},\"ID\":12,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"541\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Basic Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1192.5,\"y\":-1395.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":1206.7518310546875,\"y\":-1382.54150390625},\"ID\":0,\"children\":[7]},{\"position\":{\"x\":1183.780517578125,\"y\":-1367.3096923828125},\"ID\":7,\"children\":[8]},{\"position\":{\"x\":1155.8907470703125,\"y\":-1392.854736328125},\"ID\":8,\"children\":[10]},{\"position\":{\"x\":1175.81201171875,\"y\":-1410.2080078125},\"ID\":10,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"542\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Raider\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1157.5,\"y\":-1365.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":1175.0667724609375,\"y\":-1378.69921875},\"ID\":0,\"children\":[4]},{\"position\":{\"x\":1185.260986328125,\"y\":-1400.4981689453125},\"ID\":4,\"children\":[5]},{\"position\":{\"x\":1165.9259033203125,\"y\":-1410.5732421875},\"ID\":5,\"children\":[6]},{\"position\":{\"x\":1188.19189453125,\"y\":-1430.299560546875},\"ID\":6,\"children\":[]}]}},{\"name\":\"Map Background 1\",\"ID\":\"543\",\"faction\":0,\"assetID\":\"mapbg1\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1180.0,\"y\":-1580.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[\"531\",\"532\",\"533\",\"534\",\"535\",\"536\",\"537\",\"538\",\"539\",\"540\",\"541\",\"542\"],\"hasMusic\":true,\"musicID\":\"music_overworld_2\",\"partDropsDisabled\":false,\"backgroundSpawns\":[],\"waveSetPath\":\"\",\"rectangleEffectSkin\":1,\"backgroundTileSkin\":1,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 1360-1550.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 1360-1550.json new file mode 100644 index 000000000..0b74ff7b9 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 1360-1550.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Sector 1360-1550\",\"bounds\":{\"x\":1240,\"y\":-1220,\"w\":310,\"h\":120},\"type\":5,\"backgroundColor\":{\"r\":0.15000000596046449,\"g\":0.15000000596046449,\"b\":0.15000000596046449,\"a\":1.0},\"entities\":[],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[],\"hasMusic\":true,\"musicID\":\"music_overworld_2\",\"partDropsDisabled\":false,\"backgroundSpawns\":[],\"waveSetPath\":\"\",\"rectangleEffectSkin\":1,\"backgroundTileSkin\":1,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 1360-1670.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 1360-1670.json new file mode 100644 index 000000000..54c7dfed2 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 1360-1670.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Sector 1360-1670\",\"bounds\":{\"x\":1240,\"y\":-1340,\"w\":310,\"h\":100},\"type\":5,\"backgroundColor\":{\"r\":0.15000000596046449,\"g\":0.15000000596046449,\"b\":0.15000000596046449,\"a\":1.0},\"entities\":[],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[],\"hasMusic\":true,\"musicID\":\"music_overworld_2\",\"partDropsDisabled\":false,\"backgroundSpawns\":[],\"waveSetPath\":\"\",\"rectangleEffectSkin\":1,\"backgroundTileSkin\":1,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 1360-1770.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 1360-1770.json new file mode 100644 index 000000000..df8f8498d --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 1360-1770.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Sector 1360-1770\",\"bounds\":{\"x\":1240,\"y\":-1440,\"w\":210,\"h\":160},\"type\":5,\"backgroundColor\":{\"r\":0.15000000596046449,\"g\":0.15000000596046449,\"b\":0.15000000596046449,\"a\":1.0},\"entities\":[{\"name\":\"Map Background 3\",\"ID\":\"544\",\"faction\":0,\"assetID\":\"mapbg3\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1280.0,\"y\":-1520.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[],\"hasMusic\":true,\"musicID\":\"music_overworld_2\",\"partDropsDisabled\":false,\"backgroundSpawns\":[],\"waveSetPath\":\"\",\"rectangleEffectSkin\":1,\"backgroundTileSkin\":1,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 1360-1930.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 1360-1930.json new file mode 100644 index 000000000..f4eaec80b --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 1360-1930.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Sector 1360-1930\",\"bounds\":{\"x\":1240,\"y\":-1600,\"w\":310,\"h\":100},\"type\":5,\"backgroundColor\":{\"r\":0.15000000596046449,\"g\":0.15000000596046449,\"b\":0.15000000596046449,\"a\":1.0},\"entities\":[],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[],\"hasMusic\":true,\"musicID\":\"music_overworld_2\",\"partDropsDisabled\":false,\"backgroundSpawns\":[],\"waveSetPath\":\"\",\"rectangleEffectSkin\":1,\"backgroundTileSkin\":1,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 1360-2030.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 1360-2030.json new file mode 100644 index 000000000..d0732b1b1 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 1360-2030.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Sector 1360-2030\",\"bounds\":{\"x\":1240,\"y\":-1700,\"w\":140,\"h\":260},\"type\":5,\"backgroundColor\":{\"r\":0.15000000596046449,\"g\":0.15000000596046449,\"b\":0.15000000596046449,\"a\":1.0},\"entities\":[],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[],\"hasMusic\":true,\"musicID\":\"music_overworld_2\",\"partDropsDisabled\":false,\"backgroundSpawns\":[],\"waveSetPath\":\"\",\"rectangleEffectSkin\":1,\"backgroundTileSkin\":1,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 150-150.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 150-150.json new file mode 100644 index 000000000..556bb0b34 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 150-150.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Sector 150-150\",\"bounds\":{\"x\":30,\"y\":180,\"w\":150,\"h\":150},\"type\":0,\"backgroundColor\":{\"r\":0.0,\"g\":0.30000001192092898,\"b\":0.30000001192092898,\"a\":1.0},\"entities\":[{\"name\":\"ShellCore\",\"ID\":\"545\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Super Light Core\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":52.5,\"y\":157.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"546\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Super Light Core\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":137.5,\"y\":50.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"547\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Super Light Core\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":52.5,\"y\":77.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"548\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Super Light Core\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":102.5,\"y\":70.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Map Background 1\",\"ID\":\"549\",\"faction\":0,\"assetID\":\"mapbg1\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":125.0,\"y\":125.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"550\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Super Light Core\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":80.0,\"y\":120.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"551\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Super Light Core\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":105.0,\"y\":95.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"552\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Super Light Core\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":150.0,\"y\":140.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"553\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Super Light Core\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":105.0,\"y\":165.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[\"545\",\"546\",\"547\",\"548\",\"550\",\"551\",\"552\",\"553\"],\"hasMusic\":true,\"musicID\":\"music_overworld\",\"partDropsDisabled\":false,\"backgroundSpawns\":[{\"entity\":{\"name\":\"Mini Drone\",\"ID\":\"\",\"faction\":1,\"assetID\":\"mini_drone_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":0.0,\"y\":0.0},\"patrolPath\":{\"waypoints\":[]}},\"timePerSpawn\":8,\"radius\":15.0}],\"waveSetPath\":\"\",\"rectangleEffectSkin\":0,\"backgroundTileSkin\":0,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 1500-2290.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 1500-2290.json new file mode 100644 index 000000000..16e65849a --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 1500-2290.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Sector 1500-2290\",\"bounds\":{\"x\":1380,\"y\":-1960,\"w\":170,\"h\":320},\"type\":0,\"backgroundColor\":{\"r\":0.4000000059604645,\"g\":0.0,\"b\":0.0,\"a\":1.0},\"entities\":[],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[],\"hasMusic\":true,\"musicID\":\"music_overworld_2\",\"partDropsDisabled\":false,\"backgroundSpawns\":[],\"waveSetPath\":\"\",\"rectangleEffectSkin\":1,\"backgroundTileSkin\":1,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 300-1610.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 300-1610.json new file mode 100644 index 000000000..72b02a74f --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 300-1610.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Sector 300-1610\",\"bounds\":{\"x\":180,\"y\":-1280,\"w\":180,\"h\":70},\"type\":0,\"backgroundColor\":{\"r\":0.4000000059604645,\"g\":0.0,\"b\":0.0,\"a\":1.0},\"entities\":[{\"name\":\"ShellCore\",\"ID\":\"554\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Brigader\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":270.0,\"y\":-1315.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Laser Tank\",\"ID\":\"555\",\"faction\":1,\"assetID\":\"laser_tank\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":285.0,\"y\":-1305.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Laser Tank\",\"ID\":\"556\",\"faction\":1,\"assetID\":\"laser_tank\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":255.0,\"y\":-1315.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Laser Tank\",\"ID\":\"557\",\"faction\":1,\"assetID\":\"laser_tank\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":275.0,\"y\":-1335.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Station\",\"ID\":\"558\",\"faction\":1,\"assetID\":\"missile_station\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":195.0,\"y\":-1325.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Station\",\"ID\":\"559\",\"faction\":1,\"assetID\":\"missile_station\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":345.0,\"y\":-1325.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Station\",\"ID\":\"560\",\"faction\":1,\"assetID\":\"missile_station\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":345.0,\"y\":-1295.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Station\",\"ID\":\"561\",\"faction\":1,\"assetID\":\"missile_station\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":195.0,\"y\":-1295.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"562\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Cruiser\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":225.0,\"y\":-1335.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":224.97384643554688,\"y\":-1334.66357421875},\"ID\":0,\"children\":[31]},{\"position\":{\"x\":225.212890625,\"y\":-1289.9671630859375},\"ID\":31,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"563\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Advanced Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":215.0,\"y\":-1335.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":214.80612182617188,\"y\":-1334.4971923828125},\"ID\":0,\"children\":[32]},{\"position\":{\"x\":214.7032928466797,\"y\":-1290.0208740234375},\"ID\":32,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"564\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Raider\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":315.0,\"y\":-1335.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":314.4495849609375,\"y\":-1335.0633544921875},\"ID\":0,\"children\":[30]},{\"position\":{\"x\":314.34808349609377,\"y\":-1290.029541015625},\"ID\":30,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"565\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Advanced Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":325.0,\"y\":-1335.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":324.46295166015627,\"y\":-1334.691162109375},\"ID\":0,\"children\":[29]},{\"position\":{\"x\":324.46295166015627,\"y\":-1290.0526123046875},\"ID\":29,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"566\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Basic Patrol\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":300.0,\"y\":-1315.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":270.488525390625,\"y\":-1335.9305419921875},\"ID\":0,\"children\":[23]},{\"position\":{\"x\":239.59376525878907,\"y\":-1315.01171875},\"ID\":23,\"children\":[25]},{\"position\":{\"x\":268.5734558105469,\"y\":-1295.73828125},\"ID\":25,\"children\":[26]},{\"position\":{\"x\":299.9463195800781,\"y\":-1315.01171875},\"ID\":26,\"children\":[0]}]}},{\"name\":\"ShellCore\",\"ID\":\"567\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Basic Patrol\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":240.0,\"y\":-1315.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":239.501708984375,\"y\":-1315.01171875},\"ID\":0,\"children\":[17]},{\"position\":{\"x\":267.8670959472656,\"y\":-1294.2318115234375},\"ID\":17,\"children\":[18]},{\"position\":{\"x\":299.19287109375,\"y\":-1314.73388671875},\"ID\":18,\"children\":[19]},{\"position\":{\"x\":267.82000732421877,\"y\":-1331.966796875},\"ID\":19,\"children\":[0]}]}},{\"name\":\"Map Background 3\",\"ID\":\"568\",\"faction\":0,\"assetID\":\"mapbg3\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":270.0,\"y\":-1315.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[\"070101080206020100020200020300020400010400020500020107030601010202020302030302040301040302050302020901060201010203030101010204030104030205030203090106020201020403020101010403020503010101010408020602040002030002050002020002010001010002040a00060203010104020205030202010201010101010205080306020401020301010401020201020101010101\",\"0506010802040701000702000703000704000701070304060102070203070303070403070209010407010107030306010107040307030901040702010704030701010601010704080304070301070201070101060101\",\"050a010700040b01000a02030a03030a04030b010800040a01020a02020a03020a04020a020901040a01010a03030b01010a04030a030901040a02010a04030a01010b01010a040803040a03010a02010a01010b0101\",\"070f010700060g01000f02030f03030f04030g04030f05030g010800060f01020f02020f03020f04020g04020f05020f020901060f01010f03030g01010f04030g04030f05030f030901060f02010f04030f01010g04030f05030g01010f040a02060f03010g04000f05030f02010f01010g01010g040800060f04020f03020f05020f02020f01020g01020f050803060f04010f03010g04010f02010f01010g0101\",\"0208050802010905000905080001080502\"],\"platform\":{\"instanceID\":0},\"targets\":[\"554\",\"562\",\"563\",\"564\",\"565\",\"566\",\"567\"],\"hasMusic\":true,\"musicID\":\"music_overworld_enemy\",\"partDropsDisabled\":false,\"backgroundSpawns\":[{\"entity\":{\"name\":\"Heavy Drone\",\"ID\":\"\",\"faction\":1,\"assetID\":\"heavy_drone_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":0.0,\"y\":0.0},\"patrolPath\":{\"waypoints\":[]}},\"timePerSpawn\":8,\"radius\":15.0}],\"waveSetPath\":\"\",\"rectangleEffectSkin\":1,\"backgroundTileSkin\":1,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 460-150.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 460-150.json new file mode 100644 index 000000000..e3364281c --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 460-150.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Sector 460-150\",\"bounds\":{\"x\":340,\"y\":180,\"w\":310,\"h\":150},\"type\":0,\"backgroundColor\":{\"r\":0.0,\"g\":0.30000001192092898,\"b\":0.30000001192092898,\"a\":1.0},\"entities\":[{\"name\":\"Map Background 1\",\"ID\":\"569\",\"faction\":0,\"assetID\":\"mapbg1\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":510.0,\"y\":100.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"570\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"{\\\"entityName\\\":\\\"Unnamed\\\",\\\"coreSpriteID\\\":\\\"core1_light\\\",\\\"coreShellSpriteID\\\":\\\"core1_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":0,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":-0.7466667294502258,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":5,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"{\\\\\\\"drone\\\\\\\":\\\\\\\"{\\\\\\\\\\\\\\\"entityName\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Strike Drone\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_light\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreShellSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_shell\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"shellHealth\\\\\\\\\\\\\\\":[1000.0,250.0,500.0],\\\\\\\\\\\\\\\"baseRegen\\\\\\\\\\\\\\\":[60.0,0.0,60.0],\\\\\\\\\\\\\\\"intendedType\\\\\\\\\\\\\\\":7,\\\\\\\\\\\\\\\"parts\\\\\\\\\\\\\\\":[{\\\\\\\\\\\\\\\"location\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\\":-0.2485615760087967,\\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\\":0.0},\\\\\\\\\\\\\\\"rotation\\\\\\\\\\\\\\\":0.0,\\\\\\\\\\\\\\\"mirrored\\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\\"abilityID\\\\\\\\\\\\\\\":5,\\\\\\\\\\\\\\\"tier\\\\\\\\\\\\\\\":1,\\\\\\\\\\\\\\\"secondaryData\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"partID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"SmallWing1\\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\\"location\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\\":0.2485615760087967,\\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\\":0.0},\\\\\\\\\\\\\\\"rotation\\\\\\\\\\\\\\\":0.0,\\\\\\\\\\\\\\\"mirrored\\\\\\\\\\\\\\\":false,\\\\\\\\\\\\\\\"abilityID\\\\\\\\\\\\\\\":0,\\\\\\\\\\\\\\\"tier\\\\\\\\\\\\\\\":0,\\\\\\\\\\\\\\\"secondaryData\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"partID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"SmallWing1\\\\\\\\\\\\\\\"}],\\\\\\\\\\\\\\\"dialogue\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"instanceID\\\\\\\\\\\\\\\":0}}\\\\\\\",\\\\\\\"energyCost\\\\\\\":150.0,\\\\\\\"delay\\\\\\\":3.0,\\\\\\\"cooldown\\\\\\\":15.0,\\\\\\\"type\\\\\\\":2}\\\",\\\"partID\\\":\\\"SmallWing1\\\"},{\\\"location\\\":{\\\"x\\\":0.7466667294502258,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":5,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"{\\\\\\\"drone\\\\\\\":\\\\\\\"{\\\\\\\\\\\\\\\"entityName\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Strike Drone\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_light\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreShellSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_shell\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"shellHealth\\\\\\\\\\\\\\\":[1000.0,250.0,500.0],\\\\\\\\\\\\\\\"baseRegen\\\\\\\\\\\\\\\":[60.0,0.0,60.0],\\\\\\\\\\\\\\\"intendedType\\\\\\\\\\\\\\\":7,\\\\\\\\\\\\\\\"parts\\\\\\\\\\\\\\\":[{\\\\\\\\\\\\\\\"location\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\\":-0.2485615760087967,\\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\\":0.0},\\\\\\\\\\\\\\\"rotation\\\\\\\\\\\\\\\":0.0,\\\\\\\\\\\\\\\"mirrored\\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\\"abilityID\\\\\\\\\\\\\\\":5,\\\\\\\\\\\\\\\"tier\\\\\\\\\\\\\\\":1,\\\\\\\\\\\\\\\"secondaryData\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"partID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"SmallWing1\\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\\"location\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\\":0.2485615760087967,\\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\\":0.0},\\\\\\\\\\\\\\\"rotation\\\\\\\\\\\\\\\":0.0,\\\\\\\\\\\\\\\"mirrored\\\\\\\\\\\\\\\":false,\\\\\\\\\\\\\\\"abilityID\\\\\\\\\\\\\\\":0,\\\\\\\\\\\\\\\"tier\\\\\\\\\\\\\\\":0,\\\\\\\\\\\\\\\"secondaryData\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"partID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"SmallWing1\\\\\\\\\\\\\\\"}],\\\\\\\\\\\\\\\"dialogue\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"instanceID\\\\\\\\\\\\\\\":0}}\\\\\\\",\\\\\\\"energyCost\\\\\\\":150.0,\\\\\\\"delay\\\\\\\":3.0,\\\\\\\"cooldown\\\\\\\":15.0,\\\\\\\"type\\\\\\\":2}\\\",\\\"partID\\\":\\\"SmallWing1\\\"},{\\\"location\\\":{\\\"x\\\":0.5333333611488342,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":18,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"{\\\\\\\"drone\\\\\\\":\\\\\\\"{\\\\\\\\\\\\\\\"entityName\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Gun Drone\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_light\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreShellSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_shell\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"shellHealth\\\\\\\\\\\\\\\":[1000.0,250.0,500.0],\\\\\\\\\\\\\\\"baseRegen\\\\\\\\\\\\\\\":[60.0,0.0,60.0],\\\\\\\\\\\\\\\"intendedType\\\\\\\\\\\\\\\":7,\\\\\\\\\\\\\\\"parts\\\\\\\\\\\\\\\":[{\\\\\\\\\\\\\\\"location\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\\":0.2485615760087967,\\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\\":0.0},\\\\\\\\\\\\\\\"rotation\\\\\\\\\\\\\\\":0.0,\\\\\\\\\\\\\\\"mirrored\\\\\\\\\\\\\\\":false,\\\\\\\\\\\\\\\"abilityID\\\\\\\\\\\\\\\":6,\\\\\\\\\\\\\\\"tier\\\\\\\\\\\\\\\":1,\\\\\\\\\\\\\\\"secondaryData\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"partID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"SmallSide4\\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\\"location\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\\":-0.2485615760087967,\\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\\":0.0},\\\\\\\\\\\\\\\"rotation\\\\\\\\\\\\\\\":0.0,\\\\\\\\\\\\\\\"mirrored\\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\\"abilityID\\\\\\\\\\\\\\\":6,\\\\\\\\\\\\\\\"tier\\\\\\\\\\\\\\\":1,\\\\\\\\\\\\\\\"secondaryData\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"partID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"SmallSide4\\\\\\\\\\\\\\\"}],\\\\\\\\\\\\\\\"dialogue\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"instanceID\\\\\\\\\\\\\\\":0}}\\\\\\\",\\\\\\\"energyCost\\\\\\\":150.0,\\\\\\\"delay\\\\\\\":3.0,\\\\\\\"cooldown\\\\\\\":15.0,\\\\\\\"type\\\\\\\":4}\\\",\\\"partID\\\":\\\"SmallWing2\\\"},{\\\"location\\\":{\\\"x\\\":-0.5333333611488342,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":1,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"{\\\\\\\"drone\\\\\\\":\\\\\\\"{\\\\\\\\\\\\\\\"entityName\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Worker Drone\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_light\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreShellSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"worker_drone_shell_sprite\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"shellHealth\\\\\\\\\\\\\\\":[1000.0,250.0,500.0],\\\\\\\\\\\\\\\"baseRegen\\\\\\\\\\\\\\\":[60.0,0.0,60.0],\\\\\\\\\\\\\\\"intendedType\\\\\\\\\\\\\\\":7,\\\\\\\\\\\\\\\"parts\\\\\\\\\\\\\\\":[],\\\\\\\\\\\\\\\"dialogue\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"instanceID\\\\\\\\\\\\\\\":0}}\\\\\\\",\\\\\\\"energyCost\\\\\\\":100.0,\\\\\\\"delay\\\\\\\":2.0,\\\\\\\"cooldown\\\\\\\":10.0,\\\\\\\"type\\\\\\\":1}\\\",\\\"partID\\\":\\\"SmallWing2\\\"}],\\\"dialogue\\\":{\\\"instanceID\\\":0}}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":610.0,\"y\":100.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"571\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"{\\\"entityName\\\":\\\"Unnamed\\\",\\\"coreSpriteID\\\":\\\"core1_light\\\",\\\"coreShellSpriteID\\\":\\\"core1_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":0,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":-0.7466667294502258,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":5,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"{\\\\\\\"drone\\\\\\\":\\\\\\\"{\\\\\\\\\\\\\\\"entityName\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Strike Drone\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_light\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreShellSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_shell\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"shellHealth\\\\\\\\\\\\\\\":[1000.0,250.0,500.0],\\\\\\\\\\\\\\\"baseRegen\\\\\\\\\\\\\\\":[60.0,0.0,60.0],\\\\\\\\\\\\\\\"intendedType\\\\\\\\\\\\\\\":7,\\\\\\\\\\\\\\\"parts\\\\\\\\\\\\\\\":[{\\\\\\\\\\\\\\\"location\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\\":-0.2485615760087967,\\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\\":0.0},\\\\\\\\\\\\\\\"rotation\\\\\\\\\\\\\\\":0.0,\\\\\\\\\\\\\\\"mirrored\\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\\"abilityID\\\\\\\\\\\\\\\":5,\\\\\\\\\\\\\\\"tier\\\\\\\\\\\\\\\":1,\\\\\\\\\\\\\\\"secondaryData\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"partID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"SmallWing1\\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\\"location\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\\":0.2485615760087967,\\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\\":0.0},\\\\\\\\\\\\\\\"rotation\\\\\\\\\\\\\\\":0.0,\\\\\\\\\\\\\\\"mirrored\\\\\\\\\\\\\\\":false,\\\\\\\\\\\\\\\"abilityID\\\\\\\\\\\\\\\":0,\\\\\\\\\\\\\\\"tier\\\\\\\\\\\\\\\":0,\\\\\\\\\\\\\\\"secondaryData\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"partID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"SmallWing1\\\\\\\\\\\\\\\"}],\\\\\\\\\\\\\\\"dialogue\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"instanceID\\\\\\\\\\\\\\\":0}}\\\\\\\",\\\\\\\"energyCost\\\\\\\":150.0,\\\\\\\"delay\\\\\\\":3.0,\\\\\\\"cooldown\\\\\\\":15.0,\\\\\\\"type\\\\\\\":2}\\\",\\\"partID\\\":\\\"SmallWing1\\\"},{\\\"location\\\":{\\\"x\\\":0.7466667294502258,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":5,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"{\\\\\\\"drone\\\\\\\":\\\\\\\"{\\\\\\\\\\\\\\\"entityName\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Strike Drone\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_light\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreShellSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_shell\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"shellHealth\\\\\\\\\\\\\\\":[1000.0,250.0,500.0],\\\\\\\\\\\\\\\"baseRegen\\\\\\\\\\\\\\\":[60.0,0.0,60.0],\\\\\\\\\\\\\\\"intendedType\\\\\\\\\\\\\\\":7,\\\\\\\\\\\\\\\"parts\\\\\\\\\\\\\\\":[{\\\\\\\\\\\\\\\"location\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\\":-0.2485615760087967,\\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\\":0.0},\\\\\\\\\\\\\\\"rotation\\\\\\\\\\\\\\\":0.0,\\\\\\\\\\\\\\\"mirrored\\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\\"abilityID\\\\\\\\\\\\\\\":5,\\\\\\\\\\\\\\\"tier\\\\\\\\\\\\\\\":1,\\\\\\\\\\\\\\\"secondaryData\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"partID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"SmallWing1\\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\\"location\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\\":0.2485615760087967,\\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\\":0.0},\\\\\\\\\\\\\\\"rotation\\\\\\\\\\\\\\\":0.0,\\\\\\\\\\\\\\\"mirrored\\\\\\\\\\\\\\\":false,\\\\\\\\\\\\\\\"abilityID\\\\\\\\\\\\\\\":0,\\\\\\\\\\\\\\\"tier\\\\\\\\\\\\\\\":0,\\\\\\\\\\\\\\\"secondaryData\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"partID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"SmallWing1\\\\\\\\\\\\\\\"}],\\\\\\\\\\\\\\\"dialogue\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"instanceID\\\\\\\\\\\\\\\":0}}\\\\\\\",\\\\\\\"energyCost\\\\\\\":150.0,\\\\\\\"delay\\\\\\\":3.0,\\\\\\\"cooldown\\\\\\\":15.0,\\\\\\\"type\\\\\\\":2}\\\",\\\"partID\\\":\\\"SmallWing1\\\"},{\\\"location\\\":{\\\"x\\\":0.5333333611488342,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":18,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"{\\\\\\\"drone\\\\\\\":\\\\\\\"{\\\\\\\\\\\\\\\"entityName\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Gun Drone\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_light\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreShellSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_shell\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"shellHealth\\\\\\\\\\\\\\\":[1000.0,250.0,500.0],\\\\\\\\\\\\\\\"baseRegen\\\\\\\\\\\\\\\":[60.0,0.0,60.0],\\\\\\\\\\\\\\\"intendedType\\\\\\\\\\\\\\\":7,\\\\\\\\\\\\\\\"parts\\\\\\\\\\\\\\\":[{\\\\\\\\\\\\\\\"location\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\\":0.2485615760087967,\\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\\":0.0},\\\\\\\\\\\\\\\"rotation\\\\\\\\\\\\\\\":0.0,\\\\\\\\\\\\\\\"mirrored\\\\\\\\\\\\\\\":false,\\\\\\\\\\\\\\\"abilityID\\\\\\\\\\\\\\\":6,\\\\\\\\\\\\\\\"tier\\\\\\\\\\\\\\\":1,\\\\\\\\\\\\\\\"secondaryData\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"partID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"SmallSide4\\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\\"location\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\\":-0.2485615760087967,\\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\\":0.0},\\\\\\\\\\\\\\\"rotation\\\\\\\\\\\\\\\":0.0,\\\\\\\\\\\\\\\"mirrored\\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\\"abilityID\\\\\\\\\\\\\\\":6,\\\\\\\\\\\\\\\"tier\\\\\\\\\\\\\\\":1,\\\\\\\\\\\\\\\"secondaryData\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"partID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"SmallSide4\\\\\\\\\\\\\\\"}],\\\\\\\\\\\\\\\"dialogue\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"instanceID\\\\\\\\\\\\\\\":0}}\\\\\\\",\\\\\\\"energyCost\\\\\\\":150.0,\\\\\\\"delay\\\\\\\":3.0,\\\\\\\"cooldown\\\\\\\":15.0,\\\\\\\"type\\\\\\\":4}\\\",\\\"partID\\\":\\\"SmallWing2\\\"},{\\\"location\\\":{\\\"x\\\":-0.5333333611488342,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":1,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"{\\\\\\\"drone\\\\\\\":\\\\\\\"{\\\\\\\\\\\\\\\"entityName\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Worker Drone\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_light\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreShellSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"worker_drone_shell_sprite\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"shellHealth\\\\\\\\\\\\\\\":[1000.0,250.0,500.0],\\\\\\\\\\\\\\\"baseRegen\\\\\\\\\\\\\\\":[60.0,0.0,60.0],\\\\\\\\\\\\\\\"intendedType\\\\\\\\\\\\\\\":7,\\\\\\\\\\\\\\\"parts\\\\\\\\\\\\\\\":[],\\\\\\\\\\\\\\\"dialogue\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"instanceID\\\\\\\\\\\\\\\":0}}\\\\\\\",\\\\\\\"energyCost\\\\\\\":100.0,\\\\\\\"delay\\\\\\\":2.0,\\\\\\\"cooldown\\\\\\\":10.0,\\\\\\\"type\\\\\\\":1}\\\",\\\"partID\\\":\\\"SmallWing2\\\"}],\\\"dialogue\\\":{\\\"instanceID\\\":0}}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":610.0,\"y\":160.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Strike Drone\",\"ID\":\"572\",\"faction\":1,\"assetID\":\"strike_drone_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":520.0,\"y\":125.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Strike Drone\",\"ID\":\"573\",\"faction\":1,\"assetID\":\"strike_drone_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":535.0,\"y\":130.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"574\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"{\\\"entityName\\\":\\\"Unnamed\\\",\\\"coreSpriteID\\\":\\\"core1_light\\\",\\\"coreShellSpriteID\\\":\\\"core1_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":0,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":-0.7466667294502258,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":5,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"{\\\\\\\"drone\\\\\\\":\\\\\\\"{\\\\\\\\\\\\\\\"entityName\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Strike Drone\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_light\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreShellSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_shell\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"shellHealth\\\\\\\\\\\\\\\":[1000.0,250.0,500.0],\\\\\\\\\\\\\\\"baseRegen\\\\\\\\\\\\\\\":[60.0,0.0,60.0],\\\\\\\\\\\\\\\"intendedType\\\\\\\\\\\\\\\":7,\\\\\\\\\\\\\\\"parts\\\\\\\\\\\\\\\":[{\\\\\\\\\\\\\\\"location\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\\":-0.2485615760087967,\\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\\":0.0},\\\\\\\\\\\\\\\"rotation\\\\\\\\\\\\\\\":0.0,\\\\\\\\\\\\\\\"mirrored\\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\\"abilityID\\\\\\\\\\\\\\\":5,\\\\\\\\\\\\\\\"tier\\\\\\\\\\\\\\\":1,\\\\\\\\\\\\\\\"secondaryData\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"partID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"SmallWing1\\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\\"location\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\\":0.2485615760087967,\\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\\":0.0},\\\\\\\\\\\\\\\"rotation\\\\\\\\\\\\\\\":0.0,\\\\\\\\\\\\\\\"mirrored\\\\\\\\\\\\\\\":false,\\\\\\\\\\\\\\\"abilityID\\\\\\\\\\\\\\\":0,\\\\\\\\\\\\\\\"tier\\\\\\\\\\\\\\\":0,\\\\\\\\\\\\\\\"secondaryData\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"partID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"SmallWing1\\\\\\\\\\\\\\\"}],\\\\\\\\\\\\\\\"dialogue\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"instanceID\\\\\\\\\\\\\\\":0}}\\\\\\\",\\\\\\\"energyCost\\\\\\\":150.0,\\\\\\\"delay\\\\\\\":3.0,\\\\\\\"cooldown\\\\\\\":15.0,\\\\\\\"type\\\\\\\":2}\\\",\\\"partID\\\":\\\"SmallWing1\\\"},{\\\"location\\\":{\\\"x\\\":0.7466667294502258,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":5,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"{\\\\\\\"drone\\\\\\\":\\\\\\\"{\\\\\\\\\\\\\\\"entityName\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Strike Drone\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_light\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreShellSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_shell\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"shellHealth\\\\\\\\\\\\\\\":[1000.0,250.0,500.0],\\\\\\\\\\\\\\\"baseRegen\\\\\\\\\\\\\\\":[60.0,0.0,60.0],\\\\\\\\\\\\\\\"intendedType\\\\\\\\\\\\\\\":7,\\\\\\\\\\\\\\\"parts\\\\\\\\\\\\\\\":[{\\\\\\\\\\\\\\\"location\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\\":-0.2485615760087967,\\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\\":0.0},\\\\\\\\\\\\\\\"rotation\\\\\\\\\\\\\\\":0.0,\\\\\\\\\\\\\\\"mirrored\\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\\"abilityID\\\\\\\\\\\\\\\":5,\\\\\\\\\\\\\\\"tier\\\\\\\\\\\\\\\":1,\\\\\\\\\\\\\\\"secondaryData\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"partID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"SmallWing1\\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\\"location\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\\":0.2485615760087967,\\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\\":0.0},\\\\\\\\\\\\\\\"rotation\\\\\\\\\\\\\\\":0.0,\\\\\\\\\\\\\\\"mirrored\\\\\\\\\\\\\\\":false,\\\\\\\\\\\\\\\"abilityID\\\\\\\\\\\\\\\":0,\\\\\\\\\\\\\\\"tier\\\\\\\\\\\\\\\":0,\\\\\\\\\\\\\\\"secondaryData\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"partID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"SmallWing1\\\\\\\\\\\\\\\"}],\\\\\\\\\\\\\\\"dialogue\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"instanceID\\\\\\\\\\\\\\\":0}}\\\\\\\",\\\\\\\"energyCost\\\\\\\":150.0,\\\\\\\"delay\\\\\\\":3.0,\\\\\\\"cooldown\\\\\\\":15.0,\\\\\\\"type\\\\\\\":2}\\\",\\\"partID\\\":\\\"SmallWing1\\\"},{\\\"location\\\":{\\\"x\\\":0.5333333611488342,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":18,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"{\\\\\\\"drone\\\\\\\":\\\\\\\"{\\\\\\\\\\\\\\\"entityName\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Gun Drone\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_light\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreShellSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_shell\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"shellHealth\\\\\\\\\\\\\\\":[1000.0,250.0,500.0],\\\\\\\\\\\\\\\"baseRegen\\\\\\\\\\\\\\\":[60.0,0.0,60.0],\\\\\\\\\\\\\\\"intendedType\\\\\\\\\\\\\\\":7,\\\\\\\\\\\\\\\"parts\\\\\\\\\\\\\\\":[{\\\\\\\\\\\\\\\"location\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\\":0.2485615760087967,\\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\\":0.0},\\\\\\\\\\\\\\\"rotation\\\\\\\\\\\\\\\":0.0,\\\\\\\\\\\\\\\"mirrored\\\\\\\\\\\\\\\":false,\\\\\\\\\\\\\\\"abilityID\\\\\\\\\\\\\\\":6,\\\\\\\\\\\\\\\"tier\\\\\\\\\\\\\\\":1,\\\\\\\\\\\\\\\"secondaryData\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"partID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"SmallSide4\\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\\"location\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\\":-0.2485615760087967,\\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\\":0.0},\\\\\\\\\\\\\\\"rotation\\\\\\\\\\\\\\\":0.0,\\\\\\\\\\\\\\\"mirrored\\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\\"abilityID\\\\\\\\\\\\\\\":6,\\\\\\\\\\\\\\\"tier\\\\\\\\\\\\\\\":1,\\\\\\\\\\\\\\\"secondaryData\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"partID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"SmallSide4\\\\\\\\\\\\\\\"}],\\\\\\\\\\\\\\\"dialogue\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"instanceID\\\\\\\\\\\\\\\":0}}\\\\\\\",\\\\\\\"energyCost\\\\\\\":150.0,\\\\\\\"delay\\\\\\\":3.0,\\\\\\\"cooldown\\\\\\\":15.0,\\\\\\\"type\\\\\\\":4}\\\",\\\"partID\\\":\\\"SmallWing2\\\"},{\\\"location\\\":{\\\"x\\\":-0.5333333611488342,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":1,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"{\\\\\\\"drone\\\\\\\":\\\\\\\"{\\\\\\\\\\\\\\\"entityName\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Worker Drone\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_light\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreShellSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"worker_drone_shell_sprite\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"shellHealth\\\\\\\\\\\\\\\":[1000.0,250.0,500.0],\\\\\\\\\\\\\\\"baseRegen\\\\\\\\\\\\\\\":[60.0,0.0,60.0],\\\\\\\\\\\\\\\"intendedType\\\\\\\\\\\\\\\":7,\\\\\\\\\\\\\\\"parts\\\\\\\\\\\\\\\":[],\\\\\\\\\\\\\\\"dialogue\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"instanceID\\\\\\\\\\\\\\\":0}}\\\\\\\",\\\\\\\"energyCost\\\\\\\":100.0,\\\\\\\"delay\\\\\\\":2.0,\\\\\\\"cooldown\\\\\\\":10.0,\\\\\\\"type\\\\\\\":1}\\\",\\\"partID\\\":\\\"SmallWing2\\\"}],\\\"dialogue\\\":{\\\"instanceID\\\":0}}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":575.0,\"y\":130.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"flag_tohaven2_camerapanend\",\"ID\":\"575\",\"faction\":0,\"assetID\":\"flag\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":640.0,\"y\":130.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"flag_tohaven2_playerpathend\",\"ID\":\"576\",\"faction\":0,\"assetID\":\"flag\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":365.0,\"y\":135.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"flag_tohaven2_sukratpathend\",\"ID\":\"577\",\"faction\":0,\"assetID\":\"flag\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":365.0,\"y\":130.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Strike Drone(Clone)\",\"ID\":\"578\",\"faction\":1,\"assetID\":\"strike_drone_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":495.0,\"y\":105.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Strike Drone(Clone)\",\"ID\":\"579\",\"faction\":1,\"assetID\":\"strike_drone_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":495.0,\"y\":85.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Strike Drone(Clone)\",\"ID\":\"580\",\"faction\":1,\"assetID\":\"strike_drone_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":470.0,\"y\":115.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Strike Drone(Clone)\",\"ID\":\"581\",\"faction\":1,\"assetID\":\"strike_drone_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":495.0,\"y\":145.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Strike Drone(Clone)\",\"ID\":\"582\",\"faction\":1,\"assetID\":\"strike_drone_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":460.0,\"y\":70.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Strike Drone(Clone)\",\"ID\":\"583\",\"faction\":1,\"assetID\":\"strike_drone_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":440.0,\"y\":90.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[\"570\",\"571\",\"574\"],\"hasMusic\":true,\"musicID\":\"music_overworld\",\"partDropsDisabled\":false,\"backgroundSpawns\":[{\"entity\":{\"name\":\"Mini Drone\",\"ID\":\"\",\"faction\":1,\"assetID\":\"mini_drone_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":0.0,\"y\":0.0},\"patrolPath\":{\"waypoints\":[]}},\"timePerSpawn\":8,\"radius\":15.0}],\"waveSetPath\":\"\",\"rectangleEffectSkin\":0,\"backgroundTileSkin\":0,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 480-1610.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 480-1610.json new file mode 100644 index 000000000..8ba4e993c --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 480-1610.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Sector 480-1610\",\"bounds\":{\"x\":360,\"y\":-1280,\"w\":180,\"h\":180},\"type\":0,\"backgroundColor\":{\"r\":0.4000000059604645,\"g\":0.0,\"b\":0.0,\"a\":1.0},\"entities\":[{\"name\":\"ShellCore\",\"ID\":\"584\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Raider\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":392.5,\"y\":-1320.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":398.7872619628906,\"y\":-1319.368896484375},\"ID\":0,\"children\":[16]},{\"position\":{\"x\":438.0207214355469,\"y\":-1318.6851806640625},\"ID\":16,\"children\":[17]},{\"position\":{\"x\":460.5073547363281,\"y\":-1350.3404541015625},\"ID\":17,\"children\":[18]},{\"position\":{\"x\":418.51019287109377,\"y\":-1373.091552734375},\"ID\":18,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"585\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Cruiser\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":522.5,\"y\":-1395.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":518.0540771484375,\"y\":-1394.9825439453125},\"ID\":0,\"children\":[12]},{\"position\":{\"x\":481.5556945800781,\"y\":-1394.4376220703125},\"ID\":12,\"children\":[13]},{\"position\":{\"x\":468.9782409667969,\"y\":-1349.5648193359375},\"ID\":13,\"children\":[14]},{\"position\":{\"x\":428.51348876953127,\"y\":-1347.498291015625},\"ID\":14,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"586\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Raider\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":467.5,\"y\":-1412.5},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":440.9924011230469,\"y\":-1391.0120849609375},\"ID\":0,\"children\":[8]},{\"position\":{\"x\":461.01910400390627,\"y\":-1406.3218994140625},\"ID\":8,\"children\":[9]},{\"position\":{\"x\":489.0452880859375,\"y\":-1389.0997314453125},\"ID\":9,\"children\":[10]},{\"position\":{\"x\":464.0960388183594,\"y\":-1365.7958984375},\"ID\":10,\"children\":[11]},{\"position\":{\"x\":447.9662170410156,\"y\":-1350.6336669921875},\"ID\":11,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"587\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Raider\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":430.0,\"y\":-1300.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":436.5809631347656,\"y\":-1306.3746337890625},\"ID\":0,\"children\":[5]},{\"position\":{\"x\":478.27703857421877,\"y\":-1340.819091796875},\"ID\":5,\"children\":[6]},{\"position\":{\"x\":443.8872985839844,\"y\":-1374.0648193359375},\"ID\":6,\"children\":[7]},{\"position\":{\"x\":467.6052551269531,\"y\":-1397.4278564453125},\"ID\":7,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"588\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Cruiser\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":437.5,\"y\":-1360.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":436.9569396972656,\"y\":-1327.61279296875},\"ID\":0,\"children\":[3]},{\"position\":{\"x\":475.7421569824219,\"y\":-1335.9569091796875},\"ID\":3,\"children\":[4]},{\"position\":{\"x\":469.7939453125,\"y\":-1370.7491455078125},\"ID\":4,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"589\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Cruiser\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":452.5,\"y\":-1432.5},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":482.3223876953125,\"y\":-1409.3812255859375},\"ID\":0,\"children\":[1]},{\"position\":{\"x\":451.97515869140627,\"y\":-1391.6033935546875},\"ID\":1,\"children\":[2]},{\"position\":{\"x\":447.3277282714844,\"y\":-1429.6055908203125},\"ID\":2,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"590\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Basic Patrol\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":515.0,\"y\":-1305.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":515.576416015625,\"y\":-1306.30224609375},\"ID\":0,\"children\":[17]},{\"position\":{\"x\":515.9671630859375,\"y\":-1449.5966796875},\"ID\":17,\"children\":[18]},{\"position\":{\"x\":385.4184875488281,\"y\":-1449.9019775390625},\"ID\":18,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"591\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Basic Patrol\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":385.0,\"y\":-1435.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":384.7537841796875,\"y\":-1433.1273193359375},\"ID\":0,\"children\":[15]},{\"position\":{\"x\":382.09796142578127,\"y\":-1291.9921875},\"ID\":15,\"children\":[16]},{\"position\":{\"x\":525.3242797851563,\"y\":-1291.5281982421875},\"ID\":16,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"592\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Advanced Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":405.0,\"y\":-1377.5},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":410.03729248046877,\"y\":-1374.8067626953125},\"ID\":0,\"children\":[11]},{\"position\":{\"x\":428.78668212890627,\"y\":-1334.963623046875},\"ID\":11,\"children\":[12]},{\"position\":{\"x\":403.70916748046877,\"y\":-1300.62109375},\"ID\":12,\"children\":[13]},{\"position\":{\"x\":372.6972961425781,\"y\":-1325.2987060546875},\"ID\":13,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"593\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Advanced Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":505.0,\"y\":-1355.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":509.93682861328127,\"y\":-1358.551513671875},\"ID\":0,\"children\":[7]},{\"position\":{\"x\":520.7157592773438,\"y\":-1393.970947265625},\"ID\":7,\"children\":[8]},{\"position\":{\"x\":504.6221923828125,\"y\":-1433.008056640625},\"ID\":8,\"children\":[9]},{\"position\":{\"x\":489.0780944824219,\"y\":-1409.8812255859375},\"ID\":9,\"children\":[10]},{\"position\":{\"x\":481.89215087890627,\"y\":-1397.695068359375},\"ID\":10,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"594\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Brigader\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":450.0,\"y\":-1370.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Station\",\"ID\":\"595\",\"faction\":1,\"assetID\":\"missile_station\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":405.0,\"y\":-1415.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Station\",\"ID\":\"596\",\"faction\":1,\"assetID\":\"missile_station\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":385.0,\"y\":-1425.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Laser Tank\",\"ID\":\"597\",\"faction\":1,\"assetID\":\"laser_tank\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":395.0,\"y\":-1305.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Laser Tank\",\"ID\":\"598\",\"faction\":1,\"assetID\":\"laser_tank\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":405.0,\"y\":-1350.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Laser Tank\",\"ID\":\"599\",\"faction\":1,\"assetID\":\"laser_tank\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":505.0,\"y\":-1405.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Station\",\"ID\":\"600\",\"faction\":1,\"assetID\":\"missile_station\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":505.0,\"y\":-1315.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Station\",\"ID\":\"601\",\"faction\":1,\"assetID\":\"missile_station\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":465.0,\"y\":-1315.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Station\",\"ID\":\"602\",\"faction\":1,\"assetID\":\"missile_station\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":495.0,\"y\":-1325.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Station\",\"ID\":\"603\",\"faction\":1,\"assetID\":\"missile_station\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":445.0,\"y\":-1385.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Map Background 3\",\"ID\":\"604\",\"faction\":0,\"assetID\":\"mapbg3\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":450.0,\"y\":-1370.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[\"0d020208020c030200040200040300040400040500030500040600020500040700030700050700040800030209000c020202040200040300040400040500030500040600020500040700030700050700040800040207030c030202040303020202040403040503030503040603020503040703030703050703040803040309010c040201040403030201040503020201030503040603020503040703030703050703040803040409010c040301040503040201030503040603030201020503040703020201030703050703040803020508020c030500040500040400040600040300040700040200030700050700040800030200020200030509000c02050204050004040004060004030004070004020003070005070004080003020002020004050a000c040401030502040603040301020502040703040201030703050703040803030201020201040609010c040501040703040401030501030703050703040803040301020501040201030201020201030708020c04070004060005070004080004050004040003050004030002050004020003020002020004070b000c040601030702050700040803040501040401030501040301020501040201030201020201050708000c040702040602030702040802040502040402030502040302020502040202030202020202040808030c040701040601030701050701040501040401030501040301020501040201030201020201\",\"010a03040000\",\"010e03040000\",\"010d04040000\",\"070e080801060e09030e0a030e0b030e0c030e0d030e0e030e090901060e08010e0a030e0b030e0c030e0d030e0e030e0a0901060e09010e0b030e08010e0c030e0d030e0e030e0b0901060e0a010e0c030e09010e0d030e08010e0e030e0c0901060e0b010e0d030e0a010e0e030e09010e08010e0d0901060e0c010e0e030e0b010e0a010e09010e08010e0e0803060e0d010e0c010e0b010e0a010e09010e0801\",\"01080a040000\",\"01040d040000\",\"01020e040000\"],\"platform\":{\"instanceID\":0},\"targets\":[\"584\",\"585\",\"586\",\"587\",\"588\",\"589\",\"590\",\"591\",\"592\",\"593\",\"594\"],\"hasMusic\":true,\"musicID\":\"music_overworld_enemy\",\"partDropsDisabled\":false,\"backgroundSpawns\":[{\"entity\":{\"name\":\"Heavy Drone\",\"ID\":\"\",\"faction\":1,\"assetID\":\"heavy_drone_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":0.0,\"y\":0.0},\"patrolPath\":{\"waypoints\":[]}},\"timePerSpawn\":8,\"radius\":15.0}],\"waveSetPath\":\"\",\"rectangleEffectSkin\":1,\"backgroundTileSkin\":1,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 580-1790.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 580-1790.json new file mode 100644 index 000000000..26848c7be --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 580-1790.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Sector 580-1790\",\"bounds\":{\"x\":460,\"y\":-1460,\"w\":180,\"h\":130},\"type\":5,\"backgroundColor\":{\"r\":0.15000000596046449,\"g\":0.15000000596046449,\"b\":0.15000000596046449,\"a\":1.0},\"entities\":[{\"name\":\"ShellCore\",\"ID\":\"605\",\"faction\":0,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Frigate\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":582.5,\"y\":-1510.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":584.3875732421875,\"y\":-1510.641845703125},\"ID\":0,\"children\":[24]},{\"position\":{\"x\":592.008056640625,\"y\":-1517.43798828125},\"ID\":24,\"children\":[25]},{\"position\":{\"x\":599.8574829101563,\"y\":-1509.469482421875},\"ID\":25,\"children\":[26]},{\"position\":{\"x\":593.4735107421875,\"y\":-1502.9114990234375},\"ID\":26,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"606\",\"faction\":0,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Frigate\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":582.5,\"y\":-1540.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":584.6211547851563,\"y\":-1541.6312255859375},\"ID\":0,\"children\":[18]},{\"position\":{\"x\":589.8372802734375,\"y\":-1549.5997314453125},\"ID\":18,\"children\":[19]},{\"position\":{\"x\":602.1427001953125,\"y\":-1542.0982666015625},\"ID\":19,\"children\":[20]},{\"position\":{\"x\":595.9327392578125,\"y\":-1536.474609375},\"ID\":20,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"607\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Basic Patrol\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":512.5,\"y\":-1525.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":526.781005859375,\"y\":-1524.28466796875},\"ID\":0,\"children\":[1]},{\"position\":{\"x\":541.957275390625,\"y\":-1524.8402099609375},\"ID\":1,\"children\":[2]},{\"position\":{\"x\":564.991455078125,\"y\":-1524.8402099609375},\"ID\":2,\"children\":[3]},{\"position\":{\"x\":582.3526000976563,\"y\":-1525.1072998046875},\"ID\":3,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"608\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Basic Patrol\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":502.5,\"y\":-1542.5},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":509.48931884765627,\"y\":-1542.0478515625},\"ID\":0,\"children\":[7]},{\"position\":{\"x\":520.1517333984375,\"y\":-1541.78076171875},\"ID\":7,\"children\":[8]},{\"position\":{\"x\":544.14208984375,\"y\":-1542.0478515625},\"ID\":8,\"children\":[9]},{\"position\":{\"x\":571.2788696289063,\"y\":-1543.1483154296875},\"ID\":9,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"609\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Basic Patrol\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":502.5,\"y\":-1510.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":509.9006652832031,\"y\":-1509.7974853515625},\"ID\":0,\"children\":[4]},{\"position\":{\"x\":529.3130493164063,\"y\":-1509.519775390625},\"ID\":4,\"children\":[5]},{\"position\":{\"x\":548.51708984375,\"y\":-1508.974853515625},\"ID\":5,\"children\":[6]},{\"position\":{\"x\":569.638916015625,\"y\":-1509.252685546875},\"ID\":6,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"610\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Advanced Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":490.0,\"y\":-1490.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":509.2541809082031,\"y\":-1481.53759765625},\"ID\":0,\"children\":[1]},{\"position\":{\"x\":534.4771728515625,\"y\":-1480.5941162109375},\"ID\":1,\"children\":[20]},{\"position\":{\"x\":550.1785888671875,\"y\":-1462.2752685546875},\"ID\":20,\"children\":[21]},{\"position\":{\"x\":578.0675659179688,\"y\":-1461.017578125},\"ID\":21,\"children\":[22]},{\"position\":{\"x\":613.8446044921875,\"y\":-1461.652587890625},\"ID\":22,\"children\":[23]},{\"position\":{\"x\":638.2169799804688,\"y\":-1479.7730712890625},\"ID\":23,\"children\":[24]},{\"position\":{\"x\":636.3426513671875,\"y\":-1499.7740478515625},\"ID\":24,\"children\":[25]},{\"position\":{\"x\":612.1290283203125,\"y\":-1508.8343505859375},\"ID\":25,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"611\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Advanced Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":490.0,\"y\":-1560.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":498.8420104980469,\"y\":-1565.8770751953125},\"ID\":0,\"children\":[7]},{\"position\":{\"x\":516.3040771484375,\"y\":-1576.657470703125},\"ID\":7,\"children\":[8]},{\"position\":{\"x\":537.0249633789063,\"y\":-1576.8956298828125},\"ID\":8,\"children\":[15]},{\"position\":{\"x\":562.2930297851563,\"y\":-1585.8507080078125},\"ID\":15,\"children\":[16]},{\"position\":{\"x\":596.5925903320313,\"y\":-1588.9765625},\"ID\":16,\"children\":[17]},{\"position\":{\"x\":632.3171997070313,\"y\":-1585.2279052734375},\"ID\":17,\"children\":[18]},{\"position\":{\"x\":636.5359497070313,\"y\":-1558.3524169921875},\"ID\":18,\"children\":[19]},{\"position\":{\"x\":612.4749755859375,\"y\":-1541.4774169921875},\"ID\":19,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"612\",\"faction\":0,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Frigate\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":615.0,\"y\":-1555.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":614.9998779296875,\"y\":-1552.960693359375},\"ID\":0,\"children\":[39]},{\"position\":{\"x\":614.2977294921875,\"y\":-1494.8382568359375},\"ID\":39,\"children\":[40]},{\"position\":{\"x\":595.9391479492188,\"y\":-1494.532958984375},\"ID\":40,\"children\":[41]},{\"position\":{\"x\":595.6277465820313,\"y\":-1505.15625},\"ID\":41,\"children\":[42]},{\"position\":{\"x\":595.395751953125,\"y\":-1514.8392333984375},\"ID\":42,\"children\":[43]},{\"position\":{\"x\":595.31640625,\"y\":-1528.58837890625},\"ID\":43,\"children\":[44]},{\"position\":{\"x\":594.9256591796875,\"y\":-1543.2777099609375},\"ID\":44,\"children\":[45]},{\"position\":{\"x\":594.6936645507813,\"y\":-1550.1522216796875},\"ID\":45,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"613\",\"faction\":0,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Frigate\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":595.0,\"y\":-1495.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":595.0050048828125,\"y\":-1498.72998046875},\"ID\":0,\"children\":[33]},{\"position\":{\"x\":595.6277465820313,\"y\":-1554.3492431640625},\"ID\":33,\"children\":[34]},{\"position\":{\"x\":616.330810546875,\"y\":-1555.28955078125},\"ID\":34,\"children\":[35]},{\"position\":{\"x\":616.0194702148438,\"y\":-1539.659912109375},\"ID\":35,\"children\":[36]},{\"position\":{\"x\":615.8607177734375,\"y\":-1523.72509765625},\"ID\":36,\"children\":[37]},{\"position\":{\"x\":615.3173217773438,\"y\":-1512.4791259765625},\"ID\":37,\"children\":[38]},{\"position\":{\"x\":613.75439453125,\"y\":-1500.5982666015625},\"ID\":38,\"children\":[]}]}},{\"name\":\"Siege Turret\",\"ID\":\"614\",\"faction\":0,\"assetID\":\"siege_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":610.0,\"y\":-1555.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Siege Turret\",\"ID\":\"615\",\"faction\":0,\"assetID\":\"siege_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":610.0,\"y\":-1495.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Siege Turret\",\"ID\":\"616\",\"faction\":0,\"assetID\":\"siege_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":610.0,\"y\":-1525.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"617\",\"faction\":0,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":602.5,\"y\":-1510.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"618\",\"faction\":0,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":602.5,\"y\":-1540.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"619\",\"faction\":0,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":590.0,\"y\":-1552.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Turret\",\"ID\":\"620\",\"faction\":0,\"assetID\":\"missile_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":592.5,\"y\":-1555.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Turret\",\"ID\":\"621\",\"faction\":0,\"assetID\":\"missile_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":592.5,\"y\":-1525.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Turret\",\"ID\":\"622\",\"faction\":0,\"assetID\":\"missile_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":592.5,\"y\":-1495.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"623\",\"faction\":0,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":590.0,\"y\":-1492.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"624\",\"faction\":0,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":590.0,\"y\":-1497.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"625\",\"faction\":0,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":590.0,\"y\":-1522.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"626\",\"faction\":0,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":590.0,\"y\":-1527.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"627\",\"faction\":0,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":590.0,\"y\":-1557.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"628\",\"faction\":0,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":605.0,\"y\":-1510.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"629\",\"faction\":0,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":605.0,\"y\":-1540.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Station\",\"ID\":\"630\",\"faction\":1,\"assetID\":\"missile_station\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":495.0,\"y\":-1555.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Station\",\"ID\":\"631\",\"faction\":1,\"assetID\":\"missile_station\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":495.0,\"y\":-1525.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Station\",\"ID\":\"632\",\"faction\":1,\"assetID\":\"missile_station\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":495.0,\"y\":-1495.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Station\",\"ID\":\"633\",\"faction\":0,\"assetID\":\"missile_station\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":605.0,\"y\":-1495.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Station\",\"ID\":\"634\",\"faction\":0,\"assetID\":\"missile_station\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":605.0,\"y\":-1525.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Station\",\"ID\":\"635\",\"faction\":0,\"assetID\":\"missile_station\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":605.0,\"y\":-1555.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Map Background 1\",\"ID\":\"636\",\"faction\":0,\"assetID\":\"mapbg1\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":550.0,\"y\":-1525.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[\"0m08060a020l090600080703080501090500090700080803080401090400090800080903080301090300090900080a03080201090200090a00070a030702010a02000a0a0009060a000l080602090501090703080702080502090401090803080802080402090301090903080902080302090201090a03080a020802020a02010a0a03070a020702020a0a08000l090a02090902080a02090802070a020809020907020808020906020807020806020905020805020904020804020903020803020902020802020a0202070202070208020l0802000803000902000804000a0200090300080500090400080600090500090600080700090700080800090800080900090900080a00090a00070a000a0a000a0208000l090202090302080202090402070202080302090502080402090602080502080602090702080702090802080802090902080902090a02080a020a0a02070a02070a08020l080a00080900090a000808000a0a000909000807000908000806000907000906000805000905000804000904000803000903000802000902000702000a0200090409010l0905030903010906030902010806030907030a0201080201080703080503090803070201080301080803080403090903080903090a03080a030a0a03070a03090509010l0906030904010806030907030903010807030805030908030902010808030804030909030a0201080201080903080303090a03070201080a030a0a03070a03090709010l090601090803080601090501090903080701080501090401090a030808010804010903010a0a03080a03080901080301090201070a030802010a0201070201090809010l090701090903090601090a030806010905010a0a03080a03080701080501090401070a030809030808010804010903010803010902010802010a0201070201090909010l090801090a030907010a0a03080a03090601070a030809030806010905010808030807010805010904010804010903010803010902010802010a0201070201080909010l080801080a03080701070a03090a030806010a0a030909030906010805010908030905010907010804010904010803010903010802010902010702010a0201080809010l080903080701080a03080601070a03090a030906010805010a0a030909030905010907010804010908030904010803010903010802010902010702010a0201080709010l080601080803090601080501080903090501090701080401080a03090401090801080301070a03090a030903010909010802010a0a030902010702010a0201080509010l080603080401090603080703080301090503090703080803080201090403090803080903070201090201090303090903080a030a0201090a03070a030a0a03080409010l0805030803010806030802010906030807030702010902010905030907030808030a0201090301090403090803080903090903080a03090a03070a030a0a03090309030l0904030902010905030a0201080201090603070201080301080603090703080401080703080503090803080803090903080903090a03080a030a0a03070a03080309010l0804030802010805030702010902010806030a0201090301090603080703090401090503090703080803090803080903090903080a03090a03070a030a0a0308020a010l0702020803030902000804030a0200090300080503090400080603090500090603080703090703080803090803080903090903080a03090a03070a030a0a03090a0a030l0a0a00090901080a02090801070a020809020907010808020906010807020806010905010805010904010804010903010803010902010802010a020107020109020a010l0a0200090303080202090403070202080302090503080402090603080502080603090703080703090803080803090903080903090a03080a030a0a03070a03080a0a030l070a02080901090a000808010a0a000909000807010908000806010907000906010805010905010804010904010803010903010802010902010702010a0201\",\"010e06040000\",\"010e03040000\",\"010e09040000\",\"010306040000\",\"010309040000\",\"010303040000\"],\"platform\":{\"instanceID\":0},\"targets\":[\"605\",\"606\",\"607\",\"608\",\"609\",\"610\",\"611\",\"612\",\"613\"],\"hasMusic\":true,\"musicID\":\"music_overworld_enemy\",\"partDropsDisabled\":false,\"backgroundSpawns\":[],\"waveSetPath\":\"\",\"rectangleEffectSkin\":1,\"backgroundTileSkin\":1,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 600-2070.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 600-2070.json new file mode 100644 index 000000000..cafba95e5 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 600-2070.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Sector 600-2070\",\"bounds\":{\"x\":480,\"y\":-1740,\"w\":160,\"h\":80},\"type\":0,\"backgroundColor\":{\"r\":0.0,\"g\":0.30000001192092898,\"b\":0.30000001192092898,\"a\":1.0},\"entities\":[{\"name\":\"flag-daayo-spawn-TCR\",\"ID\":\"flag-daayo-spawn-TCR\",\"faction\":0,\"assetID\":\"flag\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":567.5,\"y\":-1777.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"flag-pytha-spawn-TCR\",\"ID\":\"flag-pytha-spawn-TCR\",\"faction\":0,\"assetID\":\"flag\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":567.5,\"y\":-1782.5},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[],\"hasMusic\":true,\"musicID\":\"music_overworld_2\",\"partDropsDisabled\":false,\"backgroundSpawns\":[],\"waveSetPath\":\"\",\"rectangleEffectSkin\":1,\"backgroundTileSkin\":1,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 610-500.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 610-500.json new file mode 100644 index 000000000..213c03600 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 610-500.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Sector 610-500\",\"bounds\":{\"x\":490,\"y\":-170,\"w\":430,\"h\":240},\"type\":5,\"backgroundColor\":{\"r\":0.15000000596046449,\"g\":0.15000000596046449,\"b\":0.15000000596046449,\"a\":1.0},\"entities\":[{\"name\":\"ShellCore\",\"ID\":\"637\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Fake Heavy\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":607.5,\"y\":-250.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"638\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Northern Missile\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":615.0,\"y\":-282.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"639\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Block Core\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":620.0,\"y\":-357.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"640\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Block Core\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":795.0,\"y\":-325.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"641\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Fake Heavy\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":820.0,\"y\":-257.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Map Background 2\",\"ID\":\"642\",\"faction\":0,\"assetID\":\"mapbg2\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":705.0,\"y\":-290.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"643\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Northern Missile\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":625.0,\"y\":-332.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"644\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Northern Missile\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":685.0,\"y\":-302.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"645\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Northern Missile\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":687.5,\"y\":-275.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"646\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Northern Missile\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":635.0,\"y\":-300.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"647\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Northern Missile\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":640.0,\"y\":-315.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"648\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Block Core\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":697.5,\"y\":-362.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"649\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Northern Missile\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":667.5,\"y\":-327.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"650\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Block Core\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":602.5,\"y\":-335.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"651\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Block Core\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":587.5,\"y\":-307.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"652\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"{\\\"entityName\\\":\\\"Unnamed\\\",\\\"coreSpriteID\\\":\\\"core1_light\\\",\\\"coreShellSpriteID\\\":\\\"core1_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":0,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":0.5,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":2,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallSide3\\\"},{\\\"location\\\":{\\\"x\\\":-0.5,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":13,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallSide3\\\"},{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":0.30000001192092898},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":20,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallCenter2\\\"},{\\\"location\\\":{\\\"x\\\":0.30000001192092898,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":5,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing2\\\"},{\\\"location\\\":{\\\"x\\\":-0.30000001192092898,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":4,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing2\\\"}],\\\"dialogue\\\":{\\\"instanceID\\\":0},\\\"useCustomDroneType\\\":false,\\\"customDroneType\\\":0}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":700.0,\"y\":-282.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"653\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"{\\\"entityName\\\":\\\"Unnamed\\\",\\\"coreSpriteID\\\":\\\"core1_light\\\",\\\"coreShellSpriteID\\\":\\\"core1_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":0,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":0.5,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":2,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallSide3\\\"},{\\\"location\\\":{\\\"x\\\":-0.5,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":13,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallSide3\\\"},{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":0.30000001192092898},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":20,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallCenter2\\\"},{\\\"location\\\":{\\\"x\\\":0.30000001192092898,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":5,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing2\\\"},{\\\"location\\\":{\\\"x\\\":-0.30000001192092898,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":4,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing2\\\"}],\\\"dialogue\\\":{\\\"instanceID\\\":0},\\\"useCustomDroneType\\\":false,\\\"customDroneType\\\":0}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":705.0,\"y\":-230.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"654\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"{\\\"entityName\\\":\\\"Unnamed\\\",\\\"coreSpriteID\\\":\\\"core1_light\\\",\\\"coreShellSpriteID\\\":\\\"core1_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":0,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":0.5,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":2,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallSide3\\\"},{\\\"location\\\":{\\\"x\\\":-0.5,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":13,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallSide3\\\"},{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":0.30000001192092898},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":20,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallCenter2\\\"},{\\\"location\\\":{\\\"x\\\":0.30000001192092898,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":5,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing2\\\"},{\\\"location\\\":{\\\"x\\\":-0.30000001192092898,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":4,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing2\\\"}],\\\"dialogue\\\":{\\\"instanceID\\\":0},\\\"useCustomDroneType\\\":false,\\\"customDroneType\\\":0}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":675.0,\"y\":-240.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"655\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"{\\\"entityName\\\":\\\"Unnamed\\\",\\\"coreSpriteID\\\":\\\"core1_light\\\",\\\"coreShellSpriteID\\\":\\\"core1_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":0,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":0.5,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":2,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallSide3\\\"},{\\\"location\\\":{\\\"x\\\":-0.5,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":13,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallSide3\\\"},{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":0.30000001192092898},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":20,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallCenter2\\\"},{\\\"location\\\":{\\\"x\\\":0.30000001192092898,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":5,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing2\\\"},{\\\"location\\\":{\\\"x\\\":-0.30000001192092898,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":4,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing2\\\"}],\\\"dialogue\\\":{\\\"instanceID\\\":0},\\\"useCustomDroneType\\\":false,\\\"customDroneType\\\":0}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":660.0,\"y\":-270.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"656\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"{\\\"entityName\\\":\\\"Unnamed\\\",\\\"coreSpriteID\\\":\\\"core1_light\\\",\\\"coreShellSpriteID\\\":\\\"core1_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":0,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":0.5,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":2,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallSide3\\\"},{\\\"location\\\":{\\\"x\\\":-0.5,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":13,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallSide3\\\"},{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":0.30000001192092898},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":20,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallCenter2\\\"},{\\\"location\\\":{\\\"x\\\":0.30000001192092898,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":5,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing2\\\"},{\\\"location\\\":{\\\"x\\\":-0.30000001192092898,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":4,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing2\\\"}],\\\"dialogue\\\":{\\\"instanceID\\\":0},\\\"useCustomDroneType\\\":false,\\\"customDroneType\\\":0}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":787.5,\"y\":-232.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"657\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"{\\\"entityName\\\":\\\"Unnamed\\\",\\\"coreSpriteID\\\":\\\"core1_light\\\",\\\"coreShellSpriteID\\\":\\\"core1_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":0,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":0.5,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":2,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallSide3\\\"},{\\\"location\\\":{\\\"x\\\":-0.5,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":13,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallSide3\\\"},{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":0.30000001192092898},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":20,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallCenter2\\\"},{\\\"location\\\":{\\\"x\\\":0.30000001192092898,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":5,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing2\\\"},{\\\"location\\\":{\\\"x\\\":-0.30000001192092898,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":4,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing2\\\"}],\\\"dialogue\\\":{\\\"instanceID\\\":0},\\\"useCustomDroneType\\\":false,\\\"customDroneType\\\":0}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":742.5,\"y\":-250.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"658\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"{\\\"entityName\\\":\\\"Unnamed\\\",\\\"coreSpriteID\\\":\\\"core1_light\\\",\\\"coreShellSpriteID\\\":\\\"core1_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":0,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":0.5,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":2,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallSide3\\\"},{\\\"location\\\":{\\\"x\\\":-0.5,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":13,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallSide3\\\"},{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":0.30000001192092898},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":20,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallCenter2\\\"},{\\\"location\\\":{\\\"x\\\":0.30000001192092898,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":5,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing2\\\"},{\\\"location\\\":{\\\"x\\\":-0.30000001192092898,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":4,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing2\\\"}],\\\"dialogue\\\":{\\\"instanceID\\\":0},\\\"useCustomDroneType\\\":false,\\\"customDroneType\\\":0}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":775.0,\"y\":-270.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"659\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"{\\\"entityName\\\":\\\"Unnamed\\\",\\\"coreSpriteID\\\":\\\"core1_light\\\",\\\"coreShellSpriteID\\\":\\\"core1_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":0,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":0.5,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":2,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallSide3\\\"},{\\\"location\\\":{\\\"x\\\":-0.5,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":13,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallSide3\\\"},{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":0.30000001192092898},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":20,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallCenter2\\\"},{\\\"location\\\":{\\\"x\\\":0.30000001192092898,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":5,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing2\\\"},{\\\"location\\\":{\\\"x\\\":-0.30000001192092898,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":4,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing2\\\"}],\\\"dialogue\\\":{\\\"instanceID\\\":0},\\\"useCustomDroneType\\\":false,\\\"customDroneType\\\":0}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":750.0,\"y\":-302.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Yard\",\"ID\":\"610-500-crimsonyard\",\"faction\":1,\"assetID\":\"yard_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":637.5,\"y\":-307.5},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[\"637\",\"638\",\"639\",\"640\",\"641\",\"643\",\"644\",\"645\",\"646\",\"647\",\"648\",\"649\",\"650\",\"651\",\"652\",\"653\",\"654\",\"655\",\"656\",\"657\",\"658\",\"659\"],\"hasMusic\":true,\"musicID\":\"music_overworld\",\"partDropsDisabled\":false,\"backgroundSpawns\":[{\"entity\":{\"name\":\"Mini Drone\",\"ID\":\"\",\"faction\":1,\"assetID\":\"mini_drone_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":0.0,\"y\":0.0},\"patrolPath\":{\"waypoints\":[]}},\"timePerSpawn\":8,\"radius\":15.0},{\"entity\":{\"name\":\"Counter Drone\",\"ID\":\"\",\"faction\":1,\"assetID\":\"counter_drone_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":0.0,\"y\":0.0},\"patrolPath\":{\"waypoints\":[]}},\"timePerSpawn\":8,\"radius\":15.0},{\"entity\":{\"name\":\"Strike Drone\",\"ID\":\"\",\"faction\":1,\"assetID\":\"strike_drone_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":0.0,\"y\":0.0},\"patrolPath\":{\"waypoints\":[]}},\"timePerSpawn\":8,\"radius\":15.0},{\"entity\":{\"name\":\"Unnamed\",\"ID\":\"\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"{\\\"entityName\\\":\\\"Unnamed\\\",\\\"coreSpriteID\\\":\\\"core1_light\\\",\\\"coreShellSpriteID\\\":\\\"core1_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":0,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":-0.7466667294502258,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":5,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"{\\\\\\\"drone\\\\\\\":\\\\\\\"{\\\\\\\\\\\\\\\"entityName\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Strike Drone\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_light\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreShellSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_shell\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"shellHealth\\\\\\\\\\\\\\\":[1000.0,250.0,500.0],\\\\\\\\\\\\\\\"baseRegen\\\\\\\\\\\\\\\":[60.0,0.0,60.0],\\\\\\\\\\\\\\\"intendedType\\\\\\\\\\\\\\\":7,\\\\\\\\\\\\\\\"parts\\\\\\\\\\\\\\\":[{\\\\\\\\\\\\\\\"location\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\\":-0.2485615760087967,\\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\\":0.0},\\\\\\\\\\\\\\\"rotation\\\\\\\\\\\\\\\":0.0,\\\\\\\\\\\\\\\"mirrored\\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\\"abilityID\\\\\\\\\\\\\\\":5,\\\\\\\\\\\\\\\"tier\\\\\\\\\\\\\\\":1,\\\\\\\\\\\\\\\"secondaryData\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"partID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"SmallWing1\\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\\"location\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\\":0.2485615760087967,\\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\\":0.0},\\\\\\\\\\\\\\\"rotation\\\\\\\\\\\\\\\":0.0,\\\\\\\\\\\\\\\"mirrored\\\\\\\\\\\\\\\":false,\\\\\\\\\\\\\\\"abilityID\\\\\\\\\\\\\\\":0,\\\\\\\\\\\\\\\"tier\\\\\\\\\\\\\\\":0,\\\\\\\\\\\\\\\"secondaryData\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"partID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"SmallWing1\\\\\\\\\\\\\\\"}],\\\\\\\\\\\\\\\"dialogue\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"instanceID\\\\\\\\\\\\\\\":0}}\\\\\\\",\\\\\\\"energyCost\\\\\\\":150.0,\\\\\\\"delay\\\\\\\":3.0,\\\\\\\"cooldown\\\\\\\":15.0,\\\\\\\"type\\\\\\\":2}\\\",\\\"partID\\\":\\\"SmallWing1\\\"},{\\\"location\\\":{\\\"x\\\":0.7466667294502258,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":5,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"{\\\\\\\"drone\\\\\\\":\\\\\\\"{\\\\\\\\\\\\\\\"entityName\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Strike Drone\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_light\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreShellSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_shell\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"shellHealth\\\\\\\\\\\\\\\":[1000.0,250.0,500.0],\\\\\\\\\\\\\\\"baseRegen\\\\\\\\\\\\\\\":[60.0,0.0,60.0],\\\\\\\\\\\\\\\"intendedType\\\\\\\\\\\\\\\":7,\\\\\\\\\\\\\\\"parts\\\\\\\\\\\\\\\":[{\\\\\\\\\\\\\\\"location\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\\":-0.2485615760087967,\\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\\":0.0},\\\\\\\\\\\\\\\"rotation\\\\\\\\\\\\\\\":0.0,\\\\\\\\\\\\\\\"mirrored\\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\\"abilityID\\\\\\\\\\\\\\\":5,\\\\\\\\\\\\\\\"tier\\\\\\\\\\\\\\\":1,\\\\\\\\\\\\\\\"secondaryData\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"partID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"SmallWing1\\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\\"location\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\\":0.2485615760087967,\\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\\":0.0},\\\\\\\\\\\\\\\"rotation\\\\\\\\\\\\\\\":0.0,\\\\\\\\\\\\\\\"mirrored\\\\\\\\\\\\\\\":false,\\\\\\\\\\\\\\\"abilityID\\\\\\\\\\\\\\\":0,\\\\\\\\\\\\\\\"tier\\\\\\\\\\\\\\\":0,\\\\\\\\\\\\\\\"secondaryData\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"partID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"SmallWing1\\\\\\\\\\\\\\\"}],\\\\\\\\\\\\\\\"dialogue\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"instanceID\\\\\\\\\\\\\\\":0}}\\\\\\\",\\\\\\\"energyCost\\\\\\\":150.0,\\\\\\\"delay\\\\\\\":3.0,\\\\\\\"cooldown\\\\\\\":15.0,\\\\\\\"type\\\\\\\":2}\\\",\\\"partID\\\":\\\"SmallWing1\\\"},{\\\"location\\\":{\\\"x\\\":0.5333333611488342,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":18,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"{\\\\\\\"drone\\\\\\\":\\\\\\\"{\\\\\\\\\\\\\\\"entityName\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Gun Drone\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_light\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreShellSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_shell\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"shellHealth\\\\\\\\\\\\\\\":[1000.0,250.0,500.0],\\\\\\\\\\\\\\\"baseRegen\\\\\\\\\\\\\\\":[60.0,0.0,60.0],\\\\\\\\\\\\\\\"intendedType\\\\\\\\\\\\\\\":7,\\\\\\\\\\\\\\\"parts\\\\\\\\\\\\\\\":[{\\\\\\\\\\\\\\\"location\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\\":0.2485615760087967,\\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\\":0.0},\\\\\\\\\\\\\\\"rotation\\\\\\\\\\\\\\\":0.0,\\\\\\\\\\\\\\\"mirrored\\\\\\\\\\\\\\\":false,\\\\\\\\\\\\\\\"abilityID\\\\\\\\\\\\\\\":6,\\\\\\\\\\\\\\\"tier\\\\\\\\\\\\\\\":1,\\\\\\\\\\\\\\\"secondaryData\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"partID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"SmallSide4\\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\\"location\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\\":-0.2485615760087967,\\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\\":0.0},\\\\\\\\\\\\\\\"rotation\\\\\\\\\\\\\\\":0.0,\\\\\\\\\\\\\\\"mirrored\\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\\"abilityID\\\\\\\\\\\\\\\":6,\\\\\\\\\\\\\\\"tier\\\\\\\\\\\\\\\":1,\\\\\\\\\\\\\\\"secondaryData\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"partID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"SmallSide4\\\\\\\\\\\\\\\"}],\\\\\\\\\\\\\\\"dialogue\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"instanceID\\\\\\\\\\\\\\\":0}}\\\\\\\",\\\\\\\"energyCost\\\\\\\":150.0,\\\\\\\"delay\\\\\\\":3.0,\\\\\\\"cooldown\\\\\\\":15.0,\\\\\\\"type\\\\\\\":4}\\\",\\\"partID\\\":\\\"SmallWing2\\\"},{\\\"location\\\":{\\\"x\\\":-0.5333333611488342,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":1,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"{\\\\\\\"drone\\\\\\\":\\\\\\\"{\\\\\\\\\\\\\\\"entityName\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Worker Drone\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_light\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreShellSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"worker_drone_shell_sprite\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"shellHealth\\\\\\\\\\\\\\\":[1000.0,250.0,500.0],\\\\\\\\\\\\\\\"baseRegen\\\\\\\\\\\\\\\":[60.0,0.0,60.0],\\\\\\\\\\\\\\\"intendedType\\\\\\\\\\\\\\\":7,\\\\\\\\\\\\\\\"parts\\\\\\\\\\\\\\\":[],\\\\\\\\\\\\\\\"dialogue\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"instanceID\\\\\\\\\\\\\\\":0}}\\\\\\\",\\\\\\\"energyCost\\\\\\\":100.0,\\\\\\\"delay\\\\\\\":2.0,\\\\\\\"cooldown\\\\\\\":10.0,\\\\\\\"type\\\\\\\":1}\\\",\\\"partID\\\":\\\"SmallWing2\\\"}],\\\"dialogue\\\":{\\\"instanceID\\\":0},\\\"useCustomDroneType\\\":false,\\\"customDroneType\\\":0}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":0.0,\"y\":0.0},\"patrolPath\":{\"waypoints\":[]}},\"timePerSpawn\":8,\"radius\":15.0}],\"waveSetPath\":\"\",\"rectangleEffectSkin\":0,\"backgroundTileSkin\":0,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 610-740.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 610-740.json new file mode 100644 index 000000000..bc02df9b7 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 610-740.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Sector 610-740\",\"bounds\":{\"x\":490,\"y\":-410,\"w\":430,\"h\":360},\"type\":5,\"backgroundColor\":{\"r\":0.15000000596046449,\"g\":0.15000000596046449,\"b\":0.15000000596046449,\"a\":1.0},\"entities\":[{\"name\":\"ShellCore\",\"ID\":\"660\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Southern Missile\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":860.0,\"y\":-585.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":859.7671508789063,\"y\":-585.135498046875},\"ID\":0,\"children\":[23]},{\"position\":{\"x\":801.5738525390625,\"y\":-638.574951171875},\"ID\":23,\"children\":[25]},{\"position\":{\"x\":875.4163208007813,\"y\":-670.5267944335938},\"ID\":25,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"661\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Southern Missile\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":870.0,\"y\":-462.5},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":869.9085693359375,\"y\":-462.7513122558594},\"ID\":0,\"children\":[6]},{\"position\":{\"x\":790.632568359375,\"y\":-564.7964477539063},\"ID\":6,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"662\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Southern Missile\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":645.0,\"y\":-607.5},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":644.8618774414063,\"y\":-607.5843505859375},\"ID\":0,\"children\":[5]},{\"position\":{\"x\":520.9558715820313,\"y\":-558.2124633789063},\"ID\":5,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"663\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Southern Missile\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":672.5,\"y\":-647.5},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":671.9263916015625,\"y\":-647.6168823242188},\"ID\":0,\"children\":[40]},{\"position\":{\"x\":722.571533203125,\"y\":-703.4515380859375},\"ID\":40,\"children\":[41]},{\"position\":{\"x\":690.5817260742188,\"y\":-754.9291381835938},\"ID\":41,\"children\":[42]},{\"position\":{\"x\":632.5726928710938,\"y\":-742.2154541015625},\"ID\":42,\"children\":[43]},{\"position\":{\"x\":617.5020751953125,\"y\":-696.1038818359375},\"ID\":43,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"664\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Southern Missile\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":527.5,\"y\":-692.5},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":527.2801513671875,\"y\":-692.6990966796875},\"ID\":0,\"children\":[1]},{\"position\":{\"x\":543.3432006835938,\"y\":-660.9149169921875},\"ID\":1,\"children\":[2]},{\"position\":{\"x\":570.9767456054688,\"y\":-681.8035888671875},\"ID\":2,\"children\":[3]},{\"position\":{\"x\":584.31005859375,\"y\":-730.1731567382813},\"ID\":3,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"665\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Rusher\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":850.0,\"y\":-632.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"666\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Southern Missile\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":562.5,\"y\":-537.5},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":562.2931518554688,\"y\":-537.6441040039063},\"ID\":0,\"children\":[37]},{\"position\":{\"x\":658.1906127929688,\"y\":-498.89141845703127},\"ID\":37,\"children\":[38]},{\"position\":{\"x\":598.9277954101563,\"y\":-445.3069152832031},\"ID\":38,\"children\":[39]},{\"position\":{\"x\":530.920166015625,\"y\":-455.80352783203127},\"ID\":39,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"667\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Southern Missile\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":705.0,\"y\":-655.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":704.760498046875,\"y\":-654.0043334960938},\"ID\":0,\"children\":[28]},{\"position\":{\"x\":671.1705932617188,\"y\":-570.2587280273438},\"ID\":28,\"children\":[29]},{\"position\":{\"x\":702.9773559570313,\"y\":-583.3244018554688},\"ID\":29,\"children\":[30]},{\"position\":{\"x\":730.7930908203125,\"y\":-592.5487060546875},\"ID\":30,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"668\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Southern Missile\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":750.0,\"y\":-730.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":750.9286499023438,\"y\":-729.80029296875},\"ID\":0,\"children\":[20]},{\"position\":{\"x\":829.8473510742188,\"y\":-755.5764770507813},\"ID\":20,\"children\":[22]},{\"position\":{\"x\":876.8834838867188,\"y\":-696.562255859375},\"ID\":22,\"children\":[23]},{\"position\":{\"x\":847.257080078125,\"y\":-640.365966796875},\"ID\":23,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"669\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Southern Missile\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":685.0,\"y\":-532.5},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":684.4395751953125,\"y\":-530.6452026367188},\"ID\":0,\"children\":[17]},{\"position\":{\"x\":642.8451538085938,\"y\":-446.27996826171877},\"ID\":17,\"children\":[18]},{\"position\":{\"x\":563.359619140625,\"y\":-496.72747802734377},\"ID\":18,\"children\":[19]},{\"position\":{\"x\":551.0582885742188,\"y\":-566.3107299804688},\"ID\":19,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"670\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Southern Missile\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":652.5,\"y\":-735.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":650.6888427734375,\"y\":-734.9070434570313},\"ID\":0,\"children\":[13]},{\"position\":{\"x\":529.42333984375,\"y\":-703.0722045898438},\"ID\":13,\"children\":[15]},{\"position\":{\"x\":580.025146484375,\"y\":-676.661376953125},\"ID\":15,\"children\":[16]},{\"position\":{\"x\":630.99755859375,\"y\":-666.3297729492188},\"ID\":16,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"671\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Missile Gladiator\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":605.0,\"y\":-590.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":603.0728149414063,\"y\":-696.2454833984375},\"ID\":0,\"children\":[28]},{\"position\":{\"x\":806.8886108398438,\"y\":-701.2273559570313},\"ID\":28,\"children\":[29]},{\"position\":{\"x\":801.90673828125,\"y\":-489.9679870605469},\"ID\":29,\"children\":[32]},{\"position\":{\"x\":614.0355224609375,\"y\":-490.0926513671875},\"ID\":32,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"672\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Missile Gladiator\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":805.0,\"y\":-590.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":804.1032104492188,\"y\":-490.7945556640625},\"ID\":0,\"children\":[23]},{\"position\":{\"x\":602.947021484375,\"y\":-488.6279602050781},\"ID\":23,\"children\":[24]},{\"position\":{\"x\":604.2703247070313,\"y\":-699.5768432617188},\"ID\":24,\"children\":[27]},{\"position\":{\"x\":806.8886108398438,\"y\":-700.2847290039063},\"ID\":27,\"children\":[]}]}},{\"name\":\"flag_scourgebattlecorespawn\",\"ID\":\"673\",\"faction\":0,\"assetID\":\"flag\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":567.5,\"y\":-585.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"610-740-beamer\",\"faction\":0,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Beamer\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":535.0,\"y\":-630.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"674\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Southern Missile\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":877.5,\"y\":-547.5},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":877.017578125,\"y\":-547.3853149414063},\"ID\":0,\"children\":[12]},{\"position\":{\"x\":804.5233154296875,\"y\":-561.44580078125},\"ID\":12,\"children\":[17]},{\"position\":{\"x\":757.0594482421875,\"y\":-541.3412475585938},\"ID\":17,\"children\":[18]},{\"position\":{\"x\":732.62939453125,\"y\":-506.2461242675781},\"ID\":18,\"children\":[19]},{\"position\":{\"x\":763.9900512695313,\"y\":-481.89654541015627},\"ID\":19,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"675\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Rusher\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":570.0,\"y\":-502.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"676\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Southern Missile\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":805.0,\"y\":-490.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":805.2927856445313,\"y\":-490.74853515625},\"ID\":0,\"children\":[9]},{\"position\":{\"x\":863.8792114257813,\"y\":-552.8516235351563},\"ID\":9,\"children\":[10]},{\"position\":{\"x\":817.3634033203125,\"y\":-604.9368286132813},\"ID\":10,\"children\":[11]},{\"position\":{\"x\":865.7967529296875,\"y\":-634.3558959960938},\"ID\":11,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"677\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Rusher\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":697.5,\"y\":-470.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"678\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Rusher\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":690.0,\"y\":-617.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"679\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Rusher\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":775.0,\"y\":-650.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"680\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Southern Missile\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":617.5,\"y\":-682.5},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":618.0443115234375,\"y\":-682.8349609375},\"ID\":0,\"children\":[1]},{\"position\":{\"x\":679.0545043945313,\"y\":-761.431640625},\"ID\":1,\"children\":[2]},{\"position\":{\"x\":759.3474731445313,\"y\":-688.160888671875},\"ID\":2,\"children\":[4]},{\"position\":{\"x\":709.1322021484375,\"y\":-658.5806884765625},\"ID\":4,\"children\":[5]},{\"position\":{\"x\":673.9779052734375,\"y\":-650.7720336914063},\"ID\":5,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"681\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Rusher\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":645.0,\"y\":-662.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"682\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Southern Missile\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":637.5,\"y\":-567.5},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":638.47119140625,\"y\":-567.5126342773438},\"ID\":0,\"children\":[8]},{\"position\":{\"x\":724.93603515625,\"y\":-588.3754272460938},\"ID\":8,\"children\":[9]},{\"position\":{\"x\":671.2318725585938,\"y\":-629.5806884765625},\"ID\":9,\"children\":[]}]}},{\"name\":\"Defense Turret\",\"ID\":\"683\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":755.0,\"y\":-602.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"684\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":775.0,\"y\":-602.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"685\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":775.0,\"y\":-582.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"686\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":755.0,\"y\":-582.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"687\",\"faction\":1,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":765.0,\"y\":-592.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Power Rock\",\"ID\":\"688\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":762.5,\"y\":-590.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Map Background 3\",\"ID\":\"689\",\"faction\":0,\"assetID\":\"mapbg3\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":705.0,\"y\":-590.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[\"660\",\"661\",\"662\",\"663\",\"664\",\"665\",\"666\",\"667\",\"668\",\"669\",\"670\",\"671\",\"672\",\"610-740-beamer\",\"674\",\"675\",\"676\",\"677\",\"678\",\"679\",\"680\",\"681\",\"682\"],\"hasMusic\":true,\"musicID\":\"music_overworld\",\"partDropsDisabled\":false,\"backgroundSpawns\":[{\"entity\":{\"name\":\"Unnamed\",\"ID\":\"\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"{\\\"entityName\\\":\\\"Unnamed\\\",\\\"coreSpriteID\\\":\\\"core1_light\\\",\\\"coreShellSpriteID\\\":\\\"core1_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":0,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":-0.7466667294502258,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":5,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"{\\\\\\\"drone\\\\\\\":\\\\\\\"{\\\\\\\\\\\\\\\"entityName\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Strike Drone\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_light\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreShellSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_shell\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"shellHealth\\\\\\\\\\\\\\\":[1000.0,250.0,500.0],\\\\\\\\\\\\\\\"baseRegen\\\\\\\\\\\\\\\":[60.0,0.0,60.0],\\\\\\\\\\\\\\\"intendedType\\\\\\\\\\\\\\\":7,\\\\\\\\\\\\\\\"parts\\\\\\\\\\\\\\\":[{\\\\\\\\\\\\\\\"location\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\\":-0.2485615760087967,\\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\\":0.0},\\\\\\\\\\\\\\\"rotation\\\\\\\\\\\\\\\":0.0,\\\\\\\\\\\\\\\"mirrored\\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\\"abilityID\\\\\\\\\\\\\\\":5,\\\\\\\\\\\\\\\"tier\\\\\\\\\\\\\\\":1,\\\\\\\\\\\\\\\"secondaryData\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"partID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"SmallWing1\\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\\"location\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\\":0.2485615760087967,\\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\\":0.0},\\\\\\\\\\\\\\\"rotation\\\\\\\\\\\\\\\":0.0,\\\\\\\\\\\\\\\"mirrored\\\\\\\\\\\\\\\":false,\\\\\\\\\\\\\\\"abilityID\\\\\\\\\\\\\\\":0,\\\\\\\\\\\\\\\"tier\\\\\\\\\\\\\\\":0,\\\\\\\\\\\\\\\"secondaryData\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"partID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"SmallWing1\\\\\\\\\\\\\\\"}],\\\\\\\\\\\\\\\"dialogue\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"instanceID\\\\\\\\\\\\\\\":0}}\\\\\\\",\\\\\\\"energyCost\\\\\\\":150.0,\\\\\\\"delay\\\\\\\":3.0,\\\\\\\"cooldown\\\\\\\":15.0,\\\\\\\"type\\\\\\\":2}\\\",\\\"partID\\\":\\\"SmallWing1\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":0.7466667294502258,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":5,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"{\\\\\\\"drone\\\\\\\":\\\\\\\"{\\\\\\\\\\\\\\\"entityName\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Strike Drone\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_light\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreShellSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_shell\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"shellHealth\\\\\\\\\\\\\\\":[1000.0,250.0,500.0],\\\\\\\\\\\\\\\"baseRegen\\\\\\\\\\\\\\\":[60.0,0.0,60.0],\\\\\\\\\\\\\\\"intendedType\\\\\\\\\\\\\\\":7,\\\\\\\\\\\\\\\"parts\\\\\\\\\\\\\\\":[{\\\\\\\\\\\\\\\"location\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\\":-0.2485615760087967,\\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\\":0.0},\\\\\\\\\\\\\\\"rotation\\\\\\\\\\\\\\\":0.0,\\\\\\\\\\\\\\\"mirrored\\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\\"abilityID\\\\\\\\\\\\\\\":5,\\\\\\\\\\\\\\\"tier\\\\\\\\\\\\\\\":1,\\\\\\\\\\\\\\\"secondaryData\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"partID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"SmallWing1\\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\\"location\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\\":0.2485615760087967,\\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\\":0.0},\\\\\\\\\\\\\\\"rotation\\\\\\\\\\\\\\\":0.0,\\\\\\\\\\\\\\\"mirrored\\\\\\\\\\\\\\\":false,\\\\\\\\\\\\\\\"abilityID\\\\\\\\\\\\\\\":0,\\\\\\\\\\\\\\\"tier\\\\\\\\\\\\\\\":0,\\\\\\\\\\\\\\\"secondaryData\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"partID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"SmallWing1\\\\\\\\\\\\\\\"}],\\\\\\\\\\\\\\\"dialogue\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"instanceID\\\\\\\\\\\\\\\":0}}\\\\\\\",\\\\\\\"energyCost\\\\\\\":150.0,\\\\\\\"delay\\\\\\\":3.0,\\\\\\\"cooldown\\\\\\\":15.0,\\\\\\\"type\\\\\\\":2}\\\",\\\"partID\\\":\\\"SmallWing1\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":0.5333333611488342,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":18,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"{\\\\\\\"drone\\\\\\\":\\\\\\\"{\\\\\\\\\\\\\\\"entityName\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Gun Drone\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_light\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreShellSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_shell\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"shellHealth\\\\\\\\\\\\\\\":[1000.0,250.0,500.0],\\\\\\\\\\\\\\\"baseRegen\\\\\\\\\\\\\\\":[60.0,0.0,60.0],\\\\\\\\\\\\\\\"intendedType\\\\\\\\\\\\\\\":7,\\\\\\\\\\\\\\\"parts\\\\\\\\\\\\\\\":[{\\\\\\\\\\\\\\\"location\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\\":0.2485615760087967,\\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\\":0.0},\\\\\\\\\\\\\\\"rotation\\\\\\\\\\\\\\\":0.0,\\\\\\\\\\\\\\\"mirrored\\\\\\\\\\\\\\\":false,\\\\\\\\\\\\\\\"abilityID\\\\\\\\\\\\\\\":6,\\\\\\\\\\\\\\\"tier\\\\\\\\\\\\\\\":1,\\\\\\\\\\\\\\\"secondaryData\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"partID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"SmallSide4\\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\\"location\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\\":-0.2485615760087967,\\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\\":0.0},\\\\\\\\\\\\\\\"rotation\\\\\\\\\\\\\\\":0.0,\\\\\\\\\\\\\\\"mirrored\\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\\"abilityID\\\\\\\\\\\\\\\":6,\\\\\\\\\\\\\\\"tier\\\\\\\\\\\\\\\":1,\\\\\\\\\\\\\\\"secondaryData\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"partID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"SmallSide4\\\\\\\\\\\\\\\"}],\\\\\\\\\\\\\\\"dialogue\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"instanceID\\\\\\\\\\\\\\\":0}}\\\\\\\",\\\\\\\"energyCost\\\\\\\":150.0,\\\\\\\"delay\\\\\\\":3.0,\\\\\\\"cooldown\\\\\\\":15.0,\\\\\\\"type\\\\\\\":4}\\\",\\\"partID\\\":\\\"SmallWing2\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":-0.5333333611488342,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":1,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"{\\\\\\\"drone\\\\\\\":\\\\\\\"{\\\\\\\\\\\\\\\"entityName\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Worker Drone\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"drone_light\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coreShellSpriteID\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"worker_drone_shell_sprite\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"shellHealth\\\\\\\\\\\\\\\":[1000.0,250.0,500.0],\\\\\\\\\\\\\\\"baseRegen\\\\\\\\\\\\\\\":[60.0,0.0,60.0],\\\\\\\\\\\\\\\"intendedType\\\\\\\\\\\\\\\":7,\\\\\\\\\\\\\\\"parts\\\\\\\\\\\\\\\":[],\\\\\\\\\\\\\\\"dialogue\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"instanceID\\\\\\\\\\\\\\\":0}}\\\\\\\",\\\\\\\"energyCost\\\\\\\":100.0,\\\\\\\"delay\\\\\\\":2.0,\\\\\\\"cooldown\\\\\\\":10.0,\\\\\\\"type\\\\\\\":1}\\\",\\\"partID\\\":\\\"SmallWing2\\\",\\\"shiny\\\":false}],\\\"dialogue\\\":{\\\"m_FileID\\\":0,\\\"m_PathID\\\":0},\\\"useCustomDroneType\\\":false,\\\"customDroneType\\\":0}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":0.0,\"y\":0.0},\"patrolPath\":{\"waypoints\":[]}},\"timePerSpawn\":8,\"radius\":15.0},{\"entity\":{\"name\":\"Mini Drone\",\"ID\":\"\",\"faction\":1,\"assetID\":\"mini_drone_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":0.0,\"y\":0.0},\"patrolPath\":{\"waypoints\":[]}},\"timePerSpawn\":8,\"radius\":15.0},{\"entity\":{\"name\":\"Unnamed\",\"ID\":\"\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"{\\\"entityName\\\":\\\"Unnamed\\\",\\\"coreSpriteID\\\":\\\"core1_light\\\",\\\"coreShellSpriteID\\\":\\\"core1_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":0,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":-0.30000001192092898,\\\"y\\\":0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":5,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallSide2\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":-0.30000001192092898,\\\"y\\\":-0.30000001192092898},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":2,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallSide3\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":0.30000001192092898,\\\"y\\\":0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":6,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallSide2\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":0.30000001192092898,\\\"y\\\":-0.30000001192092898},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":17,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallSide3\\\",\\\"shiny\\\":false}],\\\"dialogue\\\":{\\\"m_FileID\\\":0,\\\"m_PathID\\\":0},\\\"useCustomDroneType\\\":false,\\\"customDroneType\\\":0}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":0.0,\"y\":0.0},\"patrolPath\":{\"waypoints\":[]}},\"timePerSpawn\":8,\"radius\":15.0},{\"entity\":{\"name\":\"Strike Drone\",\"ID\":\"\",\"faction\":1,\"assetID\":\"strike_drone_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":0.0,\"y\":0.0},\"patrolPath\":{\"waypoints\":[]}},\"timePerSpawn\":8,\"radius\":15.0}],\"waveSetPath\":\"\",\"rectangleEffectSkin\":0,\"backgroundTileSkin\":0,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 660-1550.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 660-1550.json new file mode 100644 index 000000000..2c1dd4b00 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 660-1550.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Sector 660-1550\",\"bounds\":{\"x\":540,\"y\":-1220,\"w\":100,\"h\":120},\"type\":5,\"backgroundColor\":{\"r\":0.15000000596046449,\"g\":0.15000000596046449,\"b\":0.15000000596046449,\"a\":1.0},\"entities\":[{\"name\":\"Map Background 1\",\"ID\":\"690\",\"faction\":0,\"assetID\":\"mapbg1\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":590.0,\"y\":-1280.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"691\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Advanced Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":592.5,\"y\":-1235.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":589.3405151367188,\"y\":-1248.9373779296875},\"ID\":0,\"children\":[3]},{\"position\":{\"x\":588.8651123046875,\"y\":-1260.839111328125},\"ID\":3,\"children\":[4]},{\"position\":{\"x\":590.5050659179688,\"y\":-1270.6788330078125},\"ID\":4,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"692\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Advanced Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":555.0,\"y\":-1300.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":564.8746948242188,\"y\":-1299.010986328125},\"ID\":0,\"children\":[1]},{\"position\":{\"x\":572.59375,\"y\":-1297.0986328125},\"ID\":1,\"children\":[2]},{\"position\":{\"x\":588.1813354492188,\"y\":-1285.2076416015625},\"ID\":2,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"693\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Advanced Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":565.0,\"y\":-1245.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":568.9315185546875,\"y\":-1249.048095703125},\"ID\":0,\"children\":[5]},{\"position\":{\"x\":574.5003051757813,\"y\":-1256.78759765625},\"ID\":5,\"children\":[6]},{\"position\":{\"x\":581.5895385742188,\"y\":-1269.6746826171875},\"ID\":6,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"694\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Advanced Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":555.0,\"y\":-1270.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":561.5491943359375,\"y\":-1272.1385498046875},\"ID\":0,\"children\":[1]},{\"position\":{\"x\":572.6821899414063,\"y\":-1276.8280029296875},\"ID\":1,\"children\":[3]},{\"position\":{\"x\":581.4750366210938,\"y\":-1278.1103515625},\"ID\":3,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"695\",\"faction\":0,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Crusader\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":625.0,\"y\":-1290.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":622.6952514648438,\"y\":-1290.0819091796875},\"ID\":0,\"children\":[7]},{\"position\":{\"x\":607.9855346679688,\"y\":-1289.6148681640625},\"ID\":7,\"children\":[8]},{\"position\":{\"x\":592.8682861328125,\"y\":-1280.4739990234375},\"ID\":8,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"696\",\"faction\":0,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Crusader\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":617.5,\"y\":-1317.5},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":607.3993530273438,\"y\":-1310.142822265625},\"ID\":0,\"children\":[9]},{\"position\":{\"x\":601.1893920898438,\"y\":-1301.2308349609375},\"ID\":9,\"children\":[10]},{\"position\":{\"x\":592.9827270507813,\"y\":-1288.2247314453125},\"ID\":10,\"children\":[]}]}},{\"name\":\"Missile Turret\",\"ID\":\"697\",\"faction\":0,\"assetID\":\"missile_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":612.5,\"y\":-1310.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Turret\",\"ID\":\"698\",\"faction\":0,\"assetID\":\"missile_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":612.5,\"y\":-1282.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Turret\",\"ID\":\"699\",\"faction\":0,\"assetID\":\"missile_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":612.5,\"y\":-1297.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"700\",\"faction\":0,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":610.0,\"y\":-1275.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"701\",\"faction\":0,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":610.0,\"y\":-1290.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"702\",\"faction\":0,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":610.0,\"y\":-1305.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"703\",\"faction\":0,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":605.0,\"y\":-1310.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Station\",\"ID\":\"704\",\"faction\":1,\"assetID\":\"missile_station\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":575.0,\"y\":-1235.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Station\",\"ID\":\"705\",\"faction\":1,\"assetID\":\"missile_station\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":555.0,\"y\":-1255.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Station\",\"ID\":\"706\",\"faction\":1,\"assetID\":\"missile_station\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":555.0,\"y\":-1285.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Station\",\"ID\":\"707\",\"faction\":0,\"assetID\":\"missile_station\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":625.0,\"y\":-1275.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Station\",\"ID\":\"708\",\"faction\":0,\"assetID\":\"missile_station\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":625.0,\"y\":-1305.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Station\",\"ID\":\"709\",\"faction\":0,\"assetID\":\"missile_station\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":605.0,\"y\":-1325.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[\"0g010908020f020900030900040900040800040700040600050600040500050500050400050300050200060200070200080200080208000f070202060202050202050302050402050502050602040502040602040702040802040902030902020902010902050607020f040602050501040502040702050401040802050301040902050201030902060201020902070201010902080201040507000f04060305050005060304070305040004080305030004090305020003090306020002090307020001090308020004060a020f05060004050104070305050004080305040004090305030003090305020002090306020001090307020008020005050a000f050603040502050401040603050301040703050201040803060201040903070201030903080201020903010903050409010f050503050301050603040503050201040603060201040703070201040803080201040903030903020903010903050309010f050403050201050503060201050603040503070201040603080201040703040803040903030903020903010903040709010f040601040803050601040501040903050501030903050401020903050301010903050201060201070201080201040809010f040701040903040601030903050601040501020903050501010903050401050301050201060201070201080201050207000f050303060200050403070200050503080200050603040503040603040703040803040903030903020903010903040907020f040801030902040701020902040601010902050601040501050501050401050301050201060201070201080201060209000f050202070200050302080200050402050502050602040502040602040702040802040902030902020902010902020909000f010902030900040900040800040700040600050600040500050500050400050300050200060200070200080200030909000f040900020902040800010902040700040600050600040500050500050400050300050200060200070200080200070209000f080200060202050202050302050402050502050602040502040602040702040802040902030902020902010902\",\"010805040000\",\"010106040000\",\"010301040000\",\"010103040000\",\"01060a040000\",\"010808040000\"],\"platform\":{\"instanceID\":0},\"targets\":[\"691\",\"692\",\"693\",\"694\",\"695\",\"696\"],\"hasMusic\":true,\"musicID\":\"music_overworld_enemy\",\"partDropsDisabled\":false,\"backgroundSpawns\":[],\"waveSetPath\":\"\",\"rectangleEffectSkin\":1,\"backgroundTileSkin\":1,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 660-1670.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 660-1670.json new file mode 100644 index 000000000..f8eaa1814 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 660-1670.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Sector 660-1670\",\"bounds\":{\"x\":540,\"y\":-1340,\"w\":100,\"h\":120},\"type\":0,\"backgroundColor\":{\"r\":0.4000000059604645,\"g\":0.0,\"b\":0.0,\"a\":1.0},\"entities\":[{\"name\":\"Map Background 3\",\"ID\":\"710\",\"faction\":0,\"assetID\":\"mapbg3\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":590.0,\"y\":-1397.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"711\",\"faction\":0,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":597.5,\"y\":-1397.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"712\",\"faction\":0,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":597.5,\"y\":-1402.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"713\",\"faction\":0,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":595.0,\"y\":-1405.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"714\",\"faction\":0,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":595.0,\"y\":-1395.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"715\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Basic Patrol\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":552.5,\"y\":-1397.5},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":552.3427124023438,\"y\":-1397.6572265625},\"ID\":0,\"children\":[6]},{\"position\":{\"x\":589.9984130859375,\"y\":-1399.843017578125},\"ID\":6,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"716\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Basic Patrol\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":552.5,\"y\":-1400.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":551.9916381835938,\"y\":-1399.6903076171875},\"ID\":0,\"children\":[3]},{\"position\":{\"x\":589.9984130859375,\"y\":-1400.001708984375},\"ID\":3,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"717\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Basic Patrol\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":552.5,\"y\":-1402.5},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":552.388427734375,\"y\":-1402.1875},\"ID\":0,\"children\":[2]},{\"position\":{\"x\":589.925048828125,\"y\":-1399.6903076171875},\"ID\":2,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"718\",\"faction\":0,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Frigate\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":620.0,\"y\":-1392.5},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":619.86767578125,\"y\":-1392.504150390625},\"ID\":0,\"children\":[9]},{\"position\":{\"x\":589.9049072265625,\"y\":-1399.6903076171875},\"ID\":9,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"719\",\"faction\":0,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Frigate\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":620.0,\"y\":-1407.5},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":619.8657836914063,\"y\":-1407.499267578125},\"ID\":0,\"children\":[11]},{\"position\":{\"x\":589.7869873046875,\"y\":-1399.843017578125},\"ID\":11,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"720\",\"faction\":0,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Frigate\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":625.0,\"y\":-1400.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":624.90283203125,\"y\":-1400.3131103515625},\"ID\":0,\"children\":[10]},{\"position\":{\"x\":589.8267211914063,\"y\":-1400.001708984375},\"ID\":10,\"children\":[]}]}},{\"name\":\"Missile Station\",\"ID\":\"721\",\"faction\":0,\"assetID\":\"missile_station\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":625.0,\"y\":-1375.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Station\",\"ID\":\"722\",\"faction\":0,\"assetID\":\"missile_station\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":625.0,\"y\":-1425.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Station\",\"ID\":\"723\",\"faction\":1,\"assetID\":\"missile_station\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":555.0,\"y\":-1425.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Station\",\"ID\":\"724\",\"faction\":1,\"assetID\":\"missile_station\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":555.0,\"y\":-1375.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[\"010103040000\",\"010803040000\",\"010108040000\",\"010808040000\"],\"platform\":{\"instanceID\":0},\"targets\":[\"715\",\"716\",\"717\",\"718\",\"719\",\"720\"],\"hasMusic\":true,\"musicID\":\"music_overworld_enemy\",\"partDropsDisabled\":false,\"backgroundSpawns\":[],\"waveSetPath\":\"\",\"rectangleEffectSkin\":1,\"backgroundTileSkin\":1,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 690-2150.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 690-2150.json new file mode 100644 index 000000000..901dd73e6 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 690-2150.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Sector 690-2150\",\"bounds\":{\"x\":570,\"y\":-1820,\"w\":290,\"h\":190},\"type\":0,\"backgroundColor\":{\"r\":0.0,\"g\":0.30000001192092898,\"b\":0.30000001192092898,\"a\":1.0},\"entities\":[{\"name\":\"ShellCore\",\"ID\":\"725\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Raider\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":757.5,\"y\":-1972.5},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":788.1399536132813,\"y\":-1953.8389892578125},\"ID\":0,\"children\":[19]},{\"position\":{\"x\":825.1529541015625,\"y\":-1934.49267578125},\"ID\":19,\"children\":[20]},{\"position\":{\"x\":807.5194091796875,\"y\":-1903.8883056640625},\"ID\":20,\"children\":[21]},{\"position\":{\"x\":825.0140380859375,\"y\":-1876.1392822265625},\"ID\":21,\"children\":[22]},{\"position\":{\"x\":811.07177734375,\"y\":-1856.541748046875},\"ID\":22,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"726\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Raider\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":702.5,\"y\":-1942.5},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":669.0028076171875,\"y\":-1988.632080078125},\"ID\":0,\"children\":[5]},{\"position\":{\"x\":750.57373046875,\"y\":-1987.931396484375},\"ID\":5,\"children\":[6]},{\"position\":{\"x\":744.42529296875,\"y\":-1974.920166015625},\"ID\":6,\"children\":[8]},{\"position\":{\"x\":713.6559448242188,\"y\":-1974.56298828125},\"ID\":8,\"children\":[9]},{\"position\":{\"x\":704.6909790039063,\"y\":-1974.219482421875},\"ID\":9,\"children\":[10]},{\"position\":{\"x\":695.0184326171875,\"y\":-1974.56298828125},\"ID\":10,\"children\":[13]},{\"position\":{\"x\":678.4967651367188,\"y\":-1974.920166015625},\"ID\":13,\"children\":[14]},{\"position\":{\"x\":671.9911499023438,\"y\":-1974.56298828125},\"ID\":14,\"children\":[15]},{\"position\":{\"x\":670.5828857421875,\"y\":-1979.8388671875},\"ID\":15,\"children\":[17]},{\"position\":{\"x\":669.8821411132813,\"y\":-1983.356201171875},\"ID\":17,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"727\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Cruiser\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":827.5,\"y\":-1922.5},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":809.3753662109375,\"y\":-1931.192138671875},\"ID\":0,\"children\":[14]},{\"position\":{\"x\":790.897705078125,\"y\":-1944.943359375},\"ID\":14,\"children\":[15]},{\"position\":{\"x\":755.2353515625,\"y\":-1950.097900390625},\"ID\":15,\"children\":[16]},{\"position\":{\"x\":735.9362182617188,\"y\":-1926.893798828125},\"ID\":16,\"children\":[17]},{\"position\":{\"x\":765.5877075195313,\"y\":-1908.0491943359375},\"ID\":17,\"children\":[18]},{\"position\":{\"x\":789.0016479492188,\"y\":-1913.640380859375},\"ID\":18,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"728\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Raider\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":652.5,\"y\":-1970.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":620.7750854492188,\"y\":-1968.2763671875},\"ID\":0,\"children\":[1]},{\"position\":{\"x\":643.332763671875,\"y\":-1927.442626953125},\"ID\":1,\"children\":[2]},{\"position\":{\"x\":628.3978881835938,\"y\":-1899.58837890625},\"ID\":2,\"children\":[3]},{\"position\":{\"x\":618.0886840820313,\"y\":-1873.489990234375},\"ID\":3,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"729\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Basic Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":752.5,\"y\":-1867.5},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":785.1378173828125,\"y\":-1882.4959716796875},\"ID\":0,\"children\":[36,37]},{\"position\":{\"x\":791.3670043945313,\"y\":-1894.9542236328125},\"ID\":36,\"children\":[]},{\"position\":{\"x\":743.2379150390625,\"y\":-1897.1033935546875},\"ID\":37,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"730\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Basic Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":712.5,\"y\":-1852.5},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":623.2794799804688,\"y\":-1906.3966064453125},\"ID\":0,\"children\":[30]},{\"position\":{\"x\":676.873779296875,\"y\":-1943.3519287109375},\"ID\":30,\"children\":[31]},{\"position\":{\"x\":718.0181884765625,\"y\":-1893.08203125},\"ID\":31,\"children\":[32]},{\"position\":{\"x\":738.29150390625,\"y\":-1948.086669921875},\"ID\":32,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"731\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Basic Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":665.0,\"y\":-1845.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":692.9301147460938,\"y\":-1901.4017333984375},\"ID\":0,\"children\":[34,35]},{\"position\":{\"x\":733.9569702148438,\"y\":-1864.0098876953125},\"ID\":34,\"children\":[]},{\"position\":{\"x\":672.7315063476563,\"y\":-1859.2918701171875},\"ID\":35,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"732\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Basic Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":775.0,\"y\":-1907.5},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":816.9301147460938,\"y\":-1873.4627685546875},\"ID\":0,\"children\":[38]},{\"position\":{\"x\":788.5714721679688,\"y\":-1890.5108642578125},\"ID\":38,\"children\":[39]},{\"position\":{\"x\":766.8701171875,\"y\":-1849.6939697265625},\"ID\":39,\"children\":[40]},{\"position\":{\"x\":722.6195068359375,\"y\":-1842.39013671875},\"ID\":40,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"733\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Cruiser\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":702.5,\"y\":-1882.5},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":768.9503784179688,\"y\":-1887.33740234375},\"ID\":0,\"children\":[55]},{\"position\":{\"x\":752.3538208007813,\"y\":-1955.404296875},\"ID\":55,\"children\":[56]},{\"position\":{\"x\":667.7311401367188,\"y\":-1933.9317626953125},\"ID\":56,\"children\":[57]},{\"position\":{\"x\":687.4562377929688,\"y\":-1877.6942138671875},\"ID\":57,\"children\":[58]},{\"position\":{\"x\":725.7236938476563,\"y\":-1883.15771484375},\"ID\":58,\"children\":[59]},{\"position\":{\"x\":739.5885009765625,\"y\":-1883.93603515625},\"ID\":59,\"children\":[60]},{\"position\":{\"x\":753.85009765625,\"y\":-1886.2862548828125},\"ID\":60,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"734\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Cruiser\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":627.5,\"y\":-1922.5},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":650.0659790039063,\"y\":-1923.949462890625},\"ID\":0,\"children\":[21]},{\"position\":{\"x\":634.8121337890625,\"y\":-1902.038330078125},\"ID\":21,\"children\":[22]},{\"position\":{\"x\":655.0107421875,\"y\":-1875.146728515625},\"ID\":22,\"children\":[23]},{\"position\":{\"x\":681.9674072265625,\"y\":-1878.5887451171875},\"ID\":23,\"children\":[24]},{\"position\":{\"x\":695.0721435546875,\"y\":-1903.9420166015625},\"ID\":24,\"children\":[26]},{\"position\":{\"x\":674.8819580078125,\"y\":-1914.687744140625},\"ID\":26,\"children\":[]}]}},{\"name\":\"Power Rock\",\"ID\":\"735\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":762.5,\"y\":-1927.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Power Rock\",\"ID\":\"736\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":667.5,\"y\":-1902.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"737\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":657.5,\"y\":-1897.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"738\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":657.5,\"y\":-1907.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"739\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":667.5,\"y\":-1910.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"740\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":667.5,\"y\":-1895.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"741\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":672.5,\"y\":-1902.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"742\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":772.5,\"y\":-1932.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"743\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":772.5,\"y\":-1922.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"744\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":762.5,\"y\":-1935.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"745\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":762.5,\"y\":-1920.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"746\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":757.5,\"y\":-1927.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Turret\",\"ID\":\"747\",\"faction\":1,\"assetID\":\"missile_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":662.5,\"y\":-1902.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Missile Turret\",\"ID\":\"748\",\"faction\":1,\"assetID\":\"missile_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":767.5,\"y\":-1927.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"749\",\"faction\":1,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":665.0,\"y\":-1902.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"750\",\"faction\":1,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":765.0,\"y\":-1927.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Map Background 3\",\"ID\":\"751\",\"faction\":0,\"assetID\":\"mapbg3\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":715.0,\"y\":-1915.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[\"725\",\"726\",\"727\",\"728\",\"729\",\"730\",\"731\",\"732\",\"733\",\"734\"],\"hasMusic\":true,\"musicID\":\"music_overworld_2\",\"partDropsDisabled\":false,\"backgroundSpawns\":[],\"waveSetPath\":\"\",\"rectangleEffectSkin\":1,\"backgroundTileSkin\":1,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 760-1550.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 760-1550.json new file mode 100644 index 000000000..4ae1e4a1b --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 760-1550.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Sector 760-1550\",\"bounds\":{\"x\":640,\"y\":-1220,\"w\":120,\"h\":480},\"type\":0,\"backgroundColor\":{\"r\":0.0,\"g\":0.30000001192092898,\"b\":0.30000001192092898,\"a\":1.0},\"entities\":[{\"name\":\"ShellCore\",\"ID\":\"752\",\"faction\":0,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Frigate\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":687.5,\"y\":-1372.5},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":686.1017456054688,\"y\":-1680.72802734375},\"ID\":0,\"children\":[40]},{\"position\":{\"x\":687.0360717773438,\"y\":-1373.2344970703125},\"ID\":40,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"753\",\"faction\":0,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Frigate\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":715.0,\"y\":-1677.5},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":714.557373046875,\"y\":-1676.249755859375},\"ID\":0,\"children\":[38]},{\"position\":{\"x\":715.2626953125,\"y\":-1373.224365234375},\"ID\":38,\"children\":[39]},{\"position\":{\"x\":715.0245361328125,\"y\":-1673.21337890625},\"ID\":39,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"754\",\"faction\":0,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Frigate\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":735.0,\"y\":-1372.5},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":732.3734741210938,\"y\":-1673.550537109375},\"ID\":0,\"children\":[37]},{\"position\":{\"x\":734.9474487304688,\"y\":-1372.5697021484375},\"ID\":37,\"children\":[]}]}},{\"name\":\"Map Background 5\",\"ID\":\"755\",\"faction\":0,\"assetID\":\"mapbg5\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":700.0,\"y\":-1460.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[\"752\",\"753\",\"754\"],\"hasMusic\":true,\"musicID\":\"music_overworld_2\",\"partDropsDisabled\":false,\"backgroundSpawns\":[],\"waveSetPath\":\"\",\"rectangleEffectSkin\":1,\"backgroundTileSkin\":1,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 760-2030.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 760-2030.json new file mode 100644 index 000000000..bf475a354 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 760-2030.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Sector 760-2030\",\"bounds\":{\"x\":640,\"y\":-1700,\"w\":220,\"h\":120},\"type\":0,\"backgroundColor\":{\"r\":0.0,\"g\":0.30000001192092898,\"b\":0.30000001192092898,\"a\":1.0},\"entities\":[{\"name\":\"ShellCore\",\"ID\":\"756\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Basic Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":740.0,\"y\":-1780.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":721.4992065429688,\"y\":-1735.199462890625},\"ID\":0,\"children\":[51]},{\"position\":{\"x\":736.9639282226563,\"y\":-1769.8775634765625},\"ID\":51,\"children\":[52]},{\"position\":{\"x\":778.5052490234375,\"y\":-1770.5003662109375},\"ID\":52,\"children\":[53]},{\"position\":{\"x\":802.1022338867188,\"y\":-1786.72802734375},\"ID\":53,\"children\":[55]},{\"position\":{\"x\":825.6007690429688,\"y\":-1746.128662109375},\"ID\":55,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"757\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Basic Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":672.5,\"y\":-1735.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":720.8218994140625,\"y\":-1735.9495849609375},\"ID\":0,\"children\":[43,44]},{\"position\":{\"x\":686.7604370117188,\"y\":-1735.9495849609375},\"ID\":43,\"children\":[]},{\"position\":{\"x\":705.509765625,\"y\":-1765.32080078125},\"ID\":44,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"758\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Basic Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":797.5,\"y\":-1752.5},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":739.7520141601563,\"y\":-1751.574951171875},\"ID\":0,\"children\":[39]},{\"position\":{\"x\":769.2772216796875,\"y\":-1764.06640625},\"ID\":39,\"children\":[40]},{\"position\":{\"x\":783.1851196289063,\"y\":-1784.3848876953125},\"ID\":40,\"children\":[42]},{\"position\":{\"x\":818.8516845703125,\"y\":-1756.251708984375},\"ID\":42,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"759\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Basic Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":655.0,\"y\":-1770.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":654.079345703125,\"y\":-1805.52783203125},\"ID\":0,\"children\":[35]},{\"position\":{\"x\":655.1721801757813,\"y\":-1777.4068603515625},\"ID\":35,\"children\":[36]},{\"position\":{\"x\":681.1074829101563,\"y\":-1790.8507080078125},\"ID\":36,\"children\":[38]},{\"position\":{\"x\":674.8617553710938,\"y\":-1799.593505859375},\"ID\":38,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"760\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Basic Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":827.5,\"y\":-1787.5},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":782.97119140625,\"y\":-1791.1181640625},\"ID\":0,\"children\":[31]},{\"position\":{\"x\":801.2504272460938,\"y\":-1786.1240234375},\"ID\":31,\"children\":[32]},{\"position\":{\"x\":804.5350952148438,\"y\":-1779.8721923828125},\"ID\":32,\"children\":[33]},{\"position\":{\"x\":805.7866821289063,\"y\":-1765.7877197265625},\"ID\":33,\"children\":[34]},{\"position\":{\"x\":792.0375366210938,\"y\":-1745.786865234375},\"ID\":34,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"761\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Basic Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":745.0,\"y\":-1715.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":774.1073608398438,\"y\":-1739.2440185546875},\"ID\":0,\"children\":[35]},{\"position\":{\"x\":780.19873046875,\"y\":-1765.0384521484375},\"ID\":35,\"children\":[36]},{\"position\":{\"x\":807.385498046875,\"y\":-1774.8763427734375},\"ID\":36,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"762\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Basic Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":832.5,\"y\":-1717.5},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":853.0479125976563,\"y\":-1729.8642578125},\"ID\":0,\"children\":[32]},{\"position\":{\"x\":827.03369140625,\"y\":-1739.7203369140625},\"ID\":32,\"children\":[33]},{\"position\":{\"x\":792.8029174804688,\"y\":-1743.4576416015625},\"ID\":33,\"children\":[34]},{\"position\":{\"x\":790.6961059570313,\"y\":-1731.751220703125},\"ID\":34,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"763\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Basic Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":695.0,\"y\":-1760.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":759.1234741210938,\"y\":-1752.37939453125},\"ID\":0,\"children\":[30]},{\"position\":{\"x\":782.3921508789063,\"y\":-1772.0550537109375},\"ID\":30,\"children\":[31]},{\"position\":{\"x\":799.0357666015625,\"y\":-1762.21728515625},\"ID\":31,\"children\":[]}]}},{\"name\":\"Map Background 2\",\"ID\":\"764\",\"faction\":0,\"assetID\":\"mapbg2\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":750.0,\"y\":-1760.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[\"756\",\"757\",\"758\",\"759\",\"760\",\"761\",\"762\",\"763\"],\"hasMusic\":true,\"musicID\":\"music_overworld_2\",\"partDropsDisabled\":false,\"backgroundSpawns\":[],\"waveSetPath\":\"\",\"rectangleEffectSkin\":1,\"backgroundTileSkin\":1,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 880-150.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 880-150.json new file mode 100644 index 000000000..cb428d87f --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 880-150.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Sector 880-150\",\"bounds\":{\"x\":760,\"y\":180,\"w\":250,\"h\":350},\"type\":0,\"backgroundColor\":{\"r\":0.0,\"g\":0.30000001192092898,\"b\":0.30000001192092898,\"a\":1.0},\"entities\":[{\"name\":\"Map Background 4\",\"ID\":\"765\",\"faction\":0,\"assetID\":\"mapbg4\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":885.0,\"y\":5.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"880-150-beamer\",\"faction\":0,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Beamer\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":885.0,\"y\":15.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"766\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Block Core\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":900.0,\"y\":-15.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"767\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"{\\\"entityName\\\":\\\"Unnamed\\\",\\\"coreSpriteID\\\":\\\"core1_light\\\",\\\"coreShellSpriteID\\\":\\\"core1_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":0,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":0.5,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":2,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallSide3\\\"},{\\\"location\\\":{\\\"x\\\":-0.5,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":13,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallSide3\\\"},{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":0.30000001192092898},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":20,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallCenter2\\\"},{\\\"location\\\":{\\\"x\\\":0.30000001192092898,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":5,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing2\\\"},{\\\"location\\\":{\\\"x\\\":-0.30000001192092898,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":4,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing2\\\"}],\\\"dialogue\\\":{\\\"instanceID\\\":0},\\\"useCustomDroneType\\\":false,\\\"customDroneType\\\":0}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":905.0,\"y\":55.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"768\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"{\\\"entityName\\\":\\\"Unnamed\\\",\\\"coreSpriteID\\\":\\\"core1_light\\\",\\\"coreShellSpriteID\\\":\\\"core1_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":0,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":0.5,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":2,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallSide3\\\"},{\\\"location\\\":{\\\"x\\\":-0.5,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":13,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallSide3\\\"},{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":0.30000001192092898},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":20,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallCenter2\\\"},{\\\"location\\\":{\\\"x\\\":0.30000001192092898,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":5,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing2\\\"},{\\\"location\\\":{\\\"x\\\":-0.30000001192092898,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":4,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing2\\\"}],\\\"dialogue\\\":{\\\"instanceID\\\":0},\\\"useCustomDroneType\\\":false,\\\"customDroneType\\\":0}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":810.0,\"y\":30.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"769\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"{\\\"entityName\\\":\\\"Unnamed\\\",\\\"coreSpriteID\\\":\\\"core1_light\\\",\\\"coreShellSpriteID\\\":\\\"core1_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":0,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":0.5,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":2,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallSide3\\\"},{\\\"location\\\":{\\\"x\\\":-0.5,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":13,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallSide3\\\"},{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":0.30000001192092898},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":20,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallCenter2\\\"},{\\\"location\\\":{\\\"x\\\":0.30000001192092898,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":5,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing2\\\"},{\\\"location\\\":{\\\"x\\\":-0.30000001192092898,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":4,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing2\\\"}],\\\"dialogue\\\":{\\\"instanceID\\\":0},\\\"useCustomDroneType\\\":false,\\\"customDroneType\\\":0}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":875.0,\"y\":70.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"770\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"{\\\"entityName\\\":\\\"Unnamed\\\",\\\"coreSpriteID\\\":\\\"core1_light\\\",\\\"coreShellSpriteID\\\":\\\"core1_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":0,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":0.5,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":2,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallSide3\\\"},{\\\"location\\\":{\\\"x\\\":-0.5,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":13,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallSide3\\\"},{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":0.30000001192092898},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":20,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallCenter2\\\"},{\\\"location\\\":{\\\"x\\\":0.30000001192092898,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":5,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing2\\\"},{\\\"location\\\":{\\\"x\\\":-0.30000001192092898,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":4,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing2\\\"}],\\\"dialogue\\\":{\\\"instanceID\\\":0},\\\"useCustomDroneType\\\":false,\\\"customDroneType\\\":0}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":850.0,\"y\":40.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"771\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"{\\\"entityName\\\":\\\"Unnamed\\\",\\\"coreSpriteID\\\":\\\"core1_light\\\",\\\"coreShellSpriteID\\\":\\\"core1_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":0,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":-0.30000001192092898,\\\"y\\\":0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":6,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallSide2\\\"},{\\\"location\\\":{\\\"x\\\":-0.30000001192092898,\\\"y\\\":-0.30000001192092898},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":2,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallSide3\\\"},{\\\"location\\\":{\\\"x\\\":0.30000001192092898,\\\"y\\\":0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":6,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallSide2\\\"},{\\\"location\\\":{\\\"x\\\":0.30000001192092898,\\\"y\\\":-0.30000001192092898},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":17,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallSide3\\\"}],\\\"dialogue\\\":{\\\"instanceID\\\":0},\\\"useCustomDroneType\\\":false,\\\"customDroneType\\\":0}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":860.0,\"y\":-110.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"772\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"{\\\"entityName\\\":\\\"Unnamed\\\",\\\"coreSpriteID\\\":\\\"core1_light\\\",\\\"coreShellSpriteID\\\":\\\"core1_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":0,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":-0.30000001192092898,\\\"y\\\":0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":6,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallSide2\\\"},{\\\"location\\\":{\\\"x\\\":-0.30000001192092898,\\\"y\\\":-0.30000001192092898},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":2,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallSide3\\\"},{\\\"location\\\":{\\\"x\\\":0.30000001192092898,\\\"y\\\":0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":6,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallSide2\\\"},{\\\"location\\\":{\\\"x\\\":0.30000001192092898,\\\"y\\\":-0.30000001192092898},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":17,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallSide3\\\"}],\\\"dialogue\\\":{\\\"instanceID\\\":0},\\\"useCustomDroneType\\\":false,\\\"customDroneType\\\":0}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":925.0,\"y\":-90.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"773\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Block Core\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":960.0,\"y\":-25.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"774\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Block Core\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":940.0,\"y\":45.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"775\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"{\\\"entityName\\\":\\\"Unnamed\\\",\\\"coreSpriteID\\\":\\\"core1_light\\\",\\\"coreShellSpriteID\\\":\\\"core1_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":0,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":0.5,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":2,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallSide3\\\"},{\\\"location\\\":{\\\"x\\\":-0.5,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":13,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallSide3\\\"},{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":0.30000001192092898},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":20,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallCenter2\\\"},{\\\"location\\\":{\\\"x\\\":0.30000001192092898,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":5,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing2\\\"},{\\\"location\\\":{\\\"x\\\":-0.30000001192092898,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":4,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing2\\\"}],\\\"dialogue\\\":{\\\"instanceID\\\":0},\\\"useCustomDroneType\\\":false,\\\"customDroneType\\\":0}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":935.0,\"y\":90.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"776\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"{\\\"entityName\\\":\\\"Unnamed\\\",\\\"coreSpriteID\\\":\\\"core1_light\\\",\\\"coreShellSpriteID\\\":\\\"core1_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":0,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":0.5,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":2,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallSide3\\\"},{\\\"location\\\":{\\\"x\\\":-0.5,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":13,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallSide3\\\"},{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":0.30000001192092898},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":20,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallCenter2\\\"},{\\\"location\\\":{\\\"x\\\":0.30000001192092898,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":5,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing2\\\"},{\\\"location\\\":{\\\"x\\\":-0.30000001192092898,\\\"y\\\":-0.10000000149011612},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":4,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing2\\\"}],\\\"dialogue\\\":{\\\"instanceID\\\":0},\\\"useCustomDroneType\\\":false,\\\"customDroneType\\\":0}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":890.0,\"y\":130.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"777\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Block Core\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":845.0,\"y\":110.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"778\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Block Core\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":825.0,\"y\":75.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[\"880-150-beamer\",\"766\",\"767\",\"768\",\"769\",\"770\",\"771\",\"772\",\"773\",\"774\",\"775\",\"776\",\"777\",\"778\"],\"hasMusic\":true,\"musicID\":\"music_overworld\",\"partDropsDisabled\":false,\"backgroundSpawns\":[{\"entity\":{\"name\":\"Gun Drone\",\"ID\":\"\",\"faction\":1,\"assetID\":\"gun_drone_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":0.0,\"y\":0.0},\"patrolPath\":{\"waypoints\":[]}},\"timePerSpawn\":8,\"radius\":15.0}],\"waveSetPath\":\"\",\"rectangleEffectSkin\":0,\"backgroundTileSkin\":0,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 880-1550.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 880-1550.json new file mode 100644 index 000000000..63bdd8254 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 880-1550.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Sector 880-1550\",\"bounds\":{\"x\":760,\"y\":-1220,\"w\":480,\"h\":120},\"type\":0,\"backgroundColor\":{\"r\":0.0,\"g\":0.30000001192092898,\"b\":0.30000001192092898,\"a\":1.0},\"entities\":[{\"name\":\"ShellCore\",\"ID\":\"779\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Cruiser\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":992.5,\"y\":-1250.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":979.6994018554688,\"y\":-1262.2431640625},\"ID\":0,\"children\":[36]},{\"position\":{\"x\":955.2891235351563,\"y\":-1289.1944580078125},\"ID\":36,\"children\":[37]},{\"position\":{\"x\":914.4806518554688,\"y\":-1300.9150390625},\"ID\":37,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"780\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Basic Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":832.5,\"y\":-1290.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":875.6649780273438,\"y\":-1304.041015625},\"ID\":0,\"children\":[32]},{\"position\":{\"x\":932.8792114257813,\"y\":-1282.5684814453125},\"ID\":32,\"children\":[33]},{\"position\":{\"x\":918.334228515625,\"y\":-1247.1279296875},\"ID\":33,\"children\":[34]},{\"position\":{\"x\":879.0823974609375,\"y\":-1239.5125732421875},\"ID\":34,\"children\":[35]},{\"position\":{\"x\":837.884765625,\"y\":-1256.2999267578125},\"ID\":35,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"781\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Cruiser\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1072.5,\"y\":-1297.5},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":1036.6849365234375,\"y\":-1275.2706298828125},\"ID\":0,\"children\":[1]},{\"position\":{\"x\":1008.7149658203125,\"y\":-1285.2359619140625},\"ID\":1,\"children\":[2]},{\"position\":{\"x\":978.9697265625,\"y\":-1276.443115234375},\"ID\":2,\"children\":[3]},{\"position\":{\"x\":956.2700805664063,\"y\":-1294.8438720703125},\"ID\":3,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"782\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Cruiser\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":987.5,\"y\":-1292.5},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":949.41162109375,\"y\":-1310.810791015625},\"ID\":0,\"children\":[20]},{\"position\":{\"x\":924.90625,\"y\":-1287.8250732421875},\"ID\":20,\"children\":[21]},{\"position\":{\"x\":903.5460815429688,\"y\":-1259.9029541015625},\"ID\":21,\"children\":[22]},{\"position\":{\"x\":925.885498046875,\"y\":-1238.4874267578125},\"ID\":22,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"783\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Cruiser\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1122.5,\"y\":-1257.5},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":1205.1182861328125,\"y\":-1248.9840087890625},\"ID\":0,\"children\":[17]},{\"position\":{\"x\":1143.246337890625,\"y\":-1251.9893798828125},\"ID\":17,\"children\":[18]},{\"position\":{\"x\":1164.0830078125,\"y\":-1301.4029541015625},\"ID\":18,\"children\":[19]},{\"position\":{\"x\":1115.9622802734375,\"y\":-1304.2069091796875},\"ID\":19,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"784\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Cruiser\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":860.0,\"y\":-1260.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":882.412109375,\"y\":-1265.40966796875},\"ID\":0,\"children\":[13]},{\"position\":{\"x\":909.486328125,\"y\":-1274.0062255859375},\"ID\":13,\"children\":[14]},{\"position\":{\"x\":950.186767578125,\"y\":-1266.226806640625},\"ID\":14,\"children\":[16]},{\"position\":{\"x\":937.0819702148438,\"y\":-1248.95849609375},\"ID\":16,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"785\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Basic Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1025.0,\"y\":-1275.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":1015.295166015625,\"y\":-1292.7025146484375},\"ID\":0,\"children\":[22]},{\"position\":{\"x\":934.6509399414063,\"y\":-1299.7373046875},\"ID\":22,\"children\":[23]},{\"position\":{\"x\":928.0924072265625,\"y\":-1271.3597412109375},\"ID\":23,\"children\":[24]},{\"position\":{\"x\":968.87255859375,\"y\":-1265.277587890625},\"ID\":24,\"children\":[26]},{\"position\":{\"x\":988.3282470703125,\"y\":-1251.6658935546875},\"ID\":26,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"786\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Basic Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1147.5,\"y\":-1307.5},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":1086.0504150390625,\"y\":-1305.0069580078125},\"ID\":0,\"children\":[19]},{\"position\":{\"x\":1043.632080078125,\"y\":-1303.7703857421875},\"ID\":19,\"children\":[20]},{\"position\":{\"x\":977.820556640625,\"y\":-1295.512939453125},\"ID\":20,\"children\":[21]},{\"position\":{\"x\":983.0467529296875,\"y\":-1278.8057861328125},\"ID\":21,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"787\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Basic Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1180.0,\"y\":-1275.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":1123.3878173828125,\"y\":-1294.03759765625},\"ID\":0,\"children\":[13]},{\"position\":{\"x\":1080.8505859375,\"y\":-1299.1348876953125},\"ID\":13,\"children\":[14]},{\"position\":{\"x\":1036.548095703125,\"y\":-1319.7327880859375},\"ID\":14,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"788\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Basic Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1042.5,\"y\":-1242.5},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":1055.65625,\"y\":-1261.199951171875},\"ID\":0,\"children\":[10]},{\"position\":{\"x\":1093.453369140625,\"y\":-1259.0841064453125},\"ID\":10,\"children\":[11]},{\"position\":{\"x\":1094.154052734375,\"y\":-1277.3712158203125},\"ID\":11,\"children\":[12]},{\"position\":{\"x\":1151.889892578125,\"y\":-1308.0458984375},\"ID\":12,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"789\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Basic Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":945.0,\"y\":-1247.5},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":1023.4124145507813,\"y\":-1241.6229248046875},\"ID\":0,\"children\":[7]},{\"position\":{\"x\":1027.1082763671875,\"y\":-1252.518310546875},\"ID\":7,\"children\":[8]},{\"position\":{\"x\":1087.23193359375,\"y\":-1286.2760009765625},\"ID\":8,\"children\":[9]},{\"position\":{\"x\":1052.51123046875,\"y\":-1303.8624267578125},\"ID\":9,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"790\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Basic Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":887.5,\"y\":-1300.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":909.519287109375,\"y\":-1278.06201171875},\"ID\":0,\"children\":[3]},{\"position\":{\"x\":953.4647827148438,\"y\":-1268.91162109375},\"ID\":3,\"children\":[4]},{\"position\":{\"x\":974.5616455078125,\"y\":-1280.1641845703125},\"ID\":4,\"children\":[5]},{\"position\":{\"x\":987.75146484375,\"y\":-1295.634765625},\"ID\":5,\"children\":[6]},{\"position\":{\"x\":1003.608154296875,\"y\":-1304.427978515625},\"ID\":6,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"791\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Basic Scout\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":797.5,\"y\":-1250.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":855.4697875976563,\"y\":-1245.9620361328125},\"ID\":0,\"children\":[1]},{\"position\":{\"x\":891.715576171875,\"y\":-1256.87109375},\"ID\":1,\"children\":[2]},{\"position\":{\"x\":982.489013671875,\"y\":-1259.3304443359375},\"ID\":2,\"children\":[]}]}},{\"name\":\"Map Background 4\",\"ID\":\"792\",\"faction\":0,\"assetID\":\"mapbg4\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1000.0,\"y\":-1280.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[\"779\",\"780\",\"781\",\"782\",\"783\",\"784\",\"785\",\"786\",\"787\",\"788\",\"789\",\"790\",\"791\"],\"hasMusic\":true,\"musicID\":\"music_overworld_2\",\"partDropsDisabled\":false,\"backgroundSpawns\":[],\"waveSetPath\":\"\",\"rectangleEffectSkin\":1,\"backgroundTileSkin\":1,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 980-2030.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 980-2030.json new file mode 100644 index 000000000..05b2c1744 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 980-2030.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Sector 980-2030\",\"bounds\":{\"x\":860,\"y\":-1700,\"w\":160,\"h\":120},\"type\":0,\"backgroundColor\":{\"r\":0.0,\"g\":0.30000001192092898,\"b\":0.30000001192092898,\"a\":1.0},\"entities\":[{\"name\":\"Power Rock\",\"ID\":\"793\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":972.5,\"y\":-1767.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Power Rock\",\"ID\":\"794\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":907.5,\"y\":-1767.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"795\",\"faction\":0,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":907.5,\"y\":-1765.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"796\",\"faction\":0,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":972.5,\"y\":-1765.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Trader\",\"ID\":\"mining-trader\",\"faction\":0,\"assetID\":\"trader_blueprint\",\"blueprintJSON\":\"{\\\"parts\\\":[]}\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":925.0,\"y\":-1730.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"ShellCore\",\"ID\":\"797\",\"faction\":0,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Heavy Scouter\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":972.5,\"y\":-1740.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":972.910400390625,\"y\":-1740.0283203125},\"ID\":0,\"children\":[2]},{\"position\":{\"x\":907.8662109375,\"y\":-1740.0283203125},\"ID\":2,\"children\":[]}]}},{\"name\":\"Yard\",\"ID\":\"mining-yard\",\"faction\":0,\"assetID\":\"yard_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":955.0,\"y\":-1730.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Mission Control\",\"ID\":\"798\",\"faction\":0,\"assetID\":\"missioncontrol_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":940.0,\"y\":-1725.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Map Background 2\",\"ID\":\"799\",\"faction\":0,\"assetID\":\"mapbg2\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":940.0,\"y\":-1760.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[\"797\"],\"hasMusic\":true,\"musicID\":\"music_overworld_2\",\"partDropsDisabled\":false,\"backgroundSpawns\":[],\"waveSetPath\":\"\",\"rectangleEffectSkin\":1,\"backgroundTileSkin\":1,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 980-2150.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 980-2150.json new file mode 100644 index 000000000..7251ab503 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Sector 980-2150.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Sector 980-2150\",\"bounds\":{\"x\":860,\"y\":-1820,\"w\":160,\"h\":140},\"type\":0,\"backgroundColor\":{\"r\":0.0,\"g\":0.30000001192092898,\"b\":0.30000001192092898,\"a\":1.0},\"entities\":[{\"name\":\"ShellCore\",\"ID\":\"800\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Raider\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":902.5,\"y\":-1905.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":916.8162231445313,\"y\":-1913.0458984375},\"ID\":0,\"children\":[17]},{\"position\":{\"x\":911.54296875,\"y\":-1934.177001953125},\"ID\":17,\"children\":[18]},{\"position\":{\"x\":924.2377319335938,\"y\":-1936.123046875},\"ID\":18,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"801\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Raider\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":992.5,\"y\":-1855.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":956.2393798828125,\"y\":-1871.9512939453125},\"ID\":0,\"children\":[10]},{\"position\":{\"x\":941.5909423828125,\"y\":-1868.631591796875},\"ID\":10,\"children\":[11]},{\"position\":{\"x\":913.44287109375,\"y\":-1872.864990234375},\"ID\":11,\"children\":[13]},{\"position\":{\"x\":928.3817749023438,\"y\":-1886.80517578125},\"ID\":13,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"802\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Raider\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":890.0,\"y\":-1845.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":922.2080688476563,\"y\":-1828.1492919921875},\"ID\":0,\"children\":[7]},{\"position\":{\"x\":942.908203125,\"y\":-1831.468994140625},\"ID\":7,\"children\":[8]},{\"position\":{\"x\":946.381591796875,\"y\":-1848.79443359375},\"ID\":8,\"children\":[9]},{\"position\":{\"x\":926.6583251953125,\"y\":-1866.98291015625},\"ID\":9,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"803\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Raider\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":957.5,\"y\":-1947.5},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":953.4886474609375,\"y\":-1906.7701416015625},\"ID\":0,\"children\":[5]},{\"position\":{\"x\":931.5179443359375,\"y\":-1904.2288818359375},\"ID\":5,\"children\":[6]},{\"position\":{\"x\":876.6719970703125,\"y\":-1879.2412109375},\"ID\":6,\"children\":[]}]}},{\"name\":\"ShellCore\",\"ID\":\"804\",\"faction\":1,\"assetID\":\"shellcore_blueprint\",\"blueprintJSON\":\"Raider\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":980.0,\"y\":-1890.0},\"patrolPath\":{\"waypoints\":[{\"position\":{\"x\":937.8053588867188,\"y\":-1917.919921875},\"ID\":0,\"children\":[3]},{\"position\":{\"x\":921.8863525390625,\"y\":-1944.7408447265625},\"ID\":3,\"children\":[4]},{\"position\":{\"x\":880.5684814453125,\"y\":-1945.328369140625},\"ID\":4,\"children\":[]}]}},{\"name\":\"Map Background 3\",\"ID\":\"805\",\"faction\":0,\"assetID\":\"mapbg3\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":940.0,\"y\":-1890.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[\"800\",\"801\",\"802\",\"803\",\"804\"],\"hasMusic\":true,\"musicID\":\"music_overworld_2\",\"partDropsDisabled\":false,\"backgroundSpawns\":[],\"waveSetPath\":\"\",\"rectangleEffectSkin\":1,\"backgroundTileSkin\":1,\"shardCountSet\":[5,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.SiegeZone Beta.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.SiegeZone Beta.json new file mode 100644 index 000000000..7e820cf5f --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.SiegeZone Beta.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"SiegeZone Beta\",\"bounds\":{\"x\":1010,\"y\":180,\"w\":150,\"h\":150},\"type\":6,\"backgroundColor\":{\"r\":0.15000000596046449,\"g\":0.15000000596046449,\"b\":0.15000000596046449,\"a\":1.0},\"entities\":[{\"name\":\"Map Background 1\",\"ID\":\"806\",\"faction\":0,\"assetID\":\"mapbg1\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1085.0,\"y\":102.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Defense Turret\",\"ID\":\"807\",\"faction\":0,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1085.0,\"y\":105.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"flag_siegereinforcements4\",\"ID\":\"808\",\"faction\":0,\"assetID\":\"flag\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1085.0,\"y\":100.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"flag_siegereinforcements2\",\"ID\":\"809\",\"faction\":0,\"assetID\":\"flag\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1082.5,\"y\":102.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"flag_betaplayerposition1\",\"ID\":\"810\",\"faction\":0,\"assetID\":\"flag\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1085.0,\"y\":97.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"flag_daayospawnpoint1\",\"ID\":\"811\",\"faction\":0,\"assetID\":\"flag\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1085.0,\"y\":105.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"flag_siegereinforcements1\",\"ID\":\"812\",\"faction\":0,\"assetID\":\"flag\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1085.0,\"y\":102.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"flag_siegereinforcements3\",\"ID\":\"813\",\"faction\":0,\"assetID\":\"flag\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1087.5,\"y\":102.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Flag\",\"ID\":\"814\",\"faction\":0,\"assetID\":\"flag\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1087.5,\"y\":100.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Power Rock\",\"ID\":\"815\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1102.5,\"y\":107.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Power Rock\",\"ID\":\"816\",\"faction\":0,\"assetID\":\"energy_rock\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1067.5,\"y\":102.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"817\",\"faction\":0,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1100.0,\"y\":105.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Outpost\",\"ID\":\"818\",\"faction\":0,\"assetID\":\"outpost_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1070.0,\"y\":105.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"flag_beta_north_carrier\",\"ID\":\"819\",\"faction\":0,\"assetID\":\"flag\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1112.5,\"y\":147.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"flag_beta_south_carrier\",\"ID\":\"820\",\"faction\":0,\"assetID\":\"flag\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1057.5,\"y\":62.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Air Carrier\",\"ID\":\"821\",\"faction\":1,\"assetID\":\"carrier_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1057.5,\"y\":57.5},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Air Carrier\",\"ID\":\"822\",\"faction\":1,\"assetID\":\"carrier_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":1112.5,\"y\":152.5},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[\"817\",\"818\"],\"hasMusic\":true,\"musicID\":\"music_siege_1\",\"partDropsDisabled\":false,\"backgroundSpawns\":[],\"waveSetPath\":\"beta\",\"rectangleEffectSkin\":0,\"backgroundTileSkin\":0,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Spawning Grounds.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Spawning Grounds.json new file mode 100644 index 000000000..88a049186 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/.Spawning Grounds.json @@ -0,0 +1 @@ +{"sectorjson":"{\"sectorName\":\"Spawning Grounds\",\"bounds\":{\"x\":180,\"y\":90,\"w\":160,\"h\":260},\"type\":0,\"backgroundColor\":{\"r\":0.0,\"g\":0.30000001192092898,\"b\":0.30000001192092898,\"a\":1.0},\"entities\":[{\"name\":\"Flag_sukratspawnpoint0\",\"ID\":\"823\",\"faction\":0,\"assetID\":\"flag\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":245.0,\"y\":-150.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Mini Drone\",\"ID\":\"824\",\"faction\":1,\"assetID\":\"mini_drone_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":270.0,\"y\":-15.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Mini Drone\",\"ID\":\"825\",\"faction\":1,\"assetID\":\"mini_drone_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":250.0,\"y\":-15.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Map Background 1\",\"ID\":\"826\",\"faction\":0,\"assetID\":\"mapbg1\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":260.0,\"y\":-85.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Flag_aristuspawnpoint0\",\"ID\":\"827\",\"faction\":0,\"assetID\":\"flag\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":260.0,\"y\":-150.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Strike Drone(Clone)\",\"ID\":\"828\",\"faction\":1,\"assetID\":\"strike_drone_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":245.0,\"y\":0.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Strike Drone(Clone)\",\"ID\":\"829\",\"faction\":1,\"assetID\":\"strike_drone_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":275.0,\"y\":0.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Mini Drone(Clone)\",\"ID\":\"830\",\"faction\":1,\"assetID\":\"mini_drone_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":260.0,\"y\":-115.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Mini Drone(Clone)\",\"ID\":\"831\",\"faction\":1,\"assetID\":\"mini_drone_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":270.0,\"y\":-105.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"Mini Drone(Clone)\",\"ID\":\"832\",\"faction\":1,\"assetID\":\"mini_drone_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":250.0,\"y\":-105.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"GameObject (6)(Clone)\",\"ID\":\"833\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":280.0,\"y\":-85.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"GameObject (6)(Clone)\",\"ID\":\"834\",\"faction\":1,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":240.0,\"y\":-85.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"GameObject (6)(Clone)\",\"ID\":\"835\",\"faction\":0,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":250.0,\"y\":-145.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"GameObject (6)(Clone)\",\"ID\":\"836\",\"faction\":0,\"assetID\":\"defense_turret\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":270.0,\"y\":-145.0},\"patrolPath\":{\"waypoints\":[]}},{\"name\":\"spawner(Clone)\",\"ID\":\"837\",\"faction\":0,\"assetID\":\"core_gate\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":260.0,\"y\":-150.0},\"patrolPath\":{\"waypoints\":[]}}],\"platformData\":[],\"platform\":{\"instanceID\":0},\"targets\":[],\"hasMusic\":true,\"musicID\":\"music_overworld\",\"partDropsDisabled\":false,\"backgroundSpawns\":[{\"entity\":{\"name\":\"Light Drone\",\"ID\":\"\",\"faction\":1,\"assetID\":\"light_drone_blueprint\",\"blueprintJSON\":\"\",\"dialogueID\":\"\",\"vendingID\":\"\",\"pathID\":\"\",\"position\":{\"x\":0.0,\"y\":0.0},\"patrolPath\":{\"waypoints\":[]}},\"timePerSpawn\":8,\"radius\":15.0}],\"waveSetPath\":\"\",\"rectangleEffectSkin\":0,\"backgroundTileSkin\":0,\"shardCountSet\":[0,0,0]}","platformjson":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases.meta new file mode 100644 index 000000000..328e75c11 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 50a526b1443d58241a667b8604a2d7d0 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/120-980-beamerpassive.dialoguedata b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/120-980-beamerpassive.dialoguedata new file mode 100644 index 000000000..08b8ab229 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/120-980-beamerpassive.dialoguedata @@ -0,0 +1,67 @@ + + + + + + + + + + + + Dialogue + Out + Single + Right + 228 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + true + false + false + Mission + + + + + true + + false + false + Mission + + + + + + + + + Thanks for checking up on me, but theres nothing left you can do here right now. + +I'll let you know if anything pops up. + + + + Ok. + + + + 120-980-beamer + + + \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/120-980-beamerpassive.dialoguedata.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/120-980-beamerpassive.dialoguedata.meta new file mode 100644 index 000000000..4ba343e99 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/120-980-beamerpassive.dialoguedata.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 7b25f3ce24717024cb256cbb9aeae012 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/610-500-crimsonyard.dialoguedata b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/610-500-crimsonyard.dialoguedata new file mode 100644 index 000000000..77858d686 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/610-500-crimsonyard.dialoguedata @@ -0,0 +1,80 @@ + + + + + + + + + + true + true + false + Mission + + + + + + Dialogue + Out + Single + Right + 228 + 0 + + + Dialogue + Out + Single + Right + 283 + 0 + + + 1 + 0 + 0 + 1 + + + + Mission + + + + true + false + false + Mission + + + + + true + + false + false + Mission + + + + + + + + + + You're crazy enough to attempt to talk to me in this mess, hm? I respect that. I don't even know if you can hear what I'm saying, but reconstruction's on me. + + + + I want to change my shell configuration. + Good bye. + + + + 610-500-crimsonyard + + + \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/610-500-crimsonyard.dialoguedata.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/610-500-crimsonyard.dialoguedata.meta new file mode 100644 index 000000000..7c4bbf80f --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/610-500-crimsonyard.dialoguedata.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 4289b37447f1c954a868bec8c5f12d5e +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/Clearly Delusional Gauntlet.taskdata b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/Clearly Delusional Gauntlet.taskdata new file mode 100644 index 000000000..f6e639141 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/Clearly Delusional Gauntlet.taskdata @@ -0,0 +1,710 @@ + + + + + + + + + + + + + + + + 0 + 1 + 0 + 1 + + false + 2 + + + + + true + + false + false + Mission + + + + false + + 8 + 1 + true + + + + + Condition + In + Multi + Left + 59 + 0 + + + TaskFlow + Out + Single + Right + 59 + 0 + + + Condition + In + Multi + Left + 114 + 0 + + + TaskFlow + Out + Single + Right + 114 + 0 + + + + + + + + + + + + Dialogue + Out + Single + Right + 189 + 0 + + + Dialogue + Out + Single + Right + 244 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + false + + + + + Condition + In + Multi + Left + 60 + 0 + + + TaskFlow + Out + Single + Right + 60 + 0 + + + + + + + + + + Condition + In + Multi + Left + 59 + 0 + + + TaskFlow + Out + Single + Right + 59 + 0 + + + Condition + In + Multi + Left + 114 + 0 + + + TaskFlow + Out + Single + Right + 114 + 0 + + + + + + + + + + + + + + + 0 + 1 + 0 + 1 + + + + + + false + + + + + Uninitialized + 120 + + + + + + + + + + true + + false + false + Mission + + + + + + + + + 0 + 1 + 0 + 1 + + + + + + true + + false + false + Mission + + + + + + + + + + + + + + 0 + 1 + 0 + 1 + + + 750 + false + + + 0 + 1 + + 35 + + + + + false + + + + false + + 2 + 1 + true + + + + + + + + + 0 + 1 + 0 + 1 + + + + + + + true + + + + + + + + + Uninitialized + 35 + + + + + true + + false + false + Mission + + + + + TaskFlow + Out + Single + Right + 29 + 0 + + false + false + false + Mission + + + + + TaskFlow + Out + Single + Right + 29 + 0 + + false + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 176 + 0 + + + Dialogue + Out + Single + Right + 231 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + + + + 0 + 1 + 0 + 1 + + + 1000 + false + + + 0 + 1 + + 50 + + + + + false + + + + + TaskFlow + Out + Single + Right + 29 + 0 + + false + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 176 + 0 + + + Dialogue + Out + Single + Right + 231 + 0 + + + 1 + 1 + 1 + 1 + + + + false + 0 + Mission + + + + + TaskFlow + Out + Single + Right + 29 + 0 + + false + false + false + Mission + + + + + true + + false + false + Mission + + + + + + + + + 0 + 1 + 0 + 1 + + + 500 + true + + + 27 + 0 + + 20 + + + + + false + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Clearly Delusional Gauntlet + + + A + + + Speak to Clearly Delusional in Capitol North. + + + + The Scourge of Secrecy + + + + Ah but sir, you are not supposed to be here right now! Bugger off and finish what you were supposed to before you come here again. + + + clearly-delusional + + + ShellCore + + + Good day sir! Perhaps you may be interested in a challenge? + + + + Uhh, okay. + No thanks, I'm outta here! + + + + Danger Zone 1120-1280 + + + Haven 3 + + + You are right crazy my core. Tell you what, I shall help you through your journey, I sure have a lot to learn from you! + + + CDG-part1-complete + + + Well I'll be! I certainly didn't expect you to pull that off. + + + CDG-part2-complete + + + Oi mate! Do you have a license to continue your gauntlet? You can procure one from the second BattleCore in this particularly selected DeadZone. Two in one go, no dippy-skippy! + + + - Head to Danger Zone 1120-1280. + +- Destroy 2 Infected BattleCores. + +- You must stay in the sector and defeat the two consecutively. + + + + + + CDG-kill-2-bc + + + Whatever nonsense you just said, I'm in. + + + You are insane. I'm out. + + + Remember, two in one go, no dippy-skippy! + + + BattleCore + + + Ludicrous! You succeeded? You must be some kind of prodigy. + + + THROUGH COMPLETING THIS MISSION, YOU: + +Added Clearly Delusional as a party member +May or may not have become Clearly Delusional yourself + + + clip_missioncompleteep2 + + + Shall we proceed? + + + + Yes, I'm ready. + Give me a moment. + + + + For your final task, I request you to dash to Haven 3 in under 35 seconds! Since this is a pittance, I shall allow you to tell me when you wish to start. + + + + - Talk to Clearly Delusional and inform him you want to start your run. + +- Head to Haven 3. + +- Manage the journey in under 35 seconds. + + + CDG-final + + + Well it's great you're still giving me this crap. + + + No, this task again! + + + What are you doing talking to me! 30 seconds isn't much! + + + All readied up? + + + + Yes! + No! + + + + To start, I'd be right ghast should you manage to destroy 8 of the SC opps and return before 120 seconds pass. I'll take none of those fodder drones either. What say you? Talk to me again when ready. + + + - Talk to Clearly Delusional and inform him you want to start your run. + +- Destroy any 8 Infected ShellCores. + +- Return to Clearly Delusional for your reward. + +- Perform all this within 120 seconds. + + + MediumSide4 + + + CDG-intro + + + Sounds... interesting. I'll do it. + + + Perhaps I would if you speak normally. + + + Is there a holdup? Go rain down on the opps! 8 of them! + + + \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/Clearly Delusional Gauntlet.taskdata.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/Clearly Delusional Gauntlet.taskdata.meta new file mode 100644 index 000000000..62b8183ce --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/Clearly Delusional Gauntlet.taskdata.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 8fb4edf14343db14e8c7be3902efea4b +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/DeadZone Scouting.taskdata b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/DeadZone Scouting.taskdata new file mode 100644 index 000000000..27eaa14fd --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/DeadZone Scouting.taskdata @@ -0,0 +1,624 @@ + + + + + + + + + + + + Dialogue + Out + Single + Right + 191 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + Dialogue + Out + Single + Right + 191 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + Dialogue + Out + Single + Right + 228 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + Dialogue + Out + Single + Right + 267 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + Dialogue + Out + Single + Right + 214 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + false + + + + + + true + + + + + + false + + + + + + true + + + + + + false + + + + + + Action + Out + Single + Right + 65 + 0 + + + + + + + + true + + + + + true + + false + false + Mission + + + + + + + + + 0 + 1 + 0 + 1 + + + + + + + + + + 0 + 1 + 0 + 1 + + + 500 + false + + + 0 + 1 + + 50 + + + + + false + + + + + + true + + + + + true + + false + false + Mission + + + + + + + + + 0 + 1 + 0 + 1 + + + 500 + false + + + 0 + 1 + + 50 + + + + + false + + + + + true + + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 231 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + + + + 0 + 1 + 0 + 1 + + + + + + + false + + + + + + false + + + + false + + 5 + 1 + true + + + + + Condition + In + Multi + Left + 61 + 0 + + + TaskFlow + Out + Single + Right + 61 + 0 + + + + + + + true + + + + + + + + + 0 + 1 + 0 + 1 + + + 750 + true + + + 24 + 0 + + 100 + + + + + false + + + + + + + + + 0 + 1 + 0 + 1 + + + + + + + + + + + + + + + + 0 + 1 + 0 + 1 + + false + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Oh don't mind me, I'm just... bordergazing. + + + + What's that? + + + + Do you really need me to answer that? I'm... gazing at the border. + + + + Yeah but why? + + + + Beyond here is a total wasteland deadly to our kind... but I have so many questions about these so called "Danger Zones" or "Dead Zones", whatever you want to call them. + + + + Such as? + + + + Why do we suffer damage when we stay too long in them, for instance. I've also heard rumors that some of them host hidden Infected BattleCores, which seems quite deadly. But my biggest question is - are they hiding something on the other side? + + + + How are you going to find out? + + + + Oh I've tried many times... and failed. You however seem up to the task. Would you like to try something out to help me with my curiosity? + + + + Sure. + + + + Danger Zone 610-0 + + + + + + Danger Zone 460-300 + + + Danger Zone 1280-0 + + + + 8 + + + + haven2-bordergazer + + + So my hunch was right and the rumors were true - there are BattleCores hidden in the Danger Zones. That said... hmm... this is too rich. Right next to an Infected siege sector is an BattleCore-armed Danger Zone. I hope you're seeing where I'm going. + + + I want you to scout out 3 Danger Zones that I have identified as possibly special. You'll only have to dip in and out of two of them, but through my gazing I have become so cetrain that the third is hiding something that I need you to stay and wander in it for a while for extra data. + + + - Visit the following sectors in order: +- Danger Zone 610-0, +- Danger Zone 460-300, +- and Danger Zone 1280-0. Stay in this Danger Zone for 8 seconds without being destroyed. +- Return to The Bordergazer for your reward. + + + + DeadZone Scouting_scout1 + + + I'll scout the Danger Zones. + + + On second thought, this seems suicidal. + + + You should visit the three Danger Zones I marked for you as a task before we go further. + + + I guarantee you... there is something beyond that Danger Zone. I know this sounds incredibly suicidal but I believe on the other side of the zone is some kind of Infected rally-point. I heard the Siege Zone was set up without our knowledge, this plays right into that. Prove me right, this could be huge. + + + - Go to the east of Danger Zone 1280-0. +- Return to The Bordergazer with your reconaissance. + + + DeadZone Scouting_infiltration + + + This is so crazy that it actually makes sense. I'll do it. + + + This is clearly delusional. + + + Go to the east of Danger Zone 1280-0. There is something there, believe me. But I'll need your help to prove me right. + + + Ideally such a find would be pushed up to our top ranks for investigation, but it looks like our forces are being stretched too thin, so we need your help yet again. + + + + So what would you like me to do? + + + + This is simply incredible... I'm sure they didn't see us coming. Now, on to the question of how we didn't see them coming, literally as you found out. + + + Infected Hideout W + + + ShellCore + + + You seem to have spotted some strange, disappearing ShellCores in that hidden base of theirs. I want you to gather some intelligence on them by destroying five of them. That should be enough data for us to replicate their own technology. + + + - Head to Infected Hideout W. +- Destroy 5 Stealth Cores. +- Return to The Bordergazer for your reward. + + + SmallCenter2 + + + DeadZone Scouting_destroy5 + + + I'll destroy the disappearing cores. + + + On second thought, no thanks. + + + Head to Infected Hideout W and destroy 5 of the disappearing cores there. The data you gather from that should be enough for us to reverse engineer their secret ability. + + + This is extremely unsettling... An ability that can make you temporarily invisible... How much damage have they inflicted with it? It's time we give them a taste of their own medicine. The rest of the hideout seems extremely dangerous so I'll leave it to our higher-ups, but you could try scouting it out with your new Stealth ability yourself. + + + THROUGH COMPLETING THIS MISSION, YOU: + +Identified an Infected Hideout near Haven 2 by confirming The Bordergazer's revelation +Found and reverse-engineered the Infected squadron's Stealth ability + + + clip_missioncompleteep1 + + + DeadZone Scouting + + + B + + + Speak to The Bordergazer in Haven 2. + + + + Trial By Combat + + + + You should probably at least finish your basic training from Haven 1 before deep diving into your demise. + + + \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/DeadZone Scouting.taskdata.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/DeadZone Scouting.taskdata.meta new file mode 100644 index 000000000..2f2edf72b --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/DeadZone Scouting.taskdata.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: f2d969929001b844888beae27a977eda +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/Fateful Intermission.taskdata b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/Fateful Intermission.taskdata new file mode 100644 index 000000000..aa8e77f2a --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/Fateful Intermission.taskdata @@ -0,0 +1,3160 @@ + + + + + + + + + + + + + + true + + false + false + Mission + + + + + + + + + 0 + 1 + 0 + 1 + + + 0 + false + + 0 + 1 + + 0 + + + + false + + + + + + false + + + + + + false + + + + + + + + + 0 + 1 + 0 + 1 + + + + + + + + + + + 0 + 1 + 0 + 1 + + false + 2 + + + + + false + false + false + + + false + + + + + + Dialogue + Out + Single + Right + 204 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + Dialogue + Out + Single + Right + 191 + 0 + + + Dialogue + Out + Single + Right + 247 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + Dialogue + Out + Single + Right + 243 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + Dialogue + Out + Single + Right + 217 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + false + false + false + Mission + + + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + false + false + false + Mission + + + + + true + + true + false + Mission + + + + + true + + true + false + Mission + + + + + + Dialogue + Out + Single + Right + 215 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + false + + false + false + 0 + false + + + + + + false + + false + false + 0 + false + + + + + + + true + + + + + true + + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 217 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + false + 0 + + + 0 + 0 + + false + true + + true + + + + + false + false + true + + + false + + + + + false + false + true + + + false + + + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + false + false + false + Mission + + + + + + false + + 0 + + + 0 + 0 + + false + true + + true + + + + + false + + false + false + 0 + false + + + + + + + + true + + + + + + Dialogue + Out + Single + Right + 230 + 0 + + + Dialogue + Out + Single + Right + 286 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + false + false + true + + + false + + + + + false + false + true + + + false + + + + + false + false + false + + + false + + + + + true + + true + false + Mission + + + + + + Dialogue + Out + Single + Right + 204 + 0 + + + Dialogue + Out + Single + Right + 261 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + Dialogue + Out + Single + Right + 241 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + Dialogue + Out + Single + Right + 204 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + false + false + false + Mission + + + + + true + + true + false + Mission + + + + + + Dialogue + Out + Single + Right + 191 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + false + false + false + Mission + + + + + true + + true + false + Mission + + + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + false + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 217 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + true + + false + false + Mission + + + + + + + + + + + + + + + false + + + + + + false + + + + + + + + false + false + false + false + + + + + + + false + false + false + false + + + + + + + false + + + + + + false + + + + + + + false + + + + + + + false + + + + + true + + + + + + Condition + In + Multi + Left + 60 + 0 + + + TaskFlow + Out + Single + Right + 60 + 0 + + + + + + + + false + + + + + + + true + + + + + + true + + + + + + + false + + + + false + + 5 + 1 + true + + + + + + + false + + + + + Condition + In + Multi + Left + 60 + 0 + + + TaskFlow + Out + Single + Right + 60 + 0 + + + + + + + + false + + + + Uninitialized + 10 + + + + + Condition + In + Multi + Left + 60 + 0 + + + TaskFlow + Out + Single + Right + 60 + 0 + + + + + + + + false + + + + + + + false + + + + + + false + + + + + + false + + + + + + + false + + + + + + + false + + + + + + + false + + + + + + + false + + + + + + + false + + + + + + + false + + + + Uninitialized + 25 + + + + + + + false + + + + + + + false + + + + + + + false + + + + + + false + + + + + + + false + + + + + + + false + + + + + + + false + + + + + + + false + + + + + + + false + + + + + + + false + + + + + + + false + + + + + + false + + + + + + + false + + + + + true + + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 178 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + false + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 181 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + true + + true + false + Mission + + + + + + Dialogue + Out + Single + Right + 207 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + Dialogue + Out + Single + Right + 207 + 0 + + + Dialogue + Out + Single + Right + 268 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + Dialogue + Out + Single + Right + 194 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + Dialogue + Out + Single + Right + 207 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + false + false + false + Mission + + + + Uninitialized + 3 + + + + + Condition + In + Multi + Left + 62 + 0 + + + TaskFlow + Out + Single + Right + 62 + 0 + + + + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + false + false + false + Mission + + + + + true + + true + false + Mission + + + + + true + + true + false + Mission + + + + + true + + true + false + Mission + + + + + + Dialogue + Out + Single + Right + 207 + 0 + + + Dialogue + Out + Single + Right + 268 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + Dialogue + Out + Single + Right + 194 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + Dialogue + Out + Single + Right + 228 + 0 + + + Dialogue + Out + Single + Right + 283 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + Dialogue + Out + Single + Right + 189 + 0 + + + Dialogue + Out + Single + Right + 244 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + Dialogue + Out + Single + Right + 176 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + Dialogue + Out + Single + Right + 228 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + Dialogue + Out + Single + Right + 215 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + false + false + false + Mission + + + + + true + + true + false + Mission + + + + + + Dialogue + Out + Single + Right + 176 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + Dialogue + Out + Single + Right + 176 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + false + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 220 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + true + + true + false + Mission + + + + + + Dialogue + Out + Single + Right + 215 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + Dialogue + Out + Single + Right + 228 + 0 + + + Dialogue + Out + Single + Right + 283 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + false + false + false + Mission + + + + + + + + + + + + false + + + + + + false + + + + + + + + + + false + + true + false + 0 + false + + + + + + false + + true + false + 0 + false + + + + + + true + + true + false + Mission + + + + + false + + false + false + 0 + false + + + + + + false + false + true + + + false + + + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + false + false + false + Mission + + + + + false + false + false + + + false + + + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + false + false + false + Mission + + + + + false + false + false + + + false + + + + + true + + true + false + Mission + + + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + false + false + false + Mission + + + + + + + + + 0 + 1 + 0 + 1 + + + 250 + false + + + 0 + 1 + + 20 + + + + + false + + + + + + + + + + + + + + 0 + 1 + 0 + 1 + + + + + + + true + + + + + false + false + false + + + false + + + + + false + false + false + + + false + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + capitol-south-control + + + Commander, there isn't much for you to do right now from my end. I overheard your friend daydreaming about speed parts; maybe you should try going to the Capitol Advanced Trade Sector and see how he reacts? + + + - Head to the Capitol Advanced Trade Sector and speak to Sukrat. + + + + + + FI-part1 + + + Will do. + + + No thanks. + + + Capitol Advanced Trade Sector + + + sukrat + + + Hello there! It's been forever since we had some time off, let's use it wisely. + + + Fateful Intermission + + + A + + + Head to Capitol South and speak to +the ShellCore near the northern border. + + + + The Capitol's Reckoning + + + + You probably should do the cleanup we asked you to before moving on right now. + + + aristu + + + Uhh, yes. Yes I did. Though I recall hearing reinforcements arrived just in time. + + + + Yeah well about that... + + + + Greetings commander, I am indebted to you for rescuing me. + + + + It's no problem, really. + How'd you manage to find your way ehre? + + + + The situation has eased somewhat after you found the enemy hideout. We've been rationed Stealth parts and some of us were asked to take the same journey you did to get here, myself included. + + + + Huh. + + + + Regardless of all that. For some reason we are all off-duty for now. Curious isn't it? Like so much else in this world. + + + + Such as? + + + + Never mind all that! Excuse me for a second; I'm gonna upgrade my core and equip all the new parts I bought. SPEED SPEED SPEED! + + + + Uh, sure... + + + + + + + + 1032.29114 + -1651.3031 + + 0 + + 11 + + + + + 1032.17871 + -1626.62744 + + 11 + + + + + + + + + + + 1030.14868 + -1596.83777 + + 0 + + 10 + + + + + 1032.26123 + -1652.254 + + 10 + + + + + + + You haven't met Aristu since you rescued them, have you? They've become a rather powerful force of ours! Here they come! + + + + Really? + + + + flag-capitolsukratspawn1 + + + player + + + flag-capitolaristuspawn1 + + + + + + + 1034.98511 + -1619.84363 + + 0 + + 1 + + + + + 1034.94849 + -1629.97986 + + 1 + + 2 + + + + + 1034.86914 + -1654.66687 + + 2 + + 3 + + + + + 1034.94849 + -1658.47632 + + 3 + + + + + + + {"entityName":"Sukrat","coreSpriteID":"core1_light","coreShellSpriteID":"core2_shell","shellHealth":[1000.0,250.0,500.0],"baseRegen":[60.0,0.0,60.0],"intendedType":0,"parts":[{"location":{"x":0.30000001192092898,"y":0.4000000059604645},"rotation":0.0,"mirrored":true,"abilityID":4,"tier":1,"secondaryData":"","partID":"SmallWing1","shiny":false},{"location":{"x":-0.30000001192092898,"y":0.4000000059604645},"rotation":0.0,"mirrored":false,"abilityID":4,"tier":1,"secondaryData":"","partID":"SmallWing1","shiny":false},{"location":{"x":0.7000000476837158,"y":-0.20000015199184419},"rotation":-180.0,"mirrored":true,"abilityID":13,"tier":2,"secondaryData":"","partID":"MediumWing1","shiny":false},{"location":{"x":-0.7000001668930054,"y":-0.1999998539686203},"rotation":-180.0,"mirrored":false,"abilityID":13,"tier":2,"secondaryData":"","partID":"MediumWing1","shiny":false},{"location":{"x":-0.29999980330467226,"y":0.8999999761581421},"rotation":0.0,"mirrored":false,"abilityID":5,"tier":1,"secondaryData":"","partID":"SmallWing2","shiny":false},{"location":{"x":0.30000001192092898,"y":0.8999998569488525},"rotation":0.0,"mirrored":true,"abilityID":5,"tier":1,"secondaryData":"","partID":"SmallWing2","shiny":false},{"location":{"x":0.6000000238418579,"y":0.6999998688697815},"rotation":0.0,"mirrored":true,"abilityID":5,"tier":1,"secondaryData":"","partID":"SmallWing2","shiny":false},{"location":{"x":-0.6000000238418579,"y":0.699999988079071},"rotation":0.0,"mirrored":false,"abilityID":5,"tier":1,"secondaryData":"","partID":"SmallWing2","shiny":false},{"location":{"x":0.0,"y":-0.800000011920929},"rotation":-90.0,"mirrored":false,"abilityID":13,"tier":1,"secondaryData":"","partID":"SmallSide4","shiny":false},{"location":{"x":0.30000001192092898,"y":-1.2000000476837159},"rotation":-165.0,"mirrored":false,"abilityID":13,"tier":1,"secondaryData":"","partID":"SmallSide4","shiny":false},{"location":{"x":-0.29999983310699465,"y":-1.200000286102295},"rotation":-15.0,"mirrored":false,"abilityID":13,"tier":1,"secondaryData":"","partID":"SmallSide4","shiny":false},{"location":{"x":1.2000000476837159,"y":-1.100000023841858},"rotation":30.0,"mirrored":false,"abilityID":13,"tier":1,"secondaryData":"","partID":"SmallSide4","shiny":false},{"location":{"x":-1.2000001668930054,"y":-1.100000262260437},"rotation":150.0,"mirrored":false,"abilityID":13,"tier":1,"secondaryData":"","partID":"SmallSide4","shiny":false},{"location":{"x":0.0,"y":-1.7999999523162842},"rotation":0.0,"mirrored":false,"abilityID":1,"tier":2,"secondaryData":"","partID":"MediumExtra1","shiny":false},{"location":{"x":-0.699999988079071,"y":-1.100000023841858},"rotation":0.0,"mirrored":false,"abilityID":1,"tier":1,"secondaryData":"gun_drone","partID":"SmallWing2","shiny":false},{"location":{"x":0.699999988079071,"y":-1.100000023841858},"rotation":0.0,"mirrored":true,"abilityID":1,"tier":1,"secondaryData":"gun_drone","partID":"SmallWing2","shiny":false},{"location":{"x":-1.399999976158142,"y":-1.600000023841858},"rotation":165.0,"mirrored":false,"abilityID":13,"tier":1,"secondaryData":"","partID":"SmallSide4","shiny":false},{"location":{"x":1.399999976158142,"y":-1.600000023841858},"rotation":15.0,"mirrored":false,"abilityID":13,"tier":1,"secondaryData":"","partID":"SmallSide4","shiny":false},{"location":{"x":0.0,"y":1.2999999523162842},"rotation":0.0,"mirrored":false,"abilityID":24,"tier":0,"secondaryData":"","partID":"SmallCenter2","shiny":false},{"location":{"x":-0.19999998807907105,"y":1.5999999046325684},"rotation":0.0,"mirrored":true,"abilityID":13,"tier":1,"secondaryData":"gun_drone","partID":"SmallSide3","shiny":false},{"location":{"x":0.20000000298023225,"y":1.600000023841858},"rotation":0.0,"mirrored":false,"abilityID":13,"tier":1,"secondaryData":"gun_drone","partID":"SmallSide3","shiny":false}],"dialogue":{"instanceID":0},"useCustomDroneType":false,"customDroneType":0} + + + Yes. I have been following your antics cloesly since I managed to reach Haven 2, some time after you did. We've all been busy on the frontlines, helping out where we could. + + + + Your service is just as important as mine. + Did you hear of my victory in Beta? + + + + There we go! We're now ready to destroy some of that annoying infection! + + + + Yeah! + About that - what even is the infection? + + + + How do you not know that yet? It's a disease that turns us into murderous red versions of ourselves. It cuts off our ability to communicate, but from what we have seen they clearly have some ability to talk to each other. + + + + Huh. + + + + Well, we could start by scouting out the perimeter a little - I'll call the shots, you can clear the way. + + + + Cool. How's that sound, Aristu? + + + + No wait! I have a few questions of my own! + + + + ... + + + + Don't worry, we've got plenty of time to chat! Our background transmission signals still work, right? Talk again when you're ready. + + + + Sure! + + + + <color=lime>Let's go.</color> + + + Sector 1140-2030 + + + <color=lime>Alright, let's head to the sector below us for starters. Sector 1140-2030.</color> + + + <color=lime>Let's go down once more. Sector 1140-2150.</color> + + + <color=lime>Sukrat?</color> + + + {"entityName":"Aristu","coreSpriteID":"core1_light","coreShellSpriteID":"core2_shell","shellHealth":[1000.0,250.0,500.0],"baseRegen":[60.0,0.0,60.0],"intendedType":0,"parts":[{"location":{"x":0.5,"y":0.699999988079071},"rotation":180.0,"mirrored":false,"abilityID":5,"tier":2,"secondaryData":"","partID":"SmallWing3","shiny":false},{"location":{"x":-0.5000002980232239,"y":0.699999988079071},"rotation":-180.0,"mirrored":true,"abilityID":5,"tier":2,"secondaryData":"","partID":"SmallWing3","shiny":false},{"location":{"x":0.0,"y":1.2999999523162842},"rotation":0.0,"mirrored":false,"abilityID":1,"tier":2,"secondaryData":"","partID":"MediumExtra1","shiny":false},{"location":{"x":0.0,"y":-1.0},"rotation":90.0,"mirrored":false,"abilityID":10,"tier":0,"secondaryData":"gun_drone","partID":"MediumSide2","shiny":false},{"location":{"x":-1.100000023841858,"y":-0.9000001549720764},"rotation":90.0,"mirrored":false,"abilityID":19,"tier":2,"secondaryData":"","partID":"MediumWing3","shiny":false},{"location":{"x":0.5000002980232239,"y":0.20000000298023225},"rotation":0.0,"mirrored":true,"abilityID":7,"tier":1,"secondaryData":"gun_drone","partID":"SmallWing2","shiny":false},{"location":{"x":-0.5000000596046448,"y":0.20000000298023225},"rotation":0.0,"mirrored":false,"abilityID":7,"tier":1,"secondaryData":"gun_drone","partID":"SmallWing2","shiny":false},{"location":{"x":-0.7999998331069946,"y":-0.20000001788139344},"rotation":-45.0,"mirrored":false,"abilityID":6,"tier":1,"secondaryData":"gun_drone","partID":"SmallWing2","shiny":false},{"location":{"x":0.0,"y":0.699999988079071},"rotation":0.0,"mirrored":false,"abilityID":4,"tier":1,"secondaryData":"gun_drone","partID":"SmallCenter2","shiny":false},{"location":{"x":0.0,"y":-1.5},"rotation":0.0,"mirrored":false,"abilityID":24,"tier":0,"secondaryData":"","partID":"SmallCenter2","shiny":false},{"location":{"x":1.100000023841858,"y":-0.9000001549720764},"rotation":-90.0,"mirrored":true,"abilityID":13,"tier":2,"secondaryData":"","partID":"MediumWing3","shiny":false},{"location":{"x":0.800000011920929,"y":-0.20000001788139344},"rotation":45.0,"mirrored":true,"abilityID":6,"tier":1,"secondaryData":"gun_drone","partID":"SmallWing2","shiny":false}],"dialogue":{"instanceID":0},"useCustomDroneType":false,"customDroneType":0} + + + <color=lime>Not really. It's just... I haven't had any time off since I was born. That's kind of sad, you know?</color> + + + ShellCore + + + <color=lime>Is there any specific reason why we're doing this?</color> + + + <color=lime>Let's destroy five enemies while we're here.</color> + + + <color=lime>Hmm...</color> + + + <color=lime>Neither of us did either. I guess that's just the reality of the world we live in.</color> + + + Sector 1140-2290 + + + Sector 1140-2150 + + + <color=lime>We still don't know how all those enemy ShellCores got so close to Haven 3. Not all of them had Stealth equipped.</color> + + + <color=lime>Well, maybe they reconstructed at a yard nearby.</color> + + + <color=lime>Surely a scout would have been able to see that.</color> + + + <color=lime>And what if they use whatever they did again - this time against our Capitol? We'd be blown to bits!</color> + + + <color=lime>Hmm... Let's go down yet again. This time to Sector 1140-2290.</color> + + + <color=lime>...</color> + + + <color=lime>You know, it almost feels like you know where you're taking us Sukrat!</color> + + + <color=lime>We go right this time, to Sector 1500-2290.</color> + + + Sector 1500-2290 + + + <color=lime>Anything else you find strange, Aristu?</color> + + + <color=lime>Yeah - how were we born knowing how to communicate and use our abilities?</color> + + + <color=lime>We're almost here. Just... don't make any rash decisions when we get there, alright?</color> + + + <color=lime>It's almost second-nature to me.</color> + + + <color=lime>One last time. We head south.</color> + + + <color=lime>Whoa, what is this place?</color> + + + <color=lime>Talk to me directly after you two are done sightseeing.</color> + + + Jump Sector + + + <color=lime>Uh... there isn't much to see... maybe this gate looks cool?</color> + + + Strange place, isn't it? + + + + Yeah... + + + + Wait! Don't get so close to it!!!! + + + + ??? + + + + No, it's fine. This thing is out of commission. Or at least, I haven't figured out how to get it to work yet. + + + + So you've been here before? + + + + I... just don't want you two to go through here. You two are important to me. You... can't. + + + + Well, I wasn't planning on going through. + Well it's not like it works, right? + + + + Yeah, but... maybe someone will tell you how to use it. + + + + ... + + + + No, I understand. You're afraid that we might get a mission to use the gate, right? + + + + ... + + + + ... I need you two to promise me that you won't go through the gate. Even if they tell you to. + + + + But... + I have to follow orders. + + + + War, war, war. We've never been given the opportunity to just... live. + + + + ... + + + + While I appreciate your concern for our wellbeing, I don't think I can do that. Whatever is on the other side of that gate... I bet it holds all the answers I've ever wanted. + + + + Well... + You make a good point. + + + + It was worth a shot. I didn't think you two would promise me anyway. + + + + I appreciate you asking, though. + So what now? + + + + ... + + + + What do you think, Sukrat? + + + + To be honest, I wouldn't have made that promise myself. I'm curious too. So maybe that was a little selfish of me. So instead, I'll ask you two for another promise. + + + + Which is? + + + + That if one of us returns from that gate, they tell the other two of us everything they learned. I can promise you I would do that. + + + + ... + + + + Sounds like a plan. I'm in. + + + + Me too! + + + + It's settled then, right? What now? + + + + ... + + + + Yes. This is the Jump Sector. Where many of our comrades used this gate to warp to the abandoned sectors. They never came back. + + + + So why'd you bring us here? + + + + Well then, I hope you at least make use of the location of this sector now that it's revealed to you. Just be careful if they send you here. + + + + ... + + + + I have nothing else to show you two, I guess we could just head back to the Capitol now. See if there's anything they have for us now. I hope you two enjoyed the trip. + + + + Thanks for this, Sukrat. + I didn't enjoy it. + + + + <color=lime>I guess I should go talk to the core in Capitol South again.</color> + + + Capitol South + + + + + + + 1475.95886 + -2322.203 + + 0 + + 11 + + + + + 1476.661 + -2322.905 + + 11 + + + + + + + + + + + 1452.73572 + -2324.294 + + 0 + + 1 + + + + + 1452.11 + -2324.996 + + 1 + + + + + + + + + + + 1464.9126 + -2323.201 + + 0 + + 12 + + + + + 1464.9126 + -2324.062 + + 12 + + + + + + + Well then! The three of us surely make a phenomenal team. Just follow my transmissions and get ready to serve some DESTRUCTION! + + + - Follow Sukrat's directions. + + + FI-sukrat-stroll + + + Let's do it!. + + + Not ready yet.. + + + Well, what are you waiting for! Let's head south. + + + FI-5.3.0-EOC + + + Greetings commander, you made it just in time for our next mission. + +(End of content as of Alpha 5.3.0, thank you for playing ShellCore Command Remastered!) + + + \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/Fateful Intermission.taskdata.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/Fateful Intermission.taskdata.meta new file mode 100644 index 000000000..d4679b708 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/Fateful Intermission.taskdata.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 0b780345f99a56844941eb771e930def +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/Missile Station Demolition.taskdata b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/Missile Station Demolition.taskdata new file mode 100644 index 000000000..ca8c17052 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/Missile Station Demolition.taskdata @@ -0,0 +1,384 @@ + + + + + + + + + + + + Dialogue + Out + Single + Right + 243 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + false + + + + + Condition + In + Multi + Left + 59 + 0 + + + TaskFlow + Out + Single + Right + 59 + 0 + + + + + + + false + + + + + Condition + In + Multi + Left + 59 + 0 + + + TaskFlow + Out + Single + Right + 59 + 0 + + + + + + + false + + + + + true + + false + false + Mission + + + + false + + 2 + 1 + true + + + + false + + 6 + 1 + true + + + + false + + 4 + 1 + true + + + + + + + + + + Condition + In + Multi + Left + 59 + 0 + + + TaskFlow + Out + Single + Right + 59 + 0 + + + + + + + true + + + + + + Dialogue + Out + Single + Right + 256 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + false + + + + + + Dialogue + Out + Single + Right + 228 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + + + + 0 + 1 + 0 + 1 + + + + + + + + + + 0 + 1 + 0 + 1 + + + 1500 + true + + + 10 + 0 + + 50 + + + + + false + + + + + + + + + + 0 + 1 + 0 + 1 + + false + 2 + + + + + + + + + + + + + + + + + + + + + + + + + + Hello there, fellow warrior. Here you see a Crusader keeping their guard up for any Infected threat. I was suppose to be completing a different task however. One that was far more difficult than the one I'm doing now. + + + + What task were you suppose to be completing? + + + + Sector 660-1670 + + + Sector 480-1610 + + + Sector 300-1610 + + + missile-station-failure + + + Missile Station + + + THOUGH COMPLETING THIS MISSION, YOU: + +Cleared out several Mission Stations along the path to the Capitol, which should help out future ShellCores with reaching the Capitol. + + + clip_missioncompleteep2 + + + + + + I was aiming to complete a nigh impossible task, for the sake of the Uninfected. But alas, I was never able to complete it. My shell is too slow and my credits have nearly ran dry. However, since you're here, you might be able to pull this feat off! + + + + What is the feat? + + + + Capitol Challenge Sector + + + There's a lot of Missile Stations that lie between the Capitol and Haven 3. These missile stations pose a big threat for Shellcores who are trying to travel here. + + + + I'd imagine so. + + + + My sucessor, my savior! You actually managed to demolish all of those Missile Stations. Take my remaining credits, my graditude and my respect for this feat that you've accomplished. + + + Demolishing those Missile Stations will require a well rounded Shellcore capible of striking ground targets. I wish you the best of luck pulling this feat off for this won't be an easy task. + + + (These objectives must be completed in order and in one run) +Head to Sector 660-1670 and destroy 2 Infected Missile Stations + +Head to Sector 480-1610 and destroy 6 Missile Stations + +Head to Sector 300-1610 and destroy 4 Missile Stations + + + heavy-defense-failure + + + SmallCenter9 + + + counter_drone + + + Missile Station Demolition + + + Have faith, I'll destroy those Heavy Defenses in your stead. + + + I'm in no shape for this complete this. + + + The Heavy Defense stations that reside between the Capitol and the third Heaven need to be demolished. Hopefully more Shellcores will be able to have access to the Capitol. + + + A + + + Speak to the Crusader in the Capitol Challenge Sector + + + + The Scourge of Secrecy + + + + It seems like you have uncompleted business. Head back and finish up on your missions before taking on this task. + + + \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/Missile Station Demolition.taskdata.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/Missile Station Demolition.taskdata.meta new file mode 100644 index 000000000..2349cf57e --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/Missile Station Demolition.taskdata.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 18f72493c282bcf48a63d0afedf9f3ef +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/Perfectly Sane Escapade.taskdata b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/Perfectly Sane Escapade.taskdata new file mode 100644 index 000000000..68a171a4e --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/Perfectly Sane Escapade.taskdata @@ -0,0 +1,493 @@ + + + + + + + + + + + + Dialogue + Out + Single + Right + 293 + 0 + + + Dialogue + Out + Single + Right + 348 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + true + false + false + Mission + + + + + Condition + In + Multi + Left + 59 + 0 + + + TaskFlow + Out + Single + Right + 59 + 0 + + + + + + + false + + + + + + false + + + + + + true + + + + + + Dialogue + Out + Single + Right + 189 + 0 + + + Dialogue + Out + Single + Right + 244 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + true + false + false + Mission + + + + + + false + + + + + Condition + In + Multi + Left + 59 + 0 + + + TaskFlow + Out + Single + Right + 59 + 0 + + + + + false + + 10 + 1 + true + + + + false + + 10 + 1 + true + + + + false + + 2 + 1 + true + + + + + + false + + + + + + true + + + + + + + + + false + + 8 + 1 + true + + + + + + Dialogue + Out + Single + Right + 267 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + true + + false + false + Mission + + + + + + + + + 0 + 1 + 0 + 1 + + + 500 + true + + + 4 + 2 + + 20 + + + + + false + + + + + true + + false + false + Mission + + + + + + + + + 0 + 1 + 0 + 1 + + + + + + + + + + 0 + 1 + 0 + 1 + + + 850 + true + + + 1 + 2 + + 30 + + + + + false + + + + + + + + + + 0 + 1 + 0 + 1 + + true + 2 + + + + + + + + + 0 + 1 + 0 + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Oi there. Dere's a lotta Scouter buggers snoppin' around the Capitol, don't ya think? Dey keep harassing our Shellies, especially those who go down to that lil tanker trainin' zone. Those buggers need to sod off! Y'know what? Since yer here, I gots a couple tasks for ye. Lend yourself to me for a bit, will ya? + + + + + Uhh...sure. + I'm sorry, but this isn't the right time. + + + + Sector 760-2030 + + + Capitol South-West + + + + + + Ya ready to tackle that next task I mentioned earlier? + + + + Yes I am. + Err, no. I have something I need to do. + + + + Sector 690-2150 + + + ShellCore + + + Defense Turret + + + Missile Turret + + + THROUGH COMPLETING THIS MISSION, YOU: + +Destroyed numerous Scouting ShellCores between the Capitol and the Training Battlezone, which will hopefully make traversal for future ShellCores easier. + + + clip_missioncompleteep2 + + + Alright. There's a sector further down yonder belows the one you killed dem Scouter buggers in. Dere's quite a few types of Shelly buggers dere, many of which can spawn drones. Dere's also some ouposts surrounded by turrets too. Y'know what I want you to do? + + + + + Head out and destroy dem lil buggers? + + + + perfectly-sane + + + Alright. Dere's a sector right belows this one dat gots a lotta Scouter buggers that need to be 'rradicated. Dey have the ability to use Stealth, so it's hard to git in dere and pin 'em down. If ye can figure out a way to shred those buggers to pieces, I'll give you a good lod of credits. + + + - Head to Sector 760-2030 + +- Destroy all (8) Basic Scouts + + + MediumSide3 + + + SDG's Anti-Scouting + + + Aye, I'll head out there and find a way. + + + Actually, I'll pass. + + + Did ya forget what yer task was? Alright, head down to Sector...760-2030? Yeh, Sector 760-2030, and 'rradicate all those Scouter buggers. + + + + Mmmmm, I see you gots some of that good ol' potenital. Good stuff out dere. I got that lod of credits I said I'd give ya, but we ain't done yet. Ya said you'd lend yerself to me for a bit, so speak with me for one moar task when yer ready. + + + + Exactly! Yer catchin' on quickly. Head down to Sector 690-2150, I think it was, and purge all dem lil red buggers. Maybe de'll learn a lesson and leave our Shellies alone. Make 'em run for dere money and I'll hook you up with a bigger lod of credits too. Wadd'ya say? + + + + Head to Sector 690-2150 + +Destroy all (10) ShellCores and all (10 defense and 2 missile) turrets + + + SDG's Sector Purge + + + I'll go down there and purge all dem red buggers! + + + I need to take care of something. + + + Purge all dem lil red buggers in Sector 690-2150! + + + Perfectly Sane Escapade + + + B + + + Head to Capitol Southwest and speak to the Perfectly Sane core. + + + + The Scourge of Secrecy + + + + It seems like ya have some unfinished business. We 'ppriciate having ya here, but ya need to go sod off and finish your previous taks. + + + + Ya did good out there, fellow Shelly, ya did good. Hopefully those red buggers sodded off now. We 'ppriciate what you're doin' for us. Take this big lod of credits and keep up the good work. + + + \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/Perfectly Sane Escapade.taskdata.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/Perfectly Sane Escapade.taskdata.meta new file mode 100644 index 000000000..8d53353f1 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/Perfectly Sane Escapade.taskdata.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: a95ac814b2e5ea04393603f844509774 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/Saving Private Beamer.taskdata b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/Saving Private Beamer.taskdata new file mode 100644 index 000000000..4393c7d4d --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/Saving Private Beamer.taskdata @@ -0,0 +1,501 @@ + + + + + + + + + + + + Dialogue + Out + Single + Right + 189 + 0 + + + Dialogue + Out + Single + Right + 244 + 0 + + + 0 + 1 + 0 + 1 + + + + Mission + + + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + false + false + false + Mission + + + + + + true + + + + + true + + false + false + Mission + + + + + + + + + + 0 + 1 + 0 + 1 + + + + + + + Dialogue + Out + Single + Right + 202 + 0 + + + Dialogue + Out + Single + Right + 257 + 0 + + + 0 + 1 + 0 + 1 + + + + Mission + + + + + + Dialogue + Out + Single + Right + 176 + 0 + + + 0 + 1 + 0 + 1 + + + + Mission + + + + + + false + + + + + true + + false + false + Mission + + + + + + false + + + + + + true + + + + + true + + false + false + Mission + + + + + + false + + + + + Condition + In + Multi + Left + 59 + 0 + + + TaskFlow + Out + Single + Right + 59 + 0 + + + + + + + true + + + + + + false + + + + + + + + + 0 + 1 + 0 + 1 + + + + + + + true + + + + + + + + + 0 + 1 + 0 + 1 + + + 350 + false + + + 0 + 1 + 25 + + + + + false + + + + + + + + + + + + + + 0 + 1 + 0 + 1 + + + + + + + + + + + + true + + + + + + + + + false + + 6 + 1 + true + + + + + + + + + 0 + 1 + 0 + 1 + + + 500 + false + + + 0 + 1 + 25 + + + + + false + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + You came to help me out? I don't need any help, I can handle this with ease! + + + + I don't think you can... + Nope! + + + + + + + 880-150-beamer + + + Saving Private Beamer + + + C + + + Talk to the Uninfected ShellCore in Sector 880-150. + + + + Training Circuit + + + + Hmm... on second thought you don't seem trained enough to commit to this mission. Might I suggest finishing your work at Haven 1? + + + What? You question me! Watch, I will wipe this Sector clean of the red scum! + + + + Installing democracy and freedom huh? + I should go back to the other ShellCore. + + + + What the heck are you talking about? + + + + I should go back to the other ShellCore. + + + + Sector 880-150 + + + 1130-300-beamer + + + Sector 1130-300 + + + Thanks again for yo-- what? They're not coming back? And they're on a suicide mission to destroy all of that sector's adversaries? Hmm... I must think a bit. Talk to me again. + + + Greetings, ShellCore. My comrade left for Sector 1130-300 hours ago, and they still haven't returned. I'm afraid they may be in trouble. Can you look out for them if you find yourself in that sector? + + + - Head to Sector 1130-300. +- Find the Uninfected ShellCore. + + + SPB-part1 + + + Sure. + + + Maybe later. + + + You should look for my friend in Sector 1130-300. + + + SPB-part1-complete + + + Thanks a bunch. That should really ease the effects of their stupidity. + + + THROUGH COMPLETING THIS MISSION, YOU: + +Saved Private Beamer! Well, hopefully you did. + + + clip_missioncompleteep1 + + + SPB-part2-complete + + + ShellCore + + + Beamer is being brash again, hm? Well, I know I have already asked you for so much, but would you mind making it a little easier for them? Just destroying six enemy ShellCores should suffice. + + + - Clear 6 ShellCores from Sector 1130-30. + + + SPB-part2 + + + ...Alright. + + + Eh, I've better things to do. + + + Yes, their name is Beamer. They're ranked as Private. And you should go help them in Sector 1130-300 by destroying 5 adversary ShellCores. + + + \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/Saving Private Beamer.taskdata.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/Saving Private Beamer.taskdata.meta new file mode 100644 index 000000000..c0029d60c --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/Saving Private Beamer.taskdata.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: ac6c95368ed8d024d82e4635f143cc5b +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/The Capitol's Reckoning.taskdata b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/The Capitol's Reckoning.taskdata new file mode 100644 index 000000000..ffc712f6c --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/The Capitol's Reckoning.taskdata @@ -0,0 +1,1985 @@ + + + + + + + + + + + true + + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 227 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + + + + + 0 + 1 + 0 + 1 + + false + 2 + + + + + + Dialogue + Out + Single + Right + 217 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + Dialogue + Out + Single + Right + 191 + 0 + + + Dialogue + Out + Single + Right + 247 + 0 + + + 0.36 + 0.537 + 0.9 + 1 + + + + false + 0 + Mission + + + + + + Dialogue + Out + Single + Right + 178 + 0 + + + Dialogue + Out + Single + Right + 234 + 0 + + + 0.36 + 0.537 + 0.9 + 1 + + + + false + 0 + Mission + + + + + false + false + false + Mission + + + + + + false + + + + + + + + + + + + + + 0 + 1 + 0 + 1 + + + 500 + false + + + 0 + 1 + + 100 + + + + + false + + + + + + + + + true + + false + false + Mission + + + + + + false + + + + + + true + + + + + Condition + In + Multi + Left + 61 + 0 + + + TaskFlow + Out + Single + Right + 61 + 0 + + + + + + + false + + + + + + + + + + + false + + + + + + true + + + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + false + false + false + Mission + + + + + + + + + + + + + + 0 + 1 + 0 + 1 + + + 1000 + false + + 0 + 1 + + 50 + + + + false + + + + + + + + + + false + + + + + Condition + In + Multi + Left + 61 + 0 + + + TaskFlow + Out + Single + Right + 61 + 0 + + + + + + + Dialogue + Out + Single + Right + 219 + 0 + + + 1 + 0 + 0 + 1 + + + + false + 0 + Mission + + + + + + Dialogue + Out + Single + Right + 219 + 0 + + + 1 + 0 + 0 + 1 + + + + false + 0 + Mission + + + + + false + false + true + + + false + + + + + false + false + true + + + false + + + + + + Dialogue + Out + Single + Right + 206 + 0 + + + 1 + 0 + 0 + 1 + + + + false + 0 + Mission + + + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + false + false + false + Mission + + + + + false + false + false + + + false + + + + + false + false + false + Mission + + + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + false + false + false + Mission + + + + + false + + false + false + 0 + false + + + + + + false + + true + false + 0 + false + + + + + + + + + + + + + + + + + + + + + + + true + + true + false + Mission + + + + + true + + true + false + Mission + + + + + true + + true + false + Mission + + + + + false + false + true + + + false + + + + + + Dialogue + Out + Single + Right + 219 + 0 + + + 1 + 0 + 0 + 1 + + + + false + 0 + Mission + + + + + + Dialogue + Out + Single + Right + 193 + 0 + + + 1 + 0 + 0 + 1 + + + + false + 0 + Mission + + + + + + Dialogue + Out + Single + Right + 206 + 0 + + + 1 + 0 + 0 + 1 + + + + false + 0 + Mission + + + + + true + + true + false + Mission + + + + + false + + false + false + 0 + false + + + + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + false + false + false + Mission + + + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + false + false + false + Mission + + + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + false + false + false + Mission + + + + + false + false + true + + + false + + + + + false + false + true + + + false + + + + + false + false + true + + + false + + + + + false + false + false + + + false + + + + + false + false + true + + + false + + + + + + Dialogue + Out + Single + Right + 258 + 0 + + + Dialogue + Out + Single + Right + 317 + 0 + + + Dialogue + Out + Single + Right + 376 + 0 + + + 1 + 0 + 0 + 1 + + + + false + 0 + Mission + + + + + + true + + + + + + false + + + + + + + + + Condition + In + Multi + Left + 61 + 0 + + + TaskFlow + Out + Single + Right + 61 + 0 + + + + + + + + + + + + true + + + + + + false + + + + + + + + + 0 + 1 + 0 + 1 + + + 500 + true + + + 35 + 1 + + 25 + + + + false + + + + + true + + false + false + Mission + + + + + + + + + 0 + 1 + 0 + 1 + + + + + + + + 1 + 1 + 1 + 1 + + + + + + + + false + + + + + + + true + + + + + + + true + + + + + + + false + + + + + + + true + + + + + + + true + + + + + + true + + + + + + false + + 1 + + + 0 + 0 + + false + true + + true + + + + + + false + + 1 + + + 0 + 0 + + false + true + + true + + + + + + + + + + + false + + + + Uninitialized + + + + + Uninitialized + + + + + Uninitialized + + + + + + Condition + In + Multi + Left + 59 + 0 + + + TaskFlow + Out + Single + Right + 59 + 0 + + + Condition + In + Multi + Left + 114 + 0 + + + TaskFlow + Out + Single + Right + 114 + 0 + + + Condition + In + Multi + Left + 169 + 0 + + + TaskFlow + Out + Single + Right + 169 + 0 + + + + + + true + + false + false + Mission + + + + + + + + + 0 + 1 + 0 + 1 + + + 100 + true + + + 7 + 2 + + 15 + + + + + false + + + + + + + + + + + + + + 0 + 1 + 0 + 1 + + + + + + + false + + + + + + + + + 0 + 1 + 0 + 1 + + + + + + + + + + + + + + + 0 + 1 + 0 + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + haven3-missioncontrol1 + + + Commander, you have helped clear the scourge in these sectors. Given the circumstances, you are too helpful, not to mention useful, to stay up here. + + + + What do you want me to do? + + + + The Capitol's Reckoning + + + A + + + Speak to Mission Control in Haven 3. + + + + The Scourge of Secrecy + DeadZone Scouting + + + + It is too risky for you to travel through given our current technology. You might want to search around for other cores who have a lead on how they even got there. + + + We need to get you to the Capitol, but we are not sure how. We now know that the Infected have totally flanked out our path to the lower sectors. + + + + I'll find a way. + + + + Blessed are the colorblind, for they are closer to seeing the truth. + + + + It's that voice again! + Stop talking in riddles... + + + + ... + + + + It's that voice again! + Stop talking in riddles... + + + + Sector 760-1550 + + + You already have. The Stealth ability you helped find was facilitatory to their guerilla attacks around here. We are also aware that it is your fighting chance of getting to the Capitol. Use it wisely. + + + - Head to the Capitol Platforms. + + + + + + The Capitol's Reckoning_travel1 + + + I'll find a way to the Capitol Platforms. + + + I'll need some more preparation before embarking. + + + Now hurry and travel to the Capitol. Don't worry about us. I've marked our intel of the path on your map. Good luck! + + + BattleZone Zeta + + + capitol-south-control + + + Capitol South + + + music_blue2 + + + TCR-5.0.1-content-complete + + + Welcome again to the Capitol, commander. Combat is rather different here due to the abundance of platforms. In preparation for your arrival we have set up a training zone for you to understand the intricacies. Return on victory. + + + - Head to BattleZone Zeta. +- Defeat the Infected and return for your reward. + + + The Capitol's Reckoning_battle1 + + + I'll defeat the BattleZone. + + + Give me a moment. + + + BattleZone Ta Hetera + + + Sector 600-2070 + + + I've never understood it. They keep sending us to these skirmishes for this massive war that nobody knows why we're fighting. + + + + ... + + + + Pytha, your monologuing always irritates me. These greens are mere pests for us to obliterate. Though you raise a good point. + + + + ... + + + + daayo + + + player + + + pytha + + + That we shall do. That putrid speaking green is eavesdropping on us again, how about we blow it to smithereens? + + + + We'll see about that. + + + + + + + + 567.3518 + -1774.95325 + + 0 + + 3 + + + + + 567.292236 + -1752.59534 + + 3 + + + + + + + All this misery, for what? Our commander was the stuff of legends, but even they weren't allowed to know. That's why they left us. + + + + ... + + + + Ever since they disappeared, I've begun to doubt the world we live in. + + + + ... + + + + Whatever the reason for this war may be, we'll have to break rank and search for it ourselves. + + + + *eavesdropping noises* + + + + + + + + 580.832031 + -1779.74731 + + 0 + + 1 + + + + + 578.2819 + -1779.74963 + + 1 + + + + + + + Fortunately for you, wretch, we were ordered to return to the Infected Capitol after zone capture for a core upgrade. I doubt your sickly self will be able to retake it from our accomplice, even if you won't be fighting the likes of me. + + + + Wait! Where are you going! + A core upgrade? + INFECTED Capitol??? + + + + Commander, you just barely got here but we need your help again. You might have realized but the Infected are pushing close to us. While the others push back the Capitol path, we need you to retake BattleZone Ta Hetera. Don't take any unnecessary risks - head there through the safe sector. + + + - Head to Sector 600-2070. + +- Then, head to BattleZone Ta Hetera and defeat the enemy Infected. + +- Return for your reward. + + + The Capitol's Reckoning_battle2 + + + SmallCenter3 + + + Sure. + + + No thanks. + + + Congratulations on your victory. We hope you enjoyed the little simulation - we think it is similar to the battles at our front lines. + + + If you have not already, now is a good time to try assigning Sukrat to your party. They will help you in the BattleZone. You can assign them from the Party tab in the Status Menu (press E) + + + <color=lime>Time to retake this zone! Looks like there's only one enemy.</color> + + + <color=lime>This is going to be a piece of cake!</color> + + + sukrat + + + <color=lime>What's all this ruckus? Are we now the Capitol cleanup squad?</color> + + + clearly-delusional + + + <color=lime>Great, looks like we've kicked them out from here.</color> + + + <color=lime>The deed is done! We should return to base.</color> + + + <color=lime>We are not ones to tarry! Let us return.</color> + + + flag-daayo-spawn-TCR + + + flag-pytha-spawn-TCR + + + TCR-ta-hetera-complete + + + Capitol Upgrade Sector + + + core2_shell + + + core3skills_shell + + + core3weapons_shell + + + Commander, your efforts are much appreciated, but your report of enemies from the upper sectors arriving here is unnerving. We are busy formulating a plan. For now, head to the north-east Upgrade Sector and upgrade your core. + + + - Head to the Capitol Upgrade Sector. + +- Upgrade your core to a higher tier. + +- Return for your reward. + + + MediumCenter1 + + + TCR-final + + + I'll go upgrade my core. + + + Head to the Capitol Upgrade Sector and upgrade your core, and then return here. + + + THROUGH COMPLETING THIS MISSION, YOU: + +Reached the Capitol Sectors + +Learned the basics of Ground Combat + +Met Daayo and Pytha near the Capitol + +Upgraded your core to a higher tier + +SUGGESTED NEXT MISSION: FATEFUL INTERMISSION + + + clip_missioncompleteep2 + + + Thank you commander. We are currently formulating a plan to retaliate against enemy movements. Stay vigilant. + + + Finally, I've been awaiting your arrival eagerly. I have already received news of your encounter with the Infected leader. So, is it true that you were able to communicate with the Infected? + + + TCR-reached-capitol + + + What? You met those Infected you dealt with before? So they have come to the lower sectors. + + + \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/The Capitol's Reckoning.taskdata.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/The Capitol's Reckoning.taskdata.meta new file mode 100644 index 000000000..51f5955a5 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/The Capitol's Reckoning.taskdata.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 9fb5b0e00226a0d4ca4ede64f9f8f0cb +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/The Carrier Conundrum.taskdata b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/The Carrier Conundrum.taskdata new file mode 100644 index 000000000..c9297a180 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/The Carrier Conundrum.taskdata @@ -0,0 +1,602 @@ + + + + + + + + + + + + Dialogue + Out + Single + Right + 256 + 0 + + + Dialogue + Out + Single + Right + 312 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + false + false + false + Mission + + + + + true + + false + false + Mission + + + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + false + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 256 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + 0 + 0 + + false + true + false + 0 + + + + + + + + + + true + + true + false + Mission + + + + + + + + + + true + + false + false + Mission + + + + + + 0 + 0 + + false + true + false + 0 + + + + + + 0 + 0 + + false + true + false + 0 + + + + + Condition + In + Multi + Left + 59 + 0 + + + TaskFlow + Out + Single + Right + 59 + 0 + + + + + false + + 1 + 1 + false + + + + + + + + + 0 + 1 + 0 + 1 + + + 250 + true + + 17 + 2 + + 0 + + + + false + + + + + true + + true + false + Mission + + + + + + + + + 0 + 1 + 0 + 1 + + + + + + + + + + + + + 0 + 0 + + false + false + false + 1.5 + + + + + + + 0 + 0 + + false + false + false + 3 + + + + + + + + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + false + false + false + Mission + + + + + + + + + + + + + + + + + + + + + true + + + + + + + + + + 0 + 1 + 0 + 1 + + false + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + I’m surprised to see you back here, but I’m glad you came. + +The infected here appear to be gathering in strength – If we don’t do anything about it soon, this sector will become completely overrun. + + + + What do you want me to do? + Perhaps another time. + + + + 120-980-beamer + + + The infected have bought in a carrier located in the North-Western corner of this sector. + +I believe its destruction is imperative if we ever hope to see the infected be cleansed from this sector. + + + + But how can I get close? + + + + 120-980carrier + + + There are 2 infected outposts located in the North-Eastern side of this sector. If you can capture them, you can utilise siege turrets to take out the carrier. + + + - Destroy the Infected Carrier in Sector 120-980 + + + SmallCenter2 + + + + + + The Carrier Conundrum + + + Sounds like a plan, I’m in! + + + Sorry, it will have to wait. + + + Thank you, hopefully now we can begin to reclaim this sector. + +I don’t have much, but this part should help you on your journey. I’ll stay here and monitor the situation. + + + THOUGH COMPLETING THIS MISSION, YOU: + +Helped to clear the infected and their carrier from Sector 120-980. + + + clip_missioncompleteep1 + + + 120-980flag1 + + + 120-980flag2 + + + C + + + Speak to the Uninfected scout in Sector 120-980, + + + + The Scourge of Secrecy + + + + Thanks for checking up on me, but theres nothing left you can do here right now. + +I'll let you know if anything pops up. + + + \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/The Carrier Conundrum.taskdata.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/The Carrier Conundrum.taskdata.meta new file mode 100644 index 000000000..62db6d381 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/The Carrier Conundrum.taskdata.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 83cee2d811d013846ad2c8d5cf0bafc5 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/The Scourge of Secrecy.taskdata b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/The Scourge of Secrecy.taskdata new file mode 100644 index 000000000..1db0e94aa --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/The Scourge of Secrecy.taskdata @@ -0,0 +1,2067 @@ + + + + + + + + + + + + + + + + 0 + 1 + 0 + 1 + + false + 0 + + + + + true + + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 241 + 0 + + + Dialogue + Out + Single + Right + 296 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + true + + + + + true + + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 228 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + Dialogue + Out + Single + Right + 215 + 0 + + + Dialogue + Out + Single + Right + 270 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + Dialogue + Out + Single + Right + 254 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + false + false + false + Mission + + + + + + true + + + + + true + + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 267 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + false + false + false + Mission + + + + + + true + + + + + + false + + + + + + false + + + + + + false + + + + + + + + + 0 + 1 + 0 + 1 + + + + + + true + + false + false + Mission + + + + + + + + + Condition + In + Multi + Left + 59 + 0 + + + TaskFlow + Out + Single + Right + 59 + 0 + + + + + + + + + + 0 + 1 + 0 + 1 + + + + + + true + + false + false + Mission + + + + + + false + + + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + false + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 228 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + + + + 0 + 1 + 0 + 1 + + + + + + true + + false + false + Mission + + + + + + + + + 0 + 1 + 0 + 1 + + + 1000 + true + + + 21 + 0 + + 200 + + + + + false + + + + + + + + + 0 + 1 + 0 + 1 + + + 100 + true + + 4 + 1 + + 0 + + + + false + + + + + + + false + + + + + + + false + + + + + + + false + + + + + + + + + 0 + 1 + 0 + 1 + + + + + + true + + false + false + Mission + + + + + + Action + Out + Single + Right + 63 + 0 + + + + + + false + + 1 + 1 + false + + + + + + + false + + + + + + false + + + + + false + false + false + + + true + + + + + + false + false + + + + + + + + Action + Out + Single + Right + 63 + 0 + + + + + + + true + + true + false + Mission + + + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + false + false + false + Mission + + + + + false + false + + + + + + + false + + false + true + 0.2 + true + + + + + + + + + + + + + Action + Out + Single + Right + 63 + 0 + + + + + + + + + + + + + + false + + + + + + false + + + + + + + false + + + + + + true + + + + + + + false + + + + + + false + + + + + + false + + + 1 + + + 0 + 0 + + false + true + + false + + + + + + false + + + 1 + + + 0 + 0 + + false + false + false + + + + + + false + + + + + + + + + + + false + + + + + + Dialogue + Out + Single + Right + 228 + 0 + + + Dialogue + Out + Single + Right + 283 + 0 + + + 1 + 0 + 0 + 1 + + + + true + 0.075 + Mission + + + + + + Dialogue + Out + Single + Right + 176 + 0 + + + 1 + 0 + 0 + 1 + + + + true + 0.075 + Mission + + + + + + Dialogue + Out + Single + Right + 176 + 0 + + + 1 + 0 + 0 + 1 + + + + true + 0.075 + Mission + + + + + + Dialogue + Out + Single + Right + 189 + 0 + + + 1 + 0 + 0 + 1 + + + + true + 0.075 + Mission + + + + + + false + + + 1 + + + 0 + 0 + + false + true + + false + + + + + + false + + + 1 + + + 0 + 0 + + false + true + + false + + + + + + Dialogue + Out + Single + Right + 254 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + false + + + + + true + + false + false + Mission + + + + + + + 1 + 1 + 1 + 1 + + + + + + + + + + 0 + 1 + 0 + 1 + + + 500 + true + + + 1 + 2 + + 50 + + + + + false + + + + + + + + + 0 + 1 + 0 + 1 + + + 1500 + true + + + 10 + 0 + + 300 + + + + + false + + + + + + + + + + + + + + 0 + 1 + 0 + 1 + + + + + + + true + + + + + + + + + + + false + + + + + Condition + In + Multi + Left + 59 + 0 + + + TaskFlow + Out + Single + Right + 59 + 0 + + + + + + + false + + + + + + true + + + + + Condition + In + Multi + Left + 59 + 0 + + + TaskFlow + Out + Single + Right + 59 + 0 + + + + + + + false + + + + + + true + + + + + + + + + 0 + 1 + 0 + 1 + + + 2500 + false + + + 0 + 1 + + 500 + + + + + false + + + + + + false + + + + + + true + + + + + + + false + + + + + + + false + + + + + + false + + 1 + + + 0 + 0 + + false + true + + true + + + + + + false + + 1 + + + 0 + 0 + + false + true + + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The Scourge of Secrecy + + + B + + + Speak to the Mission Control in Haven 3. + + + + Trial By Combat + + + + You should finish the mission given by the Misison Control in Haven 2 first. + + + haven3-missioncontrol1 + + + You are no longer a newborn, you are a hardened fighter whose work we couldn't do without. This Haven and its surrounding sectors have been all but sabotaged by the Infected, will you help us take them back? + + + + Yes. + No. + + + + + + + 120-980-beamer + + + Thank you for coming here. There is a scourge in these sectors, the Infected weren't here a moment ago, and now, red is all I can see. It's like they were invisible. + + + + Anything else? + + + + We are just north of the path to the Capitol sectors. I saw it being overrun just like this sector here. We are detached from our headquarters. + + + + I'll relay this back. + Capitol? + + + + I know it only by name, and by the elite Cores I spot traveling from there to Haven 3 to deposit parts and gather information. It is of great prosperity, and I have heard it has something we here have never had: safety. + + + + I'll relay this back. + + + + 1040-920-beamer + + + These sectors used to be ours. Then they invaded Epsilon and this sector, and we had no firepower to fight them back with. But not long ago most of them seem to have left to invade westward. While they have left Defense Turrets to slow us down, the time seems right to reclaim Epsilon. + + + + I'll report back to Mission Control. + + + + Haven 3 + + + Sector 120-980 + + + Sector 1040-920 + + + This is a lot to process, our scouts have done well. They'll remain stationed there for now as they always have, but now we mobilize and return the favor. + + + BattleZone Delta + + + Well done, the enemy commander retreated from the Zone. + + + Sector 610-740 + + + Frankly, it looks like they are preparing an invasion in this sector. They've taken over our outpost here and built Defense Turrets to counter us. It doesn't look very good. + + + + Thank you. + + + + Excellent work. The Infection is still spreading in the Sector, but now we can contain it. + + + A battle-class ShellCore has managed to enter Sector 610-740 from one of the Infected Zones. Neutralize the threat immedeiately. Recapture our outpost and gather turrets for additional support. + + + - Head to Sector 610-740 and destroy the invading enemy BattleCore. + +- (Optional) Capture the nearby outpost and buy turrets to help destroy the core. + +- Return for your reward. + + + + + SmallCenter6 + + + The Scourge of Secrecy_battlecore + + + I'll destroy the ShellCore. + + + I'm not ready yet. + + + You should head to Sector 610-740 and destroy the invading BattleCore, using the outpost there for assistance. The BattleCore could lead to dire consequences if not dispatched of immediately. + + + Your help at zone Beta saved us from losing much more territory than we already have, and helped us clear out the assaults here with more concentrated force. Yet still, a renegade Infected controls the Delta BattleZone west of us. Defeat them. + + + - Head to BattleZone Delta and protect the carrier. + +- Destroy the enemy carrier. + +- Return for your reward. + + + The Scourge of Secrecy_delta + + + I'll drive the infected out of the zone. + + + I'm not ready for this yet. + + + <color=red>DAMN IT! HOW ARE THEY PUSHING US BACK!</color> + + + daayo + + + <color=red>Heh, they remind me of that legendary commander that led us so long ago.</color> + + + pytha + + + <color=red>It's that talking Uninfected and their accomplice doing most of the work. Speaking of, we'vc got visitors again.</color> + + + Absolutely unbelievable. Against all odds, we have prevailed. + + + + 3 + + + + scourge_battlecore + + + <color=lime>Don't think you can hold us back this time fools!</color> + + + player + + + music_sloppy + + + infectedleader + + + plater + + + 180 + + + + 5 + + + + nulll + + + + + + + 54.81558 + -839.8184 + + 0 + + 1 + + + + + 54.2968826 + -799.837341 + + 1 + + + + + + + + 2 + + + + <color=red>My work needs no explanation, green core. The rumors were right that you can speak to us, but your existence ends here.</color> + + + deltacore + + + <color=lime>So much for my existence ending here, I guess. I should report back to Haven 3.</color> + + + <color=lime>Time to meet your maker red trash. Explain yourself!</color> + + + {"entityName":"Unnamed","coreSpriteID":"core1_light","coreShellSpriteID":"core1_shell","shellHealth":[1000.0,250.0,500.0],"baseRegen":[60.0,0.0,60.0],"intendedType":0,"parts":[{"location":{"x":0.4000000059604645,"y":0.0},"rotation":0.0,"mirrored":true,"abilityID":5,"tier":1,"secondaryData":"","partID":"SmallWing2","shiny":false},{"location":{"x":-0.4000000059604645,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":19,"tier":1,"secondaryData":"","partID":"SmallWing2","shiny":false},{"location":{"x":0.4000000059604645,"y":-0.4000000059604645},"rotation":0.0,"mirrored":false,"abilityID":2,"tier":1,"secondaryData":"","partID":"SmallWing1","shiny":false},{"location":{"x":-0.4000000059604645,"y":-0.4000000059604645},"rotation":0.0,"mirrored":true,"abilityID":1,"tier":1,"secondaryData":"","partID":"SmallWing1","shiny":false},{"location":{"x":0.0,"y":-0.5},"rotation":0.0,"mirrored":false,"abilityID":4,"tier":1,"secondaryData":"","partID":"SmallCenter5","shiny":false}],"dialogue":{"instanceID":0},"useCustomDroneType":false,"customDroneType":0} + + + ShellCore + + + flag_scourgedeltaenemyspawn + + + flag_scourgedeltaenemyspawn2 + + + BattleZone Epsilon + + + <color=red>Don't think we are giving up without a fight though, strange core. You may have earned my respect, but not my servitude.</color> + + + Interesting... my commanders were right that you can read my transmissions, unlike the rest of your kind. Maybe you can be of use to us in the future. I will watch you closely. + + + + Why would I be of use to you? + I will end this war, one way or another. + + + + It is impossible to end this war. + + + + Why is that? + + + + You will know when the time is right. + + + + Why wait? Tell me now! + + + + I will contact you at a more appropriate time. + + + + Give me some answers! + + + + {"entityName":"Unnamed","coreSpriteID":"core1_light","coreShellSpriteID":"core4captain_shell","shellHealth":[1000.0,250.0,500.0],"baseRegen":[60.0,0.0,60.0],"intendedType":0,"parts":[{"location":{"x":-1.0,"y":0.699999988079071},"rotation":0.0,"mirrored":true,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigSide1","shiny":false},{"location":{"x":-1.2000000476837159,"y":2.0999999046325685},"rotation":0.0,"mirrored":false,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigSide2","shiny":false},{"location":{"x":-1.899999976158142,"y":2.5999999046325685},"rotation":0.0,"mirrored":false,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigSide2","shiny":false},{"location":{"x":-0.8999999761581421,"y":3.9000000953674318},"rotation":0.0,"mirrored":false,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigSide6","shiny":false},{"location":{"x":-1.2999999523162842,"y":5.199999809265137},"rotation":0.0,"mirrored":true,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigSide1","shiny":false},{"location":{"x":-1.0,"y":-1.7000000476837159},"rotation":0.0,"mirrored":false,"abilityID":4,"tier":3,"secondaryData":"","partID":"BigSide2","shiny":false},{"location":{"x":-1.7999999523162842,"y":-2.4000000953674318},"rotation":0.0,"mirrored":false,"abilityID":0,"tier":0,"secondaryData":"","partID":"MediumSide1","shiny":false},{"location":{"x":-0.6000000238418579,"y":-3.4000000953674318},"rotation":180.0,"mirrored":false,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigSide4","shiny":false},{"location":{"x":-2.0,"y":-5.599999904632568},"rotation":0.0,"mirrored":false,"abilityID":0,"tier":0,"secondaryData":"","partID":"MediumCenter1","shiny":false},{"location":{"x":2.0,"y":-5.599999904632568},"rotation":0.0,"mirrored":false,"abilityID":0,"tier":0,"secondaryData":"","partID":"MediumCenter1","shiny":false},{"location":{"x":1.2000000476837159,"y":-5.099999904632568},"rotation":0.0,"mirrored":true,"abilityID":0,"tier":0,"secondaryData":"","partID":"MediumSide1","shiny":false},{"location":{"x":-1.2000000476837159,"y":-5.099999904632568},"rotation":0.0,"mirrored":false,"abilityID":0,"tier":0,"secondaryData":"","partID":"MediumSide1","shiny":false},{"location":{"x":-1.2999999523162842,"y":-4.199999809265137},"rotation":0.0,"mirrored":true,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigSide2","shiny":false},{"location":{"x":-3.5,"y":-5.599999904632568},"rotation":0.0,"mirrored":false,"abilityID":0,"tier":0,"secondaryData":"","partID":"MediumCenter1","shiny":false},{"location":{"x":-2.799999952316284,"y":-4.699999809265137},"rotation":0.0,"mirrored":false,"abilityID":10,"tier":0,"secondaryData":"{\"drone\":\"{\\\"entityName\\\":\\\"Strike Drone\\\",\\\"coreSpriteID\\\":\\\"drone_light\\\",\\\"coreShellSpriteID\\\":\\\"drone_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":7,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":-0.2485615760087967,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":5,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing1\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":0.2485615760087967,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":0,\\\"tier\\\":0,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing1\\\",\\\"shiny\\\":false}],\\\"dialogue\\\":{\\\"instanceID\\\":0},\\\"useCustomDroneType\\\":true,\\\"customDroneType\\\":2}\",\"energyCost\":150.0,\"delay\":3.0,\"cooldown\":15.0,\"type\":2}","partID":"MediumCenter3","shiny":false},{"location":{"x":3.5,"y":-5.599999904632568},"rotation":0.0,"mirrored":false,"abilityID":0,"tier":0,"secondaryData":"","partID":"MediumCenter1","shiny":false},{"location":{"x":2.799999952316284,"y":-4.699999809265137},"rotation":0.0,"mirrored":false,"abilityID":10,"tier":0,"secondaryData":"{\"drone\":\"{\\\"entityName\\\":\\\"Strike Drone\\\",\\\"coreSpriteID\\\":\\\"drone_light\\\",\\\"coreShellSpriteID\\\":\\\"drone_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":7,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":-0.2485615760087967,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":5,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing1\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":0.2485615760087967,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":0,\\\"tier\\\":0,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing1\\\",\\\"shiny\\\":false}],\\\"dialogue\\\":{\\\"instanceID\\\":0},\\\"useCustomDroneType\\\":true,\\\"customDroneType\\\":2}\",\"energyCost\":150.0,\"delay\":3.0,\"cooldown\":15.0,\"type\":2}","partID":"MediumCenter3","shiny":false},{"location":{"x":-4.0,"y":-4.699999809265137},"rotation":0.0,"mirrored":false,"abilityID":4,"tier":3,"secondaryData":"","partID":"BigSide2","shiny":false},{"location":{"x":4.0,"y":-4.699999809265137},"rotation":0.0,"mirrored":true,"abilityID":4,"tier":3,"secondaryData":"","partID":"BigSide2","shiny":false},{"location":{"x":-4.599999904632568,"y":-4.199999809265137},"rotation":0.0,"mirrored":false,"abilityID":7,"tier":3,"secondaryData":"","partID":"BigSide2","shiny":false},{"location":{"x":4.599999904632568,"y":-4.199999809265137},"rotation":0.0,"mirrored":true,"abilityID":7,"tier":3,"secondaryData":"","partID":"BigSide2","shiny":false},{"location":{"x":1.0,"y":0.699999988079071},"rotation":0.0,"mirrored":false,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigSide1","shiny":false},{"location":{"x":1.7999999523162842,"y":-2.4000000953674318},"rotation":0.0,"mirrored":true,"abilityID":0,"tier":0,"secondaryData":"","partID":"MediumSide1","shiny":false},{"location":{"x":1.2000000476837159,"y":2.0999999046325685},"rotation":0.0,"mirrored":true,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigSide2","shiny":false},{"location":{"x":1.899999976158142,"y":2.5999999046325685},"rotation":0.0,"mirrored":true,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigSide2","shiny":false},{"location":{"x":2.0,"y":1.5},"rotation":0.0,"mirrored":true,"abilityID":0,"tier":0,"secondaryData":"","partID":"MediumSide1","shiny":false},{"location":{"x":0.8999999761581421,"y":3.9000000953674318},"rotation":0.0,"mirrored":true,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigSide6","shiny":false},{"location":{"x":1.2999999523162842,"y":5.199999809265137},"rotation":0.0,"mirrored":false,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigSide1","shiny":false},{"location":{"x":-3.0999999046325685,"y":2.4000000953674318},"rotation":-180.0,"mirrored":true,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigWing1","shiny":false},{"location":{"x":3.0999999046325685,"y":2.4000000953674318},"rotation":-180.0,"mirrored":false,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigWing1","shiny":false},{"location":{"x":-5.5,"y":3.5},"rotation":180.0,"mirrored":true,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigWing2","shiny":false},{"location":{"x":-4.699999809265137,"y":2.700000047683716},"rotation":0.0,"mirrored":false,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigSide5","shiny":false},{"location":{"x":-3.9000000953674318,"y":2.9000000953674318},"rotation":-180.0,"mirrored":true,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigSide4","shiny":false},{"location":{"x":5.400000095367432,"y":3.5},"rotation":-180.0,"mirrored":false,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigWing2","shiny":false},{"location":{"x":4.599999904632568,"y":2.700000047683716},"rotation":0.0,"mirrored":true,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigSide5","shiny":false},{"location":{"x":3.799999952316284,"y":2.9000000953674318},"rotation":180.0,"mirrored":false,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigSide4","shiny":false},{"location":{"x":-6.599999904632568,"y":-3.299999952316284},"rotation":-180.0,"mirrored":true,"abilityID":10,"tier":0,"secondaryData":"{\"drone\":\"{\\\"entityName\\\":\\\"Counter Drone\\\",\\\"coreSpriteID\\\":\\\"drone_light\\\",\\\"coreShellSpriteID\\\":\\\"drone_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":7,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":-0.25},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":4,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallCenter5\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":-0.15000000596046449},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":0,\\\"tier\\\":0,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallCenter2\\\",\\\"shiny\\\":false}],\\\"dialogue\\\":{\\\"instanceID\\\":0},\\\"useCustomDroneType\\\":true,\\\"customDroneType\\\":5}\",\"energyCost\":150.0,\"delay\":3.0,\"cooldown\":15.0,\"type\":5}","partID":"BigSide4","shiny":false},{"location":{"x":-5.800000190734863,"y":-3.799999952316284},"rotation":-180.0,"mirrored":true,"abilityID":1,"tier":3,"secondaryData":"","partID":"BigWing1","shiny":false},{"location":{"x":6.599999904632568,"y":-3.299999952316284},"rotation":180.0,"mirrored":false,"abilityID":10,"tier":0,"secondaryData":"{\"drone\":\"{\\\"entityName\\\":\\\"Counter Drone\\\",\\\"coreSpriteID\\\":\\\"drone_light\\\",\\\"coreShellSpriteID\\\":\\\"drone_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":7,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":-0.25},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":4,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallCenter5\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":-0.15000000596046449},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":0,\\\"tier\\\":0,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallCenter2\\\",\\\"shiny\\\":false}],\\\"dialogue\\\":{\\\"instanceID\\\":0},\\\"useCustomDroneType\\\":true,\\\"customDroneType\\\":5}\",\"energyCost\":150.0,\"delay\":3.0,\"cooldown\":15.0,\"type\":5}","partID":"BigSide4","shiny":false},{"location":{"x":5.800000190734863,"y":-3.799999952316284},"rotation":-180.0,"mirrored":false,"abilityID":1,"tier":3,"secondaryData":"","partID":"BigWing1","shiny":false},{"location":{"x":7.400000095367432,"y":-3.5},"rotation":0.0,"mirrored":true,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigSide5","shiny":false},{"location":{"x":-7.400000095367432,"y":-3.5},"rotation":0.0,"mirrored":false,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigSide5","shiny":false},{"location":{"x":-7.800000190734863,"y":-2.0},"rotation":-180.0,"mirrored":true,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigWing2","shiny":false},{"location":{"x":7.800000190734863,"y":-2.0},"rotation":-180.0,"mirrored":false,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigWing2","shiny":false},{"location":{"x":-2.799999952316284,"y":-6.0},"rotation":180.0,"mirrored":false,"abilityID":10,"tier":0,"secondaryData":"{\"drone\":\"{\\\"entityName\\\":\\\"Strike Drone\\\",\\\"coreSpriteID\\\":\\\"drone_light\\\",\\\"coreShellSpriteID\\\":\\\"drone_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":7,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":-0.2485615760087967,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":5,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing1\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":0.2485615760087967,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":0,\\\"tier\\\":0,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing1\\\",\\\"shiny\\\":false}],\\\"dialogue\\\":{\\\"instanceID\\\":0},\\\"useCustomDroneType\\\":true,\\\"customDroneType\\\":2}\",\"energyCost\":150.0,\"delay\":3.0,\"cooldown\":15.0,\"type\":2}","partID":"MediumCenter3","shiny":false},{"location":{"x":2.799999952316284,"y":-6.0},"rotation":-180.0,"mirrored":false,"abilityID":10,"tier":0,"secondaryData":"{\"drone\":\"{\\\"entityName\\\":\\\"Strike Drone\\\",\\\"coreSpriteID\\\":\\\"drone_light\\\",\\\"coreShellSpriteID\\\":\\\"drone_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":7,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":-0.2485615760087967,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":5,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing1\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":0.2485615760087967,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":0,\\\"tier\\\":0,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing1\\\",\\\"shiny\\\":false}],\\\"dialogue\\\":{\\\"instanceID\\\":0},\\\"useCustomDroneType\\\":true,\\\"customDroneType\\\":2}\",\"energyCost\":150.0,\"delay\":3.0,\"cooldown\":15.0,\"type\":2}","partID":"MediumCenter3","shiny":false},{"location":{"x":-2.5999999046325685,"y":-2.200000047683716},"rotation":0.0,"mirrored":false,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigWing2","shiny":false},{"location":{"x":2.5999999046325685,"y":-2.200000047683716},"rotation":0.0,"mirrored":true,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigWing2","shiny":false},{"location":{"x":-3.200000047683716,"y":-0.699999988079071},"rotation":180.0,"mirrored":true,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigWing1","shiny":false},{"location":{"x":3.200000047683716,"y":-0.699999988079071},"rotation":-180.0,"mirrored":false,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigWing1","shiny":false},{"location":{"x":-4.900000095367432,"y":-0.30000001192092898},"rotation":0.0,"mirrored":false,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigSide5","shiny":false},{"location":{"x":4.900000095367432,"y":-0.30000001192092898},"rotation":0.0,"mirrored":true,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigSide5","shiny":false},{"location":{"x":-4.0,"y":-0.20000000298023225},"rotation":-180.0,"mirrored":true,"abilityID":10,"tier":0,"secondaryData":"{\"drone\":\"{\\\"entityName\\\":\\\"Counter Drone\\\",\\\"coreSpriteID\\\":\\\"drone_light\\\",\\\"coreShellSpriteID\\\":\\\"drone_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":7,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":-0.25},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":4,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallCenter5\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":-0.15000000596046449},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":0,\\\"tier\\\":0,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallCenter2\\\",\\\"shiny\\\":false}],\\\"dialogue\\\":{\\\"instanceID\\\":0},\\\"useCustomDroneType\\\":true,\\\"customDroneType\\\":5}\",\"energyCost\":150.0,\"delay\":3.0,\"cooldown\":15.0,\"type\":5}","partID":"BigSide4","shiny":false},{"location":{"x":4.0,"y":-0.20000000298023225},"rotation":180.0,"mirrored":false,"abilityID":10,"tier":0,"secondaryData":"{\"drone\":\"{\\\"entityName\\\":\\\"Counter Drone\\\",\\\"coreSpriteID\\\":\\\"drone_light\\\",\\\"coreShellSpriteID\\\":\\\"drone_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":7,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":-0.25},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":4,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallCenter5\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":-0.15000000596046449},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":0,\\\"tier\\\":0,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallCenter2\\\",\\\"shiny\\\":false}],\\\"dialogue\\\":{\\\"instanceID\\\":0},\\\"useCustomDroneType\\\":true,\\\"customDroneType\\\":5}\",\"energyCost\":150.0,\"delay\":3.0,\"cooldown\":15.0,\"type\":5}","partID":"BigSide4","shiny":false},{"location":{"x":-5.800000190734863,"y":-0.4000000059604645},"rotation":0.0,"mirrored":false,"abilityID":0,"tier":0,"secondaryData":"","partID":"MediumSide1","shiny":false},{"location":{"x":3.0999999046325685,"y":6.599999904632568},"rotation":-180.0,"mirrored":false,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigWing2","shiny":false},{"location":{"x":2.4000000953674318,"y":5.900000095367432},"rotation":0.0,"mirrored":true,"abilityID":0,"tier":0,"secondaryData":"","partID":"MediumSide1","shiny":false},{"location":{"x":-3.0999999046325685,"y":6.599999904632568},"rotation":180.0,"mirrored":true,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigWing2","shiny":false},{"location":{"x":-2.4000000953674318,"y":5.900000095367432},"rotation":0.0,"mirrored":false,"abilityID":0,"tier":0,"secondaryData":"","partID":"MediumSide1","shiny":false},{"location":{"x":5.800000190734863,"y":-0.4000000059604645},"rotation":0.0,"mirrored":true,"abilityID":0,"tier":0,"secondaryData":"","partID":"MediumSide1","shiny":false},{"location":{"x":-6.599999904632568,"y":0.4000000059604645},"rotation":180.0,"mirrored":true,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigWing2","shiny":false},{"location":{"x":1.0,"y":-1.7000000476837159},"rotation":0.0,"mirrored":true,"abilityID":4,"tier":3,"secondaryData":"","partID":"BigSide2","shiny":false},{"location":{"x":0.0,"y":-0.8999999761581421},"rotation":0.0,"mirrored":false,"abilityID":0,"tier":0,"secondaryData":"","partID":"MediumCenter3","shiny":false},{"location":{"x":1.7999999523162842,"y":-1.0},"rotation":0.0,"mirrored":true,"abilityID":7,"tier":3,"secondaryData":"","partID":"BigSide2","shiny":false},{"location":{"x":-1.7999999523162842,"y":-1.0},"rotation":0.0,"mirrored":false,"abilityID":7,"tier":3,"secondaryData":"","partID":"BigSide2","shiny":false},{"location":{"x":0.6000000238418579,"y":-3.4000000953674318},"rotation":180.0,"mirrored":true,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigSide4","shiny":false},{"location":{"x":0.0,"y":-4.400000095367432},"rotation":0.0,"mirrored":false,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigCenter3","shiny":false},{"location":{"x":1.2999999523162842,"y":-4.199999809265137},"rotation":0.0,"mirrored":false,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigSide2","shiny":false},{"location":{"x":6.599999904632568,"y":0.4000000059604645},"rotation":-180.0,"mirrored":false,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigWing2","shiny":false},{"location":{"x":-2.0,"y":1.5},"rotation":0.0,"mirrored":false,"abilityID":0,"tier":0,"secondaryData":"","partID":"MediumSide1","shiny":false}],"dialogue":{"instanceID":0},"useCustomDroneType":false,"customDroneType":0} + + + Infected Leader + + + flag_scourgeinfectedleaderspawn + + + {"entityName":"BattleCore","coreSpriteID":"core1_light","coreShellSpriteID":"core3_shell","shellHealth":[1000.0,250.0,500.0],"baseRegen":[60.0,0.0,60.0],"intendedType":0,"parts":[{"location":{"x":0.4000000059604645,"y":0.0},"rotation":180.0,"mirrored":true,"abilityID":13,"tier":3,"secondaryData":"","partID":"BigSide4","shiny":false},{"location":{"x":-0.4000000059604645,"y":0.0},"rotation":180.0,"mirrored":false,"abilityID":13,"tier":3,"secondaryData":"","partID":"BigSide4","shiny":false},{"location":{"x":1.399999976158142,"y":0.5},"rotation":180.0,"mirrored":false,"abilityID":4,"tier":3,"secondaryData":"","partID":"BigWing5","shiny":false},{"location":{"x":-1.399999976158142,"y":0.5},"rotation":-180.0,"mirrored":true,"abilityID":4,"tier":3,"secondaryData":"","partID":"BigWing5","shiny":false}],"dialogue":{"instanceID":0},"useCustomDroneType":false,"customDroneType":0} + + + BattleCore + + + flag_scourgebattlecorespawn + + + You can probably tell by how close I am to the Haven that I'm one of the lucky ones... The others are at the sectors beyond this one, I'm scared for them. The Infected came in droves, I was right here when they did. I didn't even see them coming. + + + + What's your report? + + + + 610-740-beamer + + + You can press 'ENTER' when you are not transmitting or receiving background dialogue to view all and scroll through all previous background transmissions. + + + You must have heard of how fast and spontaneous the Infected attacks here were. The truth is our scouts haven't even been able to return and give us their intel. Please visit the surrounding sectors and relay their info back to us. + + + - Talk to 3 ShellCores, in the following order: +- The Uninfected scout in Sector 610-740, +- The Uninfected scout in Sector 120-980, +- And the Uninfected scout in Sector 1040-920. + + + SmallCenter5 + + + The Scourge of Secrecy_scouting + + + I'll see what I can do. + + + No thanks. + + + Visit the three scouts and obtain their information before returning here. Your work is greatly appreciated. + + + We still face severe issues - for one, our only pathway to the Capitol is apparently blocked off by a great many Infected cores. for another, we don't know how they are so quickly wiping us out. But now is the time we fight to reclaim our territory - in BattleZone Epsilon. Bring help. + + + - Head to BattleZone Epsilon and protect the Carrier. + +- Destroy the enemy Carrier. + +- Return to Haven 3 for a reward. + + + SmallCenter9 + + + {"drone":"{\"entityName\":\"Strike Drone\",\"coreSpriteID\":\"drone_light\",\"coreShellSpriteID\":\"drone_shell\",\"shellHealth\":[1000.0,250.0,500.0],\"baseRegen\":[60.0,0.0,60.0],\"intendedType\":7,\"parts\":[{\"location\":{\"x\":-0.2485615760087967,\"y\":0.0},\"rotation\":0.0,\"mirrored\":true,\"abilityID\":5,\"tier\":1,\"secondaryData\":\"\",\"partID\":\"SmallWing1\",\"shiny\":false},{\"location\":{\"x\":0.2485615760087967,\"y\":0.0},\"rotation\":0.0,\"mirrored\":false,\"abilityID\":0,\"tier\":0,\"secondaryData\":\"\",\"partID\":\"SmallWing1\",\"shiny\":false}],\"dialogue\":{\"instanceID\":0},\"useCustomDroneType\":true,\"customDroneType\":2}","energyCost":150.0,"delay":3.0,"cooldown":15.0,"type":2} + + + The Scourge of Secrecy_epsilon + + + I'll do it. + + + Reclaim BattleZone Epsilon for us. Victory is almost ripe for the picking. + + + THROUGH COMPLETING THIS MISSION, YOU: + +Defended Haven 3 from the Infected onslaught + +Fought in BattleZone Delta and BattleZone Epsilon + +Defeated the threatening BattleCore + +Met with the Infected Leader for the first time + + + clip_missioncompleteep1 + + + A massive core tractored you and talked to you? That sounds like the leader of the Infected forces... We need to report this to our leaders as soon as possible! + + + Commander, you and your friend have proven far too special to remain here, and we have more than enough firepower now that their main attacks have been stifled. Still, we must be cautious before sending you to our Capitol. Scout out Sector 120-1100 and return with your intel. + + + - Head to Sector 120-1100. + +- Return to Haven 3 for your reward. + + + The Scourge of Secrecy_meeting + + + I'll check it out. + + + I have things to do here first. + + + You should head to Sector 120-1100 and return with any information you can about the invasion of our Capitol path. + + + Sector 120-1100 + + + <color=red>Hahaha, we're not trying to. In fact, our new objective is complete: finding you, you squirming blotch of pestilence.</color> + + + <color=red>And with that said, our leader will have a talk with you soon.</color> + + + flag_scourgedaayospawnepsilon + + + flag_scourgepythaspawnepsilon + + + \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/The Scourge of Secrecy.taskdata.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/The Scourge of Secrecy.taskdata.meta new file mode 100644 index 000000000..4a58c9570 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/The Scourge of Secrecy.taskdata.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: b7f21388b37b31142958bfbd183d355a +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/Training Circuit.taskdata b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/Training Circuit.taskdata new file mode 100644 index 000000000..ec8506440 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/Training Circuit.taskdata @@ -0,0 +1,2966 @@ + + + + + + + + + + + Condition + In + Multi + Left + 59 + 0 + + + TaskFlow + Out + Single + Right + 59 + 0 + + + + + + + true + + + + + + Dialogue + Out + Single + Right + 202 + 0 + + + Dialogue + Out + Single + Right + 257 + 0 + + + 0.36 + 0.537 + 0.9 + 1 + + + + false + 0 + Mission + + + + + + Dialogue + Out + Single + Right + 176 + 0 + + + Dialogue + Out + Single + Right + 231 + 0 + + + 0.36 + 0.537 + 0.9 + 1 + + + + false + 0 + Mission + + + + + + + 1 + 1 + 1 + 1 + + + + + Uninitialized + + 1 + + + + + + + false + + + + + false + + false + + false + Mission + + + + + + + + + + + + 1 + 1 + 1 + 1 + + + + + + + true + + + + + + true + + + + + + false + + + + + + false + + + + true + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 204 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + true + false + false + Mission + + + + true + false + false + Mission + + + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + false + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 241 + 0 + + + Dialogue + Out + Single + Right + 296 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + false + false + false + Mission + + + + + + + 0 + 0 + + false + true + false + 0 + + + + + + + + + + + + + + + + true + + + + + + false + + + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + false + false + false + Mission + + + + + + + + + + + Dialogue + Out + Single + Right + 202 + 0 + + + Dialogue + Out + Single + Right + 257 + 0 + + + Dialogue + Out + Single + Right + 312 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + Dialogue + Out + Single + Right + 241 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + false + false + false + Mission + + + + + + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 1 + 1 + 1 + + + + + + + + + + + + Dialogue + Out + Single + Right + 215 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + false + false + false + Mission + + + + + false + + false + + false + Mission + + + + + + + + + + + false + + + + + + false + + + + + + false + + + + + + true + + + + + Condition + In + Multi + Left + 60 + 0 + + + TaskFlow + Out + Single + Right + 60 + 0 + + + + + + + false + + + + + + Dialogue + Out + Single + Right + 189 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + + + + + + + + + + + + 0 + 0 + + false + false + true + 0.2 + + + + + + + + + + false + + true + false + 0 + false + + + + + + false + + true + false + 0 + false + + + + + + + + + + 0 + 1 + 0 + 1 + + + + + + + + + + 0 + 1 + 0 + 1 + + + + + + + + + + 0 + 1 + 0 + 1 + + + + + + + + + + 0 + 1 + 0 + 1 + + + + + + + TaskFlow + Out + Single + Right + 20 + 0 + + + TaskFlow + Out + Single + Right + 20 + 0 + + + TaskFlow + Out + Single + Right + 20 + 0 + + + TaskFlow + Out + Single + Right + 20 + 0 + + + TaskFlow + Out + Single + Right + 20 + 0 + + + TaskFlow + Out + Single + Right + 20 + 0 + + + TaskFlow + Out + Single + Right + 20 + 0 + + true + + false + + true + Mission + + + + false + + 1 + 1 + false + + + + false + + 1 + 1 + false + + + + Uninitialized + + + + + + false + + true + false + 0 + false + + + + + + false + + false + false + 0 + false + + + + + + false + + false + false + 0 + false + + + + + + true + + true + + false + Mission + + + + + true + + true + + false + Mission + + + + + false + + true + false + 0 + false + + + + + + false + + true + false + 0 + false + + + + + + + + + + 0 + 1 + 0 + 1 + + + + + + + + + + + false + false + true + + + false + + + + + false + false + false + + + false + + + + + + + + + + + + 1 + 1 + 1 + 1 + + + + + + false + + true + false + 0 + false + + + + + false + + 5 + 1 + true + + + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + false + false + false + Mission + + + + + + true + + + + + + + + + + true + + false + + false + Mission + + + + + + + + + 0 + 1 + 0 + 1 + + + 50 + false + + + 0 + 1 + + 0 + + + + + false + + + + + true + + false + + false + Mission + + + + + true + + false + + false + Mission + + + + + true + + false + + false + Mission + + + + + + + + + 0 + 1 + 0 + 1 + + + 200 + true + + + 18 + 1 + + 10 + + + + + false + + + + + true + + false + + false + Mission + + + + + + + + + 0 + 1 + 0 + 1 + + + 250 + false + + + 0 + 1 + + 50 + + + + + false + + + + + + TaskFlow + Out + Single + Right + 20 + 0 + + true + + false + + true + Mission + + + + + + + + + 0 + 1 + 0 + 1 + + + 0 + true + + 1 + 1 + + 0 + + true + + + + + Condition + In + Multi + Left + 59 + 0 + + + TaskFlow + Out + Single + Right + 59 + 0 + + + Condition + In + Multi + Left + 114 + 0 + + + TaskFlow + Out + Single + Right + 114 + 0 + + + Condition + In + Multi + Left + 169 + 0 + + + TaskFlow + Out + Single + Right + 169 + 0 + + + Condition + In + Multi + Left + 224 + 0 + + + TaskFlow + Out + Single + Right + 224 + 0 + + + + + + + + + + + true + + + + + Condition + In + Multi + Left + 60 + 0 + + + TaskFlow + Out + Single + Right + 60 + 0 + + + + + + + false + + + + + + + + + 0 + 1 + 0 + 1 + + + + + + + + false + + + + + + + false + + + + + + + false + + + + + + + false + + + + + + + false + + + + + + + false + + + + + + + false + + + + + + + false + + + + + + + false + + + + + + + false + + + + + + + false + + + + + + + false + + + + + + + false + + + + + + + false + + + + + + + false + + + + + + + false + + + + + + + false + + + + + + + false + + + + + + + false + + + + + + + false + + + + + + + false + false + true + true + + + + + + + false + false + false + true + + + + + + + 0 + 0 + + false + true + false + 0 + + + + + + + + + 0 + 1 + 0 + 1 + + + 150 + false + + + 0 + 1 + + 5 + + + + + false + + + + Uninitialized + + 2 + + + + + Uninitialized + + 5 + + + + + + + false + + + + + + true + + + + + 0.75 + + false + + + + + 1 + + true + + + + + + false + + + + + Condition + In + Multi + Left + 59 + 0 + + + TaskFlow + Out + Single + Right + 59 + 0 + + + Condition + In + Multi + Left + 114 + 0 + + + TaskFlow + Out + Single + Right + 114 + 0 + + + + + + + true + + + + + + + + + 0 + 1 + 0 + 1 + + + 100 + false + + + 0 + 1 + + 0 + + + + + false + + + + + + + + + + 0 + 0 + 0 + 1 + + false + + 0 + + + + + + false + + + 0 + + + 0 + 0 + + false + true + + false + + + + + + false + + + 0 + + + 0 + 0 + + false + true + + false + + + + + + Dialogue + Out + Single + Right + 230 + 0 + + + Dialogue + Out + Single + Right + 286 + 0 + + + Dialogue + Out + Single + Right + 343 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + Dialogue + Out + Single + Right + 243 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Fear not, Newborn. For we have been one in the beginning, and we will be one in the end. + + + + Who are you? + What are you talking about? + + + + ... + + + + Who are you? + What are you talking about? + + + + The orange Task Arrow on your minimap indicates your current objective. If the objective's exact location is unknown, a question mark will be shown. + + + SmallCenter5 + + + Haven 1 + + + build-your-ship + + + You can reset a sector and its inhabitants by moving outside its boundaries, then moving back in. Use this to your advantage. + + + Sector 460-150 + + + Not sure! Maybe it's got something to do with the fact that they attack us on sight. + + + + Understandable. + + + + Great. The next haven is apparently all the way east, there might be a few enemies so we'll have to either kill them or avoid them somehow. Once we're done talking here I'll lead the way. + + + + Let's go! + Wait! I want to ask questions again! + + + + Haven 2 + + + Congratulations on completing your initial training! Before we leave, I know you have questions so ask away. + + + + Who are you? + Why are we here? + Enough chit-chat. Haven 2 awaits! + + + + I'm Sukrat. Well, I guess you already knew that. I was born right before you, my last task just now was to get you from the Spawning Grounds. I also like moving fast and blowing enemies up! + + + + Huh. That's cool. + + + + Double click certain objects like turrets to activate your Tractor Beam, which pulls them with you as you move. Double click again to release the beam. + +Press 'E' to open the map and task menu. + + + Drag to select certain allies, then select yourself to make them follow, or the world to make them move. + +Your drones can always be controlled. Other entities, only if they agree to it. + + + combat-introduction + + + Good day, Newborn! Our Spawning Grounds are fraught with danger. Follow me to reach an area that is secure for our kind. + + + + Okay! + + + + escape-to-safety-haven1 + + + Spawning Grounds + + + music_blue1 + + + Wh-where am I? What's going on? Get me out of here! + + + + Follow me! + + + + part-stealer + + + flag_tohaven2_camerapanend + + + escape-to-safety + + + sukrat + + + + + + + 258.448059 + 96.72742 + + 0 + + 15 + + + + + 271.498077 + 131.31601 + + 15 + + + + + + + + + + + 271.7745 + 127.649582 + + 0 + + 1 + + + + + 269.9771 + 129.924942 + + 1 + + + + + + + haven1-missioncontrol1 + + + Welcome, Newborn. Glad you could make it. I will act as your mentor from now on. Speak to me when you are ready. + + + Good work. Your enhanced Shell offers more protection as well as Speed Thrust, an ability that grants temporary additional speed when used. + + + Impressive! I see you have a lot of potential, but this was only the beginning. + + + Well done. Get more parts if you want to, but their weight will slow you down. Make sure your shell configuration is always up to the task. + + + aristu + + + player + + + + + + + 364.988281 + 135.949417 + + 0 + + 28 + + + + + 364.949371 + 135.021713 + + 28 + + + + + + + + + + + 364.988281 + 135.949417 + + 0 + + 28 + + + + + 364.949371 + 135.021713 + + 28 + + + + + + + + + + + 365.024048 + 129.349548 + + 0 + + 25 + + + + + 364.9462 + 130.004013 + + 25 + + + + + + + + + + + 364.97583 + 135.0081 + + 0 + + 1 + + + + + 658.1045 + 129.522278 + + 1 + + + + + + + + + + + 651.3139 + 148.697052 + + 0 + + 1 + + + + + 704.432068 + 131.364319 + + 1 + + + + + + + haven2-missioncontrol1 + + + Greetings, Newborn. You arrived just in time, we can use any help we can get. + + + rescue-to-safety + + + Use W-A-S-D to move. + +Click on a target to select it, and click twice to interact. Begin dialogue with the NPC (a ShellCore) beside you. + + + + + + + 245.08194 + -150.07869 + + 0 + + 10 + + + + + 255.462936 + -147.319641 + + 10 + + + + + + + Strike Drone + + + THROUGH COMPLETING THIS MISSION, YOU: + +Explored the Spawning Grounds and Haven 1 +Met Sukrat and Aristu +Learned basic combat skills +Learned basic ship assembly skills + +SUGGESTED NEXT MISSION: TRIAL BY COMBAT + + + clip_missioncompleteep1 + + + Your Core is vulnerable, and your Shell is still weak. First of all, you should get a Shell Part from the Yard to the right and attach it to your Core. + + + - Get a shell part from the yard. +- Attach it to your ship. +- Return for your reward. + + + Training Circuit-build-ship1 + + + I'll get the Shell part. + + + Maybe later. + + + Before we continue, you should get a Shell Part from the Yard to the right and attach it to your Core. + + + You are now ready for intermediate-level tasks, but before you move on I have one last favor to ask of you. Return to the Spawning Grounds once more and lead another Newborn to me, just like you were led here. + + + - Return to the Spawning Grounds and find the Uninfected Newborn. + +- Return with it for your reward. + + + SmallCenter2 + + + Training Circuit-rescue1 + + + I'm on my way. + + + I have no time for this. + + + You've grown strong. Return to the Spawning Grounds once more and lead another Newborn to me, just like you were led here. + + + It's time for you to move on. There is nothing more I can teach you. Head to the sector in the east, Sukrat will meet you there and go with you to Haven 2. Good luck, and take care of yourself. + + + - Head to Sector 460-150 to the east. + +- Talk to Sukrat. + +- Together, go to Haven 2. + + + Training Circuit-sukrat1 + + + Thanks for your help. I'm on my way. + + + There's something else I need to finish here. + + + Head to the sector in the east, Sukrat will meet you there. You're strong enough for the front lines now. + + + - Get to the safe sector at the top of the Spawning Grounds. + + + Training Circuit-autotask1 + + + Thank you. The birth of Newborns in our Spawning Grounds is rather rare, but we try our best to prevent the Infected from giving them a hard time. + + + <color=#00FF00>Great job out there!</color> + + + <color=#00FF00>Please, I need answers...</color> + + + <color=#00FF00>Well that wasn't very nice of you. Try giving me an okay!</color> + + + <color=#00FF00>Hm, you rescued yourself, not bad. By the way, you know we can talk through here right?</color> + + + <color=#00FF00>Huh, didn't know that. I've got a few questions to ask you...</color> + + + <color=#00FF00>Oh you want to talk to me now? Well wait until you're done with your training first! Talk to the Mission Control.</color> + + + <color=#00FF00>By the way, new advances in technology have enabled us to talk remotely using this channel. Follow me!</color> + + + <color=#00FF00>Uh, like this? I have so many questions...</color> + + + <color=#00FF00>You're loud and clear! Save your questions until you're safe though.</color> + + + <color=#00FF00>You're safe! Talk to Mission Control for your next task.</color> + + + <color=#00FF00>What's a Mission Control?</color> + + + <color=#00FF00>Oh right, it's the big station to the west.</color> + + + <color=#00FF00>Don't worry, we'll talk again soon enough!</color> + + + <color=#00FF00>Wait, answer my questions!!</color> + + + <color=#00FF00>Finish your training first!</color> + + + <color=#00FF00>By the way, we can talk through this channel indirectly.</color> + + + <color=#00FF00>I don't understand what's happening!</color> + + + <color=#00FF00>You and me both, friend. Follow me northwards!</color> + + + <color=#00FF00>Time to move to greener pastures! Pun intended.</color> + + + <color=#00FF00>Very droll!</color> + + + Further growth is essential for survival. Head west and salvage a part of an infected Crimson ShellCore, then bring it to the Yard and attach it to your shell like you did before. + + + + - Head to Sector 150-150 and collect a part from an enemy ShellCore. + +- Use your tractor beam to carry it to the Yard. + +- Attach it to your shell and report back. + + + + Training Circuit-combat2 + + + I'll get a new Shell Part. + + + Before your next task, head west and salvage a part of an infected Crimson ShellCore, then bring it to the Yard and attach it to your shell like you did before. + + + SmallWing2 + + + Sector 150-150 + + + It's time to collect some combat experience. Head east and destroy 5 infected Strike Drones. Take one of the nearby Defense turrets with you for protection. + + + - Head to Sector 460-150 and destroy 5 Strike Drones. + +- (Optional) Take a Defense Turret with you. + + + Training Circuit-combat1 + + + I'm ready. + + + To continue, head east and destroy 5 infected Strike Drones. Take one of the nearby Defense turrets with you for protection. + + + Training Circuit + + + C + + + Automatic. + + + + None. + + + + You're not supposed to see this! Tell a creator if you see this. + + + Flag_sukratspawnpoint0 + + + Flag_aristuspawnpoint0 + + + Tough question. The other cores in the haven were telling me that we're in some kind of "Core War" with those "Infected" ShellCores. We've been in it for very, very long. + + + + Why? + Huh. Cool. + What is "the Infection"? + + + + It's a strange "disease" inflicted on cores like you and me. We know it does at least three things - it turns us red, cuts off our ability to communicate, and makes us vicious murderers. Try not to get infected! + + + + Ehh, I will. + + + + \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/Training Circuit.taskdata.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/Training Circuit.taskdata.meta new file mode 100644 index 000000000..abca2512d --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/Training Circuit.taskdata.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 95e7f660ee2750346bdefb626850cefc +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/Trial By Combat.taskdata b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/Trial By Combat.taskdata new file mode 100644 index 000000000..c3a8928ae --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/Trial By Combat.taskdata @@ -0,0 +1,2387 @@ + + + + + + + + + + + + false + + + + + + + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + false + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 202 + 0 + + + Dialogue + Out + Single + Right + 257 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + true + + false + false + Mission + + + + + + + + + 0 + 1 + 0 + 1 + + + 150 + false + + + 0 + 1 + + 20 + + + + + false + + + + + + + + + 0 + 1 + 0 + 1 + + + + + + + + + + + true + + false + false + Mission + + + + + false + false + true + + + false + + + + + false + false + false + + + false + + + + + true + + true + false + Mission + + + + + + Dialogue + Out + Single + Right + 202 + 0 + + + Dialogue + Out + Single + Right + 257 + 0 + + + 1 + 0 + 0 + 1 + + + + false + 0 + Mission + + + + + + Dialogue + Out + Single + Right + 191 + 0 + + + Dialogue + Out + Single + Right + 247 + 0 + + + Dialogue + Out + Single + Right + 304 + 0 + + + 1 + 0 + 0 + 1 + + + + false + 0 + Mission + + + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + false + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 189 + 0 + + + Dialogue + Out + Single + Right + 244 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + false + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 189 + 0 + + + Dialogue + Out + Single + Right + 244 + 0 + + + Dialogue + Out + Single + Right + 299 + 0 + + + 1 + 0 + 0 + 1 + + + + false + 0 + Mission + + + + + true + + true + false + Mission + + + + + false + + false + false + 0 + false + + + + + + + Dialogue + Out + Single + Right + 176 + 0 + + + Dialogue + Out + Single + Right + 231 + 0 + + + Dialogue + Out + Single + Right + 286 + 0 + + + 1 + 0 + 0 + 1 + + + + false + 0 + Mission + + + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + false + false + false + Mission + + + + + + + + + + Condition + In + Multi + Left + 59 + 0 + + + TaskFlow + Out + Single + Right + 59 + 0 + + + + + + + false + + + 0 + + + 0 + 0 + + false + true + + false + + + + + Condition + In + Multi + Left + 59 + 0 + + + TaskFlow + Out + Single + Right + 59 + 0 + + + + + + + false + + + + + + + + + + + + + + + Dialogue + Out + Single + Right + 215 + 0 + + + Dialogue + Out + Single + Right + 270 + 0 + + + Dialogue + Out + Single + Right + 325 + 0 + + + 1 + 0 + 0 + 1 + + + + false + 0 + Mission + + + + + + Dialogue + Out + Single + Right + 189 + 0 + + + Dialogue + Out + Single + Right + 244 + 0 + + + Dialogue + Out + Single + Right + 299 + 0 + + + 1 + 0 + 0 + 1 + + + + false + 0 + Mission + + + + + true + + true + false + Mission + + + + + + false + + + 0 + + + 0 + 0 + + false + true + + false + + + + + + false + + + 0 + + + 0 + 0 + + false + true + + false + + + + + + + + + + + true + + + + + + false + + + + + + true + + + + + + Dialogue + Out + Single + Right + 189 + 0 + + + Dialogue + Out + Single + Right + 244 + 0 + + + Dialogue + Out + Single + Right + 299 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + Dialogue + Out + Single + Right + 215 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + + + + + + + + + 0 + 1 + 0 + 1 + + + + + + + + + + 0 + 1 + 0 + 1 + + + 1000 + true + + + 10 + 0 + + 150 + + + + + false + + + + + true + + false + false + Mission + + + + + false + + false + false + 0 + false + + + + + + false + false + true + + + false + + + + + false + false + false + + + false + + + + + + Dialogue + Out + Single + Right + 228 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + + TaskFlow + Out + Single + Right + 29 + 0 + + false + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 254 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + true + + true + false + Mission + + + + + + + + + + + 1 + 1 + 1 + 1 + + + + + + + + false + + + + + + + false + + + + + + + false + + + + + + true + + + + + + false + + + + + + + + + 0 + 1 + 0 + 1 + + + 250 + false + + + 0 + 1 + + 10 + + + + + false + + + + + + + + + 0 + 1 + 0 + 1 + + + + + + true + + false + false + Mission + + + + + + true + + + + + + + + + 0 + 1 + 0 + 1 + + + 500 + true + + + 12 + 1 + + 100 + + + + + false + + + + + + + + + 0 + 1 + 0 + 1 + + + + + + Condition + In + Multi + Left + 59 + 0 + + + TaskFlow + Out + Single + Right + 59 + 0 + + + + + + + + false + + + + + + + false + + + + + + + false + + + + + + + false + + + + + + false + + + + + + + false + false + false + false + + + + false + + 1 + 1 + false + + + + + false + + + + + + + + + + + + + + + + 0 + 1 + 0 + 1 + + false + + 0 + + + + + + + + + + false + + false + false + 0 + false + + + + + + + + + + + + true + + + + + + false + + + + + Condition + In + Multi + Left + 59 + 0 + + + TaskFlow + Out + Single + Right + 59 + 0 + + + + + + + false + + + + + + true + + + + + + false + + 1 + + + 0 + 0 + + false + true + + false + + + + + + + + + + + false + + 1 + + + 0 + 0 + + false + true + + true + + + + + + false + + 0 + + + 0 + 0 + + false + true + + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + BattleZone Alpha + + + Newborn, I can see you possess great resolve. Will you help us win this war from the front lines? + + + + Tell me what I have to do. + Hold on, there's something I need to do first. + + + + haven2-missioncontrol1 + + + There is no enemy commander present in the southern BattleZone. This is our chance to strike and take out the enemy Carrier. Head to the BattleZone and support our fleet. Consider this the beginning of your Trial by Combat. + + + - Head to BattleZone Alpha and destroy the Infected Carrier. + +- Return for your reward. + + + + + + Trial By Combat_battle1 + + + I'll try my best. + + + I don't think I'm up to the task. + + + Head to the BattleZone below us and support our fleet. Consider this the beginning of your Trial by Combat. + + + Well done. That should give us some room to breathe. + + + won-battlezone-alpha + + + player + + + daayo + + + I have never been able to communicate with your ilk before, You must be special among the filth. + + + + ... + You of all cores are calling us filth? + + + + Whatever. It's time you are sent back to your little safe Haven, scoundrel! + + + + You first! + Ehh, we'll see about that. + Oh no! I've gotta run! + + + + Really? Inconceivable -- never mind that for now, let's finish the job here! + + + + Alright! + Let's do this! + + + + Huh? What is this trickery? You brought allies with you! Coward! + + + + ...Yeah, this was 100% calculated. + You're just saying that because you're scared! + Aw, I wanted to rip you apart mano-e-mano. + + + + reinforcement-1 + + + + + + + 1084.92249 + 96.163 + + 0 + + 6 + + + + + 1084.99878 + 97.51086 + + 6 + + + + + + + Wait what? You can understand me? + + + + Well yeah? + I can understand you? + Is that a problem pleb? + + + + {"entityName":"Unnamed","coreSpriteID":"core1_light","coreShellSpriteID":"core1_shell","shellHealth":[1000.0,250.0,500.0],"baseRegen":[60.0,0.0,60.0],"intendedType":0,"parts":[{"location":{"x":0.0,"y":-0.3199999928474426},"rotation":0.0,"mirrored":false,"abilityID":1,"tier":1,"secondaryData":"{\"drone\":\"{\\\"entityName\\\":\\\"Strike Drone\\\",\\\"coreSpriteID\\\":\\\"drone_light\\\",\\\"coreShellSpriteID\\\":\\\"drone_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":7,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":-0.2485615760087967,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":5,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing1\\\"},{\\\"location\\\":{\\\"x\\\":0.2485615760087967,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":0,\\\"tier\\\":0,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing1\\\"}],\\\"dialogue\\\":{\\\"instanceID\\\":0}}\",\"energyCost\":150.0,\"delay\":3.0,\"cooldown\":15.0,\"type\":2}","partID":"SmallCenter5"},{"location":{"x":0.5,"y":0.0},"rotation":0.0,"mirrored":true,"abilityID":4,"tier":1,"secondaryData":"{\"drone\":\"{\\\"entityName\\\":\\\"Worker Drone\\\",\\\"coreSpriteID\\\":\\\"drone_light\\\",\\\"coreShellSpriteID\\\":\\\"worker_drone_shell_sprite\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":7,\\\"parts\\\":[],\\\"dialogue\\\":{\\\"instanceID\\\":0}}\",\"energyCost\":100.0,\"delay\":2.0,\"cooldown\":10.0,\"type\":1}","partID":"SmallWing2"},{"location":{"x":-0.5,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":2,"tier":1,"secondaryData":"{\"drone\":\"{\\\"entityName\\\":\\\"Worker Drone\\\",\\\"coreSpriteID\\\":\\\"drone_light\\\",\\\"coreShellSpriteID\\\":\\\"worker_drone_shell_sprite\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":7,\\\"parts\\\":[],\\\"dialogue\\\":{\\\"instanceID\\\":0}}\",\"energyCost\":100.0,\"delay\":2.0,\"cooldown\":10.0,\"type\":1}","partID":"SmallWing2"}],"dialogue":{"instanceID":0},"useCustomDroneType":false,"customDroneType":0} + + + ShellCore + + + flag_siegereinforcements2 + + + reinforcement-2 + + + SiegeZone Beta + + + You! You've destroyed my entire defense squadron! Green scum! You are worth less than the squares flying in the sky! Die! + + + + Time to perish red garbage! + Eat lead sucker! + Oh dear, not the squares! + + + + What? I can receive your communications? + + + + Well yeah? + I can receive yours? + I don't care, loser! Let's dance! + + + + flag_siegereinforcements3 + + + reinforcement-3 + + + {"entityName":"Unnamed","coreSpriteID":"core1_light","coreShellSpriteID":"core1_shell","shellHealth":[1000.0,250.0,500.0],"baseRegen":[60.0,0.0,60.0],"intendedType":0,"parts":[{"location":{"x":0.30000001192092898,"y":0.0},"rotation":0.0,"mirrored":true,"abilityID":4,"tier":1,"secondaryData":"","partID":"SmallWing2"},{"location":{"x":-0.30000001192092898,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":4,"tier":1,"secondaryData":"","partID":"SmallWing2"},{"location":{"x":0.0,"y":0.30000001192092898},"rotation":0.0,"mirrored":false,"abilityID":18,"tier":1,"secondaryData":"","partID":"SmallCenter2"},{"location":{"x":0.5,"y":0.0},"rotation":0.0,"mirrored":true,"abilityID":20,"tier":1,"secondaryData":"","partID":"SmallSide3"},{"location":{"x":-0.5,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":2,"tier":1,"secondaryData":"","partID":"SmallSide3"},{"location":{"x":0.5,"y":-0.699999988079071},"rotation":0.0,"mirrored":true,"abilityID":20,"tier":1,"secondaryData":"","partID":"SmallWing1"},{"location":{"x":-0.5,"y":-0.699999988079071},"rotation":0.0,"mirrored":false,"abilityID":20,"tier":1,"secondaryData":"","partID":"SmallWing1"},{"location":{"x":0.0,"y":-0.4000000059604645},"rotation":0.0,"mirrored":false,"abilityID":20,"tier":1,"secondaryData":"","partID":"SmallCenter5"}],"dialogue":{"instanceID":0},"useCustomDroneType":false,"customDroneType":0} + + + flag_siegereinforcements1 + + + Trial By Combat-destroyed-daayo + + + Haven 2 + + + Watch out newborn! Looks like we got here just in time. + + + + I can talk to this core here! + You interrupted our conversation! + My saviors!!! + + + + Wait... were you talking to the Infected core just now? That is unbelievable.... Never mind that, let's destroy them before we talk! + + + + Let's do this! + + + + Trial By Combat-finished-siege + + + News has already reached me about your communication with the Infected, this is unheard of. Our plans will have to change around this. That aside, the reinforcements arrived on time. Thank you. + + + The Infected Commander that was missing from BattleZone Alpha has attacked and set up base in SiegeZone Beta. Only two Outposts are left. Keep the Infected from conquering them until reinforcements arrive. + + + - Head to SiegeZone Beta and protect the Outposts. + +- Return for your reward when reinforcements have arrived. + + + SmallCenter7 + + + {"drone":"{\"entityName\":\"Mini Drone\",\"coreSpriteID\":\"\",\"coreShellSpriteID\":\"mini_drone_core_sprite\",\"shellHealth\":[300.0,100.0,300.0],\"baseRegen\":[60.0,0.0,60.0],\"intendedType\":7,\"parts\":[],\"dialogue\":{\"instanceID\":0},\"useCustomDroneType\":true,\"customDroneType\":0}","energyCost":100.0,"delay":2.0,"cooldown":10.0,"type":0} + + + Trial By Combat-siege + + + I'm on my way. + + + Head to SiegeZone Beta and protect our remaining two Outposts. Our forces are being stretched thin, and you are one of our only hopes. + + + sukrat + + + + + + + 704.9656 + 124.237785 + + 0 + + 5 + + + + + 705.0038 + 125.033638 + + 5 + + + + + + + I heard that core was found in BattleZone Gamma. I'm not going to let you go alone, so let's try out this newly made party communications system. + + + + Explain more. + + + + Once I add myself to your party, you should be able to rapidly give me instructions. Also, whenever you enter a BattleZone I will also be entered as a combatant. The BattleZone is in the southeast, so let's go there. + + + + Sounds good. Add yourself. + + + + BattleZone Gamma + + + Press 'CTRL' to open up the Chat Wheel. + +Use it to give instructions to party members. + + + <color=red>I could ask the same to you, scum. Revenge will be sweet!</color> + + + <color=lime>So you actually can understand them, unbelievable. I can't decipher a word they're transmitting.</color> + + + <color=lime>Let's skip over that for now. Time to take this zone back!</color> + + + We have a lead on the Infected Commander you communicated with. They are preparing an assault on BattleZone Gamma. They may have assistance, so find help of your own. Be careful, determined commanders can make tough opponents. + + + - Head to BattleZone Gamma and protect the Carrier. + +- Destroy the enemy Carrier. + +- Return for your reward. + + + Trial By Combat-gamma + + + Head to BattleZone Gamma and defend our carrier from the enemy commander. Bring backup. + + + Well done. We won't forget what you have done for us. + + + You have proven your worth as a commander. You should head to Haven 3 and help them out. The situation is grim there but I am confident you can provide them great strength. Best of luck and take care. + + + - Travel to Haven 3. + + + SmallCenter6 + + + Trial By Combat-haven3 + + + I'll give them a hand. + + + There's something else I need to finish here. + + + Head to Haven 3. They have some severe problems in the area. Good luck. + + + haven3-missioncontrol1 + + + Welcome! I have already heard about your victories in the northern sectors. It would be an honor to have you assist us. + + + <color=lime>Wait, what did that new core mean by spreading out? And who are they anyway?</color> + + + <color=lime>I don't think they can message you when they are destroyed. Let's report back to Haven 2.</color> + + + <color=lime>Ready to lose again? Also, who's that core?</color> + + + <color=red>They're here. Don't make any rash decisions, Daayo. We need to win this to keep them spread out.</color> + + + pytha + + + Trial By Combat_postsukratcutscene1 + + + Trial By Combat + + + C + + + Talk to the Mission Control in Haven 2. + + + + Training Circuit + + + + It doesn't look like you've finished the training mission from the Mission Control in Haven 1. You'll need to go there to do that mission first, but I appreciate the attempt at skipping grades! + + + + + + + 705.095 + 130.76619 + + 0 + + 1 + + + + + 705.0171 + 130.077759 + + 1 + + + + + + + THROUGH COMPLETING THIS MISSION, YOU: + +Explored Haven 2 and its surrounding sectors + +Met Daayo and Pytha + +Fought in two BattleZones and gained combat experience + +Unlocked the Party section of the Status Menu + +SUGGESTED NEXT MISSION: THE SCOURGE OF SECRECY + + + clip_missioncompleteep1 + + + Haven 3 + + + flag_daayospawnpoint1 + + + flag_trialdaayospawngamma + + + flag_trialpythaspawngamma + + + \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/Trial By Combat.taskdata.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/Trial By Combat.taskdata.meta new file mode 100644 index 000000000..a41e2c9b0 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/Trial By Combat.taskdata.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: a66879690ad5b7746af1735bf350bfc2 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-advanced-passives.dialoguedata b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-advanced-passives.dialoguedata new file mode 100644 index 000000000..ffb37728d --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-advanced-passives.dialoguedata @@ -0,0 +1,87 @@ + + + + + + + + + + + true + + false + false + Mission + + + + true + false + false + Mission + + + + true + false + true + + Mission + + + + + + Dialogue + Out + Single + Right + 202 + 0 + + + Dialogue + Out + Single + Right + 257 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + + + + + capitol-advanced-passives + + + {"parts":[{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":18,"tier":2,"secondaryData":"","partID":"MediumSide3"},{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":17,"tier":2,"secondaryData":"","partID":"MediumSide3"},{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":13,"tier":2,"secondaryData":"","partID":"MediumWing1"},{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":20,"tier":2,"secondaryData":"","partID":"MediumWing3"},{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":19,"tier":2,"secondaryData":"","partID":"MediumWing3"}]} + + + + I'm selling parts with advanced passive abilities. Are you interesting in buying some? + + + + I would like to buy some parts. + On second thought, no thanks. + + + + \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-advanced-passives.dialoguedata.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-advanced-passives.dialoguedata.meta new file mode 100644 index 000000000..dc116e316 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-advanced-passives.dialoguedata.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: d6921272494208f49ac0ef0f40fd08d8 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-advanced-skills.dialoguedata b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-advanced-skills.dialoguedata new file mode 100644 index 000000000..b1b179c9a --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-advanced-skills.dialoguedata @@ -0,0 +1,87 @@ + + + + + + + + + + + true + + false + false + Mission + + + + true + false + true + + Mission + + + + + + Dialogue + Out + Single + Right + 202 + 0 + + + Dialogue + Out + Single + Right + 257 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + true + false + false + Mission + + + + + + + + + + capitol-advanced-skills + + + {"parts":[{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":29,"tier":0,"secondaryData":"","partID":"MediumCenter1"},{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":27,"tier":0,"secondaryData":"","partID":"MediumCenter4"},{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":26,"tier":2,"secondaryData":"","partID":"MediumCenter3"},{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":30,"tier":2,"secondaryData":"","partID":"MediumCenter2"},{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":25,"tier":2,"secondaryData":"","partID":"MediumExtra2"},{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":1,"tier":2,"secondaryData":"","partID":"MediumExtra1"},{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":33,"tier":2,"secondaryData":"","partID":"MediumSide4"} +,{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":12,"tier":2,"secondaryData":"","partID":"MediumSide4"}]} + + + I'll selling parts with advanced skills. You'll see some great benefits for youself when you activate them. + + + + I would like to buy some parts. + On second thought, no thanks. + + + + \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-advanced-skills.dialoguedata.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-advanced-skills.dialoguedata.meta new file mode 100644 index 000000000..3a3dc91c2 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-advanced-skills.dialoguedata.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 72cf22b76b23c7a49b0cdeb243d25535 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-advanced-spawns.dialoguedata b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-advanced-spawns.dialoguedata new file mode 100644 index 000000000..7c3ec2084 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-advanced-spawns.dialoguedata @@ -0,0 +1,87 @@ + + + + + + + + + + + true + + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 215 + 0 + + + Dialogue + Out + Single + Right + 270 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + true + false + true + + Mission + + + + true + false + false + Mission + + + + + + + + + + capitol-advanced-spawns + + + I'm selling parts with advanced drone spawns. A large fleet of advanced drone spawns can easily overwelm an enemy. + + + + I would like to buy some parts. + On second thought, no thanks. + + + + {"parts":[{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":10,"tier":0,"secondaryData":"strike_drone","partID":"MediumSide1"},{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":10,"tier":0,"secondaryData":"counter_drone","partID":"MediumSide1"},{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":10,"tier":0,"secondaryData":"torpedo_drone","partID":"MediumSide2"},{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":10,"tier":0,"secondaryData":"gun_drone","partID":"MediumSide2"}]} + + + + \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-advanced-spawns.dialoguedata.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-advanced-spawns.dialoguedata.meta new file mode 100644 index 000000000..f49990120 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-advanced-spawns.dialoguedata.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 8bbdb2a747443b042af73ce4aa5c3e12 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-advanced-weapons.dialoguedata b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-advanced-weapons.dialoguedata new file mode 100644 index 000000000..e9cce0f01 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-advanced-weapons.dialoguedata @@ -0,0 +1,86 @@ + + + + + + + + + + + true + + false + false + Mission + + + + true + false + false + Mission + + + + true + false + true + + Mission + + + + + + Dialogue + Out + Single + Right + 215 + 0 + + + Dialogue + Out + Single + Right + 270 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + + + + + capitol-advanced-weapons + + + {"parts":[{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":9,"tier":2,"secondaryData":"","partID":"MediumSide4"},{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":4,"tier":2,"secondaryData":"","partID":"MediumSide4"},{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":8,"tier":2,"secondaryData":"","partID":"MediumWing2"},{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":7,"tier":2,"secondaryData":"","partID":"MediumWing2"},{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":5,"tier":2,"secondaryData":"","partID":"SmallWing3"},{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":6,"tier":2,"secondaryData":"","partID":"SmallWing3"}]} + + + I'm selling parts with powerful weapons. They can be deactivated to prevent them from firing at the wrong moment or to conserve energy. + + + + I would like to buy some parts. + On second though, no thanks. + + + + \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-advanced-weapons.dialoguedata.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-advanced-weapons.dialoguedata.meta new file mode 100644 index 000000000..a40866abc --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-advanced-weapons.dialoguedata.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: aba384f7edb6ef34c9812075f35f674e +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-advancedtraderexplainer.dialoguedata b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-advancedtraderexplainer.dialoguedata new file mode 100644 index 000000000..75be1e2f5 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-advancedtraderexplainer.dialoguedata @@ -0,0 +1,65 @@ + + + + + + + + + + + true + + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 215 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + true + false + false + Mission + + + + + + + + + advanced-trader-explainer + + + A lot of great parts are being sold from these traders. However, the parts they sell are quite large, so a larger core is required to equip them. + + + + Okay. + + + + \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-advancedtraderexplainer.dialoguedata.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-advancedtraderexplainer.dialoguedata.meta new file mode 100644 index 000000000..4deeccc43 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-advancedtraderexplainer.dialoguedata.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 10637a49508fead4aacf1baf616296cd +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-basic-passive.dialoguedata b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-basic-passive.dialoguedata new file mode 100644 index 000000000..406c35761 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-basic-passive.dialoguedata @@ -0,0 +1,86 @@ + + + + + + + + + + + + Dialogue + Out + Single + Right + 189 + 0 + + + Dialogue + Out + Single + Right + 244 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + true + false + true + + Mission + + + + true + false + false + Mission + + + + + true + + false + false + Mission + + + + + + + + + + I'm selling parts with various passive abilities. + + + + I would like to trade some parts. + On second thought, no thanks. + + + + {"parts":[{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":17,"tier":1,"secondaryData":"","partID":"SmallSide2","shiny":false},{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":18,"tier":1,"secondaryData":"","partID":"SmallSide2","shiny":false},{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":20,"tier":1,"secondaryData":"","partID":"SmallSide1","shiny":false},{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":13,"tier":1,"secondaryData":"","partID":"SmallSide4","shiny":false}]} + + + capitol-basic-passive + + + \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-basic-passive.dialoguedata.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-basic-passive.dialoguedata.meta new file mode 100644 index 000000000..d341a9c62 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-basic-passive.dialoguedata.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: d031eb567c202604d846429db3fe3976 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-basic-skills.dialoguedata b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-basic-skills.dialoguedata new file mode 100644 index 000000000..609320329 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-basic-skills.dialoguedata @@ -0,0 +1,86 @@ + + + + + + + + + + + true + + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 202 + 0 + + + Dialogue + Out + Single + Right + 257 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + true + false + true + + Mission + + + + true + false + false + Mission + + + + + + + + + + capitol-basic-skills + + + I sell parts with special skills. You will need to activate them manually when the time is right. + + + + I want to trade some parts. + On second thought, no thanks. + + + + {"parts":[{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":2,"tier":1,"secondaryData":"","partID":"SmallCenter2","shiny":false},{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":30,"tier":1,"secondaryData":"","partID":"SmallCenter4","shiny":false},{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":1,"tier":1,"secondaryData":"","partID":"SmallCenter5","shiny":false},{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":12,"tier":1,"secondaryData":"","partID":"SmallCenter3","shiny":false},{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":28,"tier":0,"secondaryData":"","partID":"SmallCenter3","shiny":false}]} + + + \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-basic-skills.dialoguedata.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-basic-skills.dialoguedata.meta new file mode 100644 index 000000000..698098c8e --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-basic-skills.dialoguedata.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 9b35890b75b553c4285b88a6e507bc33 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-basic-spawns.dialoguedata b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-basic-spawns.dialoguedata new file mode 100644 index 000000000..afd87b502 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-basic-spawns.dialoguedata @@ -0,0 +1,86 @@ + + + + + + + + + + true + false + false + Mission + + + + + true + + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 189 + 0 + + + Dialogue + Out + Single + Right + 244 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + true + false + true + + Mission + + + + + + + + + + capitol-basic-spawns + + + I've got a few parts that will allow you to spawn units in battle. + + + + I would like to trade some parts. + On second thought, no thanks. + + + + {"parts":[{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":10,"tier":0,"secondaryData":"{\"drone\":\"{\\\"entityName\\\":\\\"Worker Drone\\\",\\\"coreSpriteID\\\":\\\"drone_light\\\",\\\"coreShellSpriteID\\\":\\\"worker_drone_shell_sprite\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":7,\\\"parts\\\":[],\\\"dialogue\\\":{\\\"instanceID\\\":0},\\\"useCustomDroneType\\\":true,\\\"customDroneType\\\":1}\",\"energyCost\":100.0,\"delay\":2.0,\"cooldown\":10.0,\"type\":1}","partID":"SmallCenter7","shiny":false},{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":10,"tier":0,"secondaryData":"{\"drone\":\"{\\\"entityName\\\":\\\"Mini Drone\\\",\\\"coreSpriteID\\\":\\\"\\\",\\\"coreShellSpriteID\\\":\\\"mini_drone_core_sprite\\\",\\\"shellHealth\\\":[75.0,25.0,300.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":7,\\\"parts\\\":[],\\\"dialogue\\\":{\\\"instanceID\\\":0},\\\"useCustomDroneType\\\":true,\\\"customDroneType\\\":0}\",\"energyCost\":100.0,\"delay\":2.0,\"cooldown\":10.0,\"type\":0}","partID":"SmallCenter6","shiny":false}]} + + + \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-basic-spawns.dialoguedata.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-basic-spawns.dialoguedata.meta new file mode 100644 index 000000000..d15821f6e --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-basic-spawns.dialoguedata.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: dbb1c1c27e4326f4d81b001de1b6a010 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-basic-weapons.dialoguedata b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-basic-weapons.dialoguedata new file mode 100644 index 000000000..5a3004e71 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-basic-weapons.dialoguedata @@ -0,0 +1,86 @@ + + + + + + + + + + true + false + false + Mission + + + + + true + + false + false + Mission + + + + true + false + true + + Mission + + + + + + Dialogue + Out + Single + Right + 176 + 0 + + + Dialogue + Out + Single + Right + 231 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + + + + + capitol-basic-weapons + + + {"parts":[{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":4,"tier":1,"secondaryData":"","partID":"SmallWing3","shiny":false},{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":5,"tier":1,"secondaryData":"","partID":"SmallWing1","shiny":false},{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":6,"tier":1,"secondaryData":"","partID":"SmallWing2","shiny":false}]} + + + I'm offering parts with basic weapons. + + + + I would like to trade some parts. + On second thought, no thanks. + + + + \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-basic-weapons.dialoguedata.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-basic-weapons.dialoguedata.meta new file mode 100644 index 000000000..6d913d205 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-basic-weapons.dialoguedata.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 30f72243ba1865041bb9c75f1d86cbf9 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-basic-yard.dialoguedata b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-basic-yard.dialoguedata new file mode 100644 index 000000000..d614411f0 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-basic-yard.dialoguedata @@ -0,0 +1,82 @@ + + + + + + + + + + + true + + false + false + Mission + + + + true + false + false + Mission + + + + true + true + false + Mission + + + + + + Dialogue + Out + Single + Right + 189 + 0 + + + Dialogue + Out + Single + Right + 244 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + + + + + capitol-basic-yard + + + Welcome to the Capitol. What can I do for you? + + + + I would like to change my shell configuration. + Err, nevermind. + + + + \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-basic-yard.dialoguedata.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-basic-yard.dialoguedata.meta new file mode 100644 index 000000000..bed19aa1f --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-basic-yard.dialoguedata.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 800cc7c64bf90044cbcab17c25c5977a +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-challenge-explainer.dialoguedata b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-challenge-explainer.dialoguedata new file mode 100644 index 000000000..f10f919ce --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-challenge-explainer.dialoguedata @@ -0,0 +1,131 @@ + + + + + + + + + + + true + + false + false + Mission + + + + true + false + false + Mission + + + + true + false + false + Mission + + + + true + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 228 + 0 + + + Dialogue + Out + Single + Right + 283 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + Dialogue + Out + Single + Right + 241 + 0 + + + Dialogue + Out + Single + Right + 296 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + + + + + + + challenge-explainer + + + Aww, come on. give these challenges a try. You can hone your skills against different commanders in unique scenarios and receive a good amount of dosh too! What's not to like? + + + + Ahh, alright. I'll give it a try. + No thank you. + + + + We've have plenty of challenging combat simulations here to test your capibilities. Can you beat them all? The challenges gradually become more difficult as well as give higher credit payouts the further you go. + + + + Sounds cool. + Meh, that doesn't sound interesting. + + + + \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-challenge-explainer.dialoguedata.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-challenge-explainer.dialoguedata.meta new file mode 100644 index 000000000..6aa13816d --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-challenge-explainer.dialoguedata.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: aed55e3dbfb421046b360460e363f21d +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-challenge-yard.dialoguedata b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-challenge-yard.dialoguedata new file mode 100644 index 000000000..7379ac6d2 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-challenge-yard.dialoguedata @@ -0,0 +1,82 @@ + + + + + + + + + + + true + + false + false + Mission + + + + true + true + false + Mission + + + + true + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 202 + 0 + + + Dialogue + Out + Single + Right + 257 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + + + + + capitol-challenge-yard + + + Welcome to the Capitol. Stop by to drop off parts and reconfigure your shell at anytime! + + + + I would like to change my shell configuration. + On second thought, no thanks. + + + + \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-challenge-yard.dialoguedata.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-challenge-yard.dialoguedata.meta new file mode 100644 index 000000000..186016994 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-challenge-yard.dialoguedata.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 87af82a730384e845b536ae262391a27 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-coreofworldexplainer.dialoguedata b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-coreofworldexplainer.dialoguedata new file mode 100644 index 000000000..73b450002 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-coreofworldexplainer.dialoguedata @@ -0,0 +1,65 @@ + + + + + + + + + + + true + + false + false + Mission + + + + true + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 254 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + + + + core-of-world-explainer + + + There's a gateway in the Jump Sector in the south-east. It leads to a large area of abandoned sectors, the first step to the core of this world. Unfortunately, just about all of the scouts we've sent there never made it back... + + + + ... + + + + \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-coreofworldexplainer.dialoguedata.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-coreofworldexplainer.dialoguedata.meta new file mode 100644 index 000000000..31a82338f --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-coreofworldexplainer.dialoguedata.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 4f98e849afe89e2418c488a8937debee +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-coreupgraderexplainer.dialoguedata b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-coreupgraderexplainer.dialoguedata new file mode 100644 index 000000000..97a2142e2 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-coreupgraderexplainer.dialoguedata @@ -0,0 +1,65 @@ + + + + + + + + + + + true + + false + false + Mission + + + + true + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 228 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + + + + core-upgrader-explainer + + + The core upgrader will allow you improve your core and each core grants different bonuses. It can be used to further customize your combat style. + + + + Cool. + + + + \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-coreupgraderexplainer.dialoguedata.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-coreupgraderexplainer.dialoguedata.meta new file mode 100644 index 000000000..f2fe65ff6 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-coreupgraderexplainer.dialoguedata.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: ae297b238db853f40b9dc69bf6326e49 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-design-comp-2nd-place.dialoguedata b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-design-comp-2nd-place.dialoguedata new file mode 100644 index 000000000..b0231c483 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-design-comp-2nd-place.dialoguedata @@ -0,0 +1,457 @@ + + + + + + + + + + true + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 202 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + Dialogue + Out + Single + Right + 202 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + Dialogue + Out + Single + Right + 228 + 0 + + + Dialogue + Out + Single + Right + 283 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + Dialogue + Out + Single + Right + 215 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + true + + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 215 + 0 + + + Dialogue + Out + Single + Right + 270 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + Dialogue + Out + Single + Right + 202 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + + + 4 + 1 + 100 + + + + + + Dialogue + Out + Single + Right + 215 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + + + 4 + 1 + 50 + + + + + + + + 4 + 1 + 20 + + + + + + Dialogue + Out + Single + Right + 202 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + Dialogue + Out + Single + Right + 189 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + Dialogue + Out + Single + Right + 228 + 0 + + + Dialogue + Out + Single + Right + 283 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + Dialogue + Out + Single + Right + 215 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + + + + + + + + + + + + + + + + + + + + + + + I'm guessing so, though I've never had the ability to talk to one to know for sure, unlike you. + + + + Who made them? + + + + That, nobody knows. At least, nobody that I know of. The Architect just modifies what's already there. + + + + Hmm.... + + + + Yes! Every Yard and Trader is a pre-programmed intelligent can of bolts! They're made so similar to us that you almost forget they're not sentient themselves! + + + + Even that Infected Yard I found? + How does The Architect program them? + + + + They never told me. Though occasionally I hear them mumbling something strange, maybe that has something to do with it? + + + + Huh. Thanks for the info. + + + + capitol-design-comp-2nd-place + + + Greetings! I am the Part Master. I procure the stock of each Trader in our territory! They're programmed by The Architect, though. + + + + I'd like you to check my Part Index progress. + Programmed by The Architect? + + + + Your Index is coming along very nicely. Keep it up and I'll offer you something great in return. + + + + Cool! + + + + + + + Not bad. The Index allows you to check the origins of any part in this world even if you haven't obtained it yet; merely seeing it is enough. + + + + Interesting. + + + + 50 + + + Incredible! Your Part Index is brimming with information! This calls for a reward! + + + + Yay! + + + + Me? Pah! I would never do such a job for free. + + + + ... + + + + SIKE! There is no reward yet! I am the ghost of rudderbucky, temporarily possessing this vessel. Pester me about the reward and I'll add it soon enough. + + + + Damn you rudderbucky!! + rudderbucky, are you the blue voice? + + + + Hmm, you should try and find more parts and bring them to your Yard. I only count parts you've put into your stash; just seeing them isn't enough! + + + + Okay... + + + + \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-design-comp-2nd-place.dialoguedata.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-design-comp-2nd-place.dialoguedata.meta new file mode 100644 index 000000000..c78ec6218 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-design-comp-2nd-place.dialoguedata.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 081c6c0047ccc764ea94378f62e19140 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-fighting-style.dialoguedata b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-fighting-style.dialoguedata new file mode 100644 index 000000000..b1a4cce72 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-fighting-style.dialoguedata @@ -0,0 +1,334 @@ + + + + + + + + + + + true + + false + false + Mission + + + + true + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 215 + 0 + + + Dialogue + Out + Single + Right + 270 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + true + false + false + Mission + + + + true + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 241 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + true + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 202 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + Dialogue + Out + Single + Right + 202 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + Dialogue + Out + Single + Right + 228 + 0 + + + Dialogue + Out + Single + Right + 283 + 0 + + + Dialogue + Out + Single + Right + 338 + 0 + + + Dialogue + Out + Single + Right + 393 + 0 + + + Dialogue + Out + Single + Right + 448 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + true + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 189 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + Dialogue + Out + Single + Right + 176 + 0 + + + 0 + 1 + 0 + 1 + + + + true + 0.1 + Mission + + + + + + + + + + + + + + + + + + + fighting-style + + + I've always wanted to try overwelming enemies with tons of drones but frankly, I'm too lazy to farm for any drone parts. + + + + You should try it. It's great! + Alright then. + + + + Uuuah, I could never play it out like that. I like being fast so I can get in on the action, even sacrificing my ShellCore for death warping when I'm through. It helps you be more productive. + + + + Interesting. + + + + Aha, you're a ruthless one in the BattleZone I see. Gotta show 'em who's boss, am I right? + + + + That's how I do it. + + + + Hey, looks like we similar fighting styles then! Being able to take on anything comes in handy doesn't it? + + + + Indeed in does! + + + + My fighting style is a combination of speed, collecting a lot of power for reinforcements and having well rounded firepower. Tell me, what's your fighting style? + + + + Lots of firepower! Gotta show thoes foes no mercy! + Drone swarming. The enemy can't shoot all my drones down. + Playing it slow and safe. + Being a jack-of-all-trades + I'll keep that a secret. + + + + Mmm... alright. If you insist, then I'll try it out sometime. + + + + Alright! + + + + Oooh... i see how it is. + + + + ... + + + + \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-fighting-style.dialoguedata.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-fighting-style.dialoguedata.meta new file mode 100644 index 000000000..8afc01868 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-fighting-style.dialoguedata.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: ee6999cb95bfbb948907043ecbaf2957 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-intected-attack-capitol.dialoguedata b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-intected-attack-capitol.dialoguedata new file mode 100644 index 000000000..6c9b359e4 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-intected-attack-capitol.dialoguedata @@ -0,0 +1,114 @@ + + + + + + + + + + true + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 204 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + true + false + false + Mission + + + + + true + + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 243 + 0 + + + Dialogue + Out + Single + Right + 299 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + + + + + + I hope so. I do like being in the Capitol. It's very secure here and everyone here is friendly. + + + + Yeah. + + + + infected-attack-capitol + + + It's just a matter of time until the Infected attack the Capitol. What will we do if we end up losing it? We could try and retreat to the abandoned sectors, but nobody knows what will await us there. + + + + Oh boy... + Don't worry. We will hold the Infected off. + + + + \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-intected-attack-capitol.dialoguedata.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-intected-attack-capitol.dialoguedata.meta new file mode 100644 index 000000000..ebf897a24 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-intected-attack-capitol.dialoguedata.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 031eb81112f6d5546a2955c6fe79de7a +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-lost-scouter.dialoguedata b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-lost-scouter.dialoguedata new file mode 100644 index 000000000..3ab50c331 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-lost-scouter.dialoguedata @@ -0,0 +1,114 @@ + + + + + + + + + + + true + + false + false + Mission + + + + true + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 202 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + true + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 202 + 0 + + + Dialogue + Out + Single + Right + 257 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + + + + + + lost-scouter + + + Wait...REALLY? That makes getting around much easier now that I have a mental picture of it. Thank you! + + + + You're welcome. + + + + Have you just arrived at the Capitol as well? I'm still trying to find my way around... + + + + ... + The Capitol is just 8 sectors surrounding a center. + + + + \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-lost-scouter.dialoguedata.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-lost-scouter.dialoguedata.meta new file mode 100644 index 000000000..165573ba9 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-lost-scouter.dialoguedata.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 109e12c1f9e3fce49b4289996fe46004 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-northern-heavy-scouter.dialoguedata b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-northern-heavy-scouter.dialoguedata new file mode 100644 index 000000000..7b555548b --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-northern-heavy-scouter.dialoguedata @@ -0,0 +1,65 @@ + + + + + + + + + + + + Dialogue + Out + Single + Right + 217 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + true + false + false + Mission + + + + + true + + false + false + Mission + + + + + + + + + How could anyone make it to Haven 3 in less than a minute? This guy is clearly delusional. Do whatever you want, but I'm staying right where I am! + + + + Yay, the name drop! I've been waiting for the name drop. + + + + capitol-northern-heavy-scouter + + + \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-northern-heavy-scouter.dialoguedata.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-northern-heavy-scouter.dialoguedata.meta new file mode 100644 index 000000000..0f28abe7c --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-northern-heavy-scouter.dialoguedata.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: dd4b6a8607b40954a95cd7de51ee34f2 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-not-born-for-war.dialoguedata b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-not-born-for-war.dialoguedata new file mode 100644 index 000000000..42ec0b6e7 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-not-born-for-war.dialoguedata @@ -0,0 +1,65 @@ + + + + + + + + + + + true + + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 202 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + true + false + false + Mission + + + + + + + + + not-born-for-war + + + Ever since I was born, I was fighting this war... I wonder what it's like not having to fight. + + + + ... + + + + \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-not-born-for-war.dialoguedata.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-not-born-for-war.dialoguedata.meta new file mode 100644 index 000000000..82235651d --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-not-born-for-war.dialoguedata.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 2307d942f4b13194cbabb2107ed7c257 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-not-newborn.dialoguedata b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-not-newborn.dialoguedata new file mode 100644 index 000000000..59698443c --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-not-newborn.dialoguedata @@ -0,0 +1,117 @@ + + + + + + + + + + true + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 189 + 0 + + + Dialogue + Out + Single + Right + 244 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + Dialogue + Out + Single + Right + 215 + 0 + + + Dialogue + Out + Single + Right + 270 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + true + + false + false + Mission + + + + + + + + + + + + Oh hello there, I haven't seen you around here before. + + + + How did a newborn like you get here? + Uh, okay. + + + + I'm not a newborn! I'm just enjoying some time without the weight of attached parts. By the way, it's rude to stare. + + + + Uhhh... + Alright! Time to leave! + + + + capitol-not-newborn + + + \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-not-newborn.dialoguedata.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-not-newborn.dialoguedata.meta new file mode 100644 index 000000000..00c7f7391 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-not-newborn.dialoguedata.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 4c0d8cf757f79ce4989b725611c7d180 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-shoot-things-praise.dialoguedata b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-shoot-things-praise.dialoguedata new file mode 100644 index 000000000..217e62062 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-shoot-things-praise.dialoguedata @@ -0,0 +1,65 @@ + + + + + + + + + + + + Dialogue + Out + Single + Right + 189 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + true + false + false + Mission + + + + + true + + false + false + Mission + + + + + + + + + I've heard you're doing a fine job out there. Keep it up! + + + + I will! + + + + shoot-things-praise + + + \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-shoot-things-praise.dialoguedata.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-shoot-things-praise.dialoguedata.meta new file mode 100644 index 000000000..5e3a75081 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-shoot-things-praise.dialoguedata.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 3ecdf20fcb542cb468856b49eb2c954f +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-shoot-things.dialoguedata b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-shoot-things.dialoguedata new file mode 100644 index 000000000..feb7b53a3 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-shoot-things.dialoguedata @@ -0,0 +1,114 @@ + + + + + + + + + + + true + + false + false + Mission + + + + true + false + false + Mission + + + + true + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 191 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + Dialogue + Out + Single + Right + 191 + 0 + + + Dialogue + Out + Single + Right + 247 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + + + + + + shoot-things + + + Hmm? Do my words bring nostalgia for you? + + + + Yes they do! + + + + Speak to our leader. He does the talking, I just shoot things. + + + + Okay. + I knew I've heard that line before! + + + + \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-shoot-things.dialoguedata.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-shoot-things.dialoguedata.meta new file mode 100644 index 000000000..effdfd03a --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-shoot-things.dialoguedata.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 7ae1959e420824048839efcd957bae0a +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-south-informant.dialoguedata b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-south-informant.dialoguedata new file mode 100644 index 000000000..7e8c8e3ab --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-south-informant.dialoguedata @@ -0,0 +1,107 @@ + + + + + + + + + + true + false + false + Mission + + + + + true + + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 241 + 0 + + + Dialogue + Out + Single + Right + 296 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + Dialogue + Out + Single + Right + 228 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + + + + + + capitol-south-informant + + + The big core up there may seem a little stoic, but they are the highest-rank core in our army. Well, except for our leader of course. Every single core in our forces receives missions from them. + + + + But I hadn't met them until I got here! + Yeah, whatever. + + + + Yeah, but you were talking to them through Mission Controls. All MCs are connected to their transmission signal. One of the few ways we have left to connect to the upper sectors. + + + + Wow! + + + + \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-south-informant.dialoguedata.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-south-informant.dialoguedata.meta new file mode 100644 index 000000000..60074f461 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/capitol-south-informant.dialoguedata.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: abb25ddd5392eea4c9fd04b101a0f32a +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven1-bluevoiceexplainer.dialoguedata b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven1-bluevoiceexplainer.dialoguedata new file mode 100644 index 000000000..67404e3d6 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven1-bluevoiceexplainer.dialoguedata @@ -0,0 +1,105 @@ + + + + + + + + + + + true + + false + false + + + + + + Dialogue + Out + Single + Right + 241 + 0 + + + Dialogue + Out + Single + Right + 296 + 0 + + + 0 + 1 + 0 + 1 + + + + Mission + + + + + + Dialogue + Out + Single + Right + 189 + 0 + + + 0 + 1 + 0 + 1 + + + + Mission + + + + true + Mission + + + + true + Mission + + + + + + + + + + + haven1-bluevoiceexplainer + + + You heard a voice at the Spawning Grounds? I do not know of anyone else who has noticed anything like that. However, I have heard that sometimes, newborns imagine things when they awake. + + + + Heard from where? + ... + + + + Uhm... You wouldn't know them, they're stationed in another Haven. + + + + Okay... + + + + \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven1-bluevoiceexplainer.dialoguedata.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven1-bluevoiceexplainer.dialoguedata.meta new file mode 100644 index 000000000..e3a9feb24 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven1-bluevoiceexplainer.dialoguedata.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: b3826935cec1738439d92f2feb91dfaf +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven1-combatexplainer.dialoguedata b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven1-combatexplainer.dialoguedata new file mode 100644 index 000000000..92ba988fb --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven1-combatexplainer.dialoguedata @@ -0,0 +1,413 @@ + + + + + + + + + + + + Dialogue + Out + Single + Right + 215 + 0 + + + Dialogue + Out + Single + Right + 270 + 0 + + + 0 + 1 + 0 + 1 + + + + Mission + + + + + + Dialogue + Out + Single + Right + 241 + 0 + + + Dialogue + Out + Single + Right + 296 + 0 + + + 0 + 1 + 0 + 1 + + + + Mission + + + + + + Dialogue + Out + Single + Right + 215 + 0 + + + Dialogue + Out + Single + Right + 270 + 0 + + + 0 + 1 + 0 + 1 + + + + Mission + + + + + true + + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 241 + 0 + + + Dialogue + Out + Single + Right + 296 + 0 + + + 0 + 1 + 0 + 1 + + + + Mission + + + + + + Dialogue + Out + Single + Right + 267 + 0 + + + Dialogue + Out + Single + Right + 322 + 0 + + + 0 + 1 + 0 + 1 + + + + Mission + + + + + + Dialogue + Out + Single + Right + 189 + 0 + + + Dialogue + Out + Single + Right + 244 + 0 + + + Dialogue + Out + Single + Right + 299 + 0 + + + 0 + 1 + 0 + 1 + + + + Mission + + + + true + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 280 + 0 + + + Dialogue + Out + Single + Right + 335 + 0 + + + 0 + 1 + 0 + 1 + + + + Mission + + + + + + Dialogue + Out + Single + Right + 176 + 0 + + + Dialogue + Out + Single + Right + 231 + 0 + + + Dialogue + Out + Single + Right + 286 + 0 + + + 0 + 1 + 0 + 1 + + + + Mission + + + + + + Dialogue + Out + Single + Right + 241 + 0 + + + Dialogue + Out + Single + Right + 296 + 0 + + + 0 + 1 + 0 + 1 + + + + Mission + + + + + + + + + + + + + + + + + + + + + + + + + + + + What? Why would you think of such a concept? No, you respawn back at the last friendly Carrier or Haven that you came across. + + + + Thanks for the info! + Wait, I've got more questions! + + + + Think of Shell as a protective layer around your entire ship. Once it runs out, your ship no longer has that protection and your parts will start taking damage. When they take too much, they detach from your ship. + + + + And Core? + That's enough. Thanks. + + + + Core is your actual health. It depletes when your main body, what you were born with, takes damage. If it is fully depleted, you are destroyed. + + + + Forever? + I'm good now. Thanks. + + + + haven1-combatexplainer + + + Abilities are various special powers that come on parts. ShellCores like you and I are gifted with a special ability - a Bullet that fires faster. Most of them - except Passives - consume Energy when used. + + + + What is Energy? + What are the different types of Abilities? + + + + Energy is the power Abilities run off of, it doesn't do much more than that. It regenerates fairly quickly even without supplement, but if you run out, you can't use most Abilities. You can get more by equipping parts with Energy, Energy Max or Energy Regen abilities. + + + + I'm done here. Thanks. + I still have more questions! + + + + I can answer any basic questions you have about combat. Ask away. + + + + What is Shell and Core? + What are Abilities? + I've got other questions. + + + + There are Skills like Speed Thrust, which instantly provide a benefit of some kind. Spawns will, well, spawn Drones you can command in battle. Weapons are the main damage-dealing Abilities, they all use Energy to deal damage in specific ways. Passives confer passive benefits and don't do much else. + + + + What is Energy? + Good to know. Thanks. + + + + Ask away. + + + + What is Energy? + What are the different types of Abilities? + What are Turrets? + + + + Turrets are immobile entities that you can drag around with your Tractor Beam. There are different kinds, for now though you only have to deal with Defense Turrets - they are tanky and are equipped with an instant-hit Beam. + + + + What are the different types of Abilities? + That wraps up my doubts. Thanks! + + + + \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven1-combatexplainer.dialoguedata.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven1-combatexplainer.dialoguedata.meta new file mode 100644 index 000000000..15af1076b --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven1-combatexplainer.dialoguedata.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: c761cce803845e247b9fedb568314bff +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven1-infectionexplainer.dialoguedata b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven1-infectionexplainer.dialoguedata new file mode 100644 index 000000000..c5276f3a1 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven1-infectionexplainer.dialoguedata @@ -0,0 +1,105 @@ + + + + + + + + + + + true + + false + false + + + + + + Dialogue + Out + Single + Right + 241 + 0 + + + Dialogue + Out + Single + Right + 296 + 0 + + + 0 + 1 + 0 + 1 + + + + Mission + + + + + + Dialogue + Out + Single + Right + 228 + 0 + + + 0 + 1 + 0 + 1 + + + + Mission + + + + true + Mission + + + + true + Mission + + + + + + + + + + + haven1-infectionexplainer + + + We still don't know what caused the 'Infection'. All we know is that it started after some of us entered the Core Sectors of this world. Ever since, we've been under attack and their numbers just keep rising and rising. + + + + Core Sectors? + ... + + + + Apparently, at the very origin of our existence. I've heard rumors of other realms of sectors as well... what I do know is that this realm is known as the Standard Sectors. + + + + Huh. + + + + \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven1-infectionexplainer.dialoguedata.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven1-infectionexplainer.dialoguedata.meta new file mode 100644 index 000000000..46acf15ae --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven1-infectionexplainer.dialoguedata.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 759f4f6d10e267f4b82c1995a0c1647c +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven2-bordergazer.dialoguedata b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven2-bordergazer.dialoguedata new file mode 100644 index 000000000..f6461fdc9 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven2-bordergazer.dialoguedata @@ -0,0 +1,63 @@ + + + + + + + + + + + + Dialogue + Out + Single + Right + 189 + 0 + + + 0 + 1 + 0 + 1 + + + + Mission + + + + true + false + false + Mission + + + + + true + + false + false + Mission + + + + + + + + + Oh don't mind me for now, I'm just... bordergazing. + + + + ... + + + + haven2-bordergazer + + + \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven2-bordergazer.dialoguedata.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven2-bordergazer.dialoguedata.meta new file mode 100644 index 000000000..9c0336aec --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven2-bordergazer.dialoguedata.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: bc1ef30d41b13624c9dd09b236baa5e6 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven2-communicationexplainer.dialoguedata b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven2-communicationexplainer.dialoguedata new file mode 100644 index 000000000..91a243dbe --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven2-communicationexplainer.dialoguedata @@ -0,0 +1,191 @@ + + + + + + + + + + + + Dialogue + Out + Single + Right + 241 + 0 + + + Dialogue + Out + Single + Right + 296 + 0 + + + 0 + 1 + 0 + 1 + + + + Mission + + + + + + Dialogue + Out + Single + Right + 202 + 0 + + + 0 + 1 + 0 + 1 + + + + Mission + + + + true + false + false + Mission + + + + + true + + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 202 + 0 + + + Dialogue + Out + Single + Right + 257 + 0 + + + 0 + 1 + 0 + 1 + + + + Mission + + + + true + false + false + Mission + + + + + + + + + + + + Dialogue + Out + Single + Right + 215 + 0 + + + 0 + 1 + 0 + 1 + + + + Mission + + + + + + + + + + + + + + + + I haven't heard of anyone who has ever been able to communicate with the Infected. Their organization as a world-wide menace, however, betrays an ability to communicate. At least among themselves. + + + + Why not? + Hm... + + + + No idea, nothing seems to be received on our end. I'm sure it's the same for them with us. + + + + ... + + + + haven2-communicationexplainer + + + Unimaginable. To think I am speaking to the Core that may well be able to speak with the enemy's leader. + + + + I don't know about all that. + Yes, this is truly strange. + + + + Trial By Combat-finished-siege + + + Nevertheless, I must applaud your defense of those two lone Outposts. I don't think it's an understatement to say you will save us all. + + + + ... + + + + \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven2-communicationexplainer.dialoguedata.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven2-communicationexplainer.dialoguedata.meta new file mode 100644 index 000000000..b3eec7665 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven2-communicationexplainer.dialoguedata.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: cf76f8f443490ad47ac85ef981d46ab4 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven2-outpostexplainer.dialoguedata b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven2-outpostexplainer.dialoguedata new file mode 100644 index 000000000..592a8678e --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven2-outpostexplainer.dialoguedata @@ -0,0 +1,220 @@ + + + + + + + + + + + + Dialogue + Out + Single + Right + 202 + 0 + + + 0 + 1 + 0 + 1 + + + + Mission + + + + + + Dialogue + Out + Single + Right + 280 + 0 + + + Dialogue + Out + Single + Right + 335 + 0 + + + 0 + 1 + 0 + 1 + + + + Mission + + + + + + Dialogue + Out + Single + Right + 267 + 0 + + + Dialogue + Out + Single + Right + 322 + 0 + + + 0 + 1 + 0 + 1 + + + + Mission + + + + + + Dialogue + Out + Single + Right + 215 + 0 + + + Dialogue + Out + Single + Right + 270 + 0 + + + 0 + 1 + 0 + 1 + + + + Mission + + + + + true + + false + false + + + + true + Mission + + + + + + Dialogue + Out + Single + Right + 254 + 0 + + + Dialogue + Out + Single + Right + 309 + 0 + + + 0 + 1 + 0 + 1 + + + + Mission + + + + + + + + + + + + + + + + + No problem! Someone should start an encyclopedia containing all of this information. + + + + ... + + + + Uhh... Torpedo Turrets... exist? I'm not sure what they're supposed to do, I haven't been around for very long. Other than that, I know you have to destroy enemy Carriers to win over the BattleZone. Sometimes there are enemy Cores that try to accomplish the same goals as yourself. That's the extent of my knowledge. + + + + Thanks! + Cool! + + + + Alright, alright. Missile Turrets fire slow-moving homing projectiles that deal very high damage, suitable to fend off enemies who will have to dodge them to avoid destruction. Harvester Turrets harvest power orbs from those blue rocks - you use power to buy Turrets. + + + + MORE! + I think that's enough for me now. + + + + Outposts will increase your army limit, so you can own more Turrets and Drones at a time. You can also spawn Turrets at Outposts. + + + + Give me more info! + Good to know. + + + + haven2-outpostexplainer + + + Thirsty for victory, I see. Defense Turrets are the most hardy and are equipped with an inescapable Beam. Siege Turrets are perfect against Carriers and Outposts - their incredible range allows them to fire from very far away. + + + + More! More! + I'm good now. + + + + \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven2-outpostexplainer.dialoguedata.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven2-outpostexplainer.dialoguedata.meta new file mode 100644 index 000000000..55a514fc6 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven2-outpostexplainer.dialoguedata.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: d3aa6dfafae4ec541a7e13ada623733f +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven2-sightseer.dialoguedata b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven2-sightseer.dialoguedata new file mode 100644 index 000000000..7e6a62ca3 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven2-sightseer.dialoguedata @@ -0,0 +1,103 @@ + + + + + + + + + + true + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 215 + 0 + + + Dialogue + Out + Single + Right + 270 + 0 + + + 0 + 1 + 0 + 1 + + + + Mission + + + + + + Dialogue + Out + Single + Right + 189 + 0 + + + 0 + 1 + 0 + 1 + + + + Mission + + + + + true + + false + false + Mission + + + + + + + + + + + Have you taken a good look at the scenery here? The Turrets, the ShellCores, it's got so much variety! It never gets old! + + + + Agreed! + ... + + + + I guess you could say, this is not a dating sight. + + + + ... + + + + haven2-sightseer + + + \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven2-sightseer.dialoguedata.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven2-sightseer.dialoguedata.meta new file mode 100644 index 000000000..71ef52e21 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven2-sightseer.dialoguedata.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: c5fb2785ba5e71e4d8f9a4cb3dcd2aed +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven2-yard1.dialoguedata b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven2-yard1.dialoguedata new file mode 100644 index 000000000..2cd37909e --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven2-yard1.dialoguedata @@ -0,0 +1,80 @@ + + + + + + + + + + + true + + false + false + Mission + + + + true + true + false + Mission + + + + + + Dialogue + Out + Single + Right + 215 + 0 + + + Dialogue + Out + Single + Right + 270 + 0 + + + 0 + 1 + 0 + 1 + + + + Mission + + + + true + false + false + Mission + + + + + + + + + + haven2-yard1 + + + If you've got Shell parts you have no use for right now, just leave them with me. I'll keep them in case you need them later. + + + + I want to change my shell configuration. + On second thought, no thanks. + + + + \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven2-yard1.dialoguedata.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven2-yard1.dialoguedata.meta new file mode 100644 index 000000000..7c0cafc77 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven2-yard1.dialoguedata.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: e5cd498405fcf014580dcab502b4ab44 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-filler1.dialoguedata b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-filler1.dialoguedata new file mode 100644 index 000000000..0268e14d7 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-filler1.dialoguedata @@ -0,0 +1,63 @@ + + + + + + + + + + true + false + false + Mission + + + + + true + + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 176 + 0 + + + 0 + 1 + 0 + 1 + + + + Mission + + + + + + + + + haven3-filler1 + + + So many of them... + + + + ... + + + + \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-filler1.dialoguedata.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-filler1.dialoguedata.meta new file mode 100644 index 000000000..001774174 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-filler1.dialoguedata.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: eac1141ed9f650e4d953671bf9321698 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-filler2.dialoguedata b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-filler2.dialoguedata new file mode 100644 index 000000000..a4be93967 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-filler2.dialoguedata @@ -0,0 +1,63 @@ + + + + + + + + + + true + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 215 + 0 + + + 0 + 1 + 0 + 1 + + + + Mission + + + + + true + + false + false + Mission + + + + + + + + + When am I going to get the time to upgrade my parts? I've been stuck with these measly buggers for way too long. + + + + ... + + + + haven3-filler2 + + + \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-filler2.dialoguedata.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-filler2.dialoguedata.meta new file mode 100644 index 000000000..165597c3b --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-filler2.dialoguedata.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: bf8c7d7b7ee36e04797df3b9c5cabc35 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-filler3.dialoguedata b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-filler3.dialoguedata new file mode 100644 index 000000000..db81a52a3 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-filler3.dialoguedata @@ -0,0 +1,63 @@ + + + + + + + + + + true + false + false + Mission + + + + + true + + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 215 + 0 + + + 0 + 1 + 0 + 1 + + + + Mission + + + + + + + + + haven3-filler3 + + + I would say this is boring, but I doubt 'boring' is the right word for a situation where I could be destroyed at any moment. + + + + ... + + + + \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-filler3.dialoguedata.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-filler3.dialoguedata.meta new file mode 100644 index 000000000..8d19c92bc --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-filler3.dialoguedata.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 22091a4a1c6db244cbbafc1f49cd2133 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-hopelessexplainer.dialoguedata b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-hopelessexplainer.dialoguedata new file mode 100644 index 000000000..16d9c0608 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-hopelessexplainer.dialoguedata @@ -0,0 +1,63 @@ + + + + + + + + + + + true + + false + false + Mission + + + + true + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 241 + 0 + + + 0 + 1 + 0 + 1 + + + + Mission + + + + + + + + + haven3-hopelessexplainer + + + Quite frankly, continuing this war seems hopeless... Our only option is to travel to the Core Sectors and try to find out what caused the infection. Maybe we can figure out a way to stop it. + + + + ... + + + + \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-hopelessexplainer.dialoguedata.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-hopelessexplainer.dialoguedata.meta new file mode 100644 index 000000000..61a0a0b81 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-hopelessexplainer.dialoguedata.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 473854ba57ae5504780f9bac7e354d0d +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-landplatformexplainer.dialoguedata b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-landplatformexplainer.dialoguedata new file mode 100644 index 000000000..19c766f60 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-landplatformexplainer.dialoguedata @@ -0,0 +1,63 @@ + + + + + + + + + + + true + + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 215 + 0 + + + 0 + 1 + 0 + 1 + + + + Mission + + + + true + false + false + Mission + + + + + + + + + haven3-landplatformexplainer + + + See those platform-like objects beneath us here? I've heard that there are battles in faraway sectors where these become very important. + + + + Huh, interesting. + + + + \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-landplatformexplainer.dialoguedata.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-landplatformexplainer.dialoguedata.meta new file mode 100644 index 000000000..99dc6a72f --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-landplatformexplainer.dialoguedata.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 2eadd6a6678fb1a4288a9d6b9db59100 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-missionexplainer.dialoguedata b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-missionexplainer.dialoguedata new file mode 100644 index 000000000..8df755ce8 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-missionexplainer.dialoguedata @@ -0,0 +1,63 @@ + + + + + + + + + + + true + + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 215 + 0 + + + 0 + 1 + 0 + 1 + + + + Mission + + + + true + false + false + Mission + + + + + + + + + haven3-missionexplainer + + + While exploring sectors, you might find special parts and friendly ShellCores. Some might even have special missions for you. + + + + Okay. + + + + \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-missionexplainer.dialoguedata.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-missionexplainer.dialoguedata.meta new file mode 100644 index 000000000..5a013cedc --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-missionexplainer.dialoguedata.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: d8b9a5f5df577fe43ab8f6b6e9a1444f +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-nonverbal.dialoguedata b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-nonverbal.dialoguedata new file mode 100644 index 000000000..bfd53b35b --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-nonverbal.dialoguedata @@ -0,0 +1,93 @@ + + + + + + + + + + + true + + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 189 + 0 + + + 0 + 1 + 0 + 1 + + + + Mission + + + + true + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 189 + 0 + + + 0 + 1 + 0 + 1 + + + + Mission + + + + + + + + + + haven3-nonverbal + + + Hello, how you today? I great. Must victory! + + + + What? + + + + No knowledge of my speech? Sorry, that just my impediment! + + + + ... + + + + \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-nonverbal.dialoguedata.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-nonverbal.dialoguedata.meta new file mode 100644 index 000000000..435fc3c5f --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-nonverbal.dialoguedata.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 50c93dd14afb0b5488965a1367ea5002 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-nonverbaljokeexplainer.dialoguedata b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-nonverbaljokeexplainer.dialoguedata new file mode 100644 index 000000000..c4c7cfc65 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-nonverbaljokeexplainer.dialoguedata @@ -0,0 +1,143 @@ + + + + + + + + + + + true + + false + false + Mission + + + + true + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 189 + 0 + + + Dialogue + Out + Single + Right + 244 + 0 + + + 0 + 1 + 0 + 1 + + + + Mission + + + + + + Dialogue + Out + Single + Right + 189 + 0 + + + Dialogue + Out + Single + Right + 244 + 0 + + + 0 + 1 + 0 + 1 + + + + Mission + + + + + + Dialogue + Out + Single + Right + 176 + 0 + + + 0 + 1 + 0 + 1 + + + + Mission + + + + + + + + + + + + + haven3-nonverbaljokeexplainer + + + Did you have the chance to meet my poor friend just north-west of me? + + + + Yes. + No. + + + + Yes, their state is truly a tragedy. They are non-verbal. + + + + Uh... + Well but I heard them speak? + + + + You should talk to them first. + + + + Okay. + + + + \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-nonverbaljokeexplainer.dialoguedata.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-nonverbaljokeexplainer.dialoguedata.meta new file mode 100644 index 000000000..7a2a7e08c --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-nonverbaljokeexplainer.dialoguedata.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 9e311cc8f8a591b4590c498a9d3b8308 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-secretabilityexplainer.dialoguedata b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-secretabilityexplainer.dialoguedata new file mode 100644 index 000000000..c3a8318fd --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-secretabilityexplainer.dialoguedata @@ -0,0 +1,63 @@ + + + + + + + + + + true + false + false + Mission + + + + + true + + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 228 + 0 + + + 0 + 1 + 0 + 1 + + + + Mission + + + + + + + + + haven3-secretabilityexplainer + + + The constant, numerous attacks they have committed on Haven 3 and its surrounding sectors puzzle me. We never see them coming. They must possess something that we don't. + + + + ... + + + + \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-secretabilityexplainer.dialoguedata.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-secretabilityexplainer.dialoguedata.meta new file mode 100644 index 000000000..460f5463c --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-secretabilityexplainer.dialoguedata.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: ae24f0b355aed964f89f2b904dccfefb +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-shinyexplainer.dialoguedata b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-shinyexplainer.dialoguedata new file mode 100644 index 000000000..5f4c8c9cf --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-shinyexplainer.dialoguedata @@ -0,0 +1,63 @@ + + + + + + + + + + + true + + false + false + Mission + + + + true + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 241 + 0 + + + 0 + 1 + 0 + 1 + + + + Mission + + + + + + + + + haven3-shinyexplainer + + + Look at me! I managed to find one of those super rare new-fangled Shiny Parts. Looks like every part that you can collect has a chance to start shining. Keep an eye out and grab them if you see them! + + + + Uh, okay. + + + + \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-shinyexplainer.dialoguedata.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-shinyexplainer.dialoguedata.meta new file mode 100644 index 000000000..8b698adb9 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-shinyexplainer.dialoguedata.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: c2c4546ccfb8eb043b2aa4ecc89bc0ac +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-siegebeamer.dialoguedata b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-siegebeamer.dialoguedata new file mode 100644 index 000000000..48385b58d --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-siegebeamer.dialoguedata @@ -0,0 +1,63 @@ + + + + + + + + + + true + false + false + Mission + + + + + true + + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 202 + 0 + + + 0 + 1 + 0 + 1 + + + + Mission + + + + + + + + + haven3-siegebeamer + + + Greetings, defender of SiegeZone Beta. I knew you would make it here. Your work is invaluable. + + + + Thank you! + + + + \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-siegebeamer.dialoguedata.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-siegebeamer.dialoguedata.meta new file mode 100644 index 000000000..5d78dbd66 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-siegebeamer.dialoguedata.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 7f5216f70bce917498b5dab7dd13243c +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-siegeexplainer.dialoguedata b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-siegeexplainer.dialoguedata new file mode 100644 index 000000000..2e77f61ee --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-siegeexplainer.dialoguedata @@ -0,0 +1,63 @@ + + + + + + + + + + + true + + false + false + Mission + + + + true + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 254 + 0 + + + 0 + 1 + 0 + 1 + + + + Mission + + + + + + + + + haven3-siegeexplainer + + + The siege of zone Beta that you helped muster surely could not have been spontaneous. The infected stations there must have been moved in from another sector. The thing is, we haven't heard of any infected bases nearby Beta. So how? + + + + ... + + + + \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-siegeexplainer.dialoguedata.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-siegeexplainer.dialoguedata.meta new file mode 100644 index 000000000..b455d9cf8 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-siegeexplainer.dialoguedata.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: d6cd22686445c724992ca765642a9efb +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-trader1.dialoguedata b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-trader1.dialoguedata new file mode 100644 index 000000000..bfeb64a0d --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-trader1.dialoguedata @@ -0,0 +1,86 @@ + + + + + + + + + + + true + + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 228 + 0 + + + Dialogue + Out + Single + Right + 283 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + true + false + false + Mission + + + + true + false + true + + Mission + + + + + + + + + + haven3-trader1 + + + Many ShellCores used to travel from here to the Capitol Platforms in the south. Nowadays, you'd better be armed to the teeth if you want to make it there. + + + + I would like to buy some parts. + On second thought, no thanks. + + + + {"parts":[{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":4,"tier":1,"secondaryData":"","partID":"SmallCenter2","shiny":false},{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":5,"tier":1,"secondaryData":"","partID":"SmallWing1","shiny":false},{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":12,"tier":1,"secondaryData":"","partID":"SmallWing1","shiny":false},{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":10,"tier":0,"secondaryData":"{\"drone\":\"{\\\"entityName\\\":\\\"Mini Drone\\\",\\\"coreSpriteID\\\":\\\"\\\",\\\"coreShellSpriteID\\\":\\\"mini_drone_core_sprite\\\",\\\"shellHealth\\\":[75.0,25.0,300.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":7,\\\"parts\\\":[],\\\"dialogue\\\":{\\\"instanceID\\\":0},\\\"useCustomDroneType\\\":true,\\\"customDroneType\\\":0}\",\"energyCost\":100.0,\"delay\":2.0,\"cooldown\":10.0,\"type\":0}","partID":"SmallSide1","shiny":false},{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":13,"tier":1,"secondaryData":"","partID":"SmallSide2","shiny":false},{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":19,"tier":1,"secondaryData":"","partID":"SmallSide2","shiny":false}]} + + + \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-trader1.dialoguedata.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-trader1.dialoguedata.meta new file mode 100644 index 000000000..8c2b456b5 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-trader1.dialoguedata.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: a44d5e171f3ff7048b904d75fc859a69 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-yard.dialoguedata b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-yard.dialoguedata new file mode 100644 index 000000000..641ee3bfe --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-yard.dialoguedata @@ -0,0 +1,82 @@ + + + + + + + + + + + true + + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 228 + 0 + + + Dialogue + Out + Single + Right + 283 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + true + true + false + Mission + + + + true + false + false + Mission + + + + + + + + + + haven3-yard1 + + + While reconstructing your shell, you should also have been able to rearrange and sort your special skill, but the devs are lazy, so you can't do that yet. Remind them! + + + + I would like to change my shell configuration. + On second thought, no thanks. + + + + \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-yard.dialoguedata.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-yard.dialoguedata.meta new file mode 100644 index 000000000..0c9b7893f --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/haven3-yard.dialoguedata.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 5a8438869b1e5df4b95437f5bb65bb9f +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/mining-trader.dialoguedata b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/mining-trader.dialoguedata new file mode 100644 index 000000000..2be58c3d3 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/mining-trader.dialoguedata @@ -0,0 +1,86 @@ + + + + + + + + + + true + false + true + + Mission + + + + true + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 228 + 0 + + + Dialogue + Out + Single + Right + 283 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + true + + false + false + Mission + + + + + + + + + + {"parts":[{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":10,"tier":0,"secondaryData":"{\"drone\":\"{\\\"entityName\\\":\\\"Worker Drone\\\",\\\"coreSpriteID\\\":\\\"drone_light\\\",\\\"coreShellSpriteID\\\":\\\"worker_drone_shell_sprite\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":7,\\\"parts\\\":[],\\\"dialogue\\\":{\\\"instanceID\\\":0},\\\"useCustomDroneType\\\":true,\\\"customDroneType\\\":1}\",\"energyCost\":100.0,\"delay\":2.0,\"cooldown\":10.0,\"type\":1}","partID":"SmallCenter9","shiny":false},{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":26,"tier":1,"secondaryData":"","partID":"SmallCenter8"},{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":21,"tier":0,"secondaryData":"","partID":"SmallCenter4"}]} + + + I'm selling parts that'll help you spawn and maintain a small fleet of Worker Drones. You should invest in stronger weapons and drones to help protect them though. + + + + I would like to buy some parts. + On second thought, no thanks. + + + + mining-trader + + + \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/mining-trader.dialoguedata.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/mining-trader.dialoguedata.meta new file mode 100644 index 000000000..c1426fd3a --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/mining-trader.dialoguedata.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 5d4ded4884093814ea2547377260e0a9 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/mining-yard.dialoguedata b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/mining-yard.dialoguedata new file mode 100644 index 000000000..2ca9b8467 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/mining-yard.dialoguedata @@ -0,0 +1,82 @@ + + + + + + + + + + + true + + false + false + Mission + + + + true + true + false + Mission + + + + true + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 228 + 0 + + + Dialogue + Out + Single + Right + 283 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + + + + + mining-yard + + + Welcome to the Capitol Mining Sector. Here, we use Worker Drones to carry the shards of power clusters, but they can help you carry parts from enemies as well. + + + + I would like to change my shell configuration. + On second thought, no thanks. + + + + \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/mining-yard.dialoguedata.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/mining-yard.dialoguedata.meta new file mode 100644 index 000000000..faec01892 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/mining-yard.dialoguedata.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 38e3b07e1b1e7394da7ac3def90f14bf +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/reinforcement-1.dialoguedata b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/reinforcement-1.dialoguedata new file mode 100644 index 000000000..5fd063a24 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/reinforcement-1.dialoguedata @@ -0,0 +1,204 @@ + + + + + + + + + + + true + + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 176 + 0 + + + 0 + 1 + 0 + 1 + + + + Mission + + + + + + + + + + + + Dialogue + Out + Single + Right + 215 + 0 + + + Dialogue + Out + Single + Right + 270 + 0 + + + 0 + 1 + 0 + 1 + + + + Mission + + + + true + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 241 + 0 + + + 0 + 1 + 0 + 1 + + + + Mission + + + + + + Dialogue + Out + Single + Right + 254 + 0 + + + 0 + 1 + 0 + 1 + + + + Mission + + + + + + Dialogue + Out + Single + Right + 241 + 0 + + + 0 + 1 + 0 + 1 + + + + Mission + + + + + + + + + + + + + + + + reinforcement-1 + + + We should finish the fight first! + + + + ... + + + + Trial By Combat-destroyed-daayo + + + Newborn, words cannot express how much we are indebted to you. Answering any questions you may have is the very least I can do. + + + + Why was I able to talk to that core? + What took you all so long? + + + + This is most fascinating. I have never heard of anyone being able to communicate with the Infected. I do not know why either, unfortunately. You should report this to Haven 2's Mission Control. + + + + Alright. + + + + We were fighting off border skirmishes around Haven 3. They really did us in with this ambush tactic. Or perhaps, that Infected we destroyed is smarter than the rest of them and came up with this whole thing themselves. + + + + Haven 3? + + + + Yes, you will get there soon. In the meantime, talk to Haven 2's Mission Control about your communication with the Infected. Your contribution here will not go unrewarded, newborn. I can assure you that. + + + + Great! + + + + \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/reinforcement-1.dialoguedata.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/reinforcement-1.dialoguedata.meta new file mode 100644 index 000000000..907b5475a --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/reinforcement-1.dialoguedata.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 7fcd9408682bffb44bb38ad462fc055a +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/reinforcement-2.dialoguedata b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/reinforcement-2.dialoguedata new file mode 100644 index 000000000..f98892c03 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/reinforcement-2.dialoguedata @@ -0,0 +1,144 @@ + + + + + + + + + + + + Dialogue + Out + Single + Right + 176 + 0 + + + 0 + 1 + 0 + 1 + + + + Mission + + + + + + + + + + + true + + false + false + Mission + + + + true + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 176 + 0 + + + 0 + 1 + 0 + 1 + + + + Mission + + + + + + Dialogue + Out + Single + Right + 215 + 0 + + + Dialogue + Out + Single + Right + 270 + 0 + + + 0 + 1 + 0 + 1 + + + + Mission + + + + + + + + + + + + + + We should finish the fight first! + + + + ... + + + + Trial By Combat-destroyed-daayo + + + reinforcement-2 + + + Where are your parts? + + + + ???????? + + + + This all worked out. Or did it? We are all thankful to you. Or are we? That Infected core got demolished. Or did they? + + + + ????? + What in the world are you talking about? + + + + \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/reinforcement-2.dialoguedata.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/reinforcement-2.dialoguedata.meta new file mode 100644 index 000000000..76905a5db --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/reinforcement-2.dialoguedata.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: ac3874a3b2e2f4f47b9b3e1b2e3bf5a5 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/reinforcement-3.dialoguedata b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/reinforcement-3.dialoguedata new file mode 100644 index 000000000..710cf4da6 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/reinforcement-3.dialoguedata @@ -0,0 +1,114 @@ + + + + + + + + + + + + Dialogue + Out + Single + Right + 176 + 0 + + + 0 + 1 + 0 + 1 + + + + Mission + + + + + + + + + + true + false + false + Mission + + + + + true + + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 202 + 0 + + + Dialogue + Out + Single + Right + 257 + 0 + + + 0 + 1 + 0 + 1 + + + + Mission + + + + + + + + + + + + + We should finish the fight first! + + + + ... + + + + Trial By Combat-destroyed-daayo + + + reinforcement-3 + + + You should talk to the bigger core. They do the talking. I just shoot things. + + + + Okay. + I've definitely heard that before. + + + + \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/reinforcement-3.dialoguedata.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/reinforcement-3.dialoguedata.meta new file mode 100644 index 000000000..6982fa17c --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/reinforcement-3.dialoguedata.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 5c0c2127d92f1d94eb6f9565718c6303 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/sukrat.dialoguedata b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/sukrat.dialoguedata new file mode 100644 index 000000000..a7d9bbc01 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/sukrat.dialoguedata @@ -0,0 +1,463 @@ + + + + + + + + + + + + Dialogue + Out + Single + Right + 178 + 0 + + + 0 + 1 + 0 + 1 + + + + Mission + + + + + + Dialogue + Out + Single + Right + 202 + 0 + + + Dialogue + Out + Single + Right + 257 + 0 + + + 0 + 1 + 0 + 1 + + + + Mission + + + + + Dialogue + Out + Single + Right + 101 + 0 + + + Dialogue + Out + Single + Right + 156 + 0 + + + Dialogue + Out + Single + Right + 211 + 0 + + + + + + + + Dialogue + Out + Single + Right + 191 + 0 + + + Dialogue + Out + Single + Right + 247 + 0 + + + 0 + 1 + 0 + 1 + + + + Mission + + + + + + Dialogue + Out + Single + Right + 175 + 0 + + + 0 + 1 + 0 + 1 + + + + Mission + + + + + + + + + + + + Dialogue + Out + Single + Right + 202 + 0 + + + Dialogue + Out + Single + Right + 257 + 0 + + + 0 + 1 + 0 + 1 + + + + Mission + + + + true + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 202 + 0 + + + Dialogue + Out + Single + Right + 257 + 0 + + + 0 + 1 + 0 + 1 + + + + Mission + + + + + + Dialogue + Out + Single + Right + 228 + 0 + + + 0 + 1 + 0 + 1 + + + + Mission + + + + + + Dialogue + Out + Single + Right + 228 + 0 + + + Dialogue + Out + Single + Right + 283 + 0 + + + 0 + 1 + 0 + 1 + + + + Mission + + + + + true + + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 202 + 0 + + + Dialogue + Out + Single + Right + 257 + 0 + + + 0 + 1 + 0 + 1 + + + + Mission + + + + + + + + + + + + Dialogue + Out + Single + Right + 176 + 0 + + + Dialogue + Out + Single + Right + 231 + 0 + + + 0 + 1 + 0 + 1 + + + + Mission + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + What? + + + + What? + + + + The Trader over there has Speed parts! SPEED PARTS! I'M GONNA BUY THEM OUT OF STOCK! + + + + Why do you like speed so much? + There are like 500 of them... + + + + + 0.3 + 0.3 + 0.4 + + + + Finish your training! We can talk after that. + + + + Cool, I'll get to it. + Why can't we just talk now? + + + + Because. + + + + ... + + + + Training Circuit_complete + + + You're right. How much time do you reckon it will take to rack up the credits? Throw me some numbers! + + + + Yeah that fits. + No. + + + + There's a lot to do in this big fight. First, I've got to collect more Speed Thrusts! + + + + Why do you like speed so much? + ...Interesting. + + + + I wonder what happened to that Core you rescued from the Spawning Grounds. I've got a feeling they're going to be rather important to us real soon. + + + + Huh. + + + + Haven't you tried putting a lot of parts on your core and moving around? Ugh, it's the worst feeling in the world. Dashing through sectors at high speed, though... + + + + I get it already, sheesh. + Have you heard of blue hedgehogs? + + + + sukrat + + + Honestly, I think things got a little out of hand with the Speed part hunting. Sorry about that. + + + + You're kidding, right? + ... + + + + Trial By Combat-finished-siege + + + This is intense. + + + + Sure is! + Why didn't you come help? + + + + \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/sukrat.dialoguedata.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/sukrat.dialoguedata.meta new file mode 100644 index 000000000..dbb78300b --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/sukrat.dialoguedata.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 5112dad28e37ce140b9e52ac91583e0e +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/the-architect.dialoguedata b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/the-architect.dialoguedata new file mode 100644 index 000000000..8b3623abb --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/the-architect.dialoguedata @@ -0,0 +1,232 @@ + + + + + + + + + + + + Dialogue + Out + Single + Right + 189 + 0 + + + Dialogue + Out + Single + Right + 244 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + Dialogue + Out + Single + Right + 202 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + Dialogue + Out + Single + Right + 176 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + Dialogue + Out + Single + Right + 202 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + true + + false + false + Mission + + + + + Dialogue + Out + Single + Right + 101 + 0 + + + Dialogue + Out + Single + Right + 156 + 0 + + + + + + true + false + false + Mission + + + + + + Dialogue + Out + Single + Right + 215 + 0 + + + 0 + 1 + 0 + 1 + + + + false + 0 + Mission + + + + + + + + + + + + + + + + Do you know where that gate leads? + + + + + Where? + Not interested, sorry. + + + + There needs to be... a challenge. A challenge must be built and linked to this gate! + + + + And where will you build this challenge? + + + + Watch this space. + + + + That sounds like an excuse to procrastinate. + + + + Nowhere! This thing has just been here forever doing absolutely nothing! This can't stand! + + + + Oh yeah? What are you going to do? + + + + the-architect + + + + 0.9 + 0.1 + + + + Octagon... you give us our souls... octagon... octagon.... only octagons shall save us... octagon... you control our yards, and therefore all of us... + + + + ????? + + + + \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/the-architect.dialoguedata.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/the-architect.dialoguedata.meta new file mode 100644 index 000000000..900e60374 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Canvases/the-architect.dialoguedata.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 65b2c4f75679a4f4faf9c399683d038b +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities.meta new file mode 100644 index 000000000..dd4098f78 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 12a126f2caa895b4197fad48a81837a8 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Advanced Scout.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Advanced Scout.json new file mode 100644 index 000000000..30772f750 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Advanced Scout.json @@ -0,0 +1 @@ +{"entityName":"Unnamed","coreSpriteID":"core1_light","coreShellSpriteID":"core2_shell","shellHealth":[1000.0,250.0,500.0],"baseRegen":[60.0,0.0,60.0],"intendedType":0,"parts":[{"location":{"x":0.30000001192092898,"y":0.30000001192092898},"rotation":0.0,"mirrored":false,"abilityID":4,"tier":1,"secondaryData":"","partID":"SmallWing1","shiny":false},{"location":{"x":-0.30000001192092898,"y":0.30000001192092898},"rotation":0.0,"mirrored":true,"abilityID":4,"tier":1,"secondaryData":"","partID":"SmallWing1","shiny":false},{"location":{"x":0.0,"y":0.30000001192092898},"rotation":0.0,"mirrored":false,"abilityID":5,"tier":1,"secondaryData":"","partID":"SmallCenter4","shiny":false},{"location":{"x":0.0,"y":-0.30000001192092898},"rotation":-180.0,"mirrored":false,"abilityID":4,"tier":1,"secondaryData":"","partID":"SmallCenter2","shiny":false},{"location":{"x":-0.5,"y":-0.20000000298023225},"rotation":0.0,"mirrored":true,"abilityID":19,"tier":1,"secondaryData":"","partID":"SmallWing1","shiny":false},{"location":{"x":-0.6000000238418579,"y":0.5},"rotation":-90.0,"mirrored":false,"abilityID":1,"tier":1,"secondaryData":"","partID":"SmallCenter2","shiny":false},{"location":{"x":0.5,"y":-0.20000000298023225},"rotation":0.0,"mirrored":false,"abilityID":19,"tier":1,"secondaryData":"","partID":"SmallWing1","shiny":false},{"location":{"x":0.6000000238418579,"y":0.5},"rotation":90.0,"mirrored":false,"abilityID":24,"tier":0,"secondaryData":"","partID":"SmallCenter2","shiny":false},{"location":{"x":0.0,"y":-0.8999999761581421},"rotation":0.0,"mirrored":false,"abilityID":13,"tier":2,"secondaryData":"","partID":"MediumCenter5","shiny":false},{"location":{"x":0.699999988079071,"y":-0.6000000238418579},"rotation":0.0,"mirrored":false,"abilityID":13,"tier":1,"secondaryData":"","partID":"SmallCenter2","shiny":false},{"location":{"x":-0.699999988079071,"y":-0.6000000238418579},"rotation":0.0,"mirrored":false,"abilityID":13,"tier":1,"secondaryData":"","partID":"SmallCenter2","shiny":false},{"location":{"x":0.699999988079071,"y":-1.100000023841858},"rotation":0.0,"mirrored":false,"abilityID":2,"tier":1,"secondaryData":"","partID":"SmallSide4","shiny":false},{"location":{"x":-0.699999988079071,"y":-1.100000023841858},"rotation":0.0,"mirrored":true,"abilityID":2,"tier":1,"secondaryData":"","partID":"SmallSide4","shiny":false}],"dialogue":{"instanceID":0},"useCustomDroneType":false,"customDroneType":0} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Advanced Scout.json.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Advanced Scout.json.meta new file mode 100644 index 000000000..172249be3 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Advanced Scout.json.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: c7bc0a59bf3213f47a2f9adb717783bd +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Basic Patrol.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Basic Patrol.json new file mode 100644 index 000000000..11598753f --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Basic Patrol.json @@ -0,0 +1 @@ +{"entityName":"Unnamed","coreSpriteID":"core1_light","coreShellSpriteID":"core2_shell","shellHealth":[1000.0,250.0,500.0],"baseRegen":[60.0,0.0,60.0],"intendedType":0,"parts":[{"location":{"x":-0.5,"y":0.0},"rotation":90.0,"mirrored":false,"abilityID":13,"tier":1,"secondaryData":"","partID":"SmallCenter7","shiny":false},{"location":{"x":0.5,"y":0.0},"rotation":-90.0,"mirrored":false,"abilityID":13,"tier":1,"secondaryData":"","partID":"SmallCenter7","shiny":false},{"location":{"x":-0.8999999761581421,"y":-1.100000023841858},"rotation":0.0,"mirrored":true,"abilityID":1,"tier":2,"secondaryData":"","partID":"MediumSide3","shiny":false},{"location":{"x":0.8999999761581421,"y":0.800000011920929},"rotation":180.0,"mirrored":false,"abilityID":4,"tier":2,"secondaryData":"","partID":"MediumWing2","shiny":false},{"location":{"x":-0.8999999761581421,"y":0.800000011920929},"rotation":180.0,"mirrored":true,"abilityID":5,"tier":2,"secondaryData":"","partID":"MediumWing2","shiny":false},{"location":{"x":0.8999999761581421,"y":-1.100000023841858},"rotation":0.0,"mirrored":false,"abilityID":32,"tier":2,"secondaryData":"","partID":"MediumSide3","shiny":false},{"location":{"x":0.0,"y":-1.100000023841858},"rotation":0.0,"mirrored":false,"abilityID":18,"tier":1,"secondaryData":"","partID":"SmallCenter2","shiny":false},{"location":{"x":0.0,"y":-0.6000000238418579},"rotation":0.0,"mirrored":false,"abilityID":34,"tier":2,"secondaryData":"","partID":"MediumCenter5","shiny":false}],"dialogue":{"instanceID":0},"useCustomDroneType":false,"customDroneType":0} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Basic Patrol.json.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Basic Patrol.json.meta new file mode 100644 index 000000000..ac9fdeafa --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Basic Patrol.json.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: c9959297802a49e41833eae0a3b0298b +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Basic Scout.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Basic Scout.json new file mode 100644 index 000000000..b393053c7 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Basic Scout.json @@ -0,0 +1 @@ +{"entityName":"Unnamed","coreSpriteID":"core1_light","coreShellSpriteID":"core1_shell","shellHealth":[1000.0,250.0,500.0],"baseRegen":[60.0,0.0,60.0],"intendedType":0,"parts":[{"location":{"x":-0.699999988079071,"y":0.0},"rotation":-90.0,"mirrored":false,"abilityID":13,"tier":1,"secondaryData":"","partID":"SmallCenter2","shiny":false},{"location":{"x":0.699999988079071,"y":0.0},"rotation":90.0,"mirrored":false,"abilityID":13,"tier":1,"secondaryData":"","partID":"SmallCenter2","shiny":false},{"location":{"x":0.4000000059604645,"y":0.0},"rotation":90.0,"mirrored":false,"abilityID":24,"tier":0,"secondaryData":"","partID":"SmallCenter2","shiny":false},{"location":{"x":0.0,"y":0.6000000238418579},"rotation":0.0,"mirrored":false,"abilityID":17,"tier":1,"secondaryData":"","partID":"SmallCenter2","shiny":false},{"location":{"x":-0.4000000059604645,"y":0.0},"rotation":-90.0,"mirrored":false,"abilityID":17,"tier":2,"secondaryData":"","partID":"SmallCenter2","shiny":false}],"dialogue":{"instanceID":0},"useCustomDroneType":false,"customDroneType":0} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Basic Scout.json.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Basic Scout.json.meta new file mode 100644 index 000000000..0637ed8f1 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Basic Scout.json.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 515ee516fb8d0914ebf0d8d88cec25b2 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/BattleCore1.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/BattleCore1.json new file mode 100644 index 000000000..63fe4b498 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/BattleCore1.json @@ -0,0 +1 @@ +{"entityName":"BattleCore","coreSpriteID":"core1_light","coreShellSpriteID":"core3_shell","shellHealth":[1000.0,250.0,500.0],"baseRegen":[60.0,0.0,60.0],"intendedType":0,"parts":[{"location":{"x":1.600000023841858,"y":-0.30000001192092898},"rotation":0.0,"mirrored":true,"abilityID":1,"tier":3,"secondaryData":"","partID":"BigSide2"},{"location":{"x":-1.600000023841858,"y":-0.30000001192092898},"rotation":0.0,"mirrored":false,"abilityID":20,"tier":3,"secondaryData":"","partID":"BigSide2"},{"location":{"x":0.800000011920929,"y":0.4000000059604645},"rotation":0.0,"mirrored":true,"abilityID":7,"tier":3,"secondaryData":"","partID":"BigSide1"},{"location":{"x":-0.800000011920929,"y":0.4000000059604645},"rotation":0.0,"mirrored":false,"abilityID":4,"tier":3,"secondaryData":"","partID":"BigSide1"}],"dialogue":{"instanceID":0},"useCustomDroneType":false,"customDroneType":0} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/BattleCore1.json.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/BattleCore1.json.meta new file mode 100644 index 000000000..f496217f7 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/BattleCore1.json.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 26faccc08dbb55741884e2ae7c6aaf6c +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/BattleCore2.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/BattleCore2.json new file mode 100644 index 000000000..8fc313327 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/BattleCore2.json @@ -0,0 +1 @@ +{"entityName":"Unnamed","coreSpriteID":"core1_light","coreShellSpriteID":"core1_shell","shellHealth":[1000.0,250.0,500.0],"baseRegen":[60.0,0.0,60.0],"intendedType":0,"parts":[{"location":{"x":0.4000000059604645,"y":0.0},"rotation":180.0,"mirrored":true,"abilityID":13,"tier":3,"secondaryData":"","partID":"BigSide4","shiny":false},{"location":{"x":-0.4000000059604645,"y":0.0},"rotation":180.0,"mirrored":false,"abilityID":13,"tier":3,"secondaryData":"","partID":"BigSide4","shiny":false},{"location":{"x":1.399999976158142,"y":0.5},"rotation":180.0,"mirrored":false,"abilityID":4,"tier":3,"secondaryData":"","partID":"BigWing5","shiny":false},{"location":{"x":-1.399999976158142,"y":0.5},"rotation":-180.0,"mirrored":true,"abilityID":4,"tier":3,"secondaryData":"","partID":"BigWing5","shiny":false}],"dialogue":{"instanceID":0},"useCustomDroneType":false,"customDroneType":0} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/BattleCore2.json.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/BattleCore2.json.meta new file mode 100644 index 000000000..9d58c0b11 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/BattleCore2.json.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: dcaec633949fb274185b4a14f7bd7f1b +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/BattleCore3.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/BattleCore3.json new file mode 100644 index 000000000..637d38c24 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/BattleCore3.json @@ -0,0 +1 @@ +{"entityName":"BattleCore","coreSpriteID":"core1_light","coreShellSpriteID":"core3_shell","shellHealth":[1000.0,250.0,500.0],"baseRegen":[60.0,0.0,60.0],"intendedType":0,"parts":[{"location":{"x":-1.0,"y":0.6000000238418579},"rotation":0.0,"mirrored":false,"abilityID":7,"tier":3,"secondaryData":"","partID":"BigWing5","shiny":false},{"location":{"x":1.0,"y":0.6000000238418579},"rotation":0.0,"mirrored":true,"abilityID":7,"tier":3,"secondaryData":"","partID":"BigWing5","shiny":false},{"location":{"x":-2.200000047683716,"y":1.100000023841858},"rotation":180.0,"mirrored":false,"abilityID":13,"tier":3,"secondaryData":"","partID":"BigWing3","shiny":false},{"location":{"x":2.200000047683716,"y":1.100000023841858},"rotation":180.0,"mirrored":true,"abilityID":13,"tier":3,"secondaryData":"","partID":"BigWing3","shiny":false},{"location":{"x":0.0,"y":1.5},"rotation":0.0,"mirrored":false,"abilityID":7,"tier":3,"secondaryData":"","partID":"BigCenter2","shiny":false}],"dialogue":{"instanceID":0},"useCustomDroneType":false,"customDroneType":0} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/BattleCore3.json.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/BattleCore3.json.meta new file mode 100644 index 000000000..49ff32d9a --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/BattleCore3.json.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 3e9c27324a91a5c4887ed03efbf20d54 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/BattleCore4.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/BattleCore4.json new file mode 100644 index 000000000..ae834d498 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/BattleCore4.json @@ -0,0 +1 @@ +{"entityName":"Unnamed","coreSpriteID":"core1_light","coreShellSpriteID":"core3weapons_shell","shellHealth":[1000.0,250.0,500.0],"baseRegen":[60.0,0.0,60.0],"intendedType":0,"parts":[{"location":{"x":-2.200000047683716,"y":0.6000000238418579},"rotation":0.0,"mirrored":true,"abilityID":9,"tier":3,"secondaryData":"","partID":"BigSide2","shiny":false},{"location":{"x":-1.399999976158142,"y":-1.2000000476837159},"rotation":0.0,"mirrored":false,"abilityID":13,"tier":2,"secondaryData":"","partID":"MediumSide3","shiny":false},{"location":{"x":1.399999976158142,"y":-1.2000000476837159},"rotation":0.0,"mirrored":true,"abilityID":13,"tier":2,"secondaryData":"","partID":"MediumSide3","shiny":false},{"location":{"x":2.200000047683716,"y":0.6000000834465027},"rotation":0.0,"mirrored":false,"abilityID":9,"tier":3,"secondaryData":"","partID":"BigSide2","shiny":false},{"location":{"x":-1.2000000476837159,"y":0.20000000298023225},"rotation":0.0,"mirrored":false,"abilityID":4,"tier":3,"secondaryData":"","partID":"BigWing1","shiny":false},{"location":{"x":1.2000000476837159,"y":0.20000000298023225},"rotation":0.0,"mirrored":true,"abilityID":4,"tier":3,"secondaryData":"","partID":"BigWing1","shiny":false},{"location":{"x":0.0,"y":0.6000000238418579},"rotation":-180.0,"mirrored":false,"abilityID":13,"tier":2,"secondaryData":"","partID":"MediumCenter3","shiny":false},{"location":{"x":0.0,"y":-0.800000011920929},"rotation":0.0,"mirrored":false,"abilityID":13,"tier":2,"secondaryData":"","partID":"MediumCenter6","shiny":false}],"dialogue":{"instanceID":0},"useCustomDroneType":false,"customDroneType":0} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/BattleCore4.json.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/BattleCore4.json.meta new file mode 100644 index 000000000..f5eda400b --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/BattleCore4.json.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: a035c08fd70b6a94a9d1f4f3aabef7e0 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Beamer.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Beamer.json new file mode 100644 index 000000000..e39ed0a93 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Beamer.json @@ -0,0 +1 @@ +{"entityName":"Unnamed","coreSpriteID":"core1_light","coreShellSpriteID":"core1_shell","shellHealth":[1000.0,250.0,500.0],"baseRegen":[60.0,0.0,60.0],"intendedType":0,"parts":[{"location":{"x":0.30000001192092898,"y":0.0},"rotation":0.0,"mirrored":true,"abilityID":4,"tier":1,"secondaryData":"","partID":"SmallWing2"},{"location":{"x":-0.30000001192092898,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":4,"tier":1,"secondaryData":"","partID":"SmallWing2"},{"location":{"x":0.0,"y":0.30000001192092898},"rotation":0.0,"mirrored":false,"abilityID":18,"tier":1,"secondaryData":"","partID":"SmallCenter2"},{"location":{"x":0.5,"y":0.0},"rotation":0.0,"mirrored":true,"abilityID":18,"tier":1,"secondaryData":"","partID":"SmallSide3"},{"location":{"x":-0.5,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":2,"tier":1,"secondaryData":"","partID":"SmallSide3"},{"location":{"x":0.5,"y":-0.699999988079071},"rotation":0.0,"mirrored":true,"abilityID":20,"tier":1,"secondaryData":"","partID":"SmallWing1"},{"location":{"x":-0.5,"y":-0.699999988079071},"rotation":0.0,"mirrored":false,"abilityID":20,"tier":1,"secondaryData":"","partID":"SmallWing1"},{"location":{"x":0.0,"y":-0.4000000059604645},"rotation":0.0,"mirrored":false,"abilityID":20,"tier":1,"secondaryData":"","partID":"SmallCenter5"}],"dialogue":{"instanceID":0},"useCustomDroneType":false,"customDroneType":0} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Beamer.json.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Beamer.json.meta new file mode 100644 index 000000000..3fcfe9012 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Beamer.json.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 3a8141669c2d6d14596214e0bf07d523 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Block Core.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Block Core.json new file mode 100644 index 000000000..1fdf678d3 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Block Core.json @@ -0,0 +1 @@ +{"entityName":"Unnamed","coreSpriteID":"core1_light","coreShellSpriteID":"core1_shell","shellHealth":[1000.0,250.0,500.0],"baseRegen":[60.0,0.0,60.0],"intendedType":0,"parts":[{"location":{"x":-0.30000001192092898,"y":0.10000000149011612},"rotation":0.0,"mirrored":false,"abilityID":5,"tier":1,"secondaryData":"","partID":"SmallSide2"},{"location":{"x":-0.30000001192092898,"y":-0.30000001192092898},"rotation":0.0,"mirrored":false,"abilityID":2,"tier":1,"secondaryData":"","partID":"SmallSide3"},{"location":{"x":0.30000001192092898,"y":0.10000000149011612},"rotation":0.0,"mirrored":false,"abilityID":6,"tier":1,"secondaryData":"","partID":"SmallSide2"},{"location":{"x":0.30000001192092898,"y":-0.30000001192092898},"rotation":0.0,"mirrored":true,"abilityID":17,"tier":1,"secondaryData":"","partID":"SmallSide3"}],"dialogue":{"instanceID":0},"useCustomDroneType":false,"customDroneType":0} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Block Core.json.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Block Core.json.meta new file mode 100644 index 000000000..a1ad4c44b --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Block Core.json.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 966ea05e582d45844a0cb2842b1b3ae0 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Brigader.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Brigader.json new file mode 100644 index 000000000..d88f185c1 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Brigader.json @@ -0,0 +1 @@ +{"entityName":"Brigader","coreSpriteID":"core1_light","coreShellSpriteID":"core3_shell","shellHealth":[1000.0,250.0,500.0],"baseRegen":[60.0,0.0,60.0],"intendedType":0,"parts":[{"location":{"x":0.0,"y":0.30000001192092898},"rotation":-90.0,"mirrored":false,"abilityID":2,"tier":2,"secondaryData":"","partID":"SmallSide1"},{"location":{"x":0.0,"y":-0.699999988079071},"rotation":0.0,"mirrored":false,"abilityID":13,"tier":2,"secondaryData":"","partID":"SmallSide2"},{"location":{"x":-0.800000011920929,"y":-0.10000000149011612},"rotation":0.0,"mirrored":true,"abilityID":7,"tier":3,"secondaryData":"","partID":"BigSide1"},{"location":{"x":0.800000011920929,"y":-0.10000000149011612},"rotation":0.0,"mirrored":false,"abilityID":4,"tier":3,"secondaryData":"","partID":"BigSide1"},{"location":{"x":0.0,"y":-1.2999999523162842},"rotation":0.0,"mirrored":false,"abilityID":19,"tier":2,"secondaryData":"","partID":"SmallCenter2"},{"location":{"x":-1.399999976158142,"y":-1.0},"rotation":-180.0,"mirrored":false,"abilityID":17,"tier":2,"secondaryData":"","partID":"SmallSide1"},{"location":{"x":1.399999976158142,"y":-1.0},"rotation":0.0,"mirrored":false,"abilityID":1,"tier":1,"secondaryData":"","partID":"SmallSide1"},{"location":{"x":1.7999999523162842,"y":0.6000000238418579},"rotation":0.0,"mirrored":true,"abilityID":5,"tier":2,"secondaryData":"","partID":"SmallWing3"},{"location":{"x":-1.7999999523162842,"y":0.6000000238418579},"rotation":0.0,"mirrored":false,"abilityID":10,"tier":0,"secondaryData":"strike_drone","partID":"SmallWing3"}],"dialogue":{"m_FileID":0,"m_PathID":0},"useCustomDroneType":false,"customDroneType":0} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Brigader.json.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Brigader.json.meta new file mode 100644 index 000000000..598b953c1 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Brigader.json.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 5995558198c2c284887e04977bca429b +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Clearly Delusional.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Clearly Delusional.json new file mode 100644 index 000000000..5f5b69e0f --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Clearly Delusional.json @@ -0,0 +1 @@ +{"entityName":"Unnamed","coreSpriteID":"core1_light","coreShellSpriteID":"core2_shell","shellHealth":[1000.0,250.0,500.0],"baseRegen":[60.0,0.0,60.0],"intendedType":0,"parts":[{"location":{"x":0.0,"y":-0.699999988079071},"rotation":0.0,"mirrored":false,"abilityID":21,"tier":0,"secondaryData":"","partID":"MediumCenter5","shiny":false},{"location":{"x":1.399999976158142,"y":-1.2999999523162842},"rotation":90.0,"mirrored":true,"abilityID":13,"tier":2,"secondaryData":"","partID":"MediumSide3","shiny":false},{"location":{"x":-1.399999976158142,"y":-1.2999999523162842},"rotation":-90.0,"mirrored":false,"abilityID":13,"tier":2,"secondaryData":"","partID":"MediumSide3","shiny":false},{"location":{"x":0.0,"y":-1.2999999523162842},"rotation":0.0,"mirrored":false,"abilityID":2,"tier":2,"secondaryData":"","partID":"MediumCenter3","shiny":false},{"location":{"x":1.7000000476837159,"y":1.2999999523162842},"rotation":0.0,"mirrored":true,"abilityID":6,"tier":2,"secondaryData":"","partID":"SmallWing3","shiny":false},{"location":{"x":-1.600000023841858,"y":1.2999999523162842},"rotation":0.0,"mirrored":false,"abilityID":6,"tier":2,"secondaryData":"","partID":"SmallWing3","shiny":false},{"location":{"x":0.800000011920929,"y":1.2000000476837159},"rotation":0.0,"mirrored":true,"abilityID":26,"tier":0,"secondaryData":"","partID":"MediumWing2","shiny":false},{"location":{"x":-0.800000011920929,"y":1.2000000476837159},"rotation":0.0,"mirrored":false,"abilityID":7,"tier":2,"secondaryData":"","partID":"MediumWing2","shiny":false},{"location":{"x":1.0,"y":-0.20000000298023225},"rotation":-90.0,"mirrored":false,"abilityID":4,"tier":2,"secondaryData":"","partID":"MediumWing1","shiny":false},{"location":{"x":-1.0,"y":-0.20000000298023225},"rotation":90.0,"mirrored":true,"abilityID":4,"tier":2,"secondaryData":"","partID":"MediumWing1","shiny":false},{"location":{"x":0.0,"y":2.0999999046325685},"rotation":0.0,"mirrored":false,"abilityID":1,"tier":2,"secondaryData":"","partID":"SmallCenter4","shiny":false},{"location":{"x":0.0,"y":1.399999976158142},"rotation":0.0,"mirrored":false,"abilityID":27,"tier":0,"secondaryData":"","partID":"MediumCenter4","shiny":false},{"location":{"x":0.0,"y":0.5},"rotation":0.0,"mirrored":false,"abilityID":13,"tier":2,"secondaryData":"","partID":"MediumCenter3","shiny":false}],"dialogue":{"instanceID":0},"useCustomDroneType":false,"customDroneType":0} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Clearly Delusional.json.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Clearly Delusional.json.meta new file mode 100644 index 000000000..55eb58478 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Clearly Delusional.json.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 9ca97e84d7589244180c109878046c52 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Cruiser - ep1.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Cruiser - ep1.json new file mode 100644 index 000000000..a1ce00da4 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Cruiser - ep1.json @@ -0,0 +1 @@ +{"entityName":"Cruiser","coreSpriteID":"core1_light","coreShellSpriteID":"core1_shell","shellHealth":[1000.0,250.0,500.0],"baseRegen":[60.0,0.0,60.0],"intendedType":0,"parts":[{"location":{"x":-0.5,"y":-0.10000000149011612},"rotation":0.0,"mirrored":false,"abilityID":2,"tier":2,"secondaryData":"","partID":"SmallSide3"},{"location":{"x":0.5,"y":-0.10000000149011612},"rotation":0.0,"mirrored":true,"abilityID":1,"tier":1,"secondaryData":"","partID":"SmallSide3"},{"location":{"x":-0.4000000059604645,"y":-0.6000000238418579},"rotation":0.0,"mirrored":false,"abilityID":18,"tier":1,"secondaryData":"","partID":"SmallCenter5"},{"location":{"x":0.4000000059604645,"y":-0.6000000238418579},"rotation":0.0,"mirrored":false,"abilityID":19,"tier":2,"secondaryData":"","partID":"SmallCenter5"},{"location":{"x":-0.6000000238418579,"y":0.4000000059604645},"rotation":0.0,"mirrored":true,"abilityID":5,"tier":1,"secondaryData":"","partID":"SmallWing2"},{"location":{"x":0.6000000238418579,"y":0.4000000059604645},"rotation":0.0,"mirrored":false,"abilityID":4,"tier":1,"secondaryData":"","partID":"SmallWing2"},{"location":{"x":0.30000001192092898,"y":0.699999988079071},"rotation":0.0,"mirrored":true,"abilityID":6,"tier":1,"secondaryData":"","partID":"SmallWing2"},{"location":{"x":-0.30000001192092898,"y":0.699999988079071},"rotation":0.0,"mirrored":false,"abilityID":6,"tier":1,"secondaryData":"","partID":"SmallWing2"},{"location":{"x":-0.8999999761581421,"y":-0.20000000298023225},"rotation":0.0,"mirrored":true,"abilityID":13,"tier":1,"secondaryData":"","partID":"SmallWing1"},{"location":{"x":0.8999999761581421,"y":-0.20000000298023225},"rotation":0.0,"mirrored":false,"abilityID":13,"tier":1,"secondaryData":"","partID":"SmallWing1"}],"dialogue":{"m_FileID":0,"m_PathID":0},"useCustomDroneType":false,"customDroneType":0} diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Cruiser - ep1.json.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Cruiser - ep1.json.meta new file mode 100644 index 000000000..5754de66e --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Cruiser - ep1.json.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 55038238d83c4774cb7679cd36cc112a +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Cruiser.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Cruiser.json new file mode 100644 index 000000000..7d655cc6c --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Cruiser.json @@ -0,0 +1 @@ +{"entityName":"Cruiser","coreSpriteID":"core1_light","coreShellSpriteID":"core1_shell","shellHealth":[1000.0,250.0,500.0],"baseRegen":[60.0,0.0,60.0],"intendedType":0,"parts":[{"location":{"x":-0.30000001192092898,"y":0.699999988079071},"rotation":0.0,"mirrored":false,"abilityID":2,"tier":1,"secondaryData":"","partID":"SmallWing2","shiny":false},{"location":{"x":-0.6000000238418579,"y":0.30000001192092898},"rotation":0.0,"mirrored":true,"abilityID":5,"tier":1,"secondaryData":"","partID":"SmallWing2","shiny":false},{"location":{"x":0.6000000238418579,"y":0.30000001192092898},"rotation":0.0,"mirrored":false,"abilityID":4,"tier":1,"secondaryData":"","partID":"SmallWing2","shiny":false},{"location":{"x":0.30000001192092898,"y":0.699999988079071},"rotation":0.0,"mirrored":true,"abilityID":6,"tier":1,"secondaryData":"","partID":"SmallWing2","shiny":false},{"location":{"x":-0.5,"y":-0.10000000149011612},"rotation":0.0,"mirrored":false,"abilityID":13,"tier":1,"secondaryData":"","partID":"SmallSide3","shiny":false},{"location":{"x":0.5,"y":-0.10000000149011612},"rotation":0.0,"mirrored":true,"abilityID":13,"tier":1,"secondaryData":"","partID":"SmallSide3","shiny":false},{"location":{"x":0.4000000059604645,"y":-0.6000000238418579},"rotation":0.0,"mirrored":false,"abilityID":19,"tier":1,"secondaryData":"","partID":"SmallCenter5","shiny":false},{"location":{"x":-0.4000000059604645,"y":-0.6000000238418579},"rotation":0.0,"mirrored":false,"abilityID":10,"tier":0,"secondaryData":"strike_drone","partID":"SmallCenter5","shiny":false},{"location":{"x":-0.8999999761581421,"y":-0.30000001192092898},"rotation":0.0,"mirrored":true,"abilityID":1,"tier":1,"secondaryData":"","partID":"SmallWing1","shiny":false},{"location":{"x":0.8999999761581421,"y":-0.30000001192092898},"rotation":0.0,"mirrored":false,"abilityID":10,"tier":0,"secondaryData":"mini_drone","partID":"SmallWing1","shiny":false}],"dialogue":{"m_FileID":0,"m_PathID":0},"useCustomDroneType":false,"customDroneType":0} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Cruiser.json.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Cruiser.json.meta new file mode 100644 index 000000000..9f300588f --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Cruiser.json.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: df72c711b9fc91146bcad82bfa6b1b89 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Crusader.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Crusader.json new file mode 100644 index 000000000..466da5aa2 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Crusader.json @@ -0,0 +1 @@ +{"entityName":"Crusader","coreSpriteID":"core1_light","coreShellSpriteID":"core2_shell","shellHealth":[1000.0,250.0,500.0],"baseRegen":[60.0,0.0,60.0],"intendedType":0,"parts":[{"location":{"x":0.0,"y":-0.6000000238418579},"rotation":0.0,"mirrored":false,"abilityID":13,"tier":2,"secondaryData":"","partID":"MediumExtra1","shiny":false},{"location":{"x":-0.699999988079071,"y":0.30000001192092898},"rotation":0.0,"mirrored":true,"abilityID":7,"tier":2,"secondaryData":"","partID":"MediumSide2","shiny":false},{"location":{"x":-1.2000000476837159,"y":-0.6000000238418579},"rotation":-90.0,"mirrored":false,"abilityID":13,"tier":2,"secondaryData":"","partID":"MediumExtra1","shiny":false},{"location":{"x":-1.0,"y":2.0999999046325685},"rotation":0.0,"mirrored":false,"abilityID":2,"tier":2,"secondaryData":"","partID":"MediumWing2","shiny":false},{"location":{"x":1.0,"y":2.0999999046325685},"rotation":0.0,"mirrored":true,"abilityID":2,"tier":2,"secondaryData":"","partID":"MediumWing2","shiny":false},{"location":{"x":-1.2999999523162842,"y":1.5},"rotation":0.0,"mirrored":false,"abilityID":17,"tier":2,"secondaryData":"","partID":"SmallWing3","shiny":false},{"location":{"x":1.2999999523162842,"y":1.5},"rotation":0.0,"mirrored":true,"abilityID":17,"tier":2,"secondaryData":"","partID":"SmallWing3","shiny":false},{"location":{"x":-0.8999999761581421,"y":1.2999999523162842},"rotation":0.0,"mirrored":false,"abilityID":4,"tier":2,"secondaryData":"","partID":"MediumWing1","shiny":false},{"location":{"x":-1.399999976158142,"y":0.8999999761581421},"rotation":0.0,"mirrored":false,"abilityID":29,"tier":0,"secondaryData":"","partID":"MediumExtra2","shiny":false},{"location":{"x":0.0,"y":-1.399999976158142},"rotation":-180.0,"mirrored":false,"abilityID":34,"tier":2,"secondaryData":"","partID":"MediumCenter2","shiny":false},{"location":{"x":-1.0,"y":-1.399999976158142},"rotation":-180.0,"mirrored":true,"abilityID":20,"tier":2,"secondaryData":"","partID":"MediumWing3","shiny":false},{"location":{"x":0.699999988079071,"y":0.30000001192092898},"rotation":0.0,"mirrored":false,"abilityID":6,"tier":2,"secondaryData":"","partID":"MediumSide2","shiny":false},{"location":{"x":0.8999999761581421,"y":1.2999999523162842},"rotation":0.0,"mirrored":true,"abilityID":4,"tier":2,"secondaryData":"","partID":"MediumWing1","shiny":false},{"location":{"x":0.0,"y":1.399999976158142},"rotation":0.0,"mirrored":false,"abilityID":17,"tier":2,"secondaryData":"","partID":"MediumCenter2","shiny":false},{"location":{"x":1.399999976158142,"y":0.8999999761581421},"rotation":0.0,"mirrored":true,"abilityID":17,"tier":2,"secondaryData":"","partID":"MediumExtra2","shiny":false},{"location":{"x":1.2000000476837159,"y":-0.6000000238418579},"rotation":90.0,"mirrored":false,"abilityID":19,"tier":2,"secondaryData":"","partID":"MediumExtra1","shiny":false},{"location":{"x":1.0,"y":-1.399999976158142},"rotation":180.0,"mirrored":false,"abilityID":18,"tier":2,"secondaryData":"","partID":"MediumWing3","shiny":false},{"location":{"x":0.0,"y":2.299999952316284},"rotation":0.0,"mirrored":false,"abilityID":5,"tier":2,"secondaryData":"","partID":"MediumExtra1","shiny":false}],"dialogue":{"m_FileID":0,"m_PathID":0},"useCustomDroneType":false,"customDroneType":0} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Crusader.json.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Crusader.json.meta new file mode 100644 index 000000000..258f5ca42 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Crusader.json.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 5af774ba5301f9f4bb2d6be9ed15a36c +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Delta Core.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Delta Core.json new file mode 100644 index 000000000..ef359e785 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Delta Core.json @@ -0,0 +1 @@ +{"entityName":"Unnamed","coreSpriteID":"core1_light","coreShellSpriteID":"core1_shell","shellHealth":[1000.0,250.0,500.0],"baseRegen":[60.0,0.0,60.0],"intendedType":0,"parts":[{"location":{"x":0.4000000059604645,"y":0.0},"rotation":0.0,"mirrored":true,"abilityID":5,"tier":1,"secondaryData":"","partID":"SmallWing2","shiny":false},{"location":{"x":-0.4000000059604645,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":19,"tier":1,"secondaryData":"","partID":"SmallWing2","shiny":false},{"location":{"x":0.4000000059604645,"y":-0.4000000059604645},"rotation":0.0,"mirrored":false,"abilityID":2,"tier":1,"secondaryData":"","partID":"SmallWing1","shiny":false},{"location":{"x":-0.4000000059604645,"y":-0.4000000059604645},"rotation":0.0,"mirrored":true,"abilityID":1,"tier":1,"secondaryData":"","partID":"SmallWing1","shiny":false},{"location":{"x":0.0,"y":-0.5},"rotation":0.0,"mirrored":false,"abilityID":4,"tier":1,"secondaryData":"","partID":"SmallCenter5","shiny":false}],"dialogue":{"instanceID":0},"useCustomDroneType":false,"customDroneType":0} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Delta Core.json.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Delta Core.json.meta new file mode 100644 index 000000000..2fb706484 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Delta Core.json.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 862825a1bb5ee154eb0b706fa41026fa +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Fake Heavy.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Fake Heavy.json new file mode 100644 index 000000000..4bc9490e4 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Fake Heavy.json @@ -0,0 +1 @@ +{"entityName":"Unnamed","coreSpriteID":"core1_light","coreShellSpriteID":"core1_shell","shellHealth":[1000.0,250.0,500.0],"baseRegen":[60.0,0.0,60.0],"intendedType":0,"parts":[{"location":{"x":0.5,"y":-0.10000000149011612},"rotation":0.0,"mirrored":true,"abilityID":2,"tier":1,"secondaryData":"","partID":"SmallSide3"},{"location":{"x":-0.5,"y":-0.10000000149011612},"rotation":0.0,"mirrored":false,"abilityID":13,"tier":1,"secondaryData":"","partID":"SmallSide3"},{"location":{"x":0.0,"y":0.30000001192092898},"rotation":0.0,"mirrored":false,"abilityID":20,"tier":1,"secondaryData":"","partID":"SmallCenter2"},{"location":{"x":0.30000001192092898,"y":-0.10000000149011612},"rotation":0.0,"mirrored":true,"abilityID":5,"tier":1,"secondaryData":"","partID":"SmallWing2"},{"location":{"x":-0.30000001192092898,"y":-0.10000000149011612},"rotation":0.0,"mirrored":false,"abilityID":4,"tier":1,"secondaryData":"","partID":"SmallWing2"}],"dialogue":{"instanceID":0},"useCustomDroneType":false,"customDroneType":0} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Fake Heavy.json.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Fake Heavy.json.meta new file mode 100644 index 000000000..508ac222f --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Fake Heavy.json.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: d7bbb67d491063540a6567726692dcac +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Fighter.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Fighter.json new file mode 100644 index 000000000..463d75be1 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Fighter.json @@ -0,0 +1 @@ +{"entityName":"Unnamed","coreSpriteID":"core1_light","coreShellSpriteID":"core1_shell","shellHealth":[1000.0,250.0,500.0],"baseRegen":[60.0,0.0,60.0],"intendedType":0,"parts":[{"location":{"x":0.0,"y":-0.3199999928474426},"rotation":0.0,"mirrored":false,"abilityID":1,"tier":1,"secondaryData":"{\"drone\":\"{\\\"entityName\\\":\\\"Strike Drone\\\",\\\"coreSpriteID\\\":\\\"drone_light\\\",\\\"coreShellSpriteID\\\":\\\"drone_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":7,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":-0.2485615760087967,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":5,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing1\\\"},{\\\"location\\\":{\\\"x\\\":0.2485615760087967,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":0,\\\"tier\\\":0,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing1\\\"}],\\\"dialogue\\\":{\\\"instanceID\\\":0}}\",\"energyCost\":150.0,\"delay\":3.0,\"cooldown\":15.0,\"type\":2}","partID":"SmallCenter5"},{"location":{"x":0.5,"y":0.0},"rotation":0.0,"mirrored":true,"abilityID":4,"tier":1,"secondaryData":"{\"drone\":\"{\\\"entityName\\\":\\\"Worker Drone\\\",\\\"coreSpriteID\\\":\\\"drone_light\\\",\\\"coreShellSpriteID\\\":\\\"worker_drone_shell_sprite\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":7,\\\"parts\\\":[],\\\"dialogue\\\":{\\\"instanceID\\\":0}}\",\"energyCost\":100.0,\"delay\":2.0,\"cooldown\":10.0,\"type\":1}","partID":"SmallWing2"},{"location":{"x":-0.5,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":2,"tier":1,"secondaryData":"{\"drone\":\"{\\\"entityName\\\":\\\"Worker Drone\\\",\\\"coreSpriteID\\\":\\\"drone_light\\\",\\\"coreShellSpriteID\\\":\\\"worker_drone_shell_sprite\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":7,\\\"parts\\\":[],\\\"dialogue\\\":{\\\"instanceID\\\":0}}\",\"energyCost\":100.0,\"delay\":2.0,\"cooldown\":10.0,\"type\":1}","partID":"SmallWing2"}],"dialogue":{"instanceID":0},"useCustomDroneType":false,"customDroneType":0} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Fighter.json.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Fighter.json.meta new file mode 100644 index 000000000..1209ffdb5 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Fighter.json.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: cdfa69e3ecdefe84ba295ca2fafbc9fd +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Frigate.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Frigate.json new file mode 100644 index 000000000..1aba894ec --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Frigate.json @@ -0,0 +1 @@ +{"entityName":"Unnamed","coreSpriteID":"core1_light","coreShellSpriteID":"core2_shell","shellHealth":[1000.0,250.0,500.0],"baseRegen":[60.0,0.0,60.0],"intendedType":0,"parts":[{"location":{"x":-0.6000000238418579,"y":0.10000000149011612},"rotation":0.0,"mirrored":false,"abilityID":5,"tier":1,"secondaryData":"","partID":"SmallWing2","shiny":false},{"location":{"x":0.6000000238418579,"y":0.10000000149011612},"rotation":0.0,"mirrored":true,"abilityID":5,"tier":1,"secondaryData":"","partID":"SmallWing2","shiny":false},{"location":{"x":0.30000001192092898,"y":0.4000000059604645},"rotation":0.0,"mirrored":true,"abilityID":4,"tier":1,"secondaryData":"","partID":"SmallWing1","shiny":false},{"location":{"x":-0.30000001192092898,"y":0.4000000059604645},"rotation":0.0,"mirrored":false,"abilityID":4,"tier":1,"secondaryData":"","partID":"SmallWing1","shiny":false},{"location":{"x":-0.5,"y":-0.800000011920929},"rotation":0.0,"mirrored":false,"abilityID":30,"tier":1,"secondaryData":"","partID":"SmallWing3","shiny":false},{"location":{"x":0.5,"y":-0.800000011920929},"rotation":0.0,"mirrored":true,"abilityID":20,"tier":1,"secondaryData":"","partID":"SmallWing3","shiny":false},{"location":{"x":0.0,"y":-1.0},"rotation":0.0,"mirrored":false,"abilityID":4,"tier":1,"secondaryData":"","partID":"SmallCenter5","shiny":false},{"location":{"x":0.30000001192092898,"y":-1.399999976158142},"rotation":0.0,"mirrored":false,"abilityID":2,"tier":1,"secondaryData":"","partID":"SmallWing1","shiny":false},{"location":{"x":-0.30000001192092898,"y":-1.399999976158142},"rotation":0.0,"mirrored":true,"abilityID":2,"tier":1,"secondaryData":"","partID":"SmallWing1","shiny":false},{"location":{"x":-1.0,"y":-0.6000000238418579},"rotation":-180.0,"mirrored":false,"abilityID":4,"tier":1,"secondaryData":"","partID":"SmallWing1","shiny":false},{"location":{"x":1.0,"y":-0.6000000238418579},"rotation":180.0,"mirrored":true,"abilityID":4,"tier":1,"secondaryData":"","partID":"SmallWing1","shiny":false},{"location":{"x":-0.800000011920929,"y":-1.0},"rotation":-180.0,"mirrored":true,"abilityID":5,"tier":1,"secondaryData":"","partID":"SmallWing2","shiny":false},{"location":{"x":0.800000011920929,"y":-1.0},"rotation":-180.0,"mirrored":false,"abilityID":5,"tier":1,"secondaryData":"","partID":"SmallWing2","shiny":false},{"location":{"x":-1.100000023841858,"y":-1.2000000476837159},"rotation":0.0,"mirrored":true,"abilityID":13,"tier":1,"secondaryData":"","partID":"SmallSide4","shiny":false},{"location":{"x":1.100000023841858,"y":-1.2000000476837159},"rotation":0.0,"mirrored":false,"abilityID":13,"tier":1,"secondaryData":"","partID":"SmallSide4","shiny":false},{"location":{"x":0.699999988079071,"y":-1.399999976158142},"rotation":0.0,"mirrored":false,"abilityID":13,"tier":1,"secondaryData":"","partID":"SmallSide4","shiny":false},{"location":{"x":-0.699999988079071,"y":-1.399999976158142},"rotation":0.0,"mirrored":true,"abilityID":13,"tier":1,"secondaryData":"","partID":"SmallSide4","shiny":false},{"location":{"x":0.0,"y":-1.899999976158142},"rotation":0.0,"mirrored":false,"abilityID":1,"tier":1,"secondaryData":"","partID":"SmallCenter3","shiny":false}],"dialogue":{"instanceID":0},"useCustomDroneType":false,"customDroneType":0} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Frigate.json.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Frigate.json.meta new file mode 100644 index 000000000..5290a2816 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Frigate.json.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: f7d7a6b3d95b6624eaa1ba7f2546eb11 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Heavy Scouter - with spawns.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Heavy Scouter - with spawns.json new file mode 100644 index 000000000..9456475b0 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Heavy Scouter - with spawns.json @@ -0,0 +1 @@ +{"entityName":"Light Carrier","coreSpriteID":"core1_light","coreShellSpriteID":"core1_shell","shellHealth":[1000.0,250.0,500.0],"baseRegen":[60.0,0.0,60.0],"intendedType":0,"parts":[{"location":{"x":0.0,"y":-0.30000001192092898},"rotation":0.0,"mirrored":false,"abilityID":4,"tier":1,"secondaryData":"","partID":"SmallCenter5","shiny":false},{"location":{"x":-0.5,"y":-0.10000000149011612},"rotation":0.0,"mirrored":true,"abilityID":17,"tier":1,"secondaryData":"","partID":"SmallWing1","shiny":false},{"location":{"x":0.5,"y":-0.10000000149011612},"rotation":0.0,"mirrored":false,"abilityID":19,"tier":1,"secondaryData":"","partID":"SmallWing1","shiny":false},{"location":{"x":0.0,"y":-0.800000011920929},"rotation":0.0,"mirrored":false,"abilityID":5,"tier":1,"secondaryData":"","partID":"SmallCenter4","shiny":false},{"location":{"x":-0.4000000059604645,"y":-0.8999999761581421},"rotation":0.0,"mirrored":true,"abilityID":2,"tier":1,"secondaryData":"","partID":"SmallSide4","shiny":false},{"location":{"x":0.4000000059604645,"y":-0.8999999761581421},"rotation":0.0,"mirrored":false,"abilityID":1,"tier":1,"secondaryData":"","partID":"SmallSide4","shiny":false},{"location":{"x":-0.5,"y":-0.5},"rotation":0.0,"mirrored":false,"abilityID":13,"tier":2,"secondaryData":"","partID":"SmallCenter2","shiny":false},{"location":{"x":0.5,"y":-0.5},"rotation":0.0,"mirrored":false,"abilityID":21,"tier":0,"secondaryData":"","partID":"SmallCenter2","shiny":false},{"location":{"x":-0.4000000059604645,"y":0.30000001192092898},"rotation":0.0,"mirrored":false,"abilityID":10,"tier":0,"secondaryData":"mini_drone","partID":"SmallCenter1","shiny":false},{"location":{"x":0.4000000059604645,"y":0.30000001192092898},"rotation":0.0,"mirrored":false,"abilityID":10,"tier":0,"secondaryData":"mini_drone","partID":"SmallCenter1","shiny":false},{"location":{"x":0.0,"y":0.5},"rotation":0.0,"mirrored":false,"abilityID":10,"tier":0,"secondaryData":"strike_drone","partID":"SmallCenter1","shiny":false}],"dialogue":{"m_FileID":0,"m_PathID":0},"useCustomDroneType":false,"customDroneType":0} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Heavy Scouter - with spawns.json.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Heavy Scouter - with spawns.json.meta new file mode 100644 index 000000000..5c71a7a9d --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Heavy Scouter - with spawns.json.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 8e92668892d0d7745b21d393616c495e +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Heavy Scouter.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Heavy Scouter.json new file mode 100644 index 000000000..f56177d04 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Heavy Scouter.json @@ -0,0 +1 @@ +{"entityName":"Unnamed","coreSpriteID":"core1_light","coreShellSpriteID":"core1_shell","shellHealth":[1000.0,250.0,500.0],"baseRegen":[60.0,0.0,60.0],"intendedType":0,"parts":[{"location":{"x":0.0,"y":-0.30000001192092898},"rotation":0.0,"mirrored":false,"abilityID":4,"tier":1,"secondaryData":"","partID":"SmallCenter5","shiny":false},{"location":{"x":-0.5,"y":-0.10000000149011612},"rotation":0.0,"mirrored":true,"abilityID":18,"tier":1,"secondaryData":"","partID":"SmallWing1","shiny":false},{"location":{"x":0.5,"y":-0.10000000149011612},"rotation":0.0,"mirrored":false,"abilityID":18,"tier":1,"secondaryData":"","partID":"SmallWing1","shiny":false},{"location":{"x":0.0,"y":-0.800000011920929},"rotation":0.0,"mirrored":false,"abilityID":5,"tier":1,"secondaryData":"","partID":"SmallCenter4","shiny":false},{"location":{"x":-0.4000000059604645,"y":-0.8999999761581421},"rotation":0.0,"mirrored":true,"abilityID":1,"tier":1,"secondaryData":"","partID":"SmallSide4","shiny":false},{"location":{"x":0.4000000059604645,"y":-0.8999999761581421},"rotation":0.0,"mirrored":false,"abilityID":1,"tier":1,"secondaryData":"","partID":"SmallSide4","shiny":false},{"location":{"x":-0.5,"y":-0.5},"rotation":0.0,"mirrored":false,"abilityID":13,"tier":1,"secondaryData":"","partID":"SmallCenter2","shiny":false},{"location":{"x":0.5,"y":-0.5},"rotation":0.0,"mirrored":false,"abilityID":13,"tier":1,"secondaryData":"","partID":"SmallCenter2","shiny":false},{"location":{"x":-0.4000000059604645,"y":0.30000001192092898},"rotation":0.0,"mirrored":false,"abilityID":1,"tier":1,"secondaryData":"","partID":"SmallCenter1","shiny":false},{"location":{"x":0.4000000059604645,"y":0.30000001192092898},"rotation":0.0,"mirrored":false,"abilityID":1,"tier":1,"secondaryData":"","partID":"SmallCenter1","shiny":false},{"location":{"x":0.0,"y":0.5},"rotation":0.0,"mirrored":false,"abilityID":12,"tier":1,"secondaryData":"","partID":"SmallCenter1","shiny":false}],"dialogue":{"m_FileID":0,"m_PathID":0},"useCustomDroneType":false,"customDroneType":0} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Heavy Scouter.json.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Heavy Scouter.json.meta new file mode 100644 index 000000000..e9e8dbd7d --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Heavy Scouter.json.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 264334c2f4503c547b52638a2cdc92ee +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Infected Leader.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Infected Leader.json new file mode 100644 index 000000000..ea022239f --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Infected Leader.json @@ -0,0 +1 @@ +{"entityName":"Unnamed","coreSpriteID":"core1_light","coreShellSpriteID":"core1_shell","shellHealth":[1000.0,250.0,500.0],"baseRegen":[60.0,0.0,60.0],"intendedType":0,"parts":[{"location":{"x":-1.0,"y":0.699999988079071},"rotation":0.0,"mirrored":true,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigSide1","shiny":false},{"location":{"x":-1.2000000476837159,"y":2.0999999046325685},"rotation":0.0,"mirrored":false,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigSide2","shiny":false},{"location":{"x":-1.899999976158142,"y":2.5999999046325685},"rotation":0.0,"mirrored":false,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigSide2","shiny":false},{"location":{"x":-0.8999999761581421,"y":3.9000000953674318},"rotation":0.0,"mirrored":false,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigSide6","shiny":false},{"location":{"x":-1.2999999523162842,"y":5.199999809265137},"rotation":0.0,"mirrored":true,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigSide1","shiny":false},{"location":{"x":-1.0,"y":-1.7000000476837159},"rotation":0.0,"mirrored":false,"abilityID":4,"tier":3,"secondaryData":"","partID":"BigSide2","shiny":false},{"location":{"x":-1.7999999523162842,"y":-2.4000000953674318},"rotation":0.0,"mirrored":false,"abilityID":0,"tier":0,"secondaryData":"","partID":"MediumSide1","shiny":false},{"location":{"x":-0.6000000238418579,"y":-3.4000000953674318},"rotation":180.0,"mirrored":false,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigSide4","shiny":false},{"location":{"x":-2.0,"y":-5.599999904632568},"rotation":0.0,"mirrored":false,"abilityID":0,"tier":0,"secondaryData":"","partID":"MediumCenter1","shiny":false},{"location":{"x":2.0,"y":-5.599999904632568},"rotation":0.0,"mirrored":false,"abilityID":0,"tier":0,"secondaryData":"","partID":"MediumCenter1","shiny":false},{"location":{"x":1.2000000476837159,"y":-5.099999904632568},"rotation":0.0,"mirrored":true,"abilityID":0,"tier":0,"secondaryData":"","partID":"MediumSide1","shiny":false},{"location":{"x":-1.2000000476837159,"y":-5.099999904632568},"rotation":0.0,"mirrored":false,"abilityID":0,"tier":0,"secondaryData":"","partID":"MediumSide1","shiny":false},{"location":{"x":-1.2999999523162842,"y":-4.199999809265137},"rotation":0.0,"mirrored":true,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigSide2","shiny":false},{"location":{"x":-3.5,"y":-5.599999904632568},"rotation":0.0,"mirrored":false,"abilityID":0,"tier":0,"secondaryData":"","partID":"MediumCenter1","shiny":false},{"location":{"x":-2.799999952316284,"y":-4.699999809265137},"rotation":0.0,"mirrored":false,"abilityID":10,"tier":0,"secondaryData":"{\"drone\":\"{\\\"entityName\\\":\\\"Strike Drone\\\",\\\"coreSpriteID\\\":\\\"drone_light\\\",\\\"coreShellSpriteID\\\":\\\"drone_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":7,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":-0.2485615760087967,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":5,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing1\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":0.2485615760087967,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":0,\\\"tier\\\":0,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing1\\\",\\\"shiny\\\":false}],\\\"dialogue\\\":{\\\"instanceID\\\":0},\\\"useCustomDroneType\\\":true,\\\"customDroneType\\\":2}\",\"energyCost\":150.0,\"delay\":3.0,\"cooldown\":15.0,\"type\":2}","partID":"MediumCenter3","shiny":false},{"location":{"x":3.5,"y":-5.599999904632568},"rotation":0.0,"mirrored":false,"abilityID":0,"tier":0,"secondaryData":"","partID":"MediumCenter1","shiny":false},{"location":{"x":2.799999952316284,"y":-4.699999809265137},"rotation":0.0,"mirrored":false,"abilityID":10,"tier":0,"secondaryData":"{\"drone\":\"{\\\"entityName\\\":\\\"Strike Drone\\\",\\\"coreSpriteID\\\":\\\"drone_light\\\",\\\"coreShellSpriteID\\\":\\\"drone_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":7,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":-0.2485615760087967,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":5,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing1\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":0.2485615760087967,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":0,\\\"tier\\\":0,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing1\\\",\\\"shiny\\\":false}],\\\"dialogue\\\":{\\\"instanceID\\\":0},\\\"useCustomDroneType\\\":true,\\\"customDroneType\\\":2}\",\"energyCost\":150.0,\"delay\":3.0,\"cooldown\":15.0,\"type\":2}","partID":"MediumCenter3","shiny":false},{"location":{"x":-4.0,"y":-4.699999809265137},"rotation":0.0,"mirrored":false,"abilityID":4,"tier":3,"secondaryData":"","partID":"BigSide2","shiny":false},{"location":{"x":4.0,"y":-4.699999809265137},"rotation":0.0,"mirrored":true,"abilityID":4,"tier":3,"secondaryData":"","partID":"BigSide2","shiny":false},{"location":{"x":-4.599999904632568,"y":-4.199999809265137},"rotation":0.0,"mirrored":false,"abilityID":7,"tier":3,"secondaryData":"","partID":"BigSide2","shiny":false},{"location":{"x":4.599999904632568,"y":-4.199999809265137},"rotation":0.0,"mirrored":true,"abilityID":7,"tier":3,"secondaryData":"","partID":"BigSide2","shiny":false},{"location":{"x":1.0,"y":0.699999988079071},"rotation":0.0,"mirrored":false,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigSide1","shiny":false},{"location":{"x":1.7999999523162842,"y":-2.4000000953674318},"rotation":0.0,"mirrored":true,"abilityID":0,"tier":0,"secondaryData":"","partID":"MediumSide1","shiny":false},{"location":{"x":1.2000000476837159,"y":2.0999999046325685},"rotation":0.0,"mirrored":true,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigSide2","shiny":false},{"location":{"x":1.899999976158142,"y":2.5999999046325685},"rotation":0.0,"mirrored":true,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigSide2","shiny":false},{"location":{"x":2.0,"y":1.5},"rotation":0.0,"mirrored":true,"abilityID":0,"tier":0,"secondaryData":"","partID":"MediumSide1","shiny":false},{"location":{"x":0.8999999761581421,"y":3.9000000953674318},"rotation":0.0,"mirrored":true,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigSide6","shiny":false},{"location":{"x":1.2999999523162842,"y":5.199999809265137},"rotation":0.0,"mirrored":false,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigSide1","shiny":false},{"location":{"x":-3.0999999046325685,"y":2.4000000953674318},"rotation":-180.0,"mirrored":true,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigWing1","shiny":false},{"location":{"x":3.0999999046325685,"y":2.4000000953674318},"rotation":-180.0,"mirrored":false,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigWing1","shiny":false},{"location":{"x":-5.5,"y":3.5},"rotation":180.0,"mirrored":true,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigWing2","shiny":false},{"location":{"x":-4.699999809265137,"y":2.700000047683716},"rotation":0.0,"mirrored":false,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigSide5","shiny":false},{"location":{"x":-3.9000000953674318,"y":2.9000000953674318},"rotation":-180.0,"mirrored":true,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigSide4","shiny":false},{"location":{"x":5.400000095367432,"y":3.5},"rotation":-180.0,"mirrored":false,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigWing2","shiny":false},{"location":{"x":4.599999904632568,"y":2.700000047683716},"rotation":0.0,"mirrored":true,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigSide5","shiny":false},{"location":{"x":3.799999952316284,"y":2.9000000953674318},"rotation":180.0,"mirrored":false,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigSide4","shiny":false},{"location":{"x":-6.599999904632568,"y":-3.299999952316284},"rotation":-180.0,"mirrored":true,"abilityID":10,"tier":0,"secondaryData":"{\"drone\":\"{\\\"entityName\\\":\\\"Counter Drone\\\",\\\"coreSpriteID\\\":\\\"drone_light\\\",\\\"coreShellSpriteID\\\":\\\"drone_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":7,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":-0.25},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":4,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallCenter5\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":-0.15000000596046449},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":0,\\\"tier\\\":0,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallCenter2\\\",\\\"shiny\\\":false}],\\\"dialogue\\\":{\\\"instanceID\\\":0},\\\"useCustomDroneType\\\":true,\\\"customDroneType\\\":5}\",\"energyCost\":150.0,\"delay\":3.0,\"cooldown\":15.0,\"type\":5}","partID":"BigSide4","shiny":false},{"location":{"x":-5.800000190734863,"y":-3.799999952316284},"rotation":-180.0,"mirrored":true,"abilityID":1,"tier":3,"secondaryData":"","partID":"BigWing1","shiny":false},{"location":{"x":6.599999904632568,"y":-3.299999952316284},"rotation":180.0,"mirrored":false,"abilityID":10,"tier":0,"secondaryData":"{\"drone\":\"{\\\"entityName\\\":\\\"Counter Drone\\\",\\\"coreSpriteID\\\":\\\"drone_light\\\",\\\"coreShellSpriteID\\\":\\\"drone_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":7,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":-0.25},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":4,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallCenter5\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":-0.15000000596046449},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":0,\\\"tier\\\":0,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallCenter2\\\",\\\"shiny\\\":false}],\\\"dialogue\\\":{\\\"instanceID\\\":0},\\\"useCustomDroneType\\\":true,\\\"customDroneType\\\":5}\",\"energyCost\":150.0,\"delay\":3.0,\"cooldown\":15.0,\"type\":5}","partID":"BigSide4","shiny":false},{"location":{"x":5.800000190734863,"y":-3.799999952316284},"rotation":-180.0,"mirrored":false,"abilityID":1,"tier":3,"secondaryData":"","partID":"BigWing1","shiny":false},{"location":{"x":7.400000095367432,"y":-3.5},"rotation":0.0,"mirrored":true,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigSide5","shiny":false},{"location":{"x":-7.400000095367432,"y":-3.5},"rotation":0.0,"mirrored":false,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigSide5","shiny":false},{"location":{"x":-7.800000190734863,"y":-2.0},"rotation":-180.0,"mirrored":true,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigWing2","shiny":false},{"location":{"x":7.800000190734863,"y":-2.0},"rotation":-180.0,"mirrored":false,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigWing2","shiny":false},{"location":{"x":-2.799999952316284,"y":-6.0},"rotation":180.0,"mirrored":false,"abilityID":10,"tier":0,"secondaryData":"{\"drone\":\"{\\\"entityName\\\":\\\"Strike Drone\\\",\\\"coreSpriteID\\\":\\\"drone_light\\\",\\\"coreShellSpriteID\\\":\\\"drone_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":7,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":-0.2485615760087967,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":5,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing1\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":0.2485615760087967,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":0,\\\"tier\\\":0,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing1\\\",\\\"shiny\\\":false}],\\\"dialogue\\\":{\\\"instanceID\\\":0},\\\"useCustomDroneType\\\":true,\\\"customDroneType\\\":2}\",\"energyCost\":150.0,\"delay\":3.0,\"cooldown\":15.0,\"type\":2}","partID":"MediumCenter3","shiny":false},{"location":{"x":2.799999952316284,"y":-6.0},"rotation":-180.0,"mirrored":false,"abilityID":10,"tier":0,"secondaryData":"{\"drone\":\"{\\\"entityName\\\":\\\"Strike Drone\\\",\\\"coreSpriteID\\\":\\\"drone_light\\\",\\\"coreShellSpriteID\\\":\\\"drone_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":7,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":-0.2485615760087967,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":5,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing1\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":0.2485615760087967,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":0,\\\"tier\\\":0,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing1\\\",\\\"shiny\\\":false}],\\\"dialogue\\\":{\\\"instanceID\\\":0},\\\"useCustomDroneType\\\":true,\\\"customDroneType\\\":2}\",\"energyCost\":150.0,\"delay\":3.0,\"cooldown\":15.0,\"type\":2}","partID":"MediumCenter3","shiny":false},{"location":{"x":-2.5999999046325685,"y":-2.200000047683716},"rotation":0.0,"mirrored":false,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigWing2","shiny":false},{"location":{"x":2.5999999046325685,"y":-2.200000047683716},"rotation":0.0,"mirrored":true,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigWing2","shiny":false},{"location":{"x":-3.200000047683716,"y":-0.699999988079071},"rotation":180.0,"mirrored":true,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigWing1","shiny":false},{"location":{"x":3.200000047683716,"y":-0.699999988079071},"rotation":-180.0,"mirrored":false,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigWing1","shiny":false},{"location":{"x":-4.900000095367432,"y":-0.30000001192092898},"rotation":0.0,"mirrored":false,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigSide5","shiny":false},{"location":{"x":4.900000095367432,"y":-0.30000001192092898},"rotation":0.0,"mirrored":true,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigSide5","shiny":false},{"location":{"x":-4.0,"y":-0.20000000298023225},"rotation":-180.0,"mirrored":true,"abilityID":10,"tier":0,"secondaryData":"{\"drone\":\"{\\\"entityName\\\":\\\"Counter Drone\\\",\\\"coreSpriteID\\\":\\\"drone_light\\\",\\\"coreShellSpriteID\\\":\\\"drone_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":7,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":-0.25},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":4,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallCenter5\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":-0.15000000596046449},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":0,\\\"tier\\\":0,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallCenter2\\\",\\\"shiny\\\":false}],\\\"dialogue\\\":{\\\"instanceID\\\":0},\\\"useCustomDroneType\\\":true,\\\"customDroneType\\\":5}\",\"energyCost\":150.0,\"delay\":3.0,\"cooldown\":15.0,\"type\":5}","partID":"BigSide4","shiny":false},{"location":{"x":4.0,"y":-0.20000000298023225},"rotation":180.0,"mirrored":false,"abilityID":10,"tier":0,"secondaryData":"{\"drone\":\"{\\\"entityName\\\":\\\"Counter Drone\\\",\\\"coreSpriteID\\\":\\\"drone_light\\\",\\\"coreShellSpriteID\\\":\\\"drone_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":7,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":-0.25},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":4,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallCenter5\\\",\\\"shiny\\\":false},{\\\"location\\\":{\\\"x\\\":0.0,\\\"y\\\":-0.15000000596046449},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":0,\\\"tier\\\":0,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallCenter2\\\",\\\"shiny\\\":false}],\\\"dialogue\\\":{\\\"instanceID\\\":0},\\\"useCustomDroneType\\\":true,\\\"customDroneType\\\":5}\",\"energyCost\":150.0,\"delay\":3.0,\"cooldown\":15.0,\"type\":5}","partID":"BigSide4","shiny":false},{"location":{"x":-5.800000190734863,"y":-0.4000000059604645},"rotation":0.0,"mirrored":false,"abilityID":0,"tier":0,"secondaryData":"","partID":"MediumSide1","shiny":false},{"location":{"x":3.0999999046325685,"y":6.599999904632568},"rotation":-180.0,"mirrored":false,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigWing2","shiny":false},{"location":{"x":2.4000000953674318,"y":5.900000095367432},"rotation":0.0,"mirrored":true,"abilityID":0,"tier":0,"secondaryData":"","partID":"MediumSide1","shiny":false},{"location":{"x":-3.0999999046325685,"y":6.599999904632568},"rotation":180.0,"mirrored":true,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigWing2","shiny":false},{"location":{"x":-2.4000000953674318,"y":5.900000095367432},"rotation":0.0,"mirrored":false,"abilityID":0,"tier":0,"secondaryData":"","partID":"MediumSide1","shiny":false},{"location":{"x":5.800000190734863,"y":-0.4000000059604645},"rotation":0.0,"mirrored":true,"abilityID":0,"tier":0,"secondaryData":"","partID":"MediumSide1","shiny":false},{"location":{"x":-6.599999904632568,"y":0.4000000059604645},"rotation":180.0,"mirrored":true,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigWing2","shiny":false},{"location":{"x":1.0,"y":-1.7000000476837159},"rotation":0.0,"mirrored":true,"abilityID":4,"tier":3,"secondaryData":"","partID":"BigSide2","shiny":false},{"location":{"x":0.0,"y":-0.8999999761581421},"rotation":0.0,"mirrored":false,"abilityID":0,"tier":0,"secondaryData":"","partID":"MediumCenter3","shiny":false},{"location":{"x":1.7999999523162842,"y":-1.0},"rotation":0.0,"mirrored":true,"abilityID":7,"tier":3,"secondaryData":"","partID":"BigSide2","shiny":false},{"location":{"x":-1.7999999523162842,"y":-1.0},"rotation":0.0,"mirrored":false,"abilityID":7,"tier":3,"secondaryData":"","partID":"BigSide2","shiny":false},{"location":{"x":0.6000000238418579,"y":-3.4000000953674318},"rotation":180.0,"mirrored":true,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigSide4","shiny":false},{"location":{"x":0.0,"y":-4.400000095367432},"rotation":0.0,"mirrored":false,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigCenter3","shiny":false},{"location":{"x":1.2999999523162842,"y":-4.199999809265137},"rotation":0.0,"mirrored":false,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigSide2","shiny":false},{"location":{"x":6.599999904632568,"y":0.4000000059604645},"rotation":-180.0,"mirrored":false,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigWing2","shiny":false},{"location":{"x":-2.0,"y":1.5},"rotation":0.0,"mirrored":false,"abilityID":0,"tier":0,"secondaryData":"","partID":"MediumSide1","shiny":false}],"dialogue":{"instanceID":0},"useCustomDroneType":false,"customDroneType":0} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Infected Leader.json.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Infected Leader.json.meta new file mode 100644 index 000000000..1ee077309 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Infected Leader.json.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 12beefe9d6e82594d9d1525f2508366f +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Light Core.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Light Core.json new file mode 100644 index 000000000..e040ceaae --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Light Core.json @@ -0,0 +1 @@ +{"entityName":"Unnamed","coreSpriteID":"core1_light","coreShellSpriteID":"core1_shell","shellHealth":[1000.0,250.0,500.0],"baseRegen":[60.0,0.0,60.0],"intendedType":0,"parts":[{"location":{"x":-0.7466667294502258,"y":0.0},"rotation":0.0,"mirrored":true,"abilityID":5,"tier":1,"secondaryData":"{\"drone\":\"{\\\"entityName\\\":\\\"Strike Drone\\\",\\\"coreSpriteID\\\":\\\"drone_light\\\",\\\"coreShellSpriteID\\\":\\\"drone_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":7,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":-0.2485615760087967,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":5,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing1\\\"},{\\\"location\\\":{\\\"x\\\":0.2485615760087967,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":0,\\\"tier\\\":0,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing1\\\"}],\\\"dialogue\\\":{\\\"instanceID\\\":0}}\",\"energyCost\":150.0,\"delay\":3.0,\"cooldown\":15.0,\"type\":2}","partID":"SmallWing1"},{"location":{"x":0.7466667294502258,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":5,"tier":1,"secondaryData":"{\"drone\":\"{\\\"entityName\\\":\\\"Strike Drone\\\",\\\"coreSpriteID\\\":\\\"drone_light\\\",\\\"coreShellSpriteID\\\":\\\"drone_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":7,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":-0.2485615760087967,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":5,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing1\\\"},{\\\"location\\\":{\\\"x\\\":0.2485615760087967,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":0,\\\"tier\\\":0,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallWing1\\\"}],\\\"dialogue\\\":{\\\"instanceID\\\":0}}\",\"energyCost\":150.0,\"delay\":3.0,\"cooldown\":15.0,\"type\":2}","partID":"SmallWing1"},{"location":{"x":0.5333333611488342,"y":0.0},"rotation":0.0,"mirrored":true,"abilityID":18,"tier":1,"secondaryData":"{\"drone\":\"{\\\"entityName\\\":\\\"Gun Drone\\\",\\\"coreSpriteID\\\":\\\"drone_light\\\",\\\"coreShellSpriteID\\\":\\\"drone_shell\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":7,\\\"parts\\\":[{\\\"location\\\":{\\\"x\\\":0.2485615760087967,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":false,\\\"abilityID\\\":6,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallSide4\\\"},{\\\"location\\\":{\\\"x\\\":-0.2485615760087967,\\\"y\\\":0.0},\\\"rotation\\\":0.0,\\\"mirrored\\\":true,\\\"abilityID\\\":6,\\\"tier\\\":1,\\\"secondaryData\\\":\\\"\\\",\\\"partID\\\":\\\"SmallSide4\\\"}],\\\"dialogue\\\":{\\\"instanceID\\\":0}}\",\"energyCost\":150.0,\"delay\":3.0,\"cooldown\":15.0,\"type\":4}","partID":"SmallWing2"},{"location":{"x":-0.5333333611488342,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":1,"tier":1,"secondaryData":"{\"drone\":\"{\\\"entityName\\\":\\\"Worker Drone\\\",\\\"coreSpriteID\\\":\\\"drone_light\\\",\\\"coreShellSpriteID\\\":\\\"worker_drone_shell_sprite\\\",\\\"shellHealth\\\":[1000.0,250.0,500.0],\\\"baseRegen\\\":[60.0,0.0,60.0],\\\"intendedType\\\":7,\\\"parts\\\":[],\\\"dialogue\\\":{\\\"instanceID\\\":0}}\",\"energyCost\":100.0,\"delay\":2.0,\"cooldown\":10.0,\"type\":1}","partID":"SmallWing2"}],"dialogue":{"instanceID":0}} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Light Core.json.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Light Core.json.meta new file mode 100644 index 000000000..91aea1413 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Light Core.json.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 5bbf98d763b6dc448a29992dd6dbf6a6 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Missile Gladiator.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Missile Gladiator.json new file mode 100644 index 000000000..a271289bc --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Missile Gladiator.json @@ -0,0 +1 @@ +{"entityName":"Unnamed","coreSpriteID":"core1_light","coreShellSpriteID":"core1_shell","shellHealth":[1000.0,250.0,500.0],"baseRegen":[60.0,0.0,60.0],"intendedType":0,"parts":[{"location":{"x":0.30000001192092898,"y":0.0},"rotation":0.0,"mirrored":true,"abilityID":4,"tier":1,"secondaryData":"","partID":"SmallWing2"},{"location":{"x":-0.30000001192092898,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":4,"tier":1,"secondaryData":"","partID":"SmallWing2"},{"location":{"x":0.0,"y":0.30000001192092898},"rotation":0.0,"mirrored":false,"abilityID":7,"tier":1,"secondaryData":"","partID":"SmallCenter2"},{"location":{"x":0.5,"y":0.0},"rotation":0.0,"mirrored":true,"abilityID":17,"tier":1,"secondaryData":"","partID":"SmallSide3"},{"location":{"x":-0.5,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":19,"tier":1,"secondaryData":"","partID":"SmallSide3"},{"location":{"x":0.5,"y":-0.699999988079071},"rotation":0.0,"mirrored":true,"abilityID":2,"tier":2,"secondaryData":"","partID":"SmallWing1"},{"location":{"x":-0.5,"y":-0.699999988079071},"rotation":0.0,"mirrored":false,"abilityID":12,"tier":1,"secondaryData":"","partID":"SmallWing1"},{"location":{"x":0.0,"y":-0.4000000059604645},"rotation":0.0,"mirrored":false,"abilityID":20,"tier":1,"secondaryData":"","partID":"SmallCenter5"}],"dialogue":{"instanceID":0},"useCustomDroneType":false,"customDroneType":0} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Missile Gladiator.json.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Missile Gladiator.json.meta new file mode 100644 index 000000000..4abd3e907 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Missile Gladiator.json.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 7b0b5f6bd5092e64d9cf320587314256 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Newborn.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Newborn.json new file mode 100644 index 000000000..1833af272 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Newborn.json @@ -0,0 +1 @@ +{"entityName":"Unnamed","coreSpriteID":"core1_light","coreShellSpriteID":"core1_shell","shellHealth":[1000.0,250.0,500.0],"baseRegen":[60.0,0.0,60.0],"intendedType":0,"parts":[],"dialogue":{"instanceID":0},"useCustomDroneType":false,"customDroneType":0} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Newborn.json.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Newborn.json.meta new file mode 100644 index 000000000..25cf3f094 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Newborn.json.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: f62eecc89265ee14ba745cd3b1a13767 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Northern Missile.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Northern Missile.json new file mode 100644 index 000000000..41ff247e6 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Northern Missile.json @@ -0,0 +1 @@ +{"entityName":"Unnamed","coreSpriteID":"core1_light","coreShellSpriteID":"core1_shell","shellHealth":[1000.0,250.0,500.0],"baseRegen":[60.0,0.0,60.0],"intendedType":0,"parts":[{"location":{"x":-0.30000001192092898,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":7,"tier":1,"secondaryData":"","partID":"SmallWing2","shiny":false},{"location":{"x":0.30000001192092898,"y":0.0},"rotation":0.0,"mirrored":true,"abilityID":13,"tier":1,"secondaryData":"","partID":"SmallWing2","shiny":false},{"location":{"x":0.0,"y":-0.4000000059604645},"rotation":0.0,"mirrored":false,"abilityID":19,"tier":1,"secondaryData":"","partID":"SmallCenter5","shiny":false},{"location":{"x":0.4000000059604645,"y":-0.6000000238418579},"rotation":0.0,"mirrored":false,"abilityID":6,"tier":1,"secondaryData":"","partID":"SmallWing1","shiny":false},{"location":{"x":-0.4000000059604645,"y":-0.6000000238418579},"rotation":0.0,"mirrored":true,"abilityID":6,"tier":1,"secondaryData":"","partID":"SmallWing1","shiny":false}],"dialogue":{"instanceID":0},"useCustomDroneType":false,"customDroneType":0} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Northern Missile.json.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Northern Missile.json.meta new file mode 100644 index 000000000..e8f93f427 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Northern Missile.json.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 33b7b7926bb26f24db384c2356371f35 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Raider.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Raider.json new file mode 100644 index 000000000..a28c7cddd --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Raider.json @@ -0,0 +1 @@ +{"entityName":"Raider","coreSpriteID":"core1_light","coreShellSpriteID":"core1_shell","shellHealth":[1000.0,250.0,500.0],"baseRegen":[60.0,0.0,60.0],"intendedType":0,"parts":[{"location":{"x":-0.5,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":1,"tier":1,"secondaryData":"","partID":"SmallCenter3","shiny":false},{"location":{"x":0.5,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":2,"tier":1,"secondaryData":"","partID":"SmallCenter3","shiny":false},{"location":{"x":-0.800000011920929,"y":0.699999988079071},"rotation":0.0,"mirrored":false,"abilityID":13,"tier":1,"secondaryData":"","partID":"SmallWing2","shiny":false},{"location":{"x":-0.800000011920929,"y":-0.4000000059604645},"rotation":180.0,"mirrored":true,"abilityID":12,"tier":1,"secondaryData":"","partID":"SmallWing2","shiny":false},{"location":{"x":0.800000011920929,"y":-0.4000000059604645},"rotation":180.0,"mirrored":false,"abilityID":20,"tier":1,"secondaryData":"","partID":"SmallWing2","shiny":false},{"location":{"x":0.800000011920929,"y":0.699999988079071},"rotation":0.0,"mirrored":true,"abilityID":13,"tier":1,"secondaryData":"","partID":"SmallWing2","shiny":false},{"location":{"x":0.8999999761581421,"y":0.20000000298023225},"rotation":90.0,"mirrored":false,"abilityID":6,"tier":1,"secondaryData":"","partID":"SmallCenter2","shiny":false},{"location":{"x":-0.8999999761581421,"y":0.20000000298023225},"rotation":-90.0,"mirrored":false,"abilityID":4,"tier":1,"secondaryData":"","partID":"SmallCenter2","shiny":false},{"location":{"x":0.0,"y":-0.4000000059604645},"rotation":0.0,"mirrored":false,"abilityID":10,"tier":0,"secondaryData":"strike_drone","partID":"SmallCenter4","shiny":false},{"location":{"x":-0.6000000834465027,"y":0.4000000059604645},"rotation":0.0,"mirrored":false,"abilityID":5,"tier":1,"secondaryData":"","partID":"SmallCenter1","shiny":false},{"location":{"x":0.6000000834465027,"y":0.4000000059604645},"rotation":0.0,"mirrored":false,"abilityID":5,"tier":1,"secondaryData":"","partID":"SmallCenter1","shiny":false}],"dialogue":{"m_FileID":0,"m_PathID":0},"useCustomDroneType":false,"customDroneType":0} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Raider.json.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Raider.json.meta new file mode 100644 index 000000000..d4704b012 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Raider.json.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 7c097f8d0aa3ec94e83cf12ea669bc50 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Rusher.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Rusher.json new file mode 100644 index 000000000..be3812eb4 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Rusher.json @@ -0,0 +1 @@ +{"entityName":"Unnamed","coreSpriteID":"core1_light","coreShellSpriteID":"core1_shell","shellHealth":[1000.0,250.0,500.0],"baseRegen":[60.0,0.0,60.0],"intendedType":0,"parts":[{"location":{"x":0.0,"y":-0.6000000238418579},"rotation":0.0,"mirrored":false,"abilityID":13,"tier":1,"secondaryData":"","partID":"SmallCenter5","shiny":false},{"location":{"x":0.6000000238418579,"y":0.0},"rotation":0.0,"mirrored":true,"abilityID":5,"tier":1,"secondaryData":"","partID":"SmallWing3","shiny":false},{"location":{"x":-0.6000000238418579,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":4,"tier":1,"secondaryData":"","partID":"SmallWing3","shiny":false},{"location":{"x":-0.800000011920929,"y":-0.4000000059604645},"rotation":60.0,"mirrored":false,"abilityID":13,"tier":1,"secondaryData":"","partID":"SmallSide3","shiny":false},{"location":{"x":0.800000011920929,"y":-0.4000000059604645},"rotation":120.0,"mirrored":false,"abilityID":13,"tier":1,"secondaryData":"","partID":"SmallSide3","shiny":false}],"dialogue":{"instanceID":0},"useCustomDroneType":false,"customDroneType":0} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Rusher.json.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Rusher.json.meta new file mode 100644 index 000000000..fea35a4f7 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Rusher.json.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 9705f1e8a4bf61d4a8300e9186ad1101 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Shellcore_comp_design_2.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Shellcore_comp_design_2.json new file mode 100644 index 000000000..6aa4cb420 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Shellcore_comp_design_2.json @@ -0,0 +1 @@ +{"entityName":"Unnamed","coreSpriteID":"core1_light","coreShellSpriteID":"core3skills_shell","shellHealth":[1000.0,250.0,500.0],"baseRegen":[60.0,0.0,60.0],"intendedType":0,"parts":[{"location":{"x":0.9142856597900391,"y":0.9142856597900391},"rotation":0.0,"mirrored":true,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigSide1"},{"location":{"x":-0.45714282989501955,"y":-0.45714282989501955},"rotation":0.0,"mirrored":false,"abilityID":12,"tier":2,"secondaryData":"mini_drone_spawn","partID":"MediumSide1"},{"location":{"x":0.45714282989501955,"y":-0.45714282989501955},"rotation":0.0,"mirrored":false,"abilityID":0,"tier":0,"secondaryData":"mini_drone","partID":"MediumSide1"},{"location":{"x":0.45714282989501955,"y":0.6857142448425293},"rotation":0.0,"mirrored":false,"abilityID":11,"tier":2,"secondaryData":"mini_drone","partID":"SmallWing3"},{"location":{"x":-0.45714282989501955,"y":0.6857142448425293},"rotation":0.0,"mirrored":false,"abilityID":5,"tier":1,"secondaryData":"mini_drone_spawn","partID":"SmallWing3"},{"location":{"x":-0.9142856597900391,"y":0.9142856597900391},"rotation":0.0,"mirrored":false,"abilityID":0,"tier":0,"secondaryData":"","partID":"BigSide1"},{"location":{"x":-0.22857141494750977,"y":1.1428570747375489},"rotation":0.0,"mirrored":true,"abilityID":7,"tier":2,"secondaryData":"mini_drone_spawn","partID":"SmallWing1"},{"location":{"x":0.22857141494750977,"y":1.1428570747375489},"rotation":0.0,"mirrored":false,"abilityID":11,"tier":1,"secondaryData":"mini_drone_spawn","partID":"SmallWing1"},{"location":{"x":-1.8285713195800782,"y":0.0},"rotation":0.0,"mirrored":true,"abilityID":5,"tier":3,"secondaryData":"","partID":"BigSide2"},{"location":{"x":1.8285713195800782,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":7,"tier":3,"secondaryData":"","partID":"BigSide2"},{"location":{"x":1.1428570747375489,"y":-1.1428570747375489},"rotation":0.0,"mirrored":true,"abilityID":20,"tier":2,"secondaryData":"","partID":"BigWing2"},{"location":{"x":-1.1428570747375489,"y":-1.1428570747375489},"rotation":0.0,"mirrored":false,"abilityID":2,"tier":1,"secondaryData":"","partID":"BigWing2"},{"location":{"x":-0.9142856597900391,"y":-0.22857141494750977},"rotation":0.0,"mirrored":false,"abilityID":7,"tier":3,"secondaryData":"mini_drone","partID":"SmallWing4"},{"location":{"x":0.9142856597900391,"y":-0.22857141494750977},"rotation":0.0,"mirrored":true,"abilityID":10,"tier":0,"secondaryData":"mini_drone","partID":"SmallWing4"}],"dialogue":""} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Shellcore_comp_design_2.json.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Shellcore_comp_design_2.json.meta new file mode 100644 index 000000000..d893a599b --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Shellcore_comp_design_2.json.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 6ea1be1ce8983b64485e441bad1f47cd +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Shoots Things.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Shoots Things.json new file mode 100644 index 000000000..366603398 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Shoots Things.json @@ -0,0 +1 @@ +{"entityName":"Unnamed","coreSpriteID":"core1_light","coreShellSpriteID":"core3skills_shell","shellHealth":[1000.0,250.0,500.0],"baseRegen":[60.0,0.0,60.0],"intendedType":0,"parts":[{"location":{"x":0.0,"y":1.0},"rotation":0.0,"mirrored":false,"abilityID":32,"tier":3,"secondaryData":"","partID":"BigCenter1","shiny":false},{"location":{"x":-1.100000023841858,"y":0.20000000298023225},"rotation":180.0,"mirrored":true,"abilityID":1,"tier":3,"secondaryData":"","partID":"MediumSide3","shiny":false},{"location":{"x":-1.0,"y":1.7000000476837159},"rotation":0.0,"mirrored":false,"abilityID":4,"tier":3,"secondaryData":"","partID":"BigSide1","shiny":false},{"location":{"x":1.100000023841858,"y":0.20000000298023225},"rotation":-180.0,"mirrored":false,"abilityID":1,"tier":3,"secondaryData":"","partID":"MediumSide3","shiny":false},{"location":{"x":1.0,"y":1.7000000476837159},"rotation":0.0,"mirrored":true,"abilityID":4,"tier":3,"secondaryData":"","partID":"BigSide1","shiny":false},{"location":{"x":0.800000011920929,"y":2.799999952316284},"rotation":-90.0,"mirrored":false,"abilityID":0,"tier":0,"secondaryData":"","partID":"SmallCenter2","shiny":false},{"location":{"x":-0.800000011920929,"y":2.799999952316284},"rotation":90.0,"mirrored":false,"abilityID":0,"tier":0,"secondaryData":"","partID":"SmallCenter2","shiny":false},{"location":{"x":0.8999999761581421,"y":-1.100000023841858},"rotation":180.0,"mirrored":false,"abilityID":13,"tier":3,"secondaryData":"","partID":"BigSide2","shiny":false},{"location":{"x":0.0,"y":-1.600000023841858},"rotation":0.0,"mirrored":false,"abilityID":19,"tier":3,"secondaryData":"","partID":"MediumCenter5","shiny":false},{"location":{"x":0.0,"y":-1.0},"rotation":0.0,"mirrored":false,"abilityID":13,"tier":2,"secondaryData":"","partID":"MediumCenter3","shiny":false},{"location":{"x":1.7000000476837159,"y":-1.5},"rotation":180.0,"mirrored":true,"abilityID":17,"tier":3,"secondaryData":"","partID":"BigSide1","shiny":false},{"location":{"x":-1.7000000476837159,"y":-1.5},"rotation":-180.0,"mirrored":false,"abilityID":17,"tier":3,"secondaryData":"","partID":"BigSide1","shiny":false},{"location":{"x":-1.7999999523162842,"y":-2.5999999046325685},"rotation":90.0,"mirrored":false,"abilityID":0,"tier":0,"secondaryData":"","partID":"SmallCenter2","shiny":false},{"location":{"x":1.7999999523162842,"y":-2.5999999046325685},"rotation":-90.0,"mirrored":false,"abilityID":0,"tier":0,"secondaryData":"","partID":"SmallCenter2","shiny":false},{"location":{"x":-1.0,"y":-0.5},"rotation":-180.0,"mirrored":true,"abilityID":13,"tier":3,"secondaryData":"","partID":"BigSide2","shiny":false}],"dialogue":{"instanceID":0},"useCustomDroneType":false,"customDroneType":0} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Shoots Things.json.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Shoots Things.json.meta new file mode 100644 index 000000000..1406aa276 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Shoots Things.json.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 51966b8d83a2dc445a88ccae8c2a0104 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Small Wing.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Small Wing.json new file mode 100644 index 000000000..4a9c863bc --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Small Wing.json @@ -0,0 +1 @@ +{"entityName":"Unnamed","coreSpriteID":"core1_light","coreShellSpriteID":"core1_shell","shellHealth":[1000.0,250.0,500.0],"baseRegen":[60.0,0.0,60.0],"intendedType":0,"parts":[{"location":{"x":0.4000000059604645,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":4,"tier":1,"secondaryData":"","partID":"SmallSide4","shiny":false},{"location":{"x":-0.4000000059604645,"y":0.0},"rotation":0.0,"mirrored":true,"abilityID":4,"tier":1,"secondaryData":"","partID":"SmallSide4","shiny":false},{"location":{"x":-0.699999988079071,"y":-0.4000000059604645},"rotation":-45.0,"mirrored":false,"abilityID":1,"tier":1,"secondaryData":"","partID":"SmallWing4","shiny":false},{"location":{"x":0.699999988079071,"y":-0.4000000059604645},"rotation":45.0,"mirrored":true,"abilityID":1,"tier":1,"secondaryData":"","partID":"SmallWing4","shiny":false},{"location":{"x":-0.4000000059604645,"y":0.5},"rotation":0.0,"mirrored":false,"abilityID":2,"tier":1,"secondaryData":"","partID":"SmallWing2","shiny":false},{"location":{"x":0.4000000059604645,"y":0.5},"rotation":0.0,"mirrored":true,"abilityID":2,"tier":1,"secondaryData":"","partID":"SmallWing2","shiny":false}],"dialogue":{"instanceID":0},"useCustomDroneType":false,"customDroneType":0} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Small Wing.json.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Small Wing.json.meta new file mode 100644 index 000000000..ef982a842 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Small Wing.json.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 416eb7e9f2ed30744b4256a7290c9600 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Southern Missile.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Southern Missile.json new file mode 100644 index 000000000..3ee82cf6a --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Southern Missile.json @@ -0,0 +1 @@ +{"entityName":"Unnamed","coreSpriteID":"core1_light","coreShellSpriteID":"core1_shell","shellHealth":[1000.0,250.0,500.0],"baseRegen":[60.0,0.0,60.0],"intendedType":0,"parts":[{"location":{"x":0.0,"y":0.30000001192092898},"rotation":0.0,"mirrored":false,"abilityID":12,"tier":1,"secondaryData":"","partID":"SmallCenter2","shiny":false},{"location":{"x":0.30000001192092898,"y":-0.10000000149011612},"rotation":0.0,"mirrored":true,"abilityID":6,"tier":1,"secondaryData":"","partID":"SmallWing2","shiny":false},{"location":{"x":-0.30000001192092898,"y":-0.10000000149011612},"rotation":0.0,"mirrored":false,"abilityID":6,"tier":1,"secondaryData":"","partID":"SmallWing2","shiny":false},{"location":{"x":0.0,"y":-0.4000000059604645},"rotation":0.0,"mirrored":false,"abilityID":13,"tier":1,"secondaryData":"","partID":"SmallCenter1","shiny":false},{"location":{"x":0.30000001192092898,"y":-0.5},"rotation":0.0,"mirrored":true,"abilityID":19,"tier":1,"secondaryData":"","partID":"SmallWing2","shiny":false},{"location":{"x":-0.30000001192092898,"y":-0.5},"rotation":0.0,"mirrored":false,"abilityID":7,"tier":1,"secondaryData":"","partID":"SmallWing2","shiny":false}],"dialogue":{"instanceID":0},"useCustomDroneType":false,"customDroneType":0} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Southern Missile.json.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Southern Missile.json.meta new file mode 100644 index 000000000..38dd4a0ae --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Southern Missile.json.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: aed37c1596fe96441a7b4cf27c4c2b61 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Super Light Core.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Super Light Core.json new file mode 100644 index 000000000..8e30daf1e --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Super Light Core.json @@ -0,0 +1 @@ +{"entityName":"Unnamed","coreSpriteID":"core1_light","coreShellSpriteID":"core1_shell","shellHealth":[1000.0,250.0,500.0],"baseRegen":[60.0,0.0,60.0],"intendedType":0,"parts":[{"location":{"x":-0.5,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":2,"tier":1,"secondaryData":"","partID":"SmallWing2","shiny":false},{"location":{"x":0.5,"y":0.0},"rotation":0.0,"mirrored":true,"abilityID":5,"tier":1,"secondaryData":"","partID":"SmallWing2","shiny":false}],"dialogue":{"instanceID":0},"useCustomDroneType":false,"customDroneType":0} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Super Light Core.json.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Super Light Core.json.meta new file mode 100644 index 000000000..6b094616c --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Super Light Core.json.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 5e3c420ef389218429b85fbee86f18f8 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Uninfected Leader.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Uninfected Leader.json new file mode 100644 index 000000000..d4b3977a2 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Uninfected Leader.json @@ -0,0 +1 @@ +{"entityName":"Unnamed","coreSpriteID":"core1_light","coreShellSpriteID":"core3skills_shell","shellHealth":[1000.0,250.0,500.0],"baseRegen":[60.0,0.0,60.0],"intendedType":0,"parts":[{"location":{"x":-1.600000023841858,"y":0.30000004172325137},"rotation":-90.0,"mirrored":false,"abilityID":25,"tier":2,"secondaryData":"","partID":"BigSide1","shiny":false},{"location":{"x":1.600000023841858,"y":0.30000001192092898},"rotation":90.0,"mirrored":true,"abilityID":25,"tier":2,"secondaryData":"","partID":"BigSide1","shiny":false},{"location":{"x":0.0,"y":1.2000000476837159},"rotation":0.0,"mirrored":false,"abilityID":18,"tier":3,"secondaryData":"","partID":"BigCenter1","shiny":false},{"location":{"x":1.100000023841858,"y":2.0999999046325685},"rotation":-180.0,"mirrored":false,"abilityID":19,"tier":3,"secondaryData":"","partID":"BigSide1","shiny":false},{"location":{"x":-1.100000023841858,"y":2.0999999046325685},"rotation":-180.0,"mirrored":true,"abilityID":19,"tier":3,"secondaryData":"","partID":"BigSide1","shiny":false},{"location":{"x":0.0,"y":2.1999998092651369},"rotation":-180.0,"mirrored":false,"abilityID":13,"tier":2,"secondaryData":"","partID":"MediumCenter3","shiny":false},{"location":{"x":0.0,"y":-0.800000011920929},"rotation":0.0,"mirrored":false,"abilityID":19,"tier":2,"secondaryData":"","partID":"MediumCenter4","shiny":false},{"location":{"x":1.600000023841858,"y":-0.5},"rotation":90.0,"mirrored":true,"abilityID":7,"tier":3,"secondaryData":"","partID":"BigSide1","shiny":false},{"location":{"x":-1.600000023841858,"y":-0.5},"rotation":-90.0,"mirrored":false,"abilityID":6,"tier":3,"secondaryData":"","partID":"BigSide1","shiny":false},{"location":{"x":-1.9000003337860108,"y":-1.600000023841858},"rotation":-90.0,"mirrored":false,"abilityID":4,"tier":3,"secondaryData":"","partID":"BigSide4","shiny":false},{"location":{"x":1.899999976158142,"y":-1.600000023841858},"rotation":90.0,"mirrored":true,"abilityID":4,"tier":3,"secondaryData":"","partID":"BigSide4","shiny":false},{"location":{"x":-0.8999996781349182,"y":-1.9999998807907105},"rotation":-180.0,"mirrored":false,"abilityID":19,"tier":3,"secondaryData":"","partID":"BigSide1","shiny":false},{"location":{"x":0.8999999761581421,"y":-2.0},"rotation":180.0,"mirrored":true,"abilityID":19,"tier":3,"secondaryData":"","partID":"BigSide1","shiny":false},{"location":{"x":-2.799999952316284,"y":-3.0},"rotation":0.0,"mirrored":false,"abilityID":4,"tier":3,"secondaryData":"","partID":"BigWing1","shiny":false},{"location":{"x":-1.1000001430511475,"y":-3.5999999046325685},"rotation":0.0,"mirrored":false,"abilityID":13,"tier":3,"secondaryData":"","partID":"BigWing1","shiny":false},{"location":{"x":-1.799999713897705,"y":-2.5999999046325685},"rotation":180.0,"mirrored":true,"abilityID":13,"tier":3,"secondaryData":"","partID":"BigSide2","shiny":false},{"location":{"x":1.0999996662139893,"y":-3.5999999046325685},"rotation":0.0,"mirrored":true,"abilityID":13,"tier":3,"secondaryData":"","partID":"BigWing1","shiny":false},{"location":{"x":2.8000001907348635,"y":-3.0},"rotation":0.0,"mirrored":true,"abilityID":4,"tier":3,"secondaryData":"","partID":"BigWing1","shiny":false},{"location":{"x":1.7999999523162842,"y":-2.5999999046325685},"rotation":-180.0,"mirrored":false,"abilityID":13,"tier":3,"secondaryData":"","partID":"BigSide2","shiny":false}],"dialogue":{"instanceID":0},"useCustomDroneType":false,"customDroneType":0} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Uninfected Leader.json.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Uninfected Leader.json.meta new file mode 100644 index 000000000..b96647a6d --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/Uninfected Leader.json.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: e8b24a2465b828c459911d94c6d81224 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/aristu.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/aristu.json new file mode 100644 index 000000000..6761a6b82 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/aristu.json @@ -0,0 +1 @@ +{"entityName":"Unnamed","coreSpriteID":"core1_light","coreShellSpriteID":"core2_shell","shellHealth":[1000.0,250.0,500.0],"baseRegen":[60.0,0.0,60.0],"intendedType":0,"parts":[{"location":{"x":-0.8999999761581421,"y":0.10000000149011612},"rotation":-180.0,"mirrored":false,"abilityID":7,"tier":2,"secondaryData":"","partID":"MediumWing2","shiny":false},{"location":{"x":-1.600000023841858,"y":0.699999988079071},"rotation":0.0,"mirrored":false,"abilityID":25,"tier":2,"secondaryData":"","partID":"MediumExtra2","shiny":false},{"location":{"x":-1.7999999523162842,"y":-0.4000000059604645},"rotation":0.0,"mirrored":false,"abilityID":6,"tier":2,"secondaryData":"","partID":"SmallWing3","shiny":false},{"location":{"x":0.8999999761581421,"y":0.10000000149011612},"rotation":180.0,"mirrored":true,"abilityID":7,"tier":2,"secondaryData":"","partID":"MediumWing2","shiny":false},{"location":{"x":1.600000023841858,"y":0.699999988079071},"rotation":0.0,"mirrored":true,"abilityID":25,"tier":2,"secondaryData":"","partID":"MediumExtra2","shiny":false},{"location":{"x":1.7999999523162842,"y":-0.4000000059604645},"rotation":0.0,"mirrored":true,"abilityID":6,"tier":2,"secondaryData":"","partID":"SmallWing3","shiny":false},{"location":{"x":0.6000000238418579,"y":-0.8999999761581421},"rotation":180.0,"mirrored":false,"abilityID":4,"tier":2,"secondaryData":"","partID":"MediumSide4","shiny":false},{"location":{"x":-0.6000000238418579,"y":-0.8999999761581421},"rotation":180.0,"mirrored":true,"abilityID":4,"tier":2,"secondaryData":"","partID":"MediumSide4","shiny":false},{"location":{"x":0.5,"y":0.699999988079071},"rotation":180.0,"mirrored":false,"abilityID":5,"tier":2,"secondaryData":"","partID":"SmallWing3","shiny":false},{"location":{"x":-0.5000002980232239,"y":0.699999988079071},"rotation":-180.0,"mirrored":true,"abilityID":5,"tier":2,"secondaryData":"","partID":"SmallWing3","shiny":false},{"location":{"x":-1.2999999523162842,"y":1.600000023841858},"rotation":0.0,"mirrored":false,"abilityID":13,"tier":2,"secondaryData":"","partID":"MediumWing1","shiny":false},{"location":{"x":1.2999999523162842,"y":1.600000023841858},"rotation":0.0,"mirrored":true,"abilityID":13,"tier":2,"secondaryData":"","partID":"MediumWing1","shiny":false},{"location":{"x":0.0,"y":1.2999999523162842},"rotation":0.0,"mirrored":false,"abilityID":1,"tier":2,"secondaryData":"","partID":"MediumExtra1","shiny":false},{"location":{"x":-1.5,"y":-1.2000000476837159},"rotation":90.0,"mirrored":false,"abilityID":19,"tier":2,"secondaryData":"","partID":"MediumWing3","shiny":false},{"location":{"x":1.5,"y":-1.2000001668930054},"rotation":-90.0,"mirrored":true,"abilityID":19,"tier":2,"secondaryData":"","partID":"MediumWing3","shiny":false}],"dialogue":{"instanceID":0},"useCustomDroneType":false,"customDroneType":0} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/aristu.json.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/aristu.json.meta new file mode 100644 index 000000000..a89a3df66 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/aristu.json.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: ee28beac09ad28248be53187d8a25fd0 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/aristu_2.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/aristu_2.json new file mode 100644 index 000000000..3649a51e7 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/aristu_2.json @@ -0,0 +1 @@ +{"entityName":"Unnamed","coreSpriteID":"core1_light","coreShellSpriteID":"core2_shell","shellHealth":[1000.0,250.0,500.0],"baseRegen":[60.0,0.0,60.0],"intendedType":0,"parts":[{"location":{"x":0.5,"y":0.699999988079071},"rotation":180.0,"mirrored":false,"abilityID":5,"tier":2,"secondaryData":"","partID":"SmallWing3","shiny":false},{"location":{"x":-0.5000002980232239,"y":0.699999988079071},"rotation":-180.0,"mirrored":true,"abilityID":5,"tier":2,"secondaryData":"","partID":"SmallWing3","shiny":false},{"location":{"x":0.0,"y":1.2999999523162842},"rotation":0.0,"mirrored":false,"abilityID":1,"tier":2,"secondaryData":"","partID":"MediumExtra1","shiny":false},{"location":{"x":0.0,"y":-1.0},"rotation":90.0,"mirrored":false,"abilityID":10,"tier":0,"secondaryData":"gun_drone","partID":"MediumSide2","shiny":false},{"location":{"x":-1.100000023841858,"y":-0.9000001549720764},"rotation":90.0,"mirrored":false,"abilityID":19,"tier":2,"secondaryData":"","partID":"MediumWing3","shiny":false},{"location":{"x":0.5000002980232239,"y":0.20000000298023225},"rotation":0.0,"mirrored":true,"abilityID":7,"tier":1,"secondaryData":"gun_drone","partID":"SmallWing2","shiny":false},{"location":{"x":-0.5000000596046448,"y":0.20000000298023225},"rotation":0.0,"mirrored":false,"abilityID":7,"tier":1,"secondaryData":"gun_drone","partID":"SmallWing2","shiny":false},{"location":{"x":-0.7999998331069946,"y":-0.20000001788139344},"rotation":-45.0,"mirrored":false,"abilityID":6,"tier":1,"secondaryData":"gun_drone","partID":"SmallWing2","shiny":false},{"location":{"x":0.0,"y":0.699999988079071},"rotation":0.0,"mirrored":false,"abilityID":4,"tier":1,"secondaryData":"gun_drone","partID":"SmallCenter2","shiny":false},{"location":{"x":0.0,"y":-1.5},"rotation":0.0,"mirrored":false,"abilityID":24,"tier":0,"secondaryData":"","partID":"SmallCenter2","shiny":false},{"location":{"x":1.100000023841858,"y":-0.9000001549720764},"rotation":-90.0,"mirrored":true,"abilityID":13,"tier":2,"secondaryData":"","partID":"MediumWing3","shiny":false},{"location":{"x":0.800000011920929,"y":-0.20000001788139344},"rotation":45.0,"mirrored":true,"abilityID":6,"tier":1,"secondaryData":"gun_drone","partID":"SmallWing2","shiny":false}],"dialogue":{"instanceID":0},"useCustomDroneType":false,"customDroneType":0} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/aristu_2.json.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/aristu_2.json.meta new file mode 100644 index 000000000..95388f744 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/aristu_2.json.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: c052af4a4ecd21f4c8c3d40afe76fb5a +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/daayo b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/daayo new file mode 100644 index 000000000..105c48039 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/daayo @@ -0,0 +1 @@ +{"entityName":"Unnamed","coreSpriteID":"core1_light","coreShellSpriteID":"core1_shell","shellHealth":[1000.0,250.0,500.0],"baseRegen":[60.0,0.0,60.0],"intendedType":0,"parts":[{"location":{"x":0.4000000059604645,"y":-0.20000000298023225},"rotation":0.0,"mirrored":true,"abilityID":12,"tier":1,"secondaryData":"","partID":"SmallWing1"},{"location":{"x":-0.4000000059604645,"y":-0.20000000298023225},"rotation":0.0,"mirrored":false,"abilityID":2,"tier":1,"secondaryData":"","partID":"SmallWing1"},{"location":{"x":0.0,"y":-0.5},"rotation":0.0,"mirrored":false,"abilityID":4,"tier":1,"secondaryData":"","partID":"SmallCenter5"},{"location":{"x":0.20000000298023225,"y":-0.8999999761581421},"rotation":0.0,"mirrored":true,"abilityID":13,"tier":1,"secondaryData":"","partID":"SmallSide1"},{"location":{"x":-0.20000000298023225,"y":-0.8999999761581421},"rotation":0.0,"mirrored":false,"abilityID":1,"tier":1,"secondaryData":"","partID":"SmallSide1"}],"dialogue":{"instanceID":0},"useCustomDroneType":false,"customDroneType":0} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/daayo.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/daayo.meta new file mode 100644 index 000000000..8975470f2 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/daayo.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 2e524cc7ed7aff045bd1afc7e42a363f +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/sukrat.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/sukrat.json new file mode 100644 index 000000000..559efd5ef --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/sukrat.json @@ -0,0 +1 @@ +{"entityName":"Unnamed","coreSpriteID":"core1_light","coreShellSpriteID":"core1_shell","shellHealth":[1000.0,250.0,500.0],"baseRegen":[60.0,0.0,60.0],"intendedType":0,"parts":[{"location":{"x":0.0,"y":-0.4000000059604645},"rotation":0.0,"mirrored":false,"abilityID":1,"tier":1,"secondaryData":"","partID":"SmallCenter5"},{"location":{"x":0.4000000059604645,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":5,"tier":1,"secondaryData":"","partID":"SmallWing1"},{"location":{"x":-0.4000000059604645,"y":0.0},"rotation":0.0,"mirrored":true,"abilityID":5,"tier":1,"secondaryData":"","partID":"SmallWing1"},{"location":{"x":0.20000000298023225,"y":0.6000000238418579},"rotation":0.0,"mirrored":true,"abilityID":1,"tier":1,"secondaryData":"","partID":"SmallWing2"},{"location":{"x":-0.20000000298023225,"y":0.6000000238418579},"rotation":0.0,"mirrored":false,"abilityID":1,"tier":1,"secondaryData":"","partID":"SmallWing2"}],"dialogue":{"m_FileID":0,"m_PathID":0},"useCustomDroneType":false,"customDroneType":0} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/sukrat.json.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/sukrat.json.meta new file mode 100644 index 000000000..a60b63e04 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/sukrat.json.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: d512a61c34be8f344854a7c379782e51 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/sukrat_2.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/sukrat_2.json new file mode 100644 index 000000000..ed2e68e35 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/sukrat_2.json @@ -0,0 +1 @@ +{"entityName":"Unnamed","coreSpriteID":"core1_light","coreShellSpriteID":"core2_shell","shellHealth":[1000.0,250.0,500.0],"baseRegen":[60.0,0.0,60.0],"intendedType":0,"parts":[{"location":{"x":-0.5,"y":-0.30000001192092898},"rotation":0.0,"mirrored":false,"abilityID":13,"tier":2,"secondaryData":"","partID":"MediumWing1","shiny":false},{"location":{"x":0.5,"y":-0.30000001192092898},"rotation":0.0,"mirrored":true,"abilityID":13,"tier":2,"secondaryData":"","partID":"MediumWing1","shiny":false},{"location":{"x":-0.5,"y":0.800000011920929},"rotation":0.0,"mirrored":false,"abilityID":13,"tier":2,"secondaryData":"","partID":"MediumWing1","shiny":false},{"location":{"x":0.5,"y":0.800000011920929},"rotation":0.0,"mirrored":true,"abilityID":13,"tier":2,"secondaryData":"","partID":"MediumWing1","shiny":false},{"location":{"x":0.4000000059604645,"y":1.5},"rotation":-180.0,"mirrored":false,"abilityID":5,"tier":2,"secondaryData":"","partID":"SmallWing3","shiny":false},{"location":{"x":-0.4000000059604645,"y":1.5},"rotation":180.0,"mirrored":true,"abilityID":5,"tier":2,"secondaryData":"","partID":"SmallWing3","shiny":false},{"location":{"x":-1.0,"y":0.10000000149011612},"rotation":0.0,"mirrored":false,"abilityID":5,"tier":2,"secondaryData":"","partID":"SmallWing3","shiny":false},{"location":{"x":1.0,"y":0.10000000149011612},"rotation":0.0,"mirrored":true,"abilityID":5,"tier":2,"secondaryData":"","partID":"SmallWing3","shiny":false},{"location":{"x":0.6000000238418579,"y":-1.600000023841858},"rotation":-90.0,"mirrored":true,"abilityID":10,"tier":0,"secondaryData":"counter_drone","partID":"MediumSide1","shiny":false},{"location":{"x":1.3000003099441529,"y":-2.200000047683716},"rotation":0.0,"mirrored":false,"abilityID":1,"tier":2,"secondaryData":"","partID":"MediumExtra1","shiny":false},{"location":{"x":0.0,"y":2.3000001907348635},"rotation":0.0,"mirrored":false,"abilityID":30,"tier":2,"secondaryData":"","partID":"MediumCenter2","shiny":false},{"location":{"x":1.2999999523162842,"y":-1.0},"rotation":0.0,"mirrored":true,"abilityID":4,"tier":2,"secondaryData":"","partID":"MediumSide4","shiny":false},{"location":{"x":0.5000001788139343,"y":-2.499999761581421},"rotation":-180.0,"mirrored":false,"abilityID":13,"tier":2,"secondaryData":"","partID":"MediumWing1","shiny":false},{"location":{"x":-0.6000000238418579,"y":-1.600000023841858},"rotation":90.0,"mirrored":false,"abilityID":10,"tier":0,"secondaryData":"counter_drone","partID":"MediumSide1","shiny":false},{"location":{"x":-1.2999999523162842,"y":-2.1999998092651369},"rotation":0.0,"mirrored":false,"abilityID":1,"tier":2,"secondaryData":"","partID":"MediumExtra1","shiny":false},{"location":{"x":-1.2999999523162842,"y":-1.0},"rotation":0.0,"mirrored":false,"abilityID":4,"tier":2,"secondaryData":"","partID":"MediumSide4","shiny":false},{"location":{"x":-0.49999961256980898,"y":-2.500000238418579},"rotation":-180.0,"mirrored":true,"abilityID":13,"tier":2,"secondaryData":"","partID":"MediumWing1","shiny":false}],"dialogue":{"instanceID":0},"useCustomDroneType":false,"customDroneType":0} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/sukrat_2.json.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/sukrat_2.json.meta new file mode 100644 index 000000000..dbd445048 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/sukrat_2.json.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 9c3f6de005f48db4684311d77e622b93 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/sukrat_3.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/sukrat_3.json new file mode 100644 index 000000000..a92273b72 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/sukrat_3.json @@ -0,0 +1 @@ +{"entityName":"Unnamed","coreSpriteID":"core1_light","coreShellSpriteID":"core2_shell","shellHealth":[1000.0,250.0,500.0],"baseRegen":[60.0,0.0,60.0],"intendedType":0,"parts":[{"location":{"x":0.30000001192092898,"y":0.4000000059604645},"rotation":0.0,"mirrored":true,"abilityID":4,"tier":1,"secondaryData":"","partID":"SmallWing1","shiny":false},{"location":{"x":-0.30000001192092898,"y":0.4000000059604645},"rotation":0.0,"mirrored":false,"abilityID":4,"tier":1,"secondaryData":"","partID":"SmallWing1","shiny":false},{"location":{"x":0.7000000476837158,"y":-0.20000015199184419},"rotation":-180.0,"mirrored":true,"abilityID":13,"tier":2,"secondaryData":"","partID":"MediumWing1","shiny":false},{"location":{"x":-0.7000001668930054,"y":-0.1999998539686203},"rotation":-180.0,"mirrored":false,"abilityID":13,"tier":2,"secondaryData":"","partID":"MediumWing1","shiny":false},{"location":{"x":-0.29999980330467226,"y":0.8999999761581421},"rotation":0.0,"mirrored":false,"abilityID":5,"tier":1,"secondaryData":"","partID":"SmallWing2","shiny":false},{"location":{"x":0.30000001192092898,"y":0.8999998569488525},"rotation":0.0,"mirrored":true,"abilityID":5,"tier":1,"secondaryData":"","partID":"SmallWing2","shiny":false},{"location":{"x":0.6000000238418579,"y":0.6999998688697815},"rotation":0.0,"mirrored":true,"abilityID":5,"tier":1,"secondaryData":"","partID":"SmallWing2","shiny":false},{"location":{"x":-0.6000000238418579,"y":0.699999988079071},"rotation":0.0,"mirrored":false,"abilityID":5,"tier":1,"secondaryData":"","partID":"SmallWing2","shiny":false},{"location":{"x":0.0,"y":-0.800000011920929},"rotation":-90.0,"mirrored":false,"abilityID":13,"tier":1,"secondaryData":"","partID":"SmallSide4","shiny":false},{"location":{"x":0.30000001192092898,"y":-1.2000000476837159},"rotation":-165.0,"mirrored":false,"abilityID":13,"tier":1,"secondaryData":"","partID":"SmallSide4","shiny":false},{"location":{"x":-0.29999983310699465,"y":-1.200000286102295},"rotation":-15.0,"mirrored":false,"abilityID":13,"tier":1,"secondaryData":"","partID":"SmallSide4","shiny":false},{"location":{"x":1.2000000476837159,"y":-1.100000023841858},"rotation":30.0,"mirrored":false,"abilityID":13,"tier":1,"secondaryData":"","partID":"SmallSide4","shiny":false},{"location":{"x":-1.2000001668930054,"y":-1.100000262260437},"rotation":150.0,"mirrored":false,"abilityID":13,"tier":1,"secondaryData":"","partID":"SmallSide4","shiny":false},{"location":{"x":0.0,"y":-1.7999999523162842},"rotation":0.0,"mirrored":false,"abilityID":1,"tier":2,"secondaryData":"","partID":"MediumExtra1","shiny":false},{"location":{"x":-0.699999988079071,"y":-1.100000023841858},"rotation":0.0,"mirrored":false,"abilityID":1,"tier":1,"secondaryData":"gun_drone","partID":"SmallWing2","shiny":false},{"location":{"x":0.699999988079071,"y":-1.100000023841858},"rotation":0.0,"mirrored":true,"abilityID":1,"tier":1,"secondaryData":"gun_drone","partID":"SmallWing2","shiny":false},{"location":{"x":-1.399999976158142,"y":-1.600000023841858},"rotation":165.0,"mirrored":false,"abilityID":13,"tier":1,"secondaryData":"","partID":"SmallSide4","shiny":false},{"location":{"x":1.399999976158142,"y":-1.600000023841858},"rotation":15.0,"mirrored":false,"abilityID":13,"tier":1,"secondaryData":"","partID":"SmallSide4","shiny":false},{"location":{"x":0.0,"y":1.2999999523162842},"rotation":0.0,"mirrored":false,"abilityID":24,"tier":0,"secondaryData":"","partID":"SmallCenter2","shiny":false},{"location":{"x":-0.19999998807907105,"y":1.5999999046325684},"rotation":0.0,"mirrored":true,"abilityID":13,"tier":1,"secondaryData":"gun_drone","partID":"SmallSide3","shiny":false},{"location":{"x":0.20000000298023225,"y":1.600000023841858},"rotation":0.0,"mirrored":false,"abilityID":13,"tier":1,"secondaryData":"gun_drone","partID":"SmallSide3","shiny":false}],"dialogue":{"instanceID":0},"useCustomDroneType":false,"customDroneType":0} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/sukrat_3.json.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/sukrat_3.json.meta new file mode 100644 index 000000000..8b35356cc --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Entities/sukrat_3.json.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 765d2600caae0df41a72ed3db11167db +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Waves.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Waves.meta new file mode 100644 index 000000000..0bd7b6d4b --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Waves.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8fad16ed0c098de4e86ef9fbc5d10eeb +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Waves/beta.json b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Waves/beta.json new file mode 100644 index 000000000..93d19589d --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Waves/beta.json @@ -0,0 +1 @@ +{"waves":[{"entities":[{"entity":{"name":"Mini Drone","ID":"","faction":1,"assetID":"mini_drone_blueprint","blueprintJSON":"","dialogueID":"","vendingID":"","pathID":"","position":{"x":0.0,"y":0.0},"patrolPath":{"waypoints":[]}},"timeSinceWaveStartToSpawn":5.0,"flagName":"flag_beta_south_carrier"},{"entity":{"name":"Mini Drone","ID":"","faction":1,"assetID":"mini_drone_blueprint","blueprintJSON":"","dialogueID":"","vendingID":"","pathID":"","position":{"x":0.0,"y":0.0},"patrolPath":{"waypoints":[]}},"timeSinceWaveStartToSpawn":5.0,"flagName":"flag_beta_north_carrier"},{"entity":{"name":"Strike Drone","ID":"","faction":1,"assetID":"strike_drone_blueprint","blueprintJSON":"","dialogueID":"","vendingID":"","pathID":"","position":{"x":0.0,"y":0.0},"patrolPath":{"waypoints":[]}},"timeSinceWaveStartToSpawn":10.0,"flagName":"flag_beta_north_carrier"},{"entity":{"name":"Strike Drone","ID":"","faction":1,"assetID":"strike_drone_blueprint","blueprintJSON":"","dialogueID":"","vendingID":"","pathID":"","position":{"x":0.0,"y":0.0},"patrolPath":{"waypoints":[]}},"timeSinceWaveStartToSpawn":10.0,"flagName":"flag_beta_south_carrier"},{"entity":{"name":"Light Drone","ID":"","faction":1,"assetID":"light_drone_blueprint","blueprintJSON":"","dialogueID":"","vendingID":"","pathID":"","position":{"x":0.0,"y":0.0},"patrolPath":{"waypoints":[]}},"timeSinceWaveStartToSpawn":20.0,"flagName":"flag_beta_south_carrier"},{"entity":{"name":"Light Drone","ID":"","faction":1,"assetID":"light_drone_blueprint","blueprintJSON":"","dialogueID":"","vendingID":"","pathID":"","position":{"x":0.0,"y":0.0},"patrolPath":{"waypoints":[]}},"timeSinceWaveStartToSpawn":20.0,"flagName":"flag_beta_south_carrier"},{"entity":{"name":"Light Drone","ID":"","faction":1,"assetID":"light_drone_blueprint","blueprintJSON":"","dialogueID":"","vendingID":"","pathID":"","position":{"x":0.0,"y":0.0},"patrolPath":{"waypoints":[]}},"timeSinceWaveStartToSpawn":30.0,"flagName":"flag_beta_south_carrier"},{"entity":{"name":"Light Drone","ID":"","faction":1,"assetID":"light_drone_blueprint","blueprintJSON":"","dialogueID":"","vendingID":"","pathID":"","position":{"x":0.0,"y":0.0},"patrolPath":{"waypoints":[]}},"timeSinceWaveStartToSpawn":30.0,"flagName":"flag_beta_south_carrier"},{"entity":{"name":"Strike Drone","ID":"","faction":1,"assetID":"strike_drone_blueprint","blueprintJSON":"","dialogueID":"","vendingID":"","pathID":"","position":{"x":0.0,"y":0.0},"patrolPath":{"waypoints":[]}},"timeSinceWaveStartToSpawn":30.0,"flagName":"flag_beta_north_carrier"},{"entity":{"name":"Light Drone","ID":"","faction":1,"assetID":"light_drone_blueprint","blueprintJSON":"","dialogueID":"","vendingID":"","pathID":"","position":{"x":0.0,"y":0.0},"patrolPath":{"waypoints":[]}},"timeSinceWaveStartToSpawn":45.0,"flagName":"flag_beta_north_carrier"},{"entity":{"name":"Light Drone","ID":"","faction":1,"assetID":"light_drone_blueprint","blueprintJSON":"","dialogueID":"","vendingID":"","pathID":"","position":{"x":0.0,"y":0.0},"patrolPath":{"waypoints":[]}},"timeSinceWaveStartToSpawn":45.0,"flagName":"flag_beta_north_carrier"},{"entity":{"name":"Gun Drone","ID":"","faction":1,"assetID":"gun_drone_blueprint","blueprintJSON":"","dialogueID":"","vendingID":"","pathID":"","position":{"x":0.0,"y":0.0},"patrolPath":{"waypoints":[]}},"timeSinceWaveStartToSpawn":45.0,"flagName":"flag_beta_north_carrier"}]},{"entities":[{"entity":{"name":"Mini Drone","ID":"","faction":1,"assetID":"mini_drone_blueprint","blueprintJSON":"","dialogueID":"","vendingID":"","pathID":"","position":{"x":0.0,"y":0.0},"patrolPath":{"waypoints":[]}},"timeSinceWaveStartToSpawn":5.0,"flagName":"flag_beta_north_carrier"},{"entity":{"name":"Mini Drone","ID":"","faction":1,"assetID":"mini_drone_blueprint","blueprintJSON":"","dialogueID":"","vendingID":"","pathID":"","position":{"x":0.0,"y":0.0},"patrolPath":{"waypoints":[]}},"timeSinceWaveStartToSpawn":5.0,"flagName":"flag_beta_north_carrier"},{"entity":{"name":"Mini Drone","ID":"","faction":1,"assetID":"mini_drone_blueprint","blueprintJSON":"","dialogueID":"","vendingID":"","pathID":"","position":{"x":0.0,"y":0.0},"patrolPath":{"waypoints":[]}},"timeSinceWaveStartToSpawn":5.0,"flagName":"flag_beta_north_carrier"},{"entity":{"name":"Mini Drone","ID":"","faction":1,"assetID":"mini_drone_blueprint","blueprintJSON":"","dialogueID":"","vendingID":"","pathID":"","position":{"x":0.0,"y":0.0},"patrolPath":{"waypoints":[]}},"timeSinceWaveStartToSpawn":5.0,"flagName":"flag_beta_south_carrier"},{"entity":{"name":"Mini Drone","ID":"","faction":1,"assetID":"mini_drone_blueprint","blueprintJSON":"","dialogueID":"","vendingID":"","pathID":"","position":{"x":0.0,"y":0.0},"patrolPath":{"waypoints":[]}},"timeSinceWaveStartToSpawn":5.0,"flagName":"flag_beta_south_carrier"},{"entity":{"name":"Mini Drone","ID":"","faction":1,"assetID":"mini_drone_blueprint","blueprintJSON":"","dialogueID":"","vendingID":"","pathID":"","position":{"x":0.0,"y":0.0},"patrolPath":{"waypoints":[]}},"timeSinceWaveStartToSpawn":5.0,"flagName":"flag_beta_south_carrier"},{"entity":{"name":"Light Drone","ID":"","faction":1,"assetID":"light_drone_blueprint","blueprintJSON":"","dialogueID":"","vendingID":"","pathID":"","position":{"x":0.0,"y":0.0},"patrolPath":{"waypoints":[]}},"timeSinceWaveStartToSpawn":12.0,"flagName":"flag_beta_south_carrier"},{"entity":{"name":"Light Drone","ID":"","faction":1,"assetID":"light_drone_blueprint","blueprintJSON":"","dialogueID":"","vendingID":"","pathID":"","position":{"x":0.0,"y":0.0},"patrolPath":{"waypoints":[]}},"timeSinceWaveStartToSpawn":12.0,"flagName":"flag_beta_south_carrier"},{"entity":{"name":"Strike Drone","ID":"","faction":1,"assetID":"strike_drone_blueprint","blueprintJSON":"","dialogueID":"","vendingID":"","pathID":"","position":{"x":0.0,"y":0.0},"patrolPath":{"waypoints":[]}},"timeSinceWaveStartToSpawn":16.0,"flagName":"flag_beta_north_carrier"},{"entity":{"name":"Strike Drone","ID":"","faction":1,"assetID":"strike_drone_blueprint","blueprintJSON":"","dialogueID":"","vendingID":"","pathID":"","position":{"x":0.0,"y":0.0},"patrolPath":{"waypoints":[]}},"timeSinceWaveStartToSpawn":16.0,"flagName":"flag_beta_north_carrier"},{"entity":{"name":"Gun Drone","ID":"","faction":1,"assetID":"gun_drone_blueprint","blueprintJSON":"","dialogueID":"","vendingID":"","pathID":"","position":{"x":0.0,"y":0.0},"patrolPath":{"waypoints":[]}},"timeSinceWaveStartToSpawn":25.0,"flagName":"flag_beta_north_carrier"},{"entity":{"name":"Strike Drone","ID":"","faction":1,"assetID":"strike_drone_blueprint","blueprintJSON":"","dialogueID":"","vendingID":"","pathID":"","position":{"x":0.0,"y":0.0},"patrolPath":{"waypoints":[]}},"timeSinceWaveStartToSpawn":25.0,"flagName":"flag_beta_south_carrier"}]},{"entities":[{"entity":{"name":"Counter Drone","ID":"","faction":1,"assetID":"counter_drone_blueprint","blueprintJSON":"","dialogueID":"","vendingID":"","pathID":"","position":{"x":0.0,"y":0.0},"patrolPath":{"waypoints":[]}},"timeSinceWaveStartToSpawn":5.0,"flagName":"flag_beta_north_carrier"},{"entity":{"name":"Counter Drone","ID":"","faction":1,"assetID":"counter_drone_blueprint","blueprintJSON":"","dialogueID":"","vendingID":"","pathID":"","position":{"x":0.0,"y":0.0},"patrolPath":{"waypoints":[]}},"timeSinceWaveStartToSpawn":5.0,"flagName":"flag_beta_south_carrier"},{"entity":{"name":"Unnamed","ID":"","faction":1,"assetID":"shellcore_blueprint","blueprintJSON":"{\"entityName\":\"Unnamed\",\"coreSpriteID\":\"core1_light\",\"coreShellSpriteID\":\"core1_shell\",\"shellHealth\":[1000.0,250.0,500.0],\"baseRegen\":[60.0,0.0,60.0],\"intendedType\":0,\"parts\":[{\"location\":{\"x\":-0.30000001192092898,\"y\":0.10000000149011612},\"rotation\":0.0,\"mirrored\":false,\"abilityID\":5,\"tier\":1,\"secondaryData\":\"\",\"partID\":\"SmallSide2\",\"shiny\":false},{\"location\":{\"x\":-0.30000001192092898,\"y\":-0.30000001192092898},\"rotation\":0.0,\"mirrored\":false,\"abilityID\":2,\"tier\":1,\"secondaryData\":\"\",\"partID\":\"SmallSide3\",\"shiny\":false},{\"location\":{\"x\":0.30000001192092898,\"y\":0.10000000149011612},\"rotation\":0.0,\"mirrored\":false,\"abilityID\":6,\"tier\":1,\"secondaryData\":\"\",\"partID\":\"SmallSide2\",\"shiny\":false},{\"location\":{\"x\":0.30000001192092898,\"y\":-0.30000001192092898},\"rotation\":0.0,\"mirrored\":true,\"abilityID\":17,\"tier\":1,\"secondaryData\":\"\",\"partID\":\"SmallSide3\",\"shiny\":false}],\"dialogue\":{\"m_FileID\":0,\"m_PathID\":0},\"useCustomDroneType\":false,\"customDroneType\":0}","dialogueID":"","vendingID":"","pathID":"","position":{"x":0.0,"y":0.0},"patrolPath":{"waypoints":[]}},"timeSinceWaveStartToSpawn":10.0,"flagName":"flag_beta_north_carrier"},{"entity":{"name":"Unnamed","ID":"","faction":1,"assetID":"shellcore_blueprint","blueprintJSON":"{\"entityName\":\"Unnamed\",\"coreSpriteID\":\"core1_light\",\"coreShellSpriteID\":\"core1_shell\",\"shellHealth\":[1000.0,250.0,500.0],\"baseRegen\":[60.0,0.0,60.0],\"intendedType\":0,\"parts\":[{\"location\":{\"x\":-0.30000001192092898,\"y\":0.10000000149011612},\"rotation\":0.0,\"mirrored\":false,\"abilityID\":5,\"tier\":1,\"secondaryData\":\"\",\"partID\":\"SmallSide2\",\"shiny\":false},{\"location\":{\"x\":-0.30000001192092898,\"y\":-0.30000001192092898},\"rotation\":0.0,\"mirrored\":false,\"abilityID\":2,\"tier\":1,\"secondaryData\":\"\",\"partID\":\"SmallSide3\",\"shiny\":false},{\"location\":{\"x\":0.30000001192092898,\"y\":0.10000000149011612},\"rotation\":0.0,\"mirrored\":false,\"abilityID\":6,\"tier\":1,\"secondaryData\":\"\",\"partID\":\"SmallSide2\",\"shiny\":false},{\"location\":{\"x\":0.30000001192092898,\"y\":-0.30000001192092898},\"rotation\":0.0,\"mirrored\":true,\"abilityID\":17,\"tier\":1,\"secondaryData\":\"\",\"partID\":\"SmallSide3\",\"shiny\":false}],\"dialogue\":{\"m_FileID\":0,\"m_PathID\":0},\"useCustomDroneType\":false,\"customDroneType\":0}","dialogueID":"","vendingID":"","pathID":"","position":{"x":0.0,"y":0.0},"patrolPath":{"waypoints":[]}},"timeSinceWaveStartToSpawn":15.0,"flagName":"flag_beta_south_carrier"},{"entity":{"name":"Counter Drone","ID":"","faction":1,"assetID":"counter_drone_blueprint","blueprintJSON":"","dialogueID":"","vendingID":"","pathID":"","position":{"x":0.0,"y":0.0},"patrolPath":{"waypoints":[]}},"timeSinceWaveStartToSpawn":25.0,"flagName":"flag_beta_north_carrier"},{"entity":{"name":"Counter Drone","ID":"","faction":1,"assetID":"counter_drone_blueprint","blueprintJSON":"","dialogueID":"","vendingID":"","pathID":"","position":{"x":0.0,"y":0.0},"patrolPath":{"waypoints":[]}},"timeSinceWaveStartToSpawn":25.0,"flagName":"flag_beta_south_carrier"},{"entity":{"name":"Gun Drone","ID":"","faction":1,"assetID":"gun_drone_blueprint","blueprintJSON":"","dialogueID":"","vendingID":"","pathID":"","position":{"x":0.0,"y":0.0},"patrolPath":{"waypoints":[]}},"timeSinceWaveStartToSpawn":45.0,"flagName":"flag_beta_north_carrier"},{"entity":{"name":"Gun Drone","ID":"","faction":1,"assetID":"gun_drone_blueprint","blueprintJSON":"","dialogueID":"","vendingID":"","pathID":"","position":{"x":0.0,"y":0.0},"patrolPath":{"waypoints":[]}},"timeSinceWaveStartToSpawn":45.0,"flagName":"flag_beta_south_carrier"}]},{"entities":[{"entity":{"name":"Light Drone","ID":"","faction":1,"assetID":"light_drone_blueprint","blueprintJSON":"","dialogueID":"","vendingID":"","pathID":"","position":{"x":0.0,"y":0.0},"patrolPath":{"waypoints":[]}},"timeSinceWaveStartToSpawn":5.0,"flagName":"flag_beta_north_carrier"},{"entity":{"name":"Light Drone","ID":"","faction":1,"assetID":"light_drone_blueprint","blueprintJSON":"","dialogueID":"","vendingID":"","pathID":"","position":{"x":0.0,"y":0.0},"patrolPath":{"waypoints":[]}},"timeSinceWaveStartToSpawn":5.0,"flagName":"flag_beta_north_carrier"},{"entity":{"name":"Strike Drone","ID":"","faction":1,"assetID":"strike_drone_blueprint","blueprintJSON":"","dialogueID":"","vendingID":"","pathID":"","position":{"x":0.0,"y":0.0},"patrolPath":{"waypoints":[]}},"timeSinceWaveStartToSpawn":8.0,"flagName":"flag_beta_south_carrier"},{"entity":{"name":"Strike Drone","ID":"","faction":1,"assetID":"strike_drone_blueprint","blueprintJSON":"","dialogueID":"","vendingID":"","pathID":"","position":{"x":0.0,"y":0.0},"patrolPath":{"waypoints":[]}},"timeSinceWaveStartToSpawn":8.0,"flagName":"flag_beta_south_carrier"},{"entity":{"name":"Gun Drone","ID":"","faction":1,"assetID":"gun_drone_blueprint","blueprintJSON":"","dialogueID":"","vendingID":"","pathID":"","position":{"x":0.0,"y":0.0},"patrolPath":{"waypoints":[]}},"timeSinceWaveStartToSpawn":12.0,"flagName":"flag_beta_north_carrier"},{"entity":{"name":"Gun Drone","ID":"","faction":1,"assetID":"gun_drone_blueprint","blueprintJSON":"","dialogueID":"","vendingID":"","pathID":"","position":{"x":0.0,"y":0.0},"patrolPath":{"waypoints":[]}},"timeSinceWaveStartToSpawn":12.0,"flagName":"flag_beta_north_carrier"},{"entity":{"name":"Counter Drone","ID":"","faction":1,"assetID":"counter_drone_blueprint","blueprintJSON":"","dialogueID":"","vendingID":"","pathID":"","position":{"x":0.0,"y":0.0},"patrolPath":{"waypoints":[]}},"timeSinceWaveStartToSpawn":20.0,"flagName":"flag_beta_north_carrier"},{"entity":{"name":"Heavy Drone","ID":"","faction":1,"assetID":"heavy_drone_blueprint","blueprintJSON":"","dialogueID":"","vendingID":"","pathID":"","position":{"x":0.0,"y":0.0},"patrolPath":{"waypoints":[]}},"timeSinceWaveStartToSpawn":20.0,"flagName":"flag_beta_south_carrier"},{"entity":{"name":"Mini Drone","ID":"","faction":1,"assetID":"mini_drone_blueprint","blueprintJSON":"","dialogueID":"","vendingID":"","pathID":"","position":{"x":0.0,"y":0.0},"patrolPath":{"waypoints":[]}},"timeSinceWaveStartToSpawn":20.0,"flagName":"flag_beta_north_carrier"},{"entity":{"name":"Mini Drone","ID":"","faction":1,"assetID":"mini_drone_blueprint","blueprintJSON":"","dialogueID":"","vendingID":"","pathID":"","position":{"x":0.0,"y":0.0},"patrolPath":{"waypoints":[]}},"timeSinceWaveStartToSpawn":20.0,"flagName":"flag_beta_south_carrier"},{"entity":{"name":"Heavy Drone","ID":"","faction":1,"assetID":"heavy_drone_blueprint","blueprintJSON":"","dialogueID":"","vendingID":"","pathID":"","position":{"x":0.0,"y":0.0},"patrolPath":{"waypoints":[]}},"timeSinceWaveStartToSpawn":30.0,"flagName":"flag_beta_south_carrier"},{"entity":{"name":"Heavy Drone","ID":"","faction":1,"assetID":"heavy_drone_blueprint","blueprintJSON":"","dialogueID":"","vendingID":"","pathID":"","position":{"x":0.0,"y":0.0},"patrolPath":{"waypoints":[]}},"timeSinceWaveStartToSpawn":30.0,"flagName":"flag_beta_south_carrier"},{"entity":{"name":"Heavy Drone","ID":"","faction":1,"assetID":"heavy_drone_blueprint","blueprintJSON":"","dialogueID":"","vendingID":"","pathID":"","position":{"x":0.0,"y":0.0},"patrolPath":{"waypoints":[]}},"timeSinceWaveStartToSpawn":45.0,"flagName":"flag_beta_north_carrier"},{"entity":{"name":"Heavy Drone","ID":"","faction":1,"assetID":"heavy_drone_blueprint","blueprintJSON":"","dialogueID":"","vendingID":"","pathID":"","position":{"x":0.0,"y":0.0},"patrolPath":{"waypoints":[]}},"timeSinceWaveStartToSpawn":45.0,"flagName":"flag_beta_north_carrier"},{"entity":{"name":"Unnamed","ID":"","faction":1,"assetID":"shellcore_blueprint","blueprintJSON":"{\"entityName\":\"Unnamed\",\"coreSpriteID\":\"core1_light\",\"coreShellSpriteID\":\"core1_shell\",\"shellHealth\":[1000.0,250.0,500.0],\"baseRegen\":[60.0,0.0,60.0],\"intendedType\":0,\"parts\":[{\"location\":{\"x\":0.5,\"y\":-0.10000000149011612},\"rotation\":0.0,\"mirrored\":true,\"abilityID\":2,\"tier\":1,\"secondaryData\":\"\",\"partID\":\"SmallSide3\",\"shiny\":false},{\"location\":{\"x\":-0.5,\"y\":-0.10000000149011612},\"rotation\":0.0,\"mirrored\":false,\"abilityID\":13,\"tier\":1,\"secondaryData\":\"\",\"partID\":\"SmallSide3\",\"shiny\":false},{\"location\":{\"x\":0.0,\"y\":0.30000001192092898},\"rotation\":0.0,\"mirrored\":false,\"abilityID\":20,\"tier\":1,\"secondaryData\":\"\",\"partID\":\"SmallCenter2\",\"shiny\":false},{\"location\":{\"x\":0.30000001192092898,\"y\":-0.10000000149011612},\"rotation\":0.0,\"mirrored\":true,\"abilityID\":5,\"tier\":1,\"secondaryData\":\"\",\"partID\":\"SmallWing2\",\"shiny\":false},{\"location\":{\"x\":-0.30000001192092898,\"y\":-0.10000000149011612},\"rotation\":0.0,\"mirrored\":false,\"abilityID\":4,\"tier\":1,\"secondaryData\":\"\",\"partID\":\"SmallWing2\",\"shiny\":false}],\"dialogue\":{\"m_FileID\":0,\"m_PathID\":0},\"useCustomDroneType\":false,\"customDroneType\":0}","dialogueID":"","vendingID":"","pathID":"","position":{"x":0.0,"y":0.0},"patrolPath":{"waypoints":[]}},"timeSinceWaveStartToSpawn":55.0,"flagName":"flag_beta_north_carrier"},{"entity":{"name":"Unnamed","ID":"","faction":1,"assetID":"shellcore_blueprint","blueprintJSON":"{\"entityName\":\"Unnamed\",\"coreSpriteID\":\"core1_light\",\"coreShellSpriteID\":\"core1_shell\",\"shellHealth\":[1000.0,250.0,500.0],\"baseRegen\":[60.0,0.0,60.0],\"intendedType\":0,\"parts\":[{\"location\":{\"x\":-0.30000001192092898,\"y\":0.10000000149011612},\"rotation\":0.0,\"mirrored\":false,\"abilityID\":5,\"tier\":1,\"secondaryData\":\"\",\"partID\":\"SmallSide2\",\"shiny\":false},{\"location\":{\"x\":-0.30000001192092898,\"y\":-0.30000001192092898},\"rotation\":0.0,\"mirrored\":false,\"abilityID\":2,\"tier\":1,\"secondaryData\":\"\",\"partID\":\"SmallSide3\",\"shiny\":false},{\"location\":{\"x\":0.30000001192092898,\"y\":0.10000000149011612},\"rotation\":0.0,\"mirrored\":false,\"abilityID\":6,\"tier\":1,\"secondaryData\":\"\",\"partID\":\"SmallSide2\",\"shiny\":false},{\"location\":{\"x\":0.30000001192092898,\"y\":-0.30000001192092898},\"rotation\":0.0,\"mirrored\":true,\"abilityID\":17,\"tier\":1,\"secondaryData\":\"\",\"partID\":\"SmallSide3\",\"shiny\":false}],\"dialogue\":{\"m_FileID\":0,\"m_PathID\":0},\"useCustomDroneType\":false,\"customDroneType\":0}","dialogueID":"","vendingID":"","pathID":"","position":{"x":0.0,"y":0.0},"patrolPath":{"waypoints":[]}},"timeSinceWaveStartToSpawn":55.0,"flagName":"flag_beta_south_carrier"}]}]} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Waves/beta.json.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Waves/beta.json.meta new file mode 100644 index 000000000..815e2e1b1 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/Waves/beta.json.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 33253e4b80264714999e6ac93f4eff09 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/world.worlddata b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/world.worlddata new file mode 100644 index 000000000..025aa6517 --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/world.worlddata @@ -0,0 +1 @@ +{"defaultCharacters":[{"ID":"sukrat","name":"Sukrat","blueprintJSON":"{\"entityName\":\"Unnamed\",\"coreSpriteID\":\"core1_light\",\"coreShellSpriteID\":\"core1_shell\",\"shellHealth\":[1000.0,250.0,500.0],\"baseRegen\":[60.0,0.0,60.0],\"intendedType\":0,\"parts\":[{\"location\":{\"x\":0.0,\"y\":-0.4000000059604645},\"rotation\":0.0,\"mirrored\":false,\"abilityID\":1,\"tier\":1,\"secondaryData\":\"\",\"partID\":\"SmallCenter5\"},{\"location\":{\"x\":0.4000000059604645,\"y\":0.0},\"rotation\":0.0,\"mirrored\":false,\"abilityID\":5,\"tier\":1,\"secondaryData\":\"\",\"partID\":\"SmallWing1\"},{\"location\":{\"x\":-0.4000000059604645,\"y\":0.0},\"rotation\":0.0,\"mirrored\":true,\"abilityID\":5,\"tier\":1,\"secondaryData\":\"\",\"partID\":\"SmallWing1\"},{\"location\":{\"x\":0.20000000298023225,\"y\":0.6000000238418579},\"rotation\":0.0,\"mirrored\":true,\"abilityID\":1,\"tier\":1,\"secondaryData\":\"\",\"partID\":\"SmallWing2\"},{\"location\":{\"x\":-0.20000000298023225,\"y\":0.6000000238418579},\"rotation\":0.0,\"mirrored\":false,\"abilityID\":1,\"tier\":1,\"secondaryData\":\"\",\"partID\":\"SmallWing2\"}],\"dialogue\":{\"m_FileID\":0,\"m_PathID\":0},\"useCustomDroneType\":false,\"customDroneType\":0}","partyMember":true,"partsCollectible":false,"faction":0,"partyData":{"attackDialogue":"DESTRUCTION!","defendDialogue":"Falling back!","collectDialogue":"I'm on it.","buildDialogue":"Building!","followDialogue":"Following!"}},{"ID":"aristu","name":"Aristu","blueprintJSON":"{\"entityName\":\"Aristu\",\"coreSpriteID\":\"core1_light\",\"coreShellSpriteID\":\"core1_shell\",\"shellHealth\":[1000.0,250.0,500.0],\"baseRegen\":[60.0,0.0,60.0],\"intendedType\":0,\"parts\":[],\"dialogue\":{\"instanceID\":0},\"useCustomDroneType\":false,\"customDroneType\":0}","partyMember":true,"partsCollectible":false,"faction":0,"partyData":{"attackDialogue":"","defendDialogue":"","collectDialogue":"","buildDialogue":"","followDialogue":""}},{"ID":"daayo","name":"Daayo","blueprintJSON":"{\"entityName\":\"Unnamed\",\"coreSpriteID\":\"core1_light\",\"coreShellSpriteID\":\"core1_shell\",\"shellHealth\":[1000.0,250.0,500.0],\"baseRegen\":[60.0,0.0,60.0],\"intendedType\":0,\"parts\":[{\"location\":{\"x\":0.4000000059604645,\"y\":-0.20000000298023225},\"rotation\":0.0,\"mirrored\":true,\"abilityID\":12,\"tier\":1,\"secondaryData\":\"\",\"partID\":\"SmallWing1\"},{\"location\":{\"x\":-0.4000000059604645,\"y\":-0.20000000298023225},\"rotation\":0.0,\"mirrored\":false,\"abilityID\":2,\"tier\":1,\"secondaryData\":\"\",\"partID\":\"SmallWing1\"},{\"location\":{\"x\":0.0,\"y\":-0.5},\"rotation\":0.0,\"mirrored\":false,\"abilityID\":4,\"tier\":1,\"secondaryData\":\"\",\"partID\":\"SmallCenter5\"},{\"location\":{\"x\":0.20000000298023225,\"y\":-0.8999999761581421},\"rotation\":0.0,\"mirrored\":true,\"abilityID\":13,\"tier\":1,\"secondaryData\":\"\",\"partID\":\"SmallSide1\"},{\"location\":{\"x\":-0.20000000298023225,\"y\":-0.8999999761581421},\"rotation\":0.0,\"mirrored\":false,\"abilityID\":1,\"tier\":1,\"secondaryData\":\"\",\"partID\":\"SmallSide1\"}],\"dialogue\":{\"instanceID\":0},\"useCustomDroneType\":false,\"customDroneType\":0}","partyMember":false,"partsCollectible":false,"faction":1,"partyData":{"attackDialogue":"","defendDialogue":"","collectDialogue":"","buildDialogue":"","followDialogue":""}},{"ID":"pytha","name":"Pytha","blueprintJSON":"{\"entityName\":\"Unnamed\",\"coreSpriteID\":\"core1_light\",\"coreShellSpriteID\":\"core1_shell\",\"shellHealth\":[1000.0,250.0,500.0],\"baseRegen\":[60.0,0.0,60.0],\"intendedType\":0,\"parts\":[{\"location\":{\"x\":0.0,\"y\":0.4000000059604645},\"rotation\":0.0,\"mirrored\":false,\"abilityID\":13,\"tier\":1,\"secondaryData\":\"\",\"partID\":\"SmallCenter2\",\"shiny\":false},{\"location\":{\"x\":-0.5,\"y\":-0.10000000149011612},\"rotation\":0.0,\"mirrored\":false,\"abilityID\":2,\"tier\":1,\"secondaryData\":\"\",\"partID\":\"SmallSide1\",\"shiny\":false},{\"location\":{\"x\":0.5,\"y\":-0.10000000149011612},\"rotation\":0.0,\"mirrored\":true,\"abilityID\":9,\"tier\":1,\"secondaryData\":\"\",\"partID\":\"SmallSide1\",\"shiny\":false},{\"location\":{\"x\":-0.5,\"y\":-0.5},\"rotation\":0.0,\"mirrored\":false,\"abilityID\":5,\"tier\":1,\"secondaryData\":\"\",\"partID\":\"SmallWing4\",\"shiny\":false},{\"location\":{\"x\":0.5,\"y\":-0.5},\"rotation\":0.0,\"mirrored\":true,\"abilityID\":5,\"tier\":1,\"secondaryData\":\"\",\"partID\":\"SmallWing4\",\"shiny\":false},{\"location\":{\"x\":0.0,\"y\":-0.4000000059604645},\"rotation\":0.0,\"mirrored\":false,\"abilityID\":13,\"tier\":1,\"secondaryData\":\"\",\"partID\":\"SmallCenter4\",\"shiny\":false}],\"dialogue\":{\"instanceID\":0},\"useCustomDroneType\":false,\"customDroneType\":0}","partyMember":false,"partsCollectible":false,"faction":1,"partyData":{"attackDialogue":"","defendDialogue":"","collectDialogue":"","buildDialogue":"","followDialogue":""}},{"ID":"clearly-delusional","name":"Clearly Delusional","blueprintJSON":"{\"entityName\":\"Unnamed\",\"coreSpriteID\":\"core1_light\",\"coreShellSpriteID\":\"core2_shell\",\"shellHealth\":[1000.0,250.0,500.0],\"baseRegen\":[60.0,0.0,60.0],\"intendedType\":0,\"parts\":[{\"location\":{\"x\":0.0,\"y\":-0.699999988079071},\"rotation\":0.0,\"mirrored\":false,\"abilityID\":21,\"tier\":0,\"secondaryData\":\"\",\"partID\":\"MediumCenter5\",\"shiny\":false},{\"location\":{\"x\":1.399999976158142,\"y\":-1.2999999523162842},\"rotation\":90.0,\"mirrored\":true,\"abilityID\":13,\"tier\":2,\"secondaryData\":\"\",\"partID\":\"MediumSide3\",\"shiny\":false},{\"location\":{\"x\":-1.399999976158142,\"y\":-1.2999999523162842},\"rotation\":-90.0,\"mirrored\":false,\"abilityID\":13,\"tier\":2,\"secondaryData\":\"\",\"partID\":\"MediumSide3\",\"shiny\":false},{\"location\":{\"x\":0.0,\"y\":-1.2999999523162842},\"rotation\":0.0,\"mirrored\":false,\"abilityID\":2,\"tier\":2,\"secondaryData\":\"\",\"partID\":\"MediumCenter3\",\"shiny\":false},{\"location\":{\"x\":1.7000000476837159,\"y\":1.2999999523162842},\"rotation\":0.0,\"mirrored\":true,\"abilityID\":6,\"tier\":2,\"secondaryData\":\"\",\"partID\":\"SmallWing3\",\"shiny\":false},{\"location\":{\"x\":-1.600000023841858,\"y\":1.2999999523162842},\"rotation\":0.0,\"mirrored\":false,\"abilityID\":6,\"tier\":2,\"secondaryData\":\"\",\"partID\":\"SmallWing3\",\"shiny\":false},{\"location\":{\"x\":0.800000011920929,\"y\":1.2000000476837159},\"rotation\":0.0,\"mirrored\":true,\"abilityID\":26,\"tier\":0,\"secondaryData\":\"\",\"partID\":\"MediumWing2\",\"shiny\":false},{\"location\":{\"x\":-0.800000011920929,\"y\":1.2000000476837159},\"rotation\":0.0,\"mirrored\":false,\"abilityID\":7,\"tier\":2,\"secondaryData\":\"\",\"partID\":\"MediumWing2\",\"shiny\":false},{\"location\":{\"x\":1.0,\"y\":-0.20000000298023225},\"rotation\":-90.0,\"mirrored\":false,\"abilityID\":4,\"tier\":2,\"secondaryData\":\"\",\"partID\":\"MediumWing1\",\"shiny\":false},{\"location\":{\"x\":-1.0,\"y\":-0.20000000298023225},\"rotation\":90.0,\"mirrored\":true,\"abilityID\":4,\"tier\":2,\"secondaryData\":\"\",\"partID\":\"MediumWing1\",\"shiny\":false},{\"location\":{\"x\":0.0,\"y\":2.0999999046325685},\"rotation\":0.0,\"mirrored\":false,\"abilityID\":1,\"tier\":2,\"secondaryData\":\"\",\"partID\":\"SmallCenter4\",\"shiny\":false},{\"location\":{\"x\":0.0,\"y\":1.399999976158142},\"rotation\":0.0,\"mirrored\":false,\"abilityID\":27,\"tier\":0,\"secondaryData\":\"\",\"partID\":\"MediumCenter4\",\"shiny\":false},{\"location\":{\"x\":0.0,\"y\":0.5},\"rotation\":0.0,\"mirrored\":false,\"abilityID\":13,\"tier\":2,\"secondaryData\":\"\",\"partID\":\"MediumCenter3\",\"shiny\":false}],\"dialogue\":{\"instanceID\":0},\"useCustomDroneType\":false,\"customDroneType\":0}","partyMember":true,"partsCollectible":false,"faction":0,"partyData":{"attackDialogue":"I shall attack at once!","defendDialogue":"Forthright!","collectDialogue":"Ah, time to nosh on some orbs. ","buildDialogue":"To build or not to build?","followDialogue":"I shall, for you are an honorable commander!"}}],"initialSpawn":{"x":260.0,"y":-145.0},"defaultBlueprintJSON":"","author":"rudderbucky, Abnormalities, Vansten","description":"The world launched directly from the main menu.","partIndexDataArray":[{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":9,"tier":3,"secondaryData":"","partID":"BigSide2","shiny":false},"origins":["Danger Zone 0-1680","Danger Zone 0-1920","Danger Zone 1120-1280","Danger Zone 1600-1280","Danger Zone 530-2150"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":13,"tier":2,"secondaryData":"","partID":"MediumSide3","shiny":false},"origins":["Danger Zone 0-1680","Danger Zone 0-1920","Danger Zone 1120-1280","Danger Zone 1600-1280","Danger Zone 530-2150"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":4,"tier":3,"secondaryData":"","partID":"BigWing1","shiny":false},"origins":["Danger Zone 0-1680","Danger Zone 0-1920","Danger Zone 1120-1280","Danger Zone 1600-1280","Danger Zone 530-2150"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":13,"tier":2,"secondaryData":"","partID":"MediumCenter3","shiny":false},"origins":["Danger Zone 0-1680","Danger Zone 0-1920","Danger Zone 1120-1280","Danger Zone 1600-1280","Danger Zone 530-2150"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":13,"tier":2,"secondaryData":"","partID":"MediumCenter6","shiny":false},"origins":["Danger Zone 0-1680","Danger Zone 0-1920","Danger Zone 1120-1280","Danger Zone 1600-1280","Danger Zone 530-2150"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":13,"tier":3,"secondaryData":"","partID":"BigSide4","shiny":false},"origins":["Danger Zone 1040-1100","Danger Zone 1040-740","Danger Zone 1220-1190","Danger Zone 1690-740","Infected Hideout E","Infected Hideout NE","Infected Hideout SE"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":4,"tier":3,"secondaryData":"","partID":"BigWing5","shiny":false},"origins":["Danger Zone 1040-1100","Danger Zone 1040-740","Danger Zone 1220-1190","Danger Zone 1280-300","Danger Zone 1690-740","Infected Hideout E","Infected Hideout NE","Infected Hideout SE"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":1,"tier":3,"secondaryData":"","partID":"BigSide2","shiny":false},"origins":["Danger Zone 1280-0","Danger Zone 1430-0","Danger Zone 1430-270","Danger Zone 1430-360","Danger Zone 1430-90","Danger Zone 1700-0","Infected Hideout SE"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":20,"tier":3,"secondaryData":"","partID":"BigSide2","shiny":false},"origins":["Danger Zone 1280-0","Danger Zone 1430-0","Danger Zone 1430-270","Danger Zone 1430-360","Danger Zone 1430-90","Danger Zone 1700-0","Infected Hideout SE"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":7,"tier":3,"secondaryData":"","partID":"BigSide1","shiny":false},"origins":["Danger Zone 1280-0","Danger Zone 1430-0","Danger Zone 1430-270","Danger Zone 1430-360","Danger Zone 1430-90","Danger Zone 1700-0","Infected Hideout SE","Sector 120-1500","Sector 300-1610","Sector 480-1610"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":4,"tier":3,"secondaryData":"","partID":"BigSide1","shiny":false},"origins":["Danger Zone 1280-0","Danger Zone 1430-0","Danger Zone 1430-270","Danger Zone 1430-360","Danger Zone 1430-90","Danger Zone 1700-0","Infected Hideout SE","Sector 120-1500","Sector 300-1610","Sector 480-1610"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":5,"tier":3,"secondaryData":"","partID":"BigCenter3","shiny":false},"origins":["Danger Zone 1280-300"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":13,"tier":3,"secondaryData":"","partID":"BigWing4","shiny":false},"origins":["Danger Zone 1280-300"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":7,"tier":3,"secondaryData":"","partID":"BigWing5","shiny":false},"origins":["Danger Zone 230-1100","Danger Zone 230-1280","Danger Zone 300-1500","Danger Zone 660-1280"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":13,"tier":3,"secondaryData":"","partID":"BigWing3","shiny":false},"origins":["Danger Zone 230-1100","Danger Zone 230-1280","Danger Zone 300-1500","Danger Zone 660-1280"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":7,"tier":3,"secondaryData":"","partID":"BigCenter2","shiny":false},"origins":["Danger Zone 230-1100","Danger Zone 230-1280","Danger Zone 300-1500","Danger Zone 660-1280"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":5,"tier":1,"secondaryData":"","partID":"SmallWing1","shiny":false},"origins":["Sector 120-980","Sector 610-500","Sector 610-740","Sector 460-150"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":18,"tier":1,"secondaryData":"","partID":"SmallWing2","shiny":false},"origins":["Sector 120-980","Sector 610-500","Sector 610-740","Sector 460-150"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":1,"tier":1,"secondaryData":"","partID":"SmallWing2","shiny":false},"origins":["Sector 120-980","Sector 610-500","Sector 610-740","Sector 460-150"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":5,"tier":1,"secondaryData":"","partID":"SmallSide2","shiny":false},"origins":["Sector 610-740","Sector 1130-300","Sector 120-980","Sector 610-500","Sector 880-150"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":2,"tier":1,"secondaryData":"","partID":"SmallSide3","shiny":false},"origins":["Sector 610-740","Sector 1130-300","Sector 120-980","Sector 610-500","Sector 880-150"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":6,"tier":1,"secondaryData":"","partID":"SmallSide2","shiny":false},"origins":["Sector 610-740","Sector 1130-300","Sector 120-980","Sector 610-500","Sector 880-150"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":17,"tier":1,"secondaryData":"","partID":"SmallSide3","shiny":false},"origins":["Sector 610-740","Sector 1040-920","Sector 1130-300","Sector 120-980","Sector 610-500","Sector 880-150"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":4,"tier":1,"secondaryData":"","partID":"SmallWing1","shiny":false},"origins":["BattleZone Ta Hetera","Infected Hideout E","Infected Hideout NE","Sector 120-1280","Sector 120-1390","Sector 120-1500","Sector 300-1610","Sector 480-1610","Sector 580-1790","Sector 660-1550"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":5,"tier":1,"secondaryData":"","partID":"SmallCenter4","shiny":false},"origins":["BattleZone Ta Hetera","Infected Hideout E","Infected Hideout NE","Sector 120-1280","Sector 120-1390","Sector 120-1500","Sector 300-1610","Sector 480-1610","Sector 580-1790","Sector 660-1550"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":4,"tier":1,"secondaryData":"","partID":"SmallCenter2","shiny":false},"origins":["BattleZone Ta Hetera","Infected Hideout E","Infected Hideout NE","Sector 1140-2030","Sector 120-1280","Sector 120-1390","Sector 120-1500","Sector 1240-1670","Sector 300-1610","Sector 480-1610","Sector 580-1790","Sector 660-1550","Sector 690-2150","Sector 980-2150"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":19,"tier":1,"secondaryData":"","partID":"SmallWing1","shiny":false},"origins":["BattleZone Ta Hetera","Infected Hideout E","Infected Hideout NE","Sector 120-1280","Sector 120-1390","Sector 120-1500","Sector 300-1610","Sector 480-1610","Sector 580-1790","Sector 660-1550"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":1,"tier":1,"secondaryData":"","partID":"SmallCenter2","shiny":false},"origins":["BattleZone Ta Hetera","Infected Hideout E","Infected Hideout NE","Sector 120-1280","Sector 120-1390","Sector 120-1500","Sector 300-1610","Sector 480-1610","Sector 580-1790","Sector 660-1550"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":24,"tier":0,"secondaryData":"","partID":"SmallCenter2","shiny":false},"origins":["BattleZone Ta Hetera","Infected Hideout E","Infected Hideout NE","Infected Hideout W","Sector 1140-2030","Sector 120-1280","Sector 120-1390","Sector 120-1500","Sector 1240-1670","Sector 300-1610","Sector 480-1610","Sector 580-1790","Sector 660-1550","Sector 690-2150","Sector 760-2030","Sector 880-1550","DeadZone Scouting"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":13,"tier":2,"secondaryData":"","partID":"MediumCenter5","shiny":false},"origins":["BattleZone Ta Hetera","Infected Hideout E","Infected Hideout NE","Sector 120-1280","Sector 120-1390","Sector 120-1500","Sector 300-1610","Sector 480-1610","Sector 580-1790","Sector 660-1550"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":13,"tier":1,"secondaryData":"","partID":"SmallCenter2","shiny":false},"origins":["BattleZone Ta Hetera","Infected Hideout E","Infected Hideout NE","Infected Hideout W","Sector 1140-2030","Sector 120-1280","Sector 120-1390","Sector 120-1500","Sector 1240-1670","Sector 300-1610","Sector 480-1610","Sector 580-1790","Sector 660-1550","Sector 690-2150","Sector 760-2030","Sector 880-1550"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":2,"tier":1,"secondaryData":"","partID":"SmallSide4","shiny":false},"origins":["BattleZone Ta Hetera","Infected Hideout E","Infected Hideout NE","Sector 120-1280","Sector 120-1390","Sector 120-1500","Sector 300-1610","Sector 480-1610","Sector 580-1790","Sector 660-1550"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":9,"tier":2,"secondaryData":"","partID":"MediumSide4","shiny":false},"origins":["Capitol Advanced Trade Sector"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":4,"tier":2,"secondaryData":"","partID":"MediumSide4","shiny":false},"origins":["Capitol Advanced Trade Sector"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":8,"tier":2,"secondaryData":"","partID":"MediumWing2","shiny":false},"origins":["Capitol Advanced Trade Sector"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":7,"tier":2,"secondaryData":"","partID":"MediumWing2","shiny":false},"origins":["Capitol Advanced Trade Sector"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":5,"tier":2,"secondaryData":"","partID":"SmallWing3","shiny":false},"origins":["Capitol Advanced Trade Sector","Sector 120-1500","Sector 300-1610","Sector 480-1610"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":6,"tier":2,"secondaryData":"","partID":"SmallWing3","shiny":false},"origins":["Capitol Advanced Trade Sector"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":10,"tier":0,"secondaryData":"","partID":"MediumSide1","shiny":false},"origins":["Capitol Advanced Trade Sector"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":10,"tier":0,"secondaryData":"","partID":"MediumSide2","shiny":false},"origins":["Capitol Advanced Trade Sector"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":18,"tier":2,"secondaryData":"","partID":"MediumSide3","shiny":false},"origins":["Capitol Advanced Trade Sector"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":17,"tier":2,"secondaryData":"","partID":"MediumSide3","shiny":false},"origins":["Capitol Advanced Trade Sector"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":13,"tier":2,"secondaryData":"","partID":"MediumWing1","shiny":false},"origins":["Capitol Advanced Trade Sector"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":20,"tier":2,"secondaryData":"","partID":"MediumWing3","shiny":false},"origins":["Capitol Advanced Trade Sector"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":19,"tier":2,"secondaryData":"","partID":"MediumWing3","shiny":false},"origins":["Capitol Advanced Trade Sector"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":1,"tier":1,"secondaryData":"","partID":"SmallCenter5","shiny":false},"origins":["Haven 2","Training Circuit"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":2,"tier":1,"secondaryData":"","partID":"SmallWing2","shiny":false},"origins":["Haven 2","Sector 120-1280","Sector 120-1500","Sector 150-150","Sector 300-1610","Sector 480-1610","Sector 690-2150","Sector 880-1550"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":6,"tier":1,"secondaryData":"","partID":"SmallWing2","shiny":false},"origins":["Haven 2","Sector 1040-920","Sector 120-1280","Sector 120-1500","Sector 120-980","Sector 300-1610","Sector 480-1610","Sector 610-740","Sector 690-2150","Sector 880-1550"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":18,"tier":1,"secondaryData":"","partID":"SmallSide3","shiny":false},"origins":["Haven 2"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":20,"tier":1,"secondaryData":"","partID":"SmallSide3","shiny":false},"origins":["Haven 2"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":13,"tier":1,"secondaryData":"","partID":"SmallSide4","shiny":false},"origins":["Haven 2"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":17,"tier":1,"secondaryData":"","partID":"SmallCenter2","shiny":false},"origins":["Infected Hideout E","Infected Hideout NE","Infected Hideout W","Sector 1140-2030","Sector 1240-1670","Sector 690-2150","Sector 760-2030","Sector 880-1550"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":17,"tier":2,"secondaryData":"","partID":"SmallCenter2","shiny":false},"origins":["Infected Hideout E","Infected Hideout NE","Infected Hideout W","Sector 1140-2030","Sector 1240-1670","Sector 690-2150","Sector 760-2030","Sector 880-1550","The Carrier Conundrum"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":12,"tier":1,"secondaryData":"","partID":"SmallCenter2","shiny":false},"origins":["Sector 1040-920","Sector 120-980","Sector 610-740"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":13,"tier":1,"secondaryData":"","partID":"SmallCenter1","shiny":false},"origins":["Sector 1040-920","Sector 120-980","Sector 610-740"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":19,"tier":1,"secondaryData":"","partID":"SmallWing2","shiny":false},"origins":["Sector 1040-920","Sector 120-980","Sector 610-740"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":7,"tier":1,"secondaryData":"","partID":"SmallWing2","shiny":false},"origins":["Sector 1040-920","Sector 1130-300","Sector 120-980","Sector 610-500","Sector 610-740"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":4,"tier":1,"secondaryData":"","partID":"SmallWing2","shiny":false},"origins":["Sector 1040-920","Sector 1130-300","Sector 120-1280","Sector 120-1500","Sector 120-980","Sector 300-1610","Sector 480-1610","Sector 610-500","Sector 610-740","Sector 690-2150","Sector 880-150","Sector 880-1550"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":7,"tier":1,"secondaryData":"","partID":"SmallCenter2","shiny":false},"origins":["Sector 1040-920","Sector 610-740"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":19,"tier":1,"secondaryData":"","partID":"SmallSide3","shiny":false},"origins":["Sector 1040-920","Sector 610-740"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":2,"tier":2,"secondaryData":"","partID":"SmallWing1","shiny":false},"origins":["Sector 1040-920","Sector 610-740"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":12,"tier":1,"secondaryData":"","partID":"SmallWing1","shiny":false},"origins":["Sector 1040-920","Sector 610-740"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":20,"tier":1,"secondaryData":"","partID":"SmallCenter5","shiny":false},"origins":["Sector 1040-920","Sector 610-740"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":13,"tier":1,"secondaryData":"","partID":"SmallWing2","shiny":false},"origins":["Sector 1130-300","Sector 1140-2030","Sector 120-1390","Sector 120-1500","Sector 1240-1670","Sector 300-1610","Sector 480-1610","Sector 610-500","Sector 690-2150","Sector 980-2150"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":19,"tier":1,"secondaryData":"","partID":"SmallCenter5","shiny":false},"origins":["Sector 1130-300","Sector 120-1280","Sector 120-1500","Sector 300-1610","Sector 480-1610","Sector 610-500","Sector 690-2150","Sector 880-1550"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":6,"tier":1,"secondaryData":"","partID":"SmallWing1","shiny":false},"origins":["Sector 1130-300","Sector 610-500"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":13,"tier":1,"secondaryData":"","partID":"SmallSide3","shiny":false},"origins":["Sector 1130-300","Sector 120-1280","Sector 120-1500","Sector 120-980","Sector 300-1610","Sector 480-1610","Sector 610-500","Sector 610-740","Sector 690-2150","Sector 880-150","Sector 880-1550"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":20,"tier":1,"secondaryData":"","partID":"SmallCenter2","shiny":false},"origins":["Sector 1130-300","Sector 120-980","Sector 610-500","Sector 880-150"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":5,"tier":1,"secondaryData":"","partID":"SmallWing2","shiny":false},"origins":["Sector 1130-300","Sector 120-1280","Sector 120-1500","Sector 120-980","Sector 150-150","Sector 300-1610","Sector 480-1610","Sector 610-500","Sector 690-2150","Sector 880-150","Sector 880-1550"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":1,"tier":1,"secondaryData":"","partID":"SmallCenter3","shiny":false},"origins":["Sector 1140-2030","Sector 120-1390","Sector 120-1500","Sector 1240-1670","Sector 300-1610","Sector 480-1610","Sector 690-2150","Sector 980-2150"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":2,"tier":1,"secondaryData":"","partID":"SmallCenter3","shiny":false},"origins":["Sector 1140-2030","Sector 120-1390","Sector 120-1500","Sector 1240-1670","Sector 300-1610","Sector 480-1610","Sector 690-2150","Sector 980-2150"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":12,"tier":1,"secondaryData":"","partID":"SmallWing2","shiny":false},"origins":["Sector 1140-2030","Sector 120-1390","Sector 120-1500","Sector 1240-1670","Sector 300-1610","Sector 480-1610","Sector 690-2150","Sector 980-2150"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":20,"tier":1,"secondaryData":"","partID":"SmallWing2","shiny":false},"origins":["Sector 1140-2030","Sector 120-1390","Sector 120-1500","Sector 1240-1670","Sector 300-1610","Sector 480-1610","Sector 690-2150","Sector 980-2150"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":6,"tier":1,"secondaryData":"","partID":"SmallCenter2","shiny":false},"origins":["Sector 1140-2030","Sector 120-1390","Sector 120-1500","Sector 1240-1670","Sector 300-1610","Sector 480-1610","Sector 690-2150","Sector 980-2150"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":10,"tier":0,"secondaryData":"","partID":"SmallCenter4","shiny":false},"origins":["Sector 1140-2030","Sector 120-1390","Sector 120-1500","Sector 1240-1670","Sector 300-1610","Sector 480-1610","Sector 690-2150","Sector 980-2150"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":5,"tier":1,"secondaryData":"","partID":"SmallCenter1","shiny":false},"origins":["Sector 1140-2030","Sector 120-1390","Sector 120-1500","Sector 1240-1670","Sector 300-1610","Sector 480-1610","Sector 690-2150","Sector 980-2150"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":10,"tier":0,"secondaryData":"","partID":"SmallCenter5","shiny":false},"origins":["Sector 120-1280","Sector 120-1500","Sector 300-1610","Sector 480-1610","Sector 690-2150","Sector 880-1550"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":1,"tier":1,"secondaryData":"","partID":"SmallWing1","shiny":false},"origins":["Sector 120-1280","Sector 120-1500","Sector 300-1610","Sector 480-1610","Sector 690-2150","Sector 880-1550"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":10,"tier":0,"secondaryData":"","partID":"SmallWing1","shiny":false},"origins":["Sector 120-1280","Sector 120-1500","Sector 300-1610","Sector 480-1610","Sector 690-2150","Sector 880-1550"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":13,"tier":1,"secondaryData":"","partID":"SmallCenter7","shiny":false},"origins":["Sector 120-1280","Sector 120-1390","Sector 120-1500","Sector 300-1610","Sector 480-1610","Sector 580-1790","Sector 660-1670"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":1,"tier":2,"secondaryData":"","partID":"MediumSide3","shiny":false},"origins":["Sector 120-1280","Sector 120-1390","Sector 120-1500","Sector 300-1610","Sector 480-1610","Sector 580-1790","Sector 660-1670","Perfectly Sane Escapade"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":4,"tier":2,"secondaryData":"","partID":"MediumWing2","shiny":false},"origins":["Sector 120-1280","Sector 120-1390","Sector 120-1500","Sector 300-1610","Sector 480-1610","Sector 580-1790","Sector 660-1670"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":5,"tier":2,"secondaryData":"","partID":"MediumWing2","shiny":false},"origins":["Sector 120-1280","Sector 120-1390","Sector 120-1500","Sector 300-1610","Sector 480-1610","Sector 580-1790","Sector 660-1670"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":32,"tier":2,"secondaryData":"","partID":"MediumSide3","shiny":false},"origins":["Sector 120-1280","Sector 120-1390","Sector 120-1500","Sector 300-1610","Sector 480-1610","Sector 580-1790","Sector 660-1670"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":18,"tier":1,"secondaryData":"","partID":"SmallCenter2","shiny":false},"origins":["Sector 120-1280","Sector 120-1390","Sector 120-1500","Sector 300-1610","Sector 480-1610","Sector 580-1790","Sector 660-1670","Training Circuit"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":34,"tier":2,"secondaryData":"","partID":"MediumCenter5","shiny":false},"origins":["Sector 120-1280","Sector 120-1390","Sector 120-1500","Sector 300-1610","Sector 480-1610","Sector 580-1790","Sector 660-1670"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":2,"tier":2,"secondaryData":"","partID":"SmallSide1","shiny":false},"origins":["Sector 120-1500","Sector 300-1610","Sector 480-1610"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":13,"tier":2,"secondaryData":"","partID":"SmallSide2","shiny":false},"origins":["Sector 120-1500","Sector 300-1610","Sector 480-1610"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":19,"tier":2,"secondaryData":"","partID":"SmallCenter2","shiny":false},"origins":["Sector 120-1500","Sector 300-1610","Sector 480-1610"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":17,"tier":2,"secondaryData":"","partID":"SmallSide1","shiny":false},"origins":["Sector 120-1500","Sector 300-1610","Sector 480-1610"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":1,"tier":1,"secondaryData":"","partID":"SmallSide1","shiny":false},"origins":["Sector 120-1500","Sector 300-1610","Sector 480-1610"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":10,"tier":0,"secondaryData":"","partID":"SmallWing3","shiny":false},"origins":["Sector 120-1500","Sector 300-1610","Sector 480-1610"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":13,"tier":1,"secondaryData":"","partID":"SmallCenter5","shiny":false},"origins":["Sector 120-980","Sector 610-740"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":5,"tier":1,"secondaryData":"","partID":"SmallWing3","shiny":false},"origins":["Sector 120-980","Sector 610-740"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":4,"tier":1,"secondaryData":"","partID":"SmallWing3","shiny":false},"origins":["Sector 120-980","Sector 610-740"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":27,"tier":0,"secondaryData":"","partID":"MediumSide4","shiny":false},"origins":["Clearly Delusional Gauntlet"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":10,"tier":0,"secondaryData":"","partID":"SmallCenter9","shiny":false},"origins":["Missile Station Demolition","The Scourge of Secrecy"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":4,"tier":2,"secondaryData":"","partID":"MediumSide3","shiny":false},"origins":["Perfectly Sane Escapade"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":35,"tier":1,"secondaryData":"","partID":"SmallCenter3","shiny":false},"origins":["The Capitol's Reckoning"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":7,"tier":2,"secondaryData":"","partID":"MediumCenter1","shiny":false},"origins":["The Capitol's Reckoning"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":21,"tier":0,"secondaryData":"","partID":"SmallCenter6","shiny":false},"origins":["The Scourge of Secrecy"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":4,"tier":1,"secondaryData":"","partID":"SmallCenter6","shiny":false},"origins":["The Scourge of Secrecy"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":1,"tier":2,"secondaryData":"","partID":"SmallCenter5","shiny":false},"origins":["The Scourge of Secrecy"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":10,"tier":0,"secondaryData":"","partID":"SmallCenter7","shiny":false},"origins":["Trial By Combat"]},{"part":{"location":{"x":0.0,"y":0.0},"rotation":0.0,"mirrored":false,"abilityID":12,"tier":1,"secondaryData":"","partID":"SmallCenter6","shiny":false},"origins":["Trial By Combat"]}]} \ No newline at end of file diff --git a/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/world.worlddata.meta b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/world.worlddata.meta new file mode 100644 index 000000000..27191d47d --- /dev/null +++ b/Assets/StreamingAssets/Sectors/main - Alpha 5.3.0/world.worlddata.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 9acb2f3038647e840958a829ecfbc78c +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: