Merge de22511a7b into fd5b16abb3
This commit is contained in:
commit
f7eea332d2
|
|
@ -2,35 +2,44 @@
|
|||
xmlns:controls="clr-namespace:Content.Client.UserInterface.Controls"
|
||||
MinSize="800 360">
|
||||
<BoxContainer Orientation="Vertical">
|
||||
<BoxContainer Orientation="Horizontal" Name="ProgressionBox" Visible="False">
|
||||
<Label Name="ProgressionLabel"
|
||||
Text="{Loc 'salvage-expedition-window-progression'}"
|
||||
SetWidth="96"
|
||||
Margin="5"/>
|
||||
<ProgressBar Name="ProgressionBar"
|
||||
HorizontalExpand="True"
|
||||
MinValue="0"
|
||||
MaxValue="1"
|
||||
SetHeight="25"/>
|
||||
<Label Name="ProgressionText" Text="00:00"
|
||||
Margin="5"/>
|
||||
<!-- BEGIN DeltaV - Add extra containers to support extending the progress bar region -->
|
||||
<BoxContainer Orientation="Horizontal" Margin="5 5 5 0">
|
||||
<BoxContainer Orientation="Vertical" HorizontalExpand="True" SizeFlagsStretchRatio="80">
|
||||
<!-- END DeltaV - Add extra containers to support extending the progress bar region-->
|
||||
<BoxContainer Orientation="Horizontal" Name="ProgressionBox" Visible="False">
|
||||
<Label Name="ProgressionLabel"
|
||||
Text="{Loc 'salvage-expedition-window-progression'}"
|
||||
SetWidth="96"
|
||||
Margin="5" />
|
||||
<ProgressBar Name="ProgressionBar"
|
||||
HorizontalExpand="True"
|
||||
MinValue="0"
|
||||
MaxValue="1"
|
||||
SetHeight="25" />
|
||||
<Label Name="ProgressionText" Text="00:00"
|
||||
Margin="5" />
|
||||
</BoxContainer>
|
||||
<BoxContainer Orientation="Horizontal">
|
||||
<Label Name="NextOfferLabel"
|
||||
Text="{Loc 'salvage-expedition-window-next'}"
|
||||
SetWidth="96"
|
||||
Margin="5" />
|
||||
<ProgressBar Name="NextOfferBar"
|
||||
HorizontalExpand="True"
|
||||
MinValue="0"
|
||||
MaxValue="1"
|
||||
SetHeight="25" />
|
||||
<Label Name="NextOfferText" Text="0.00"
|
||||
Margin="5" />
|
||||
</BoxContainer>
|
||||
<!-- BEGIN DeltaV - Closing containers and extensible progress bar control field -->
|
||||
</BoxContainer>
|
||||
<BoxContainer Name="ProgressionControls"/>
|
||||
<!-- END DeltaV - Closing containers and extensible progress bar control field -->
|
||||
</BoxContainer>
|
||||
<BoxContainer Orientation="Horizontal">
|
||||
<Label Name="NextOfferLabel"
|
||||
Text="{Loc 'salvage-expedition-window-next'}"
|
||||
SetWidth="96"
|
||||
Margin="5"/>
|
||||
<ProgressBar Name="NextOfferBar"
|
||||
HorizontalExpand="True"
|
||||
MinValue="0"
|
||||
MaxValue="1"
|
||||
SetHeight="25"/>
|
||||
<Label Name="NextOfferText" Text="0.00"
|
||||
Margin="5"/>
|
||||
</BoxContainer>
|
||||
<controls:HLine Color="#404040" Thickness="2" Margin="0 5 0 5"/>
|
||||
<controls:HLine Color="#404040" Thickness="2" Margin="0 5 0 5" />
|
||||
<BoxContainer Name="Container"
|
||||
Orientation="Horizontal"
|
||||
Margin="5 0 5 0"/>
|
||||
Margin="5 0 5 0" />
|
||||
</BoxContainer>
|
||||
</controls:FancyWindow>
|
||||
|
|
|
|||
|
|
@ -12,14 +12,15 @@ namespace Content.Client.Salvage.UI;
|
|||
/// Generic window for offering multiple selections with a timer.
|
||||
/// </summary>
|
||||
[GenerateTypedNameReferences]
|
||||
public sealed partial class OfferingWindow : FancyWindow,
|
||||
[Virtual] //DeltaV - make inheritable
|
||||
public partial class OfferingWindow : FancyWindow, //DeltaV - change to partial, make inheritable for variations
|
||||
IComputerWindow<EmergencyConsoleBoundUserInterfaceState>
|
||||
{
|
||||
[Dependency] private readonly IGameTiming _timing = default!;
|
||||
[Dependency] protected readonly IGameTiming _timing = default!; //DeltaV - made protected for inheritence
|
||||
|
||||
public bool Claimed;
|
||||
public TimeSpan NextOffer;
|
||||
private TimeSpan? _progression;
|
||||
protected TimeSpan? _progression; //DeltaV - made protected for inheritence
|
||||
|
||||
/// <summary>
|
||||
/// Time between NextOffers
|
||||
|
|
|
|||
|
|
@ -6,6 +6,8 @@ using Content.Shared.Salvage.Magnet;
|
|||
using Robust.Client.Player; // DeltaV
|
||||
using Robust.Client.UserInterface;
|
||||
using Robust.Client.UserInterface.Controls;
|
||||
using Content.Shared._DV.Salvage.Magnet; //DeltaV
|
||||
using Content.Client._DV.Salvage.UI; //DeltaV
|
||||
|
||||
namespace Content.Client.Salvage.UI;
|
||||
|
||||
|
|
@ -16,7 +18,7 @@ public sealed class SalvageMagnetBoundUserInterface : BoundUserInterface
|
|||
|
||||
private readonly MiningPointsSystem _points; // DeltaV
|
||||
|
||||
private OfferingWindow? _window;
|
||||
private MagnetOfferingWindow? _window; //DeltaV - use MagnetOfferingWindow rather than base OfferingWindow
|
||||
|
||||
public SalvageMagnetBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey)
|
||||
{
|
||||
|
|
@ -28,7 +30,7 @@ public sealed class SalvageMagnetBoundUserInterface : BoundUserInterface
|
|||
{
|
||||
base.Open();
|
||||
|
||||
_window = this.CreateWindowCenteredLeft<OfferingWindow>();
|
||||
_window = this.CreateWindowCenteredLeft<MagnetOfferingWindow>(); //DeltaV - use MagnetOfferingWindow rather than OfferingWindow
|
||||
_window.Title = Loc.GetString("salvage-magnet-window-title");
|
||||
}
|
||||
|
||||
|
|
@ -48,6 +50,15 @@ public sealed class SalvageMagnetBoundUserInterface : BoundUserInterface
|
|||
_window.Cooldown = current.Cooldown;
|
||||
_window.ProgressionCooldown = current.Duration;
|
||||
|
||||
// BEGIN DeltaV - start of magnet release additions
|
||||
_window.ReleaseTime = current.ReleaseTime;
|
||||
_window.Duration = current.Duration;
|
||||
_window.SetButtonPressed(_ =>
|
||||
{
|
||||
SendMessage(new MagnetReleaseEvent());
|
||||
});
|
||||
// END DeltaV
|
||||
|
||||
for (var i = 0; i < current.Offers.Count; i++)
|
||||
{
|
||||
var seed = current.Offers[i];
|
||||
|
|
@ -66,21 +77,6 @@ public sealed class SalvageMagnetBoundUserInterface : BoundUserInterface
|
|||
});
|
||||
};
|
||||
|
||||
// Begin DeltaV Additions: Mining points cost for wrecks
|
||||
if (offer.Cost > 0)
|
||||
{
|
||||
if (_player.LocalSession?.AttachedEntity is not {} user || !_points.UserHasPoints(user, offer.Cost))
|
||||
option.Disabled = true;
|
||||
|
||||
var label = new Label
|
||||
{
|
||||
Text = Loc.GetString("salvage-magnet-mining-points-cost", ("points", offer.Cost)),
|
||||
HorizontalAlignment = Control.HAlignment.Center
|
||||
};
|
||||
option.AddContent(label);
|
||||
}
|
||||
// End DeltaV Additions
|
||||
|
||||
switch (offer)
|
||||
{
|
||||
case AsteroidOffering asteroid:
|
||||
|
|
@ -90,7 +86,7 @@ public sealed class SalvageMagnetBoundUserInterface : BoundUserInterface
|
|||
|
||||
foreach (var resource in layerKeys)
|
||||
{
|
||||
var count = asteroid.MarkerLayers[resource];
|
||||
var count = asteroid.MarkerLayers[resource] * 2; //DeltaV - Double count to reflect higher concentration of ore in generator
|
||||
|
||||
var container = new BoxContainer
|
||||
{
|
||||
|
|
@ -121,8 +117,70 @@ public sealed class SalvageMagnetBoundUserInterface : BoundUserInterface
|
|||
break;
|
||||
case DebrisOffering debris:
|
||||
option.Title = Loc.GetString($"salvage-magnet-debris-{debris.Id}");
|
||||
//START DeltaV - Add dynamic debris loot
|
||||
int scrapCount = 0;
|
||||
int valuablesCount = 0;
|
||||
int arcanaCount = 0;
|
||||
|
||||
switch (debris.LootId)
|
||||
{
|
||||
case "SpaceDebrisLootRegular":
|
||||
scrapCount = 2;
|
||||
valuablesCount = 2;
|
||||
arcanaCount = 2;
|
||||
break;
|
||||
case "SpaceDebrisLootScrap":
|
||||
scrapCount = 4;
|
||||
valuablesCount = 1;
|
||||
arcanaCount = 1;
|
||||
break;
|
||||
case "SpaceDebrisLootValuables":
|
||||
scrapCount = 1;
|
||||
valuablesCount = 4;
|
||||
arcanaCount = 1;
|
||||
break;
|
||||
case "SpaceDebrisLootArcana":
|
||||
scrapCount = 1;
|
||||
valuablesCount = 1;
|
||||
arcanaCount = 4;
|
||||
break;
|
||||
}
|
||||
|
||||
AddDebrisLootContent("LootScrap", scrapCount);
|
||||
AddDebrisLootContent("LootValuables", valuablesCount);
|
||||
AddDebrisLootContent("LootArcana", arcanaCount);
|
||||
|
||||
void AddDebrisLootContent(string debrisLoot, int count)
|
||||
{
|
||||
var debrisContainer = new BoxContainer
|
||||
{
|
||||
Orientation = BoxContainer.LayoutOrientation.Horizontal,
|
||||
HorizontalExpand = true,
|
||||
};
|
||||
|
||||
var debrisResourceLabel = new Label
|
||||
{
|
||||
Text = Loc.GetString("salvage-magnet-debris-loot",
|
||||
("loot", debrisLoot)),
|
||||
HorizontalAlignment = Control.HAlignment.Left,
|
||||
};
|
||||
|
||||
var debrisCountLabel = new Label
|
||||
{
|
||||
Text = Loc.GetString("salvage-magnet-resources-count", ("count", count)),
|
||||
HorizontalAlignment = Control.HAlignment.Right,
|
||||
HorizontalExpand = true,
|
||||
};
|
||||
|
||||
debrisContainer.AddChild(debrisResourceLabel);
|
||||
debrisContainer.AddChild(debrisCountLabel);
|
||||
|
||||
option.AddContent(debrisContainer);
|
||||
}
|
||||
//END DeltaV
|
||||
break;
|
||||
case SalvageOffering salvage:
|
||||
|
||||
/* case SalvageOffering salvage: // BEGIN DeltaV - we no longer use Salvage wrecks, instead incorporating them into magnet pulls
|
||||
option.Title = Loc.GetString($"salvage-map-wreck");
|
||||
|
||||
var salvContainer = new BoxContainer
|
||||
|
|
@ -149,6 +207,7 @@ public sealed class SalvageMagnetBoundUserInterface : BoundUserInterface
|
|||
|
||||
option.AddContent(salvContainer);
|
||||
break;
|
||||
END DeltaV */
|
||||
default:
|
||||
throw new ArgumentOutOfRangeException();
|
||||
}
|
||||
|
|
|
|||
|
|
@ -0,0 +1,2 @@
|
|||
<ui:OfferingWindow xmlns="https://spacestation14.io"
|
||||
xmlns:ui="clr-namespace:Content.Client.Salvage.UI" />
|
||||
|
|
@ -0,0 +1,62 @@
|
|||
using System.Diagnostics;
|
||||
using Content.Client.Computer;
|
||||
using Content.Client.UserInterface.Controls;
|
||||
using Robust.Client.AutoGenerated;
|
||||
using Robust.Client.UserInterface.Controls;
|
||||
using Robust.Client.UserInterface.XAML;
|
||||
using Robust.Shared.Timing;
|
||||
using Robust.Client.Graphics;
|
||||
using Content.Client.Stylesheets;
|
||||
using Content.Client.Salvage.UI;
|
||||
using Content.Client.Trigger.Systems;
|
||||
|
||||
namespace Content.Client._DV.Salvage.UI;
|
||||
|
||||
/// <summary>
|
||||
/// Variant of OfferingWindow featuring early release button.
|
||||
/// </summary>
|
||||
[GenerateTypedNameReferences]
|
||||
public sealed partial class MagnetOfferingWindow : OfferingWindow
|
||||
{
|
||||
public TimeSpan Duration;
|
||||
public float ReleaseTime;
|
||||
|
||||
private readonly MagnetOfferingWindowReleaseButton _releaseButton;
|
||||
|
||||
public MagnetOfferingWindow()
|
||||
{
|
||||
RobustXamlLoader.Load(this);
|
||||
IoCManager.InjectDependencies(this);
|
||||
|
||||
ProgressionBar.ForegroundStyleBoxOverride = new StyleBoxFlat(Color.FromHex("#C74EBD"));
|
||||
|
||||
_releaseButton = new MagnetOfferingWindowReleaseButton();
|
||||
ProgressionControls.AddChild(_releaseButton);
|
||||
ProgressionControls.HorizontalExpand = true;
|
||||
ProgressionControls.SizeFlagsStretchRatio = 20;
|
||||
}
|
||||
|
||||
protected override void FrameUpdate(FrameEventArgs args)
|
||||
{
|
||||
base.FrameUpdate(args);
|
||||
|
||||
if (Claimed && _progression != null)
|
||||
{
|
||||
var remaining = _progression.Value - _timing.CurTime;
|
||||
|
||||
if (remaining.TotalSeconds > Duration.TotalSeconds - 3)
|
||||
_releaseButton.State = MagnetOfferingWindowReleaseButton.ButtonState.Enabling;
|
||||
else if (remaining.TotalSeconds > ReleaseTime)
|
||||
_releaseButton.State = MagnetOfferingWindowReleaseButton.ButtonState.Enabled;
|
||||
else
|
||||
_releaseButton.State = MagnetOfferingWindowReleaseButton.ButtonState.InProgress;
|
||||
}
|
||||
else
|
||||
_releaseButton.State = MagnetOfferingWindowReleaseButton.ButtonState.Disabled;
|
||||
}
|
||||
|
||||
public void SetButtonPressed(Action<BaseButton.ButtonEventArgs>? releasePressed)
|
||||
{
|
||||
_releaseButton.ReleasePressed += releasePressed;
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
<Button xmlns="https://spacestation14.io"
|
||||
xmlns:controls="clr-namespace:Content.Client.UserInterface.Controls"
|
||||
Name="ReleaseButton"
|
||||
MinWidth="150"
|
||||
Margin="5 5"
|
||||
HorizontalExpand="True"
|
||||
Disabled="True"
|
||||
Text="Magnet Inactive"/>
|
||||
|
|
@ -0,0 +1,88 @@
|
|||
using System.Linq;
|
||||
using Content.Client.Computer;
|
||||
using Content.Client.Stylesheets;
|
||||
using Content.Client.UserInterface.Controls;
|
||||
using Content.Shared.CCVar;
|
||||
using Content.Shared.Parallax.Biomes;
|
||||
using Content.Shared.Procedural;
|
||||
using Content.Shared.Salvage;
|
||||
using Content.Shared.Salvage.Expeditions;
|
||||
using Content.Shared.Salvage.Expeditions.Modifiers;
|
||||
using Content.Shared.Shuttles.BUIStates;
|
||||
using Robust.Client.AutoGenerated;
|
||||
using Robust.Client.Graphics;
|
||||
using Robust.Client.UserInterface;
|
||||
using Robust.Client.UserInterface.Controls;
|
||||
using Robust.Client.UserInterface.XAML;
|
||||
using Robust.Shared.Configuration;
|
||||
using Robust.Shared.Prototypes;
|
||||
using Robust.Shared.Timing;
|
||||
using Robust.Shared.Utility;
|
||||
|
||||
namespace Content.Client._DV.Salvage.UI;
|
||||
|
||||
[GenerateTypedNameReferences]
|
||||
public sealed partial class MagnetOfferingWindowReleaseButton : Button
|
||||
{
|
||||
public event Action<BaseButton.ButtonEventArgs>? ReleasePressed;
|
||||
|
||||
public enum ButtonState { Disabled, Enabled, Enabling, InProgress };
|
||||
|
||||
public MagnetOfferingWindowReleaseButton()
|
||||
{
|
||||
RobustXamlLoader.Load(this);
|
||||
IoCManager.InjectDependencies(this);
|
||||
|
||||
ReleaseButton.OnPressed += args =>
|
||||
{
|
||||
ReleasePressed?.Invoke(args);
|
||||
};
|
||||
}
|
||||
|
||||
//don't keep setting text!
|
||||
public ButtonState State
|
||||
{
|
||||
set
|
||||
{
|
||||
switch (value)
|
||||
{
|
||||
case ButtonState.Disabled:
|
||||
ReleaseButton.Disabled = true;
|
||||
ReleaseButton.Text = Loc.GetString("magnet-offering-window-inactive");
|
||||
WantsNegative = false;
|
||||
break;
|
||||
case ButtonState.Enabled:
|
||||
ReleaseButton.Disabled = false;
|
||||
ReleaseButton.Text = Loc.GetString("magnet-offering-window-release");
|
||||
WantsNegative = false;
|
||||
break;
|
||||
case ButtonState.Enabling:
|
||||
ReleaseButton.Disabled = true;
|
||||
ReleaseButton.Text = Loc.GetString("magnet-offering-window-waiting");
|
||||
WantsNegative = false;
|
||||
break;
|
||||
case ButtonState.InProgress:
|
||||
ReleaseButton.Disabled = true;
|
||||
ReleaseButton.Text = Loc.GetString("magnet-offering-window-releasing");
|
||||
WantsNegative = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
private bool WantsNegative
|
||||
{
|
||||
set
|
||||
{
|
||||
if (value && !ReleaseButton.HasStyleClass(((StyleClass.Negative))))
|
||||
ReleaseButton.AddStyleClass((StyleClass.Negative));
|
||||
else if (!value && ReleaseButton.HasStyleClass(((StyleClass.Negative))))
|
||||
ReleaseButton.RemoveStyleClass(((StyleClass.Negative)));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
|
@ -1,3 +1,4 @@
|
|||
using System.Diagnostics;
|
||||
using System.Numerics;
|
||||
using Content.Shared.Decals;
|
||||
using Content.Shared.Maps;
|
||||
|
|
@ -262,8 +263,13 @@ public sealed partial class DungeonSystem
|
|||
decal.ZIndex,
|
||||
decal.Cleanable);
|
||||
|
||||
DebugTools.Assert(result);
|
||||
//DebugTools.Assert(result); //BEGIN DeltaV - throwing an exception due to an invalid decal placement with DunGen is a pain.
|
||||
if (!result)
|
||||
Log.Debug("Failed decal placement"); //END DeltaV
|
||||
}
|
||||
}
|
||||
|
||||
if(room.DeleteAfterUse) //DeltaV - Add a means to queue room maps for cleaning if we don't want them lingering in memory.
|
||||
_maps.QueueDeleteMap((roomMap));
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ public sealed partial class SalvageMagnetComponent : Component
|
|||
/// Scales from 50% to 100%.
|
||||
/// </summary>
|
||||
[DataField]
|
||||
public float MagnetSpawnDistance = 64f;
|
||||
public float MagnetSpawnDistance = 80f; //DeltaV - was 64
|
||||
|
||||
/// <summary>
|
||||
/// How far offset to either side will the magnet wreck spawn.
|
||||
|
|
|
|||
|
|
@ -35,7 +35,14 @@ public sealed partial class SalvageMagnetDataComponent : Component
|
|||
/// Cooldown between offerings after one ends.
|
||||
/// </summary>
|
||||
[DataField]
|
||||
public TimeSpan OfferCooldown = TimeSpan.FromMinutes(2); //DeltaV: was 3 min
|
||||
public TimeSpan OfferCooldown = TimeSpan.FromMinutes(3);
|
||||
|
||||
/// <summary>
|
||||
/// DeltaV - Time to release magnet pulls after announcement or UI input.
|
||||
/// </summary>
|
||||
[DataField]
|
||||
public float ReleaseTime = 59;
|
||||
// Delta V - Magnet release code end
|
||||
|
||||
/// <summary>
|
||||
/// Seeds currently offered
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@ using System.Linq;
|
|||
using System.Numerics;
|
||||
using System.Threading.Tasks;
|
||||
using Content.Server.Salvage.Magnet;
|
||||
using Content.Shared.Mind.Components; //DeltaV
|
||||
using Content.Shared.Mobs.Components;
|
||||
using Content.Shared.Procedural;
|
||||
using Content.Shared.Radio;
|
||||
|
|
@ -108,7 +109,8 @@ public sealed partial class SalvageSystem
|
|||
{
|
||||
EndMagnet((uid, magnetData));
|
||||
}
|
||||
else if (!magnetData.Announced && (magnetData.EndTime.Value - curTime).TotalSeconds < 59) //DeltaV: was 31 seconds. Increased to give time to actually fulton a crate out.
|
||||
// else if (!magnetData.Announced && (magnetData.EndTime.Value - curTime).TotalSeconds < 31) DeltaV - we instead store this threshold in SalvageMagnetData so that it can be shared to UI for manual release.
|
||||
else if (!magnetData.Announced && (magnetData.EndTime.Value - curTime).TotalSeconds < magnetData.ReleaseTime) //DeltaV - Magnet release code alternative to above
|
||||
{
|
||||
var magnet = GetMagnet((uid, magnetData));
|
||||
|
||||
|
|
@ -147,18 +149,20 @@ public sealed partial class SalvageSystem
|
|||
}
|
||||
}
|
||||
|
||||
// Uhh yeah don't delete mobs or whatever
|
||||
var mobQuery = AllEntityQuery<MobStateComponent, TransformComponent>();
|
||||
// Uhh yeah don't delete mobs or whatever //DeltaV - this is a really bad idea, and leads to an unacceptable amount of buggy clutter. We only keep mobs with a mind.
|
||||
var mobQuery = AllEntityQuery<MindContainerComponent, TransformComponent>(); //DeltaV - was MobStateComponent instead of MindContainerComponent
|
||||
_detachEnts.Clear();
|
||||
|
||||
while (mobQuery.MoveNext(out var mobUid, out _, out var xform))
|
||||
while (mobQuery.MoveNext(out var mobUid, out var mindContainer, out var xform)) //DeltaV - added the out var mindContainer
|
||||
{
|
||||
if (xform.GridUid == null || !data.Comp.ActiveEntities.Contains(xform.GridUid.Value) || xform.MapUid == null)
|
||||
continue;
|
||||
|
||||
if (_salvMobQuery.HasComp(mobUid))
|
||||
// if (_salvMobQuery.HasComp(mobUid)) // DeltaV - we test against mind, instead of unreliable salvage mob solution.
|
||||
if (!mindContainer.HasMind)
|
||||
continue;
|
||||
|
||||
/* BEGIN DeltaV - we don't use this, we want to get rid of all the mobs
|
||||
bool CheckParents(EntityUid uid)
|
||||
{
|
||||
do
|
||||
|
|
@ -172,6 +176,7 @@ public sealed partial class SalvageSystem
|
|||
|
||||
if (CheckParents(mobUid))
|
||||
continue;
|
||||
*/ //END DeltaV
|
||||
|
||||
// Can't parent directly to map as it runs grid traversal.
|
||||
_detachEnts.Add(((mobUid, xform), xform.MapUid.Value, _transform.GetWorldPosition(xform)));
|
||||
|
|
@ -254,6 +259,8 @@ public sealed partial class SalvageSystem
|
|||
EndTime = dataComp.EndTime,
|
||||
NextOffer = dataComp.NextOffer,
|
||||
ActiveSeed = dataComp.ActiveSeed,
|
||||
ReleaseTime = dataComp.ReleaseTime //DeltaV - Magnet release code addition
|
||||
|
||||
});
|
||||
}
|
||||
|
||||
|
|
@ -276,6 +283,7 @@ public sealed partial class SalvageSystem
|
|||
EndTime = data.Comp.EndTime,
|
||||
NextOffer = data.Comp.NextOffer,
|
||||
ActiveSeed = data.Comp.ActiveSeed,
|
||||
ReleaseTime = data.Comp.ReleaseTime //DeltaV - Magnet release code addition
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
@ -285,10 +293,6 @@ public sealed partial class SalvageSystem
|
|||
var seed = data.Comp.Offered[index];
|
||||
|
||||
var offering = GetSalvageOffering(seed);
|
||||
// Begin DeltaV Addition: make wrecks cost mining points to pull
|
||||
if (offering.Cost > 0 && !(_points.TryFindIdCard(user) is {} idCard && _points.RemovePoints(idCard, offering.Cost)))
|
||||
return;
|
||||
// End DeltaV Addition
|
||||
var salvMap = _mapSystem.CreateMap();
|
||||
var salvMapXform = Transform(salvMap);
|
||||
|
||||
|
|
@ -302,14 +306,33 @@ public sealed partial class SalvageSystem
|
|||
{
|
||||
case AsteroidOffering asteroid:
|
||||
var grid = _mapManager.CreateGridEntity(salvMap);
|
||||
await _dungeon.GenerateDungeonAsync(asteroid.DungeonConfig, grid.Owner, grid.Comp, Vector2i.Zero, seed);
|
||||
try //BEGIN DeltaV - Error catching on asteroid generation, because dunGen is not robust.
|
||||
{
|
||||
await _dungeon.GenerateDungeonAsync(asteroid.DungeonConfig, grid.Owner, grid.Comp, Vector2i.Zero, seed);
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
Report(magnet, MagnetChannel, "salvage-system-announcement-spawn-debris-disintegrated");
|
||||
QueueDel(grid);
|
||||
}
|
||||
//END DeltaV
|
||||
break;
|
||||
case DebrisOffering debris:
|
||||
var debrisProto = _prototypeManager.Index<DungeonConfigPrototype>(debris.Id);
|
||||
// BEGIN DeltaV - Flexible debris generation, with error catching because DunGen is not robust
|
||||
var debrisGrid = _mapManager.CreateGridEntity(salvMap);
|
||||
await _dungeon.GenerateDungeonAsync(debrisProto, debrisGrid.Owner, debrisGrid.Comp, Vector2i.Zero, seed);
|
||||
|
||||
try
|
||||
{
|
||||
await _dungeon.GenerateDungeonAsync(debris.DungeonConfig, debrisGrid.Owner, debrisGrid.Comp, Vector2i.Zero, seed);
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
Report(magnet, MagnetChannel, "salvage-system-announcement-spawn-debris-disintegrated");
|
||||
QueueDel(debrisGrid);
|
||||
}
|
||||
//END DeltaV
|
||||
break;
|
||||
case SalvageOffering wreck:
|
||||
/*case SalvageOffering wreck: //BEGIN DeltaV - we no longer use wrecks
|
||||
var salvageProto = wreck.SalvageMap;
|
||||
|
||||
if (!_loader.TryLoadGrid(salvMapXform.MapID, salvageProto.MapPath, out _))
|
||||
|
|
@ -319,7 +342,7 @@ public sealed partial class SalvageSystem
|
|||
return;
|
||||
}
|
||||
|
||||
break;
|
||||
break;*/ //END DeltaV
|
||||
default:
|
||||
throw new ArgumentOutOfRangeException();
|
||||
}
|
||||
|
|
|
|||
|
|
@ -60,6 +60,7 @@ namespace Content.Server.Salvage
|
|||
|
||||
InitializeExpeditions();
|
||||
InitializeMagnet();
|
||||
InitializeMagnetRelease(); //DeltaV - for manual magnet release feature.
|
||||
InitializeRunner();
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -0,0 +1,45 @@
|
|||
using Content.Server.Salvage.Magnet;
|
||||
using Content.Shared._DV.Salvage.Magnet; //DeltaV
|
||||
|
||||
namespace Content.Server.Salvage;
|
||||
|
||||
public sealed partial class SalvageSystem
|
||||
{
|
||||
private void InitializeMagnetRelease()
|
||||
{
|
||||
SubscribeLocalEvent<SalvageMagnetComponent, MagnetReleaseEvent>(OnMagnetRelease); //DeltaV - Magnet release code
|
||||
}
|
||||
|
||||
private void OnMagnetRelease(EntityUid uid, SalvageMagnetComponent component, ref MagnetReleaseEvent args)
|
||||
{
|
||||
var station = _station.GetOwningStation(uid);
|
||||
|
||||
if (!TryComp(station, out SalvageMagnetDataComponent? dataComp) ||
|
||||
dataComp.EndTime == null)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
var curTime = _timing.CurTime;
|
||||
|
||||
if (!dataComp.Announced && (dataComp.EndTime.Value - curTime).TotalSeconds > dataComp.ReleaseTime)
|
||||
{
|
||||
dataComp.EndTime = curTime + TimeSpan.FromSeconds(dataComp.ReleaseTime);
|
||||
dataComp.NextOffer = dataComp.EndTime.Value;
|
||||
|
||||
UpdateMagnetUIs((station.Value, dataComp));
|
||||
|
||||
var magnet = GetMagnet((station.Value, dataComp));
|
||||
|
||||
if (magnet != null)
|
||||
{
|
||||
Report(magnet.Value.Owner,
|
||||
MagnetChannel,
|
||||
"salvage-system-announcement-release",
|
||||
("timeLeft", (dataComp.EndTime.Value - curTime).Seconds));
|
||||
}
|
||||
dataComp.Announced = true;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -34,4 +34,12 @@ public sealed partial class DungeonRoomPrototype : IPrototype
|
|||
/// </summary>
|
||||
[DataField]
|
||||
public ProtoId<ContentTileDefinition>? IgnoreTile;
|
||||
|
||||
/// <summary>
|
||||
/// DeltaV - If set to true, we will delete the source map from memory after spawn,
|
||||
/// saving memory for rooms we do not intend to reuse with great frequency.
|
||||
/// </summary>
|
||||
[DataField]
|
||||
public bool DeleteAfterUse;
|
||||
//DeltaV End
|
||||
}
|
||||
|
|
|
|||
|
|
@ -15,6 +15,4 @@ public record struct AsteroidOffering : ISalvageMagnetOffering
|
|||
/// Calculated marker layers for the asteroid.
|
||||
/// </summary>
|
||||
public Dictionary<string, int> MarkerLayers;
|
||||
|
||||
uint ISalvageMagnetOffering.Cost => 0; // DeltaV
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,3 +1,5 @@
|
|||
using Content.Shared.Procedural; //DeltaV
|
||||
|
||||
namespace Content.Shared.Salvage.Magnet;
|
||||
|
||||
/// <summary>
|
||||
|
|
@ -6,6 +8,6 @@ namespace Content.Shared.Salvage.Magnet;
|
|||
public record struct DebrisOffering : ISalvageMagnetOffering
|
||||
{
|
||||
public string Id;
|
||||
|
||||
uint ISalvageMagnetOffering.Cost => 0; // DeltaV: Debris is a very good source of materials for the station, so no cost
|
||||
public DungeonConfig DungeonConfig; //DeltaV - store config for dynamic loot assignment.
|
||||
public string LootId; //DeltaV - store loot ID for dynamic assignment.
|
||||
}
|
||||
|
|
|
|||
|
|
@ -2,8 +2,5 @@ namespace Content.Shared.Salvage.Magnet;
|
|||
|
||||
public interface ISalvageMagnetOffering
|
||||
{
|
||||
/// <summary>
|
||||
/// DeltaV: How many mining points this offering costs to accept.
|
||||
/// </summary>
|
||||
public uint Cost { get; }
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -11,6 +11,8 @@ public sealed class SalvageMagnetBoundUserInterfaceState : BoundUserInterfaceSta
|
|||
public TimeSpan Cooldown;
|
||||
public TimeSpan Duration;
|
||||
|
||||
public float ReleaseTime; //DeltaV - Magnet release code.
|
||||
|
||||
public int ActiveSeed;
|
||||
|
||||
public List<int> Offers;
|
||||
|
|
|
|||
|
|
@ -6,6 +6,4 @@ namespace Content.Shared.Salvage.Magnet;
|
|||
public record struct SalvageOffering : ISalvageMagnetOffering
|
||||
{
|
||||
public SalvageMapPrototype SalvageMap;
|
||||
|
||||
uint ISalvageMagnetOffering.Cost => 500; // DeltaV: Station gets next to no benefit from you pulling wrecks, force you to mine first.
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,8 @@
|
|||
using Content.Shared.Destructible.Thresholds;
|
||||
using Content.Shared.Parallax.Biomes;
|
||||
using Content.Shared.Procedural;
|
||||
using Content.Shared.Procedural.DungeonLayers;
|
||||
using Content.Shared.Procedural.PostGeneration;
|
||||
using Content.Shared.Random;
|
||||
using Content.Shared.Random.Helpers;
|
||||
using Content.Shared.Salvage.Magnet;
|
||||
|
|
@ -12,32 +14,43 @@ namespace Content.Shared.Salvage;
|
|||
|
||||
public abstract partial class SharedSalvageSystem
|
||||
{
|
||||
private readonly List<SalvageMapPrototype> _salvageMaps = new();
|
||||
//private readonly List<SalvageMapPrototype> _salvageMaps = new(); DeltaV - Salvage wreck maps are no longer used
|
||||
|
||||
private readonly Dictionary<ISalvageMagnetOffering, float> _offeringWeights = new()
|
||||
{
|
||||
{ new AsteroidOffering(), 2.0f }, // DeltaV: was 4.5f
|
||||
{ new DebrisOffering(), 3.5f }, // DeltaV: was 3.5f
|
||||
{ new SalvageOffering(), 4.5f }, // DeltaV: was 2.0f
|
||||
{ new AsteroidOffering(), 3.5f }, // DeltaV: was 4.5f
|
||||
{ new DebrisOffering(), 2f }, // DeltaV: was 3.5f
|
||||
// { new SalvageOffering(), 1.5f } DeltaV: SalvageOffering (wrecks) is removed
|
||||
};
|
||||
|
||||
private readonly List<ProtoId<DungeonConfigPrototype>> _asteroidConfigs = new()
|
||||
//BEGIN DeltaV - weight asteroid generation (to balance the varying Wreck spawns they each support)
|
||||
private readonly Dictionary<ProtoId<DungeonConfigPrototype>, float> _asteroidConfigs = new()
|
||||
{
|
||||
"BlobAsteroid",
|
||||
"ClusterAsteroid",
|
||||
"SpindlyAsteroid",
|
||||
"SwissCheeseAsteroid"
|
||||
{ "GiantBlobAsteroid", 0.25f},
|
||||
{ "BlobAsteroid", 1f},
|
||||
{ "ClusterAsteroid", 1.3f},
|
||||
{ "SpindlyAsteroid", 1.3f},
|
||||
{ "SwissCheeseAsteroid", 1.3f}
|
||||
};
|
||||
//DeltaV end
|
||||
|
||||
private readonly ProtoId<WeightedRandomPrototype> _asteroidOreWeights = "AsteroidOre";
|
||||
|
||||
private readonly MinMax _asteroidOreCount = new(5, 7);
|
||||
private readonly MinMax _asteroidOreCount = new(2, 4);
|
||||
|
||||
private readonly List<ProtoId<DungeonConfigPrototype>> _debrisConfigs = new()
|
||||
{
|
||||
"ChunkDebris"
|
||||
};
|
||||
|
||||
private readonly List<ProtoId<BiomeTemplatePrototype>> _debrisLootConfigs = new()
|
||||
{
|
||||
"SpaceDebrisLootRegular",
|
||||
"SpaceDebrisLootScrap",
|
||||
"SpaceDebrisLootValuables",
|
||||
"SpaceDebrisLootArcana"
|
||||
};
|
||||
|
||||
public ISalvageMagnetOffering GetSalvageOffering(int seed)
|
||||
{
|
||||
var rand = new System.Random(seed);
|
||||
|
|
@ -46,8 +59,8 @@ public abstract partial class SharedSalvageSystem
|
|||
switch (type)
|
||||
{
|
||||
case AsteroidOffering:
|
||||
var configId = _asteroidConfigs[rand.Next(_asteroidConfigs.Count)];
|
||||
var configProto =_proto.Index(configId);
|
||||
var configId = SharedRandomExtensions.Pick(_asteroidConfigs, rand); //DeltaV - we add weights to the asteroid types
|
||||
var configProto = _proto.Index(configId);
|
||||
var layers = new Dictionary<string, int>();
|
||||
|
||||
var config = new DungeonConfig
|
||||
|
|
@ -80,22 +93,34 @@ public abstract partial class SharedSalvageSystem
|
|||
};
|
||||
case DebrisOffering:
|
||||
var id = rand.Pick(_debrisConfigs);
|
||||
//BEGIN DeltaV - Debris generation breaks loot out as a separatly added layer to support dynamic generation. Mirrors asteroids vs ore.
|
||||
var debrisConfigProto = _proto.Index(id);
|
||||
|
||||
var debrisConfig = new DungeonConfig
|
||||
{
|
||||
Layers = new(debrisConfigProto.Layers),
|
||||
MaxCount = debrisConfigProto.MaxCount,
|
||||
MaxOffset = debrisConfigProto.MaxOffset,
|
||||
MinCount = debrisConfigProto.MinCount,
|
||||
MinOffset = debrisConfigProto.MinOffset,
|
||||
ReserveTiles = debrisConfigProto.ReserveTiles
|
||||
};
|
||||
|
||||
var debrisLootConfig = _debrisLootConfigs[rand.Next(_debrisLootConfigs.Count)];
|
||||
|
||||
debrisConfig.Layers.Add(new BiomeDunGen()
|
||||
{
|
||||
BiomeTemplate = _proto.Index(debrisLootConfig)
|
||||
});
|
||||
|
||||
return new DebrisOffering
|
||||
{
|
||||
Id = id
|
||||
Id = id,
|
||||
DungeonConfig = debrisConfig,
|
||||
LootId = debrisLootConfig.Id
|
||||
};
|
||||
case SalvageOffering:
|
||||
// Salvage map seed
|
||||
_salvageMaps.Clear();
|
||||
_salvageMaps.AddRange(_proto.EnumeratePrototypes<SalvageMapPrototype>());
|
||||
_salvageMaps.Sort((x, y) => string.Compare(x.ID, y.ID, StringComparison.Ordinal));
|
||||
var mapIndex = rand.Next(_salvageMaps.Count);
|
||||
var map = _salvageMaps[mapIndex];
|
||||
//END DeltaV
|
||||
|
||||
return new SalvageOffering
|
||||
{
|
||||
SalvageMap = map,
|
||||
};
|
||||
default:
|
||||
throw new NotImplementedException($"Salvage type {type} not implemented!");
|
||||
}
|
||||
|
|
|
|||
|
|
@ -0,0 +1,9 @@
|
|||
using Robust.Shared.Serialization;
|
||||
|
||||
namespace Content.Shared._DV.Salvage.Magnet;
|
||||
|
||||
/// <summary>
|
||||
/// Claim an offer from the magnet UI.
|
||||
/// </summary>
|
||||
[Serializable, NetSerializable]
|
||||
public sealed class MagnetReleaseEvent : BoundUserInterfaceMessage { }
|
||||
|
|
@ -1,3 +1,22 @@
|
|||
salvage-map-wreck-size-unknown = [color=purple]Unidentified[/color]
|
||||
|
||||
salvage-magnet-mining-points-cost = Cost: {$points} Mining Points
|
||||
|
||||
salvage-system-announcement-release = Magnet release manually triggered. Estimated time until loss: {$timeLeft} seconds.
|
||||
|
||||
magnet-offering-window-inactive = Magnet Inactive
|
||||
magnet-offering-window-waiting = Please Wait...
|
||||
magnet-offering-window-release = Release Magnet
|
||||
magnet-offering-window-releasing = Releasing...
|
||||
|
||||
|
||||
salvage-magnet-debris-loot = {$loot ->
|
||||
[LootScrap] Scrap
|
||||
[LootValuables] Valuables
|
||||
[LootArcana] Arcana
|
||||
*[other] {$loot}
|
||||
}
|
||||
|
||||
|
||||
# Asteroids
|
||||
dungeon-config-proto-GiantBlobAsteroid = Asteroid chunk
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
|
@ -0,0 +1,562 @@
|
|||
meta:
|
||||
format: 7
|
||||
category: Map
|
||||
engineVersion: 270.1.0
|
||||
forkId: ""
|
||||
forkVersion: ""
|
||||
time: 07/05/2026 19:59:01
|
||||
entityCount: 82
|
||||
maps:
|
||||
- 192
|
||||
grids:
|
||||
- 192
|
||||
orphans: []
|
||||
nullspace: []
|
||||
tilemap:
|
||||
0: Space
|
||||
7: FloorAsteroidSand
|
||||
1: FloorShuttleOrange
|
||||
entities:
|
||||
- proto: ""
|
||||
entities:
|
||||
- uid: 192
|
||||
components:
|
||||
- type: MetaData
|
||||
- type: Transform
|
||||
- type: Map
|
||||
mapPaused: True
|
||||
- type: GridTree
|
||||
- type: MapGrid
|
||||
chunks:
|
||||
-1,-1:
|
||||
ind: -1,-1
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAYABwAAAAAFAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAABwAAAAAAAAcAAAAABgAHAAAAAAAABwAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAgAHAAAAAAEABwAAAAAFAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAACQAHAAAAAAAABwAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAA==
|
||||
version: 7
|
||||
0,-1:
|
||||
ind: 0,-1
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAcABwAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAsABwAAAAAAAAcAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAkAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAYABwAAAAAAAAcAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACAAcAAAAABQAHAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
version: 7
|
||||
0,0:
|
||||
ind: 0,0
|
||||
tiles: BwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
version: 7
|
||||
-1,0:
|
||||
ind: -1,0
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAEABwAAAAAHAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAcAAAAAAAAHAAAAAAIABwAAAAAAAAcAAAAACQAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAgABwAAAAACAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
version: 7
|
||||
- type: Broadphase
|
||||
- type: Physics
|
||||
bodyStatus: InAir
|
||||
angularDamping: 0.05
|
||||
linearDamping: 0.05
|
||||
fixedRotation: False
|
||||
canCollide: False
|
||||
bodyType: Dynamic
|
||||
- type: Fixtures
|
||||
fixtures: {}
|
||||
- type: OccluderTree
|
||||
- type: Shuttle
|
||||
dampingModifier: 0.25
|
||||
- type: GridPathfinding
|
||||
- type: Gravity
|
||||
gravityShakeSound: !type:SoundPathSpecifier
|
||||
path: /Audio/Effects/alert.ogg
|
||||
- type: DecalGrid
|
||||
chunkCollection:
|
||||
version: 2
|
||||
nodes: []
|
||||
- type: GridAtmosphere
|
||||
version: 2
|
||||
data:
|
||||
tiles:
|
||||
-1,-2:
|
||||
0: 65535
|
||||
-1,-1:
|
||||
0: 65535
|
||||
0,-1:
|
||||
0: 65535
|
||||
-3,-1:
|
||||
0: 52424
|
||||
-2,-2:
|
||||
0: 65518
|
||||
-2,-1:
|
||||
0: 65535
|
||||
-2,-3:
|
||||
0: 34816
|
||||
-1,-3:
|
||||
0: 65532
|
||||
0,-4:
|
||||
0: 12288
|
||||
0,-3:
|
||||
0: 65527
|
||||
0,-2:
|
||||
0: 65535
|
||||
1,-3:
|
||||
0: 12544
|
||||
1,-2:
|
||||
0: 63351
|
||||
1,-1:
|
||||
0: 65535
|
||||
2,-1:
|
||||
0: 272
|
||||
0,0:
|
||||
0: 65535
|
||||
0,1:
|
||||
0: 5119
|
||||
1,0:
|
||||
0: 4983
|
||||
-3,0:
|
||||
0: 136
|
||||
-2,0:
|
||||
0: 65535
|
||||
-2,1:
|
||||
0: 206
|
||||
-1,0:
|
||||
0: 65535
|
||||
-1,1:
|
||||
0: 53247
|
||||
-1,2:
|
||||
0: 8
|
||||
uniqueMixes:
|
||||
- volume: 2500
|
||||
temperature: 293.15
|
||||
moles:
|
||||
Oxygen: 21.824879
|
||||
Nitrogen: 82.10312
|
||||
chunkSize: 4
|
||||
- type: GasTileOverlay
|
||||
- type: SpreaderGrid
|
||||
- type: ExplosionAirtightGrid
|
||||
- type: RadiationGridResistance
|
||||
- proto: ArgocyteAISpawner
|
||||
entities:
|
||||
- uid: 10
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -1.5,0.5
|
||||
parent: 192
|
||||
- proto: AsteroidAltRock
|
||||
entities:
|
||||
- uid: 14
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -4.5,-0.5
|
||||
parent: 192
|
||||
- uid: 16
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -4.5,-1.5
|
||||
parent: 192
|
||||
- uid: 18
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -3.5,-4.5
|
||||
parent: 192
|
||||
- uid: 23
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -2.5,2.5
|
||||
parent: 192
|
||||
- uid: 24
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.5,-1.5
|
||||
parent: 192
|
||||
- uid: 25
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -3.5,2.5
|
||||
parent: 192
|
||||
- uid: 26
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -4.5,-4.5
|
||||
parent: 192
|
||||
- uid: 27
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.5,-3.5
|
||||
parent: 192
|
||||
- uid: 28
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.5,-4.5
|
||||
parent: 192
|
||||
- proto: FloraRockSolid
|
||||
entities:
|
||||
- uid: 2
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -4.5,2.5
|
||||
parent: 192
|
||||
- uid: 4
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -2.5,-1.5
|
||||
parent: 192
|
||||
- uid: 9
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,-4.5
|
||||
parent: 192
|
||||
- uid: 12
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.5,1.5
|
||||
parent: 192
|
||||
- uid: 15
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -4.5,-3.5
|
||||
parent: 192
|
||||
- proto: MaterialBones
|
||||
entities:
|
||||
- uid: 1
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.3050873,2.3124654
|
||||
parent: 192
|
||||
- proto: MaterialBones1
|
||||
entities:
|
||||
- uid: 3
|
||||
components:
|
||||
- type: Transform
|
||||
rot: 3.141592653589793 rad
|
||||
pos: -0.11157942,-3.3789876
|
||||
parent: 192
|
||||
- uid: 5
|
||||
components:
|
||||
- type: Transform
|
||||
rot: 3.141592653589793 rad
|
||||
pos: -0.8928294,-3.003727
|
||||
parent: 192
|
||||
- uid: 6
|
||||
components:
|
||||
- type: Transform
|
||||
rot: -1.5707963267948966 rad
|
||||
pos: -2.7469962,-4.3171396
|
||||
parent: 192
|
||||
- uid: 7
|
||||
components:
|
||||
- type: Transform
|
||||
rot: 1.5707963267948966 rad
|
||||
pos: -2.1532462,-1.1586952
|
||||
parent: 192
|
||||
- uid: 8
|
||||
components:
|
||||
- type: Transform
|
||||
rot: -1.5707963267948966 rad
|
||||
pos: -4.090746,-2.6493142
|
||||
parent: 192
|
||||
- uid: 13
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -2.9761631,0.123445034
|
||||
parent: 192
|
||||
- uid: 17
|
||||
components:
|
||||
- type: Transform
|
||||
rot: 3.141592653589793 rad
|
||||
pos: 1.2946706,-2.6701615
|
||||
parent: 192
|
||||
- uid: 21
|
||||
components:
|
||||
- type: Transform
|
||||
rot: -1.5707963267948966 rad
|
||||
pos: 1.1071706,0.23810792
|
||||
parent: 192
|
||||
- uid: 22
|
||||
components:
|
||||
- type: Transform
|
||||
rot: -1.5707963267948966 rad
|
||||
pos: 0.58633727,2.2916176
|
||||
parent: 192
|
||||
- proto: RandomArtifactSpawner
|
||||
entities:
|
||||
- uid: 11
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -1.5,-0.5
|
||||
parent: 192
|
||||
- proto: RandomRockSpawner
|
||||
entities:
|
||||
- uid: 57
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -4.5,4.5
|
||||
parent: 192
|
||||
- uid: 58
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -4.5,3.5
|
||||
parent: 192
|
||||
- uid: 59
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -3.5,4.5
|
||||
parent: 192
|
||||
- uid: 60
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -3.5,3.5
|
||||
parent: 192
|
||||
- uid: 61
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -2.5,4.5
|
||||
parent: 192
|
||||
- uid: 62
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -2.5,3.5
|
||||
parent: 192
|
||||
- uid: 63
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -1.5,4.5
|
||||
parent: 192
|
||||
- uid: 65
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,4.5
|
||||
parent: 192
|
||||
- uid: 67
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.5,4.5
|
||||
parent: 192
|
||||
- uid: 68
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.5,3.5
|
||||
parent: 192
|
||||
- uid: 69
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.5,4.5
|
||||
parent: 192
|
||||
- uid: 70
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.5,3.5
|
||||
parent: 192
|
||||
- uid: 79
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.5,3.5
|
||||
parent: 192
|
||||
- uid: 80
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.5,2.5
|
||||
parent: 192
|
||||
- uid: 81
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.5,1.5
|
||||
parent: 192
|
||||
- uid: 82
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.5,0.5
|
||||
parent: 192
|
||||
- uid: 83
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.5,-0.5
|
||||
parent: 192
|
||||
- uid: 84
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.5,-1.5
|
||||
parent: 192
|
||||
- uid: 85
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.5,-2.5
|
||||
parent: 192
|
||||
- uid: 86
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.5,-3.5
|
||||
parent: 192
|
||||
- uid: 87
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.5,-4.5
|
||||
parent: 192
|
||||
- uid: 92
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 3.5,3.5
|
||||
parent: 192
|
||||
- uid: 93
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 3.5,2.5
|
||||
parent: 192
|
||||
- uid: 94
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 3.5,1.5
|
||||
parent: 192
|
||||
- uid: 95
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 3.5,0.5
|
||||
parent: 192
|
||||
- uid: 128
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.5,-5.5
|
||||
parent: 192
|
||||
- uid: 134
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.5,-5.5
|
||||
parent: 192
|
||||
- uid: 135
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.5,-6.5
|
||||
parent: 192
|
||||
- uid: 140
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,-5.5
|
||||
parent: 192
|
||||
- uid: 141
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,-6.5
|
||||
parent: 192
|
||||
- uid: 149
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -1.5,-6.5
|
||||
parent: 192
|
||||
- uid: 150
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -1.5,-5.5
|
||||
parent: 192
|
||||
- uid: 155
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -2.5,-5.5
|
||||
parent: 192
|
||||
- uid: 156
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -3.5,-5.5
|
||||
parent: 192
|
||||
- uid: 159
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -4.5,-5.5
|
||||
parent: 192
|
||||
- uid: 164
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -5.5,-5.5
|
||||
parent: 192
|
||||
- uid: 165
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -5.5,-4.5
|
||||
parent: 192
|
||||
- uid: 166
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -5.5,-3.5
|
||||
parent: 192
|
||||
- uid: 167
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -5.5,-2.5
|
||||
parent: 192
|
||||
- uid: 168
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -5.5,-1.5
|
||||
parent: 192
|
||||
- uid: 169
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -5.5,-0.5
|
||||
parent: 192
|
||||
- uid: 172
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -5.5,2.5
|
||||
parent: 192
|
||||
- uid: 173
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -5.5,3.5
|
||||
parent: 192
|
||||
- uid: 174
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -6.5,2.5
|
||||
parent: 192
|
||||
- uid: 175
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -6.5,1.5
|
||||
parent: 192
|
||||
- uid: 176
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -6.5,0.5
|
||||
parent: 192
|
||||
- uid: 177
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -6.5,-0.5
|
||||
parent: 192
|
||||
- uid: 178
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -6.5,-1.5
|
||||
parent: 192
|
||||
- uid: 179
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -6.5,-2.5
|
||||
parent: 192
|
||||
- uid: 180
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -6.5,-3.5
|
||||
parent: 192
|
||||
- uid: 186
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -7.5,-1.5
|
||||
parent: 192
|
||||
- uid: 187
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -7.5,-0.5
|
||||
parent: 192
|
||||
- uid: 188
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -7.5,0.5
|
||||
parent: 192
|
||||
- proto: RockGuitarInstrument
|
||||
entities:
|
||||
- uid: 20
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.034253955,2.4062808
|
||||
parent: 192
|
||||
- proto: WarpPointDebris
|
||||
entities:
|
||||
- uid: 19
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -1.5,-1.5
|
||||
parent: 192
|
||||
...
|
||||
|
|
@ -0,0 +1,667 @@
|
|||
meta:
|
||||
format: 7
|
||||
category: Map
|
||||
engineVersion: 270.1.0
|
||||
forkId: ""
|
||||
forkVersion: ""
|
||||
time: 07/05/2026 19:55:28
|
||||
entityCount: 105
|
||||
maps:
|
||||
- 192
|
||||
grids:
|
||||
- 192
|
||||
orphans: []
|
||||
nullspace: []
|
||||
tilemap:
|
||||
0: Space
|
||||
7: FloorAsteroidSand
|
||||
1: FloorShuttleOrange
|
||||
entities:
|
||||
- proto: ""
|
||||
entities:
|
||||
- uid: 192
|
||||
components:
|
||||
- type: MetaData
|
||||
- type: Transform
|
||||
- type: Map
|
||||
mapPaused: True
|
||||
- type: GridTree
|
||||
- type: MapGrid
|
||||
chunks:
|
||||
-1,-1:
|
||||
ind: -1,-1
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABwAAAAALAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAYABwAAAAAFAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAABwAAAAAAAAcAAAAABgAHAAAAAAAABwAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAgAHAAAAAAEABwAAAAAFAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAACQAHAAAAAAAABwAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAA==
|
||||
version: 7
|
||||
0,-1:
|
||||
ind: 0,-1
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAcABwAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAsABwAAAAAAAAcAAAAAAAAHAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAkABwAAAAAFAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAYABwAAAAAAAAcAAAAAAAAHAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACAAcAAAAABQAHAAAAAAAABwAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
version: 7
|
||||
0,0:
|
||||
ind: 0,0
|
||||
tiles: BwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAHAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
version: 7
|
||||
-1,0:
|
||||
ind: -1,0
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAABwAAAAAHAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAcAAAAAAAAHAAAAAAIABwAAAAAAAAcAAAAACQAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAgABwAAAAACAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAcAAAAAAAAHAAAAAAsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
version: 7
|
||||
- type: Broadphase
|
||||
- type: Physics
|
||||
bodyStatus: InAir
|
||||
angularDamping: 0.05
|
||||
linearDamping: 0.05
|
||||
fixedRotation: False
|
||||
canCollide: False
|
||||
bodyType: Dynamic
|
||||
- type: Fixtures
|
||||
fixtures: {}
|
||||
- type: OccluderTree
|
||||
- type: Shuttle
|
||||
dampingModifier: 0.25
|
||||
- type: GridPathfinding
|
||||
- type: Gravity
|
||||
gravityShakeSound: !type:SoundPathSpecifier
|
||||
path: /Audio/Effects/alert.ogg
|
||||
- type: DecalGrid
|
||||
chunkCollection:
|
||||
version: 2
|
||||
nodes: []
|
||||
- type: GridAtmosphere
|
||||
version: 2
|
||||
data:
|
||||
tiles:
|
||||
-1,-2:
|
||||
0: 65535
|
||||
-1,-1:
|
||||
0: 65535
|
||||
0,-1:
|
||||
0: 65535
|
||||
-3,-1:
|
||||
0: 52424
|
||||
-2,-2:
|
||||
0: 65518
|
||||
-2,-1:
|
||||
0: 65535
|
||||
-2,-3:
|
||||
0: 34816
|
||||
-1,-3:
|
||||
0: 65532
|
||||
0,-4:
|
||||
0: 12288
|
||||
0,-3:
|
||||
0: 65527
|
||||
0,-2:
|
||||
0: 65535
|
||||
1,-3:
|
||||
0: 12544
|
||||
1,-2:
|
||||
0: 63351
|
||||
1,-1:
|
||||
0: 65535
|
||||
2,-1:
|
||||
0: 272
|
||||
0,0:
|
||||
0: 65535
|
||||
0,1:
|
||||
0: 5119
|
||||
1,0:
|
||||
0: 4983
|
||||
-3,0:
|
||||
0: 136
|
||||
-2,0:
|
||||
0: 65535
|
||||
-2,1:
|
||||
0: 206
|
||||
-1,0:
|
||||
0: 65535
|
||||
-1,1:
|
||||
0: 53247
|
||||
-1,2:
|
||||
0: 8
|
||||
uniqueMixes:
|
||||
- volume: 2500
|
||||
temperature: 293.15
|
||||
moles:
|
||||
Oxygen: 21.824879
|
||||
Nitrogen: 82.10312
|
||||
chunkSize: 4
|
||||
- type: GasTileOverlay
|
||||
- type: SpreaderGrid
|
||||
- type: ExplosionAirtightGrid
|
||||
- type: RadiationGridResistance
|
||||
- proto: AsteroidAltRock
|
||||
entities:
|
||||
- uid: 41
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -6.5,-1.5
|
||||
parent: 192
|
||||
- uid: 42
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -5.5,-2.5
|
||||
parent: 192
|
||||
- uid: 43
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -6.5,-0.5
|
||||
parent: 192
|
||||
- uid: 44
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -5.5,2.5
|
||||
parent: 192
|
||||
- uid: 45
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -5.5,0.5
|
||||
parent: 192
|
||||
- uid: 46
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -5.5,1.5
|
||||
parent: 192
|
||||
- uid: 47
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -1.5,4.5
|
||||
parent: 192
|
||||
- uid: 48
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,4.5
|
||||
parent: 192
|
||||
- uid: 49
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,5.5
|
||||
parent: 192
|
||||
- uid: 50
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.5,4.5
|
||||
parent: 192
|
||||
- uid: 51
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.5,4.5
|
||||
parent: 192
|
||||
- uid: 52
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.5,3.5
|
||||
parent: 192
|
||||
- uid: 53
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,3.5
|
||||
parent: 192
|
||||
- uid: 54
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -6.5,1.5
|
||||
parent: 192
|
||||
- uid: 55
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -1.5,5.5
|
||||
parent: 192
|
||||
- uid: 56
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -6.5,2.5
|
||||
parent: 192
|
||||
- uid: 57
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.5,3.5
|
||||
parent: 192
|
||||
- uid: 58
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.5,3.5
|
||||
parent: 192
|
||||
- uid: 59
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.5,2.5
|
||||
parent: 192
|
||||
- uid: 60
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.5,0.5
|
||||
parent: 192
|
||||
- uid: 61
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.5,1.5
|
||||
parent: 192
|
||||
- uid: 62
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.5,-3.5
|
||||
parent: 192
|
||||
- uid: 63
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 3.5,-4.5
|
||||
parent: 192
|
||||
- uid: 64
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 3.5,-3.5
|
||||
parent: 192
|
||||
- uid: 65
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 3.5,3.5
|
||||
parent: 192
|
||||
- uid: 66
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 3.5,2.5
|
||||
parent: 192
|
||||
- uid: 67
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.5,-5.5
|
||||
parent: 192
|
||||
- uid: 68
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 3.5,-0.5
|
||||
parent: 192
|
||||
- uid: 69
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 3.5,-1.5
|
||||
parent: 192
|
||||
- uid: 70
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.5,-0.5
|
||||
parent: 192
|
||||
- uid: 71
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 4.5,-2.5
|
||||
parent: 192
|
||||
- uid: 72
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 4.5,-3.5
|
||||
parent: 192
|
||||
- uid: 73
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.5,-2.5
|
||||
parent: 192
|
||||
- uid: 74
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.5,-4.5
|
||||
parent: 192
|
||||
- uid: 75
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -6.5,-3.5
|
||||
parent: 192
|
||||
- uid: 76
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 3.5,-2.5
|
||||
parent: 192
|
||||
- uid: 77
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,-6.5
|
||||
parent: 192
|
||||
- uid: 78
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.5,-5.5
|
||||
parent: 192
|
||||
- uid: 79
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.5,-5.5
|
||||
parent: 192
|
||||
- uid: 80
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.5,-6.5
|
||||
parent: 192
|
||||
- uid: 81
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.5,-6.5
|
||||
parent: 192
|
||||
- uid: 82
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -2.5,-7.5
|
||||
parent: 192
|
||||
- uid: 83
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -2.5,-6.5
|
||||
parent: 192
|
||||
- uid: 84
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,-7.5
|
||||
parent: 192
|
||||
- uid: 85
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -1.5,-6.5
|
||||
parent: 192
|
||||
- uid: 86
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -1.5,-7.5
|
||||
parent: 192
|
||||
- uid: 87
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -4.5,-5.5
|
||||
parent: 192
|
||||
- uid: 88
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -3.5,-5.5
|
||||
parent: 192
|
||||
- uid: 89
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -3.5,-6.5
|
||||
parent: 192
|
||||
- uid: 90
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.5,-7.5
|
||||
parent: 192
|
||||
- uid: 91
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -6.5,-2.5
|
||||
parent: 192
|
||||
- uid: 92
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -7.5,-0.5
|
||||
parent: 192
|
||||
- uid: 93
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -7.5,-2.5
|
||||
parent: 192
|
||||
- uid: 94
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -7.5,-1.5
|
||||
parent: 192
|
||||
- uid: 95
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -5.5,3.5
|
||||
parent: 192
|
||||
- uid: 96
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -4.5,3.5
|
||||
parent: 192
|
||||
- uid: 97
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -3.5,3.5
|
||||
parent: 192
|
||||
- uid: 98
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -2.5,4.5
|
||||
parent: 192
|
||||
- uid: 99
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -3.5,4.5
|
||||
parent: 192
|
||||
- uid: 100
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -4.5,4.5
|
||||
parent: 192
|
||||
- uid: 101
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -6.5,0.5
|
||||
parent: 192
|
||||
- uid: 102
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -5.5,-3.5
|
||||
parent: 192
|
||||
- uid: 103
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -5.5,-5.5
|
||||
parent: 192
|
||||
- uid: 104
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -5.5,-4.5
|
||||
parent: 192
|
||||
- proto: CrystalSpawner
|
||||
entities:
|
||||
- uid: 2
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -2.5,2.5
|
||||
parent: 192
|
||||
- uid: 3
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.5,-4.5
|
||||
parent: 192
|
||||
- uid: 4
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,1.5
|
||||
parent: 192
|
||||
- uid: 5
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.5,2.5
|
||||
parent: 192
|
||||
- uid: 6
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.5,0.5
|
||||
parent: 192
|
||||
- uid: 7
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -2.5,-1.5
|
||||
parent: 192
|
||||
- uid: 10
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.5,-0.5
|
||||
parent: 192
|
||||
- uid: 12
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -4.5,-2.5
|
||||
parent: 192
|
||||
- uid: 13
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -1.5,-4.5
|
||||
parent: 192
|
||||
- uid: 15
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.5,-0.5
|
||||
parent: 192
|
||||
- uid: 18
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -4.5,-4.5
|
||||
parent: 192
|
||||
- uid: 19
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -2.5,-3.5
|
||||
parent: 192
|
||||
- uid: 20
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -3.5,-3.5
|
||||
parent: 192
|
||||
- uid: 23
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -3.5,-1.5
|
||||
parent: 192
|
||||
- uid: 25
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -4.5,-3.5
|
||||
parent: 192
|
||||
- uid: 26
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -4.5,1.5
|
||||
parent: 192
|
||||
- uid: 28
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,-0.5
|
||||
parent: 192
|
||||
- uid: 29
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.5,-2.5
|
||||
parent: 192
|
||||
- uid: 30
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -3.5,-2.5
|
||||
parent: 192
|
||||
- uid: 31
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -4.5,2.5
|
||||
parent: 192
|
||||
- uid: 32
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.5,-1.5
|
||||
parent: 192
|
||||
- uid: 33
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.5,1.5
|
||||
parent: 192
|
||||
- uid: 35
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.5,-3.5
|
||||
parent: 192
|
||||
- uid: 36
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -2.5,0.5
|
||||
parent: 192
|
||||
- uid: 39
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.5,-3.5
|
||||
parent: 192
|
||||
- uid: 40
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.5,-4.5
|
||||
parent: 192
|
||||
- proto: Ectoplasm
|
||||
entities:
|
||||
- uid: 1
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -2.7309277,-0.68331456
|
||||
parent: 192
|
||||
- uid: 11
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -2.6788437,-4.7382135
|
||||
parent: 192
|
||||
- uid: 14
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -3.4913437,-4.456768
|
||||
parent: 192
|
||||
- uid: 16
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -1.3246775,0.8698478
|
||||
parent: 192
|
||||
- uid: 24
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -3.4392607,2.1415641
|
||||
parent: 192
|
||||
- uid: 34
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.39407265,-2.851487
|
||||
parent: 192
|
||||
- proto: RandomAmmoBox
|
||||
entities:
|
||||
- uid: 8
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.5,0.5
|
||||
parent: 192
|
||||
- proto: RandomArtifactSpawner
|
||||
entities:
|
||||
- uid: 21
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -1.5,-0.5
|
||||
parent: 192
|
||||
- proto: SalvagePartsSpawnerMid
|
||||
entities:
|
||||
- uid: 38
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.5,-1.5
|
||||
parent: 192
|
||||
- proto: WarpPointDebris
|
||||
entities:
|
||||
- uid: 37
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -1.5,-1.5
|
||||
parent: 192
|
||||
- proto: WatcherAISpawner
|
||||
entities:
|
||||
- uid: 9
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.5,1.5
|
||||
parent: 192
|
||||
- uid: 17
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,-4.5
|
||||
parent: 192
|
||||
- uid: 22
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -4.5,-0.5
|
||||
parent: 192
|
||||
- uid: 27
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,2.5
|
||||
parent: 192
|
||||
...
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
|
@ -0,0 +1,933 @@
|
|||
meta:
|
||||
format: 7
|
||||
category: Map
|
||||
engineVersion: 270.1.0
|
||||
forkId: ""
|
||||
forkVersion: ""
|
||||
time: 07/04/2026 08:19:24
|
||||
entityCount: 123
|
||||
maps:
|
||||
- 50
|
||||
grids:
|
||||
- 50
|
||||
orphans: []
|
||||
nullspace: []
|
||||
tilemap:
|
||||
0: Space
|
||||
7: FloorAsteroidSand
|
||||
11: FloorAsteroidTile
|
||||
1: FloorShuttleOrange
|
||||
121: Lattice
|
||||
122: Plating
|
||||
entities:
|
||||
- proto: ""
|
||||
entities:
|
||||
- uid: 50
|
||||
components:
|
||||
- type: MetaData
|
||||
- type: Transform
|
||||
- type: Map
|
||||
mapPaused: True
|
||||
- type: GridTree
|
||||
- type: MapGrid
|
||||
chunks:
|
||||
-1,-1:
|
||||
ind: -1,-1
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAHAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAALAAAAAAAACwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAegAAAAAAAHoAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAHoAAAAAAAALAAAAAAAACwAAAAAAAA==
|
||||
version: 7
|
||||
-1,0:
|
||||
ind: -1,0
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAHoAAAAAAAALAAAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAB6AAAAAAAACwAAAAAAAAsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAcAAAAAAAAHAAAAAAAAegAAAAAAAAsAAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAcAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAHAAAAAAAABwAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
version: 7
|
||||
0,-1:
|
||||
ind: 0,-1
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAABwAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAcAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
version: 7
|
||||
0,0:
|
||||
ind: 0,0
|
||||
tiles: CwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAABwAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAB6AAAAAAAABwAAAAAAAAcAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAAegAAAAAAAAcAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAHoAAAAAAAAHAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAAegAAAAAAAAcAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
version: 7
|
||||
- type: Broadphase
|
||||
- type: Physics
|
||||
bodyStatus: InAir
|
||||
angularDamping: 0.05
|
||||
linearDamping: 0.05
|
||||
fixedRotation: False
|
||||
canCollide: False
|
||||
bodyType: Dynamic
|
||||
- type: Fixtures
|
||||
fixtures: {}
|
||||
- type: Gravity
|
||||
gravityShakeSound: !type:SoundPathSpecifier
|
||||
path: /Audio/Effects/alert.ogg
|
||||
- type: DecalGrid
|
||||
chunkCollection:
|
||||
version: 2
|
||||
nodes:
|
||||
- node:
|
||||
color: '#FFFFFFFF'
|
||||
id: Basalt1
|
||||
decals:
|
||||
28: 4.8237777,-0.19296348
|
||||
31: 1,8
|
||||
- node:
|
||||
color: '#FFFFFFFF'
|
||||
id: Basalt3
|
||||
decals:
|
||||
29: 1,5
|
||||
- node:
|
||||
color: '#FFFFFFFF'
|
||||
id: Basalt4
|
||||
decals:
|
||||
32: 4,3
|
||||
- node:
|
||||
color: '#FFFFFFFF'
|
||||
id: Basalt8
|
||||
decals:
|
||||
33: 4,-3
|
||||
- node:
|
||||
color: '#FFFFFFFF'
|
||||
id: Basalt9
|
||||
decals:
|
||||
30: -4,4
|
||||
- node:
|
||||
color: '#FFFFFFFF'
|
||||
id: Bot
|
||||
decals:
|
||||
26: 0,1
|
||||
27: 1,1
|
||||
- node:
|
||||
angle: 3.141592653589793 rad
|
||||
color: '#FFFFFFFF'
|
||||
id: Bot
|
||||
decals:
|
||||
21: -2,1
|
||||
22: -2,0
|
||||
23: 0,-1
|
||||
24: 1,-1
|
||||
25: 2,-1
|
||||
- node:
|
||||
angle: 3.141592653589793 rad
|
||||
color: '#FFFFFFFF'
|
||||
id: DirtHeavy
|
||||
decals:
|
||||
17: -5,-3
|
||||
- node:
|
||||
angle: 3.141592653589793 rad
|
||||
color: '#FFFFFFFF'
|
||||
id: DirtLight
|
||||
decals:
|
||||
11: -2,1
|
||||
12: 1,2
|
||||
13: 3,0
|
||||
18: -3,-4
|
||||
- node:
|
||||
angle: 3.141592653589793 rad
|
||||
color: '#FFFFFFFF'
|
||||
id: DirtMedium
|
||||
decals:
|
||||
14: 1,1
|
||||
15: -2,-4
|
||||
16: -5,-5
|
||||
19: -2,-1
|
||||
20: 3,2
|
||||
- node:
|
||||
color: '#FFFFFFFF'
|
||||
id: StandClear
|
||||
decals:
|
||||
0: -1,2
|
||||
1: 2,2
|
||||
- node:
|
||||
angle: 1.5707963267948966 rad
|
||||
color: '#FFFFFFFF'
|
||||
id: WarnCornerFlipped
|
||||
decals:
|
||||
5: 3,2
|
||||
- node:
|
||||
angle: 1.5707963267948966 rad
|
||||
color: '#FFFFFFFF'
|
||||
id: WarningLine
|
||||
decals:
|
||||
2: 3,-1
|
||||
3: 3,0
|
||||
4: 3,1
|
||||
- node:
|
||||
angle: 3.141592653589793 rad
|
||||
color: '#FFFFFFFF'
|
||||
id: WarningLine
|
||||
decals:
|
||||
6: 2,2
|
||||
7: 1,2
|
||||
8: 0,2
|
||||
9: -1,2
|
||||
10: -2,2
|
||||
- type: GridAtmosphere
|
||||
version: 2
|
||||
data:
|
||||
tiles:
|
||||
-1,-1:
|
||||
0: 65535
|
||||
-1,0:
|
||||
0: 36863
|
||||
0,-1:
|
||||
0: 65535
|
||||
0,0:
|
||||
0: 20479
|
||||
-2,-2:
|
||||
0: 60416
|
||||
-2,-1:
|
||||
0: 61166
|
||||
-1,-2:
|
||||
0: 65280
|
||||
-2,0:
|
||||
0: 2254
|
||||
-1,1:
|
||||
0: 35976
|
||||
0,-2:
|
||||
0: 28928
|
||||
0,1:
|
||||
0: 20292
|
||||
uniqueMixes:
|
||||
- volume: 2500
|
||||
temperature: 293.15
|
||||
moles:
|
||||
Oxygen: 21.824879
|
||||
Nitrogen: 82.10312
|
||||
chunkSize: 4
|
||||
- type: OccluderTree
|
||||
- type: Shuttle
|
||||
dampingModifier: 0.25
|
||||
- type: RadiationGridResistance
|
||||
- type: GasTileOverlay
|
||||
- type: SpreaderGrid
|
||||
- type: GridPathfinding
|
||||
- type: ExplosionAirtightGrid
|
||||
- proto: AirlockShuttle
|
||||
entities:
|
||||
- uid: 23
|
||||
components:
|
||||
- type: Transform
|
||||
rot: -1.5707963267948966 rad
|
||||
pos: -1.5,6.5
|
||||
parent: 50
|
||||
- uid: 59
|
||||
components:
|
||||
- type: Transform
|
||||
rot: 1.5707963267948966 rad
|
||||
pos: 3.5,6.5
|
||||
parent: 50
|
||||
- proto: AlwaysPoweredLightExterior
|
||||
entities:
|
||||
- uid: 81
|
||||
components:
|
||||
- type: Transform
|
||||
rot: 3.141592653589793 rad
|
||||
pos: 0.5,-0.5
|
||||
parent: 50
|
||||
- proto: APCHyperCapacity
|
||||
entities:
|
||||
- uid: 25
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -5.5,-1.5
|
||||
parent: 50
|
||||
- type: Fixtures
|
||||
fixtures: {}
|
||||
- proto: AsteroidAltRock
|
||||
entities:
|
||||
- uid: 56
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -5.5,-5.5
|
||||
parent: 50
|
||||
- proto: AsteroidAltRockMining
|
||||
entities:
|
||||
- uid: 5
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -5.5,-1.5
|
||||
parent: 50
|
||||
- uid: 15
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -3.5,0.5
|
||||
parent: 50
|
||||
- uid: 16
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -3.5,-0.5
|
||||
parent: 50
|
||||
- uid: 17
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -3.5,-1.5
|
||||
parent: 50
|
||||
- uid: 24
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -2.5,-2.5
|
||||
parent: 50
|
||||
- uid: 32
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.5,-4.5
|
||||
parent: 50
|
||||
- uid: 36
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -1.5,-5.5
|
||||
parent: 50
|
||||
- uid: 51
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -3.5,-2.5
|
||||
parent: 50
|
||||
- proto: Barricade
|
||||
entities:
|
||||
- uid: 11
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -4.5,-1.5
|
||||
parent: 50
|
||||
- proto: Bed
|
||||
entities:
|
||||
- uid: 82
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -5.5,-3.5
|
||||
parent: 50
|
||||
- proto: BedsheetIan
|
||||
entities:
|
||||
- uid: 80
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -5.5,-3.5
|
||||
parent: 50
|
||||
- proto: CableApcExtension
|
||||
entities:
|
||||
- uid: 22
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -5.5,-2.5
|
||||
parent: 50
|
||||
- uid: 43
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -5.5,-3.5
|
||||
parent: 50
|
||||
- uid: 88
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -5.5,-1.5
|
||||
parent: 50
|
||||
- uid: 89
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -4.5,-3.5
|
||||
parent: 50
|
||||
- uid: 90
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -4.5,-4.5
|
||||
parent: 50
|
||||
- uid: 91
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -4.5,-5.5
|
||||
parent: 50
|
||||
- uid: 92
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -2.5,-5.5
|
||||
parent: 50
|
||||
- uid: 93
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -3.5,-5.5
|
||||
parent: 50
|
||||
- uid: 100
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -3.5,-3.5
|
||||
parent: 50
|
||||
- uid: 101
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -2.5,-3.5
|
||||
parent: 50
|
||||
- uid: 102
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -1.5,-3.5
|
||||
parent: 50
|
||||
- proto: Catwalk
|
||||
entities:
|
||||
- uid: 61
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,7.5
|
||||
parent: 50
|
||||
- uid: 62
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,6.5
|
||||
parent: 50
|
||||
- uid: 63
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,5.5
|
||||
parent: 50
|
||||
- uid: 64
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,4.5
|
||||
parent: 50
|
||||
- uid: 65
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,3.5
|
||||
parent: 50
|
||||
- uid: 66
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.5,3.5
|
||||
parent: 50
|
||||
- uid: 67
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.5,4.5
|
||||
parent: 50
|
||||
- uid: 68
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.5,5.5
|
||||
parent: 50
|
||||
- uid: 69
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.5,6.5
|
||||
parent: 50
|
||||
- uid: 70
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.5,7.5
|
||||
parent: 50
|
||||
- proto: ClosetBombFilled
|
||||
entities:
|
||||
- uid: 58
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -4.5,-2.5
|
||||
parent: 50
|
||||
- proto: CrateFilledSpawner
|
||||
entities:
|
||||
- uid: 76
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -1.5,0.5
|
||||
parent: 50
|
||||
- proto: DogBed
|
||||
entities:
|
||||
- uid: 86
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -3.5,-3.5
|
||||
parent: 50
|
||||
- proto: ExplosivesSignMed
|
||||
entities:
|
||||
- uid: 104
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -1.5,-1.5
|
||||
parent: 50
|
||||
- type: Fixtures
|
||||
fixtures: {}
|
||||
- proto: Grille
|
||||
entities:
|
||||
- uid: 48
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -3.5,-5.5
|
||||
parent: 50
|
||||
- uid: 49
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -4.5,-5.5
|
||||
parent: 50
|
||||
- uid: 60
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -2.5,-5.5
|
||||
parent: 50
|
||||
- proto: IngotGold
|
||||
entities:
|
||||
- uid: 10
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -4.457972,-0.41304487
|
||||
parent: 50
|
||||
- proto: LandMineExplosive
|
||||
entities:
|
||||
- uid: 3
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -1.5364733,-2.719489
|
||||
parent: 50
|
||||
- uid: 4
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.48959827,-3.703864
|
||||
parent: 50
|
||||
- proto: LockerBotanistLoot
|
||||
entities:
|
||||
- uid: 105
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.5,1.5
|
||||
parent: 50
|
||||
- uid: 120
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.5,1.5
|
||||
parent: 50
|
||||
- proto: LockerChemistryFilled
|
||||
entities:
|
||||
- uid: 77
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.5,-0.5
|
||||
parent: 50
|
||||
- proto: PowerCellRecharger
|
||||
entities:
|
||||
- uid: 117
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,-2.5
|
||||
parent: 50
|
||||
- proto: Rack
|
||||
entities:
|
||||
- uid: 83
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -1.5,-0.5
|
||||
parent: 50
|
||||
- uid: 94
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -5.5,-2.5
|
||||
parent: 50
|
||||
- proto: Railing
|
||||
entities:
|
||||
- uid: 107
|
||||
components:
|
||||
- type: Transform
|
||||
rot: 3.141592653589793 rad
|
||||
pos: -1.5,2.5
|
||||
parent: 50
|
||||
- uid: 108
|
||||
components:
|
||||
- type: Transform
|
||||
rot: 3.141592653589793 rad
|
||||
pos: 0.5,2.5
|
||||
parent: 50
|
||||
- uid: 109
|
||||
components:
|
||||
- type: Transform
|
||||
rot: 3.141592653589793 rad
|
||||
pos: 1.5,2.5
|
||||
parent: 50
|
||||
- uid: 111
|
||||
components:
|
||||
- type: Transform
|
||||
rot: 1.5707963267948966 rad
|
||||
pos: 3.5,1.5
|
||||
parent: 50
|
||||
- uid: 112
|
||||
components:
|
||||
- type: Transform
|
||||
rot: 1.5707963267948966 rad
|
||||
pos: 3.5,0.5
|
||||
parent: 50
|
||||
- uid: 113
|
||||
components:
|
||||
- type: Transform
|
||||
rot: 1.5707963267948966 rad
|
||||
pos: 3.5,-0.5
|
||||
parent: 50
|
||||
- uid: 118
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,-0.5
|
||||
parent: 50
|
||||
- proto: RailingCorner
|
||||
entities:
|
||||
- uid: 110
|
||||
components:
|
||||
- type: Transform
|
||||
rot: 1.5707963267948966 rad
|
||||
pos: 3.5,2.5
|
||||
parent: 50
|
||||
- proto: RandomBox
|
||||
entities:
|
||||
- uid: 121
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -1.5,-0.5
|
||||
parent: 50
|
||||
- proto: RandomDrinkBottle
|
||||
entities:
|
||||
- uid: 116
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -3.5,-3.5
|
||||
parent: 50
|
||||
- proto: RandomPosterContraband
|
||||
entities:
|
||||
- uid: 85
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -3.5,-2.5
|
||||
parent: 50
|
||||
- proto: RandomRockSpawner
|
||||
entities:
|
||||
- uid: 1
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -5.5,-0.5
|
||||
parent: 50
|
||||
- uid: 2
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -5.5,-4.5
|
||||
parent: 50
|
||||
- uid: 6
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -6.5,0.5
|
||||
parent: 50
|
||||
- uid: 7
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -5.5,0.5
|
||||
parent: 50
|
||||
- uid: 8
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -4.5,0.5
|
||||
parent: 50
|
||||
- uid: 9
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -3.5,2.5
|
||||
parent: 50
|
||||
- uid: 12
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -4.5,2.5
|
||||
parent: 50
|
||||
- uid: 13
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -4.5,1.5
|
||||
parent: 50
|
||||
- uid: 14
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -3.5,1.5
|
||||
parent: 50
|
||||
- uid: 18
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.5,-3.5
|
||||
parent: 50
|
||||
- uid: 19
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.5,-2.5
|
||||
parent: 50
|
||||
- uid: 20
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.5,-3.5
|
||||
parent: 50
|
||||
- uid: 21
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.5,-3.5
|
||||
parent: 50
|
||||
- uid: 26
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.5,-2.5
|
||||
parent: 50
|
||||
- uid: 27
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.5,-2.5
|
||||
parent: 50
|
||||
- uid: 28
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 3.5,-3.5
|
||||
parent: 50
|
||||
- uid: 29
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 3.5,-2.5
|
||||
parent: 50
|
||||
- uid: 30
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.5,-4.5
|
||||
parent: 50
|
||||
- uid: 31
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.5,-4.5
|
||||
parent: 50
|
||||
- uid: 33
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,-5.5
|
||||
parent: 50
|
||||
- uid: 34
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.5,-5.5
|
||||
parent: 50
|
||||
- uid: 35
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,-4.5
|
||||
parent: 50
|
||||
- uid: 52
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -6.5,-1.5
|
||||
parent: 50
|
||||
- uid: 53
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -6.5,-2.5
|
||||
parent: 50
|
||||
- uid: 54
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -6.5,-3.5
|
||||
parent: 50
|
||||
- uid: 55
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -6.5,-4.5
|
||||
parent: 50
|
||||
- uid: 57
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -5.5,1.5
|
||||
parent: 50
|
||||
- uid: 114
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -6.5,-0.5
|
||||
parent: 50
|
||||
- proto: SalvageCanisterSpawner
|
||||
entities:
|
||||
- uid: 78
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.5,-0.5
|
||||
parent: 50
|
||||
- uid: 79
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.5,-0.5
|
||||
parent: 50
|
||||
- proto: SalvageLootSpawner
|
||||
entities:
|
||||
- uid: 119
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -5.5,-2.5
|
||||
parent: 50
|
||||
- proto: SalvageMaterialCrateSpawner
|
||||
entities:
|
||||
- uid: 75
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -1.5,1.5
|
||||
parent: 50
|
||||
- proto: SalvageMobSpawner
|
||||
entities:
|
||||
- uid: 71
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.5,6.5
|
||||
parent: 50
|
||||
- proto: SalvageMobSpawner75
|
||||
entities:
|
||||
- uid: 73
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,1.5
|
||||
parent: 50
|
||||
- proto: Shovel
|
||||
entities:
|
||||
- uid: 95
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -5.527382,-2.5339403
|
||||
parent: 50
|
||||
- proto: ShuttersNormal
|
||||
entities:
|
||||
- uid: 87
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,-1.5
|
||||
parent: 50
|
||||
- uid: 96
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -4.5,-5.5
|
||||
parent: 50
|
||||
- uid: 97
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -3.5,-5.5
|
||||
parent: 50
|
||||
- uid: 98
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -2.5,-5.5
|
||||
parent: 50
|
||||
- proto: SignalButton
|
||||
entities:
|
||||
- uid: 99
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -2.5,-2.5
|
||||
parent: 50
|
||||
- type: DeviceLinkSource
|
||||
linkedPorts:
|
||||
96:
|
||||
- - Pressed
|
||||
- Toggle
|
||||
97:
|
||||
- - Pressed
|
||||
- Toggle
|
||||
98:
|
||||
- - Pressed
|
||||
- Toggle
|
||||
87:
|
||||
- - Pressed
|
||||
- Toggle
|
||||
- type: Fixtures
|
||||
fixtures: {}
|
||||
- proto: SignShipDock
|
||||
entities:
|
||||
- uid: 106
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -2.5,2.5
|
||||
parent: 50
|
||||
- type: Fixtures
|
||||
fixtures: {}
|
||||
- proto: SpaceCash1000
|
||||
entities:
|
||||
- uid: 115
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -4.4192514,-4.5524406
|
||||
parent: 50
|
||||
- proto: SpaceTickSpawner
|
||||
entities:
|
||||
- uid: 72
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.5,0.5
|
||||
parent: 50
|
||||
- uid: 74
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,0.5
|
||||
parent: 50
|
||||
- uid: 123
|
||||
components:
|
||||
- type: Transform
|
||||
rot: 1.5707963267948966 rad
|
||||
pos: 1.5,0.5
|
||||
parent: 50
|
||||
- proto: Table
|
||||
entities:
|
||||
- uid: 84
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,-2.5
|
||||
parent: 50
|
||||
- proto: ToyNuke
|
||||
entities:
|
||||
- uid: 103
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -1.4901645,-4.7276487
|
||||
parent: 50
|
||||
- proto: WallSolid
|
||||
entities:
|
||||
- uid: 37
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -2.5,2.5
|
||||
parent: 50
|
||||
- uid: 38
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -2.5,1.5
|
||||
parent: 50
|
||||
- uid: 39
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -2.5,0.5
|
||||
parent: 50
|
||||
- uid: 40
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -2.5,-0.5
|
||||
parent: 50
|
||||
- uid: 41
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -2.5,-1.5
|
||||
parent: 50
|
||||
- uid: 42
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -1.5,-1.5
|
||||
parent: 50
|
||||
- uid: 44
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.5,-1.5
|
||||
parent: 50
|
||||
- uid: 45
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.5,-1.5
|
||||
parent: 50
|
||||
- uid: 46
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.5,-1.5
|
||||
parent: 50
|
||||
- uid: 47
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 3.5,-1.5
|
||||
parent: 50
|
||||
- proto: WarpPointDebris
|
||||
entities:
|
||||
- uid: 122
|
||||
components:
|
||||
- type: Transform
|
||||
rot: 3.141592653589793 rad
|
||||
pos: -0.5,-0.5
|
||||
parent: 50
|
||||
...
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
|
@ -0,0 +1,918 @@
|
|||
meta:
|
||||
format: 7
|
||||
category: Map
|
||||
engineVersion: 270.1.0
|
||||
forkId: ""
|
||||
forkVersion: ""
|
||||
time: 07/04/2026 08:21:50
|
||||
entityCount: 119
|
||||
maps:
|
||||
- 119
|
||||
grids:
|
||||
- 119
|
||||
orphans: []
|
||||
nullspace: []
|
||||
tilemap:
|
||||
0: Space
|
||||
7: FloorAsteroidSand
|
||||
8: FloorAsteroidSandDug
|
||||
55: FloorGreenCircuit
|
||||
78: FloorReinforced
|
||||
1: FloorShuttleOrange
|
||||
122: Plating
|
||||
entities:
|
||||
- proto: ""
|
||||
entities:
|
||||
- uid: 119
|
||||
components:
|
||||
- type: MetaData
|
||||
- type: Transform
|
||||
- type: Map
|
||||
mapPaused: True
|
||||
- type: GridTree
|
||||
- type: MapGrid
|
||||
chunks:
|
||||
-1,-1:
|
||||
ind: -1,-1
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAABwAAAAACAAcAAAAAAAAHAAAAAAIABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAABwAAAAACAAcAAAAAAgAHAAAAAAIABwAAAAAAAAcAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABAAcAAAAAAAAHAAAAAAIABwAAAAAAAAcAAAAAAgAHAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAQAHAAAAAAEABwAAAAAAAAcAAAAAAQAHAAAAAAIABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAEABwAAAAACAAcAAAAAAQAIAAAAAAAABwAAAAACAAcAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAACAAcAAAAAAgAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAB6AAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAEABwAAAAACAA==
|
||||
version: 7
|
||||
-1,0:
|
||||
ind: -1,0
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAHAAAAAAAABwAAAAACAAgAAAAAAAAHAAAAAAEABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAABwAAAAACAAcAAAAAAgAHAAAAAAEATgAAAAAAAE4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABAAcAAAAAAQAHAAAAAAEABwAAAAACAE4AAAAAAAA3AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAQBOAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAABAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAcAAAAAAQAHAAAAAAEABwAAAAACAAcAAAAAAAAHAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAABwAAAAACAAcAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
version: 7
|
||||
0,0:
|
||||
ind: 0,0
|
||||
tiles: BwAAAAACAAcAAAAAAAAHAAAAAAIABwAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAE4AAAAAAAAHAAAAAAAABwAAAAABAAcAAAAAAQAHAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABOAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAcAAAAAAAAHAAAAAAEABwAAAAACAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAQAHAAAAAAEABwAAAAACAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAEABwAAAAACAAcAAAAAAgABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAcAAAAAAQABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
version: 7
|
||||
0,-1:
|
||||
ind: 0,-1
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABAAcAAAAAAgAHAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAQB6AAAAAAAABwAAAAAAAAcAAAAAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAIABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABAAgAAAAAAAAHAAAAAAIABwAAAAAAAAcAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAgAHAAAAAAAABwAAAAABAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAEABwAAAAACAAcAAAAAAAAHAAAAAAEABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAgAHAAAAAAIACAAAAAAAAAcAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
version: 7
|
||||
- type: Broadphase
|
||||
- type: Physics
|
||||
bodyStatus: InAir
|
||||
angularDamping: 0.05
|
||||
linearDamping: 0.05
|
||||
fixedRotation: False
|
||||
canCollide: False
|
||||
bodyType: Dynamic
|
||||
- type: Fixtures
|
||||
fixtures: {}
|
||||
- type: Gravity
|
||||
gravityShakeSound: !type:SoundPathSpecifier
|
||||
path: /Audio/Effects/alert.ogg
|
||||
- type: DecalGrid
|
||||
chunkCollection:
|
||||
version: 2
|
||||
nodes:
|
||||
- node:
|
||||
color: '#FFFFFFFF'
|
||||
id: Remains
|
||||
decals:
|
||||
96: 1.9534924,1.0517962
|
||||
97: 1.0472424,-4.948204
|
||||
- node:
|
||||
color: '#9FED5896'
|
||||
id: WarnCornerNE
|
||||
decals:
|
||||
3: 0,3
|
||||
- node:
|
||||
color: '#9FED5896'
|
||||
id: WarnCornerNW
|
||||
decals:
|
||||
2: -2,3
|
||||
- node:
|
||||
color: '#9FED5896'
|
||||
id: WarnCornerSE
|
||||
decals:
|
||||
1: 0,1
|
||||
- node:
|
||||
color: '#9FED5896'
|
||||
id: WarnCornerSW
|
||||
decals:
|
||||
0: -2,1
|
||||
- node:
|
||||
color: '#9FED5896'
|
||||
id: WarnLineE
|
||||
decals:
|
||||
6: 0,2
|
||||
- node:
|
||||
color: '#9FED5896'
|
||||
id: WarnLineN
|
||||
decals:
|
||||
4: -1,1
|
||||
- node:
|
||||
color: '#9FED5896'
|
||||
id: WarnLineS
|
||||
decals:
|
||||
5: -2,2
|
||||
- node:
|
||||
color: '#9FED5896'
|
||||
id: WarnLineW
|
||||
decals:
|
||||
7: -1,3
|
||||
- node:
|
||||
color: '#79150063'
|
||||
id: exclamationmark
|
||||
decals:
|
||||
44: -3.8162756,-0.24618945
|
||||
45: -4.0350256,0.20693552
|
||||
46: -3.8162756,0.7225605
|
||||
47: -4.0194006,1.1756855
|
||||
48: -3.7381506,1.6756856
|
||||
49: -3.9100256,2.0506856
|
||||
50: -1.1558826,-6.8087125
|
||||
51: -0.89025766,-6.2774625
|
||||
52: -1.1558826,-5.8243375
|
||||
53: -0.85900766,-5.4805875
|
||||
- node:
|
||||
angle: 1.5707963267948966 rad
|
||||
color: '#79150063'
|
||||
id: exclamationmark
|
||||
decals:
|
||||
54: -1.4215076,-5.2462125
|
||||
55: -1.8590076,-4.8555875
|
||||
56: -2.5152576,-5.0899625
|
||||
- node:
|
||||
color: '#79150012'
|
||||
id: splatter
|
||||
decals:
|
||||
57: -2.7965076,-4.7305875
|
||||
58: -2.9371326,-4.7305875
|
||||
59: -2.9371326,-4.6055875
|
||||
60: -2.8902576,-4.3712125
|
||||
61: -2.6871326,-4.3243375
|
||||
62: -2.6715076,-3.9180875
|
||||
63: -2.8121326,-4.1368375
|
||||
64: -2.8121326,-4.3555875
|
||||
65: -2.9058826,-4.4493375
|
||||
66: -3.0152576,-4.4649625
|
||||
67: -3.1715076,-4.3399625
|
||||
68: -3.2027576,-4.2149625
|
||||
69: -3.1715076,-4.1680875
|
||||
70: -3.0152576,-4.1212125
|
||||
71: -3.0152576,-4.1212125
|
||||
72: -2.9371326,-4.2462125
|
||||
73: -2.9371326,-3.7618375
|
||||
74: -2.9371326,-3.7618375
|
||||
75: -2.9371326,-3.5274625
|
||||
76: -2.7652576,-3.7305875
|
||||
77: -3.4996326,2.811473
|
||||
78: -4.015258,2.795848
|
||||
79: -3.8433826,2.795848
|
||||
80: -3.6558826,2.827098
|
||||
81: -3.3902576,2.842723
|
||||
82: -3.1715076,2.889598
|
||||
83: -2.8746326,3.092723
|
||||
84: -3.4215076,3.123973
|
||||
85: -3.6090076,3.092723
|
||||
86: -2.5465076,3.420848
|
||||
87: -1.9371326,3.670848
|
||||
88: -1.5933826,3.436473
|
||||
89: -2.0308826,3.639598
|
||||
90: -1.5152576,3.873973
|
||||
91: 0.9847424,0.873973
|
||||
92: 0.5941174,0.827098
|
||||
93: 0.8128674,0.811473
|
||||
94: 1.6722424,0.780223
|
||||
95: 2.4378674,0.827098
|
||||
- node:
|
||||
color: '#79150022'
|
||||
id: splatter
|
||||
decals:
|
||||
8: 0.6093248,1.4100605
|
||||
9: 0.5936998,1.1913105
|
||||
10: 0.4530748,1.3006855
|
||||
11: 0.3436998,1.6756856
|
||||
12: 0.21869981,2.0038106
|
||||
13: 0.21869981,2.0663106
|
||||
14: 0.6249498,1.8475606
|
||||
15: 0.6561998,1.7069356
|
||||
16: 0.6561998,1.6913106
|
||||
17: 0.7655748,1.3944355
|
||||
18: 0.8124498,1.4100605
|
||||
19: 0.6561998,1.5663106
|
||||
20: 0.3905748,1.6131856
|
||||
21: 0.3436998,1.5506856
|
||||
22: 0.4686998,1.5038106
|
||||
23: 0.24994981,1.6444356
|
||||
24: 0.3905748,1.8631856
|
||||
25: 1.2811998,1.2381855
|
||||
26: 1.6561999,0.8788105
|
||||
27: 1.3436998,1.0506855
|
||||
28: 1.5311999,1.0038105
|
||||
29: 1.9218249,0.9413105
|
||||
30: 1.3749498,0.9569355
|
||||
31: 1.0468248,1.3944355
|
||||
32: 1.1249498,0.9100605
|
||||
33: -2.62505,2.9725606
|
||||
34: -2.56255,3.4413106
|
||||
35: -2.2188,3.1131856
|
||||
36: -2.734425,3.2225606
|
||||
37: -2.609425,2.7850606
|
||||
38: -2.484425,2.7694356
|
||||
39: -2.37505,2.3944356
|
||||
40: -2.3438,2.6444356
|
||||
41: -2.421925,2.9569356
|
||||
42: -2.671925,3.0194356
|
||||
43: -2.81255,3.0038106
|
||||
- type: GridAtmosphere
|
||||
version: 2
|
||||
data:
|
||||
tiles:
|
||||
-1,-1:
|
||||
0: 65535
|
||||
-1,0:
|
||||
0: 65535
|
||||
0,0:
|
||||
0: 65535
|
||||
0,-1:
|
||||
0: 65535
|
||||
-2,-1:
|
||||
0: 52428
|
||||
-2,-2:
|
||||
0: 51200
|
||||
-1,-2:
|
||||
0: 65520
|
||||
-2,0:
|
||||
0: 52428
|
||||
-1,1:
|
||||
0: 4095
|
||||
0,1:
|
||||
0: 887
|
||||
1,0:
|
||||
0: 273
|
||||
0,-2:
|
||||
0: 65392
|
||||
1,-1:
|
||||
0: 4369
|
||||
-2,1:
|
||||
0: 136
|
||||
1,-2:
|
||||
0: 4096
|
||||
uniqueMixes:
|
||||
- volume: 2500
|
||||
temperature: 293.15
|
||||
moles:
|
||||
Oxygen: 21.824879
|
||||
Nitrogen: 82.10312
|
||||
chunkSize: 4
|
||||
- type: OccluderTree
|
||||
- type: Shuttle
|
||||
dampingModifier: 0.25
|
||||
- type: GasTileOverlay
|
||||
- type: RadiationGridResistance
|
||||
- type: SpreaderGrid
|
||||
- type: GridPathfinding
|
||||
- type: ExplosionAirtightGrid
|
||||
- proto: AsteroidAltRockMining
|
||||
entities:
|
||||
- uid: 1
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -2.5,6.5
|
||||
parent: 119
|
||||
- uid: 5
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.5,6.5
|
||||
parent: 119
|
||||
- uid: 6
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.5,5.5
|
||||
parent: 119
|
||||
- uid: 7
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.5,5.5
|
||||
parent: 119
|
||||
- uid: 8
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.5,5.5
|
||||
parent: 119
|
||||
- uid: 9
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,5.5
|
||||
parent: 119
|
||||
- uid: 10
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -1.5,5.5
|
||||
parent: 119
|
||||
- uid: 11
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -2.5,5.5
|
||||
parent: 119
|
||||
- uid: 12
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -3.5,5.5
|
||||
parent: 119
|
||||
- uid: 16
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -4.5,3.5
|
||||
parent: 119
|
||||
- uid: 18
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -2.5,1.5
|
||||
parent: 119
|
||||
- uid: 19
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -5.5,2.5
|
||||
parent: 119
|
||||
- uid: 22
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -5.5,-0.5
|
||||
parent: 119
|
||||
- uid: 23
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -5.5,-1.5
|
||||
parent: 119
|
||||
- uid: 24
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -5.5,-2.5
|
||||
parent: 119
|
||||
- uid: 25
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -5.5,-3.5
|
||||
parent: 119
|
||||
- uid: 26
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -4.5,-4.5
|
||||
parent: 119
|
||||
- uid: 29
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -4.5,-1.5
|
||||
parent: 119
|
||||
- uid: 35
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -3.5,-5.5
|
||||
parent: 119
|
||||
- uid: 37
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -2.5,-6.5
|
||||
parent: 119
|
||||
- uid: 38
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -1.5,-6.5
|
||||
parent: 119
|
||||
- uid: 39
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -1.5,-5.5
|
||||
parent: 119
|
||||
- uid: 42
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.5,-6.5
|
||||
parent: 119
|
||||
- uid: 44
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.5,-6.5
|
||||
parent: 119
|
||||
- uid: 46
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.5,-5.5
|
||||
parent: 119
|
||||
- uid: 47
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.5,-4.5
|
||||
parent: 119
|
||||
- uid: 48
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 3.5,-4.5
|
||||
parent: 119
|
||||
- uid: 49
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -3.5,-6.5
|
||||
parent: 119
|
||||
- uid: 50
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 4.5,-3.5
|
||||
parent: 119
|
||||
- uid: 51
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 4.5,-2.5
|
||||
parent: 119
|
||||
- uid: 52
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 4.5,-1.5
|
||||
parent: 119
|
||||
- uid: 53
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 4.5,-0.5
|
||||
parent: 119
|
||||
- uid: 55
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 4.5,1.5
|
||||
parent: 119
|
||||
- uid: 56
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 4.5,2.5
|
||||
parent: 119
|
||||
- uid: 57
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 3.5,1.5
|
||||
parent: 119
|
||||
- uid: 58
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 3.5,0.5
|
||||
parent: 119
|
||||
- uid: 59
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 4.5,-4.5
|
||||
parent: 119
|
||||
- uid: 60
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -5.5,-4.5
|
||||
parent: 119
|
||||
- uid: 61
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -4.5,-5.5
|
||||
parent: 119
|
||||
- uid: 62
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 3.5,2.5
|
||||
parent: 119
|
||||
- uid: 63
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.5,2.5
|
||||
parent: 119
|
||||
- uid: 64
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.5,3.5
|
||||
parent: 119
|
||||
- uid: 65
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 3.5,3.5
|
||||
parent: 119
|
||||
- uid: 66
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.5,4.5
|
||||
parent: 119
|
||||
- uid: 67
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.5,4.5
|
||||
parent: 119
|
||||
- uid: 68
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.5,-4.5
|
||||
parent: 119
|
||||
- uid: 69
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -2.5,-1.5
|
||||
parent: 119
|
||||
- uid: 70
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -1.5,-3.5
|
||||
parent: 119
|
||||
- uid: 71
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -1.5,-1.5
|
||||
parent: 119
|
||||
- uid: 72
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,-3.5
|
||||
parent: 119
|
||||
- uid: 73
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -3.5,6.5
|
||||
parent: 119
|
||||
- uid: 75
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -2.5,2.5
|
||||
parent: 119
|
||||
- uid: 77
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.5,-1.5
|
||||
parent: 119
|
||||
- uid: 78
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.5,0.5
|
||||
parent: 119
|
||||
- uid: 79
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.5,0.5
|
||||
parent: 119
|
||||
- uid: 80
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,0.5
|
||||
parent: 119
|
||||
- uid: 81
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -4.5,4.5
|
||||
parent: 119
|
||||
- uid: 82
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.5,-1.5
|
||||
parent: 119
|
||||
- uid: 83
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.5,-6.5
|
||||
parent: 119
|
||||
- uid: 84
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -5.5,3.5
|
||||
parent: 119
|
||||
- uid: 85
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -1.5,0.5
|
||||
parent: 119
|
||||
- uid: 87
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -4.5,5.5
|
||||
parent: 119
|
||||
- uid: 88
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,-1.5
|
||||
parent: 119
|
||||
- uid: 93
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.5,-3.5
|
||||
parent: 119
|
||||
- uid: 94
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.5,0.5
|
||||
parent: 119
|
||||
- uid: 95
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 3.5,-5.5
|
||||
parent: 119
|
||||
- uid: 115
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 3.5,-3.5
|
||||
parent: 119
|
||||
- uid: 118
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.5,-1.5
|
||||
parent: 119
|
||||
- proto: Barricade
|
||||
entities:
|
||||
- uid: 114
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.5,-5.5
|
||||
parent: 119
|
||||
- proto: ClothingShoesBootsSalvage
|
||||
entities:
|
||||
- uid: 92
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.4983591,-3.8183098
|
||||
parent: 119
|
||||
- proto: CrateSalvageEquipment
|
||||
entities:
|
||||
- uid: 36
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -3.5,-1.5
|
||||
parent: 119
|
||||
- proto: FlashlightLantern
|
||||
entities:
|
||||
- uid: 112
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -3.5694947,-4.3641663
|
||||
parent: 119
|
||||
- uid: 113
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -3.4288697,-4.5985413
|
||||
parent: 119
|
||||
- proto: MaintenanceToolSpawner
|
||||
entities:
|
||||
- uid: 86
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -1.5,4.5
|
||||
parent: 119
|
||||
- proto: MaintenanceWeaponSpawner
|
||||
entities:
|
||||
- uid: 96
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.5,3.5
|
||||
parent: 119
|
||||
- proto: MaterialWoodPlank
|
||||
entities:
|
||||
- uid: 117
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.4514842,-3.5058098
|
||||
parent: 119
|
||||
- proto: Rack
|
||||
entities:
|
||||
- uid: 111
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -3.5,-4.5
|
||||
parent: 119
|
||||
- proto: Railing
|
||||
entities:
|
||||
- uid: 99
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,3.5
|
||||
parent: 119
|
||||
- uid: 100
|
||||
components:
|
||||
- type: Transform
|
||||
rot: -1.5707963267948966 rad
|
||||
pos: 0.5,2.5
|
||||
parent: 119
|
||||
- uid: 101
|
||||
components:
|
||||
- type: Transform
|
||||
rot: 3.141592653589793 rad
|
||||
pos: -0.5,1.5
|
||||
parent: 119
|
||||
- uid: 102
|
||||
components:
|
||||
- type: Transform
|
||||
rot: 1.5707963267948966 rad
|
||||
pos: -1.5,2.5
|
||||
parent: 119
|
||||
- proto: RailingCornerSmall
|
||||
entities:
|
||||
- uid: 103
|
||||
components:
|
||||
- type: Transform
|
||||
rot: 1.5707963267948966 rad
|
||||
pos: 0.5,3.5
|
||||
parent: 119
|
||||
- uid: 104
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.5,1.5
|
||||
parent: 119
|
||||
- uid: 105
|
||||
components:
|
||||
- type: Transform
|
||||
rot: -1.5707963267948966 rad
|
||||
pos: -1.5,1.5
|
||||
parent: 119
|
||||
- uid: 107
|
||||
components:
|
||||
- type: Transform
|
||||
rot: 3.141592653589793 rad
|
||||
pos: -1.5,3.5
|
||||
parent: 119
|
||||
- proto: RandomArtifactSpawner
|
||||
entities:
|
||||
- uid: 91
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,2.5
|
||||
parent: 119
|
||||
- proto: RandomRockSpawner
|
||||
entities:
|
||||
- uid: 13
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -3.5,4.5
|
||||
parent: 119
|
||||
- uid: 14
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -2.5,4.5
|
||||
parent: 119
|
||||
- uid: 17
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -4.5,0.5
|
||||
parent: 119
|
||||
- uid: 27
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -4.5,-3.5
|
||||
parent: 119
|
||||
- uid: 28
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -4.5,-2.5
|
||||
parent: 119
|
||||
- uid: 31
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -4.5,2.5
|
||||
parent: 119
|
||||
- uid: 32
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -4.5,1.5
|
||||
parent: 119
|
||||
- uid: 33
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -3.5,-2.5
|
||||
parent: 119
|
||||
- uid: 43
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -3.5,-3.5
|
||||
parent: 119
|
||||
- proto: SalvageMaterialCrateSpawner
|
||||
entities:
|
||||
- uid: 34
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -2.5,-5.5
|
||||
parent: 119
|
||||
- proto: SalvagePartsSpawnerLow
|
||||
entities:
|
||||
- uid: 4
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.5,2.5
|
||||
parent: 119
|
||||
- uid: 89
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.5,4.5
|
||||
parent: 119
|
||||
- proto: SalvagePartsSpawnerMid
|
||||
entities:
|
||||
- uid: 120
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,4.5
|
||||
parent: 119
|
||||
- proto: SignSecureMed
|
||||
entities:
|
||||
- uid: 41
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -4.5,-0.5
|
||||
parent: 119
|
||||
- type: Fixtures
|
||||
fixtures: {}
|
||||
- proto: SmallLight
|
||||
entities:
|
||||
- uid: 76
|
||||
components:
|
||||
- type: Transform
|
||||
rot: 1.5707963267948966 rad
|
||||
pos: -3.5,-0.5
|
||||
parent: 119
|
||||
- uid: 106
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,2.5
|
||||
parent: 119
|
||||
- uid: 110
|
||||
components:
|
||||
- type: Transform
|
||||
rot: 3.141592653589793 rad
|
||||
pos: 1.5,-4.5
|
||||
parent: 119
|
||||
- proto: SpaceTickSpawner
|
||||
entities:
|
||||
- uid: 15
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.5,2.5
|
||||
parent: 119
|
||||
- uid: 40
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -1.5,2.5
|
||||
parent: 119
|
||||
- uid: 74
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -1.5,1.5
|
||||
parent: 119
|
||||
- uid: 90
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -1.5,3.5
|
||||
parent: 119
|
||||
- uid: 97
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,1.5
|
||||
parent: 119
|
||||
- uid: 98
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.5,1.5
|
||||
parent: 119
|
||||
- uid: 108
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.5,3.5
|
||||
parent: 119
|
||||
- uid: 109
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,3.5
|
||||
parent: 119
|
||||
- proto: WallSolid
|
||||
entities:
|
||||
- uid: 30
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -4.5,-0.5
|
||||
parent: 119
|
||||
- proto: WallSolidRust
|
||||
entities:
|
||||
- uid: 45
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.5,-5.5
|
||||
parent: 119
|
||||
- proto: WarpPointDebris
|
||||
entities:
|
||||
- uid: 124
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.5,-0.5
|
||||
parent: 119
|
||||
- proto: WeaponLaserGun
|
||||
entities:
|
||||
- uid: 116
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.7952341,1.6504403
|
||||
parent: 119
|
||||
- proto: WoodenSupportBeam
|
||||
entities:
|
||||
- uid: 121
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -2.5,-3.5
|
||||
parent: 119
|
||||
- uid: 122
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -3.5,2.5
|
||||
parent: 119
|
||||
- proto: WoodenSupportWallBroken
|
||||
entities:
|
||||
- uid: 123
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 3.5,-1.5
|
||||
parent: 119
|
||||
...
|
||||
|
|
@ -0,0 +1,774 @@
|
|||
meta:
|
||||
format: 7
|
||||
category: Map
|
||||
engineVersion: 270.1.0
|
||||
forkId: ""
|
||||
forkVersion: ""
|
||||
time: 07/05/2026 19:44:13
|
||||
entityCount: 125
|
||||
maps:
|
||||
- 192
|
||||
grids:
|
||||
- 192
|
||||
orphans: []
|
||||
nullspace: []
|
||||
tilemap:
|
||||
0: Space
|
||||
7: FloorAsteroidSand
|
||||
1: FloorShuttleOrange
|
||||
entities:
|
||||
- proto: ""
|
||||
entities:
|
||||
- uid: 192
|
||||
components:
|
||||
- type: MetaData
|
||||
- type: Transform
|
||||
- type: Map
|
||||
mapPaused: True
|
||||
- type: GridTree
|
||||
- type: MapGrid
|
||||
chunks:
|
||||
-1,-1:
|
||||
ind: -1,-1
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABwAAAAALAAcAAAAAAAAHAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAYABwAAAAAFAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAHAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAABwAAAAAAAAcAAAAABgAHAAAAAAAABwAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAgAHAAAAAAEABwAAAAAFAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAA==
|
||||
version: 7
|
||||
0,-1:
|
||||
ind: 0,-1
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAcABwAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAsABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAkABwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAYABwAAAAAAAAcAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACAAcAAAAABQAHAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
version: 7
|
||||
0,0:
|
||||
ind: 0,0
|
||||
tiles: BwAAAAAAAAcAAAAAAAAHAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
version: 7
|
||||
-1,0:
|
||||
ind: -1,0
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAIABwAAAAAAAAcAAAAACQAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
version: 7
|
||||
- type: Broadphase
|
||||
- type: Physics
|
||||
bodyStatus: InAir
|
||||
angularDamping: 0.05
|
||||
linearDamping: 0.05
|
||||
fixedRotation: False
|
||||
canCollide: False
|
||||
bodyType: Dynamic
|
||||
- type: Fixtures
|
||||
fixtures: {}
|
||||
- type: OccluderTree
|
||||
- type: Shuttle
|
||||
dampingModifier: 0.25
|
||||
- type: GridPathfinding
|
||||
- type: Gravity
|
||||
gravityShakeSound: !type:SoundPathSpecifier
|
||||
path: /Audio/Effects/alert.ogg
|
||||
- type: DecalGrid
|
||||
chunkCollection:
|
||||
version: 2
|
||||
nodes: []
|
||||
- type: GridAtmosphere
|
||||
version: 2
|
||||
data:
|
||||
tiles:
|
||||
-1,-2:
|
||||
0: 65535
|
||||
-1,-1:
|
||||
0: 65535
|
||||
0,-1:
|
||||
0: 65535
|
||||
-3,-1:
|
||||
0: 52424
|
||||
-2,-2:
|
||||
0: 65518
|
||||
-2,-1:
|
||||
0: 65535
|
||||
-2,-3:
|
||||
0: 34816
|
||||
-1,-3:
|
||||
0: 65532
|
||||
0,-4:
|
||||
0: 12288
|
||||
0,-3:
|
||||
0: 65527
|
||||
0,-2:
|
||||
0: 65535
|
||||
1,-3:
|
||||
0: 12544
|
||||
1,-2:
|
||||
0: 63351
|
||||
1,-1:
|
||||
0: 65535
|
||||
2,-1:
|
||||
0: 272
|
||||
0,0:
|
||||
0: 65535
|
||||
0,1:
|
||||
0: 5119
|
||||
1,0:
|
||||
0: 4983
|
||||
-3,0:
|
||||
0: 136
|
||||
-2,0:
|
||||
0: 65535
|
||||
-2,1:
|
||||
0: 206
|
||||
-1,0:
|
||||
0: 65535
|
||||
-1,1:
|
||||
0: 53247
|
||||
-1,2:
|
||||
0: 8
|
||||
uniqueMixes:
|
||||
- volume: 2500
|
||||
temperature: 293.15
|
||||
moles:
|
||||
Oxygen: 21.824879
|
||||
Nitrogen: 82.10312
|
||||
chunkSize: 4
|
||||
- type: GasTileOverlay
|
||||
- type: SpreaderGrid
|
||||
- type: ImplicitRoof
|
||||
- type: ExplosionAirtightGrid
|
||||
- type: RadiationGridResistance
|
||||
- proto: AsteroidAltRock
|
||||
entities:
|
||||
- uid: 13
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.5,1.5
|
||||
parent: 192
|
||||
- uid: 15
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.5,2.5
|
||||
parent: 192
|
||||
- uid: 17
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.5,3.5
|
||||
parent: 192
|
||||
- uid: 20
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.5,3.5
|
||||
parent: 192
|
||||
- uid: 22
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.5,3.5
|
||||
parent: 192
|
||||
- uid: 24
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.5,2.5
|
||||
parent: 192
|
||||
- uid: 26
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,3.5
|
||||
parent: 192
|
||||
- uid: 31
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -1.5,3.5
|
||||
parent: 192
|
||||
- uid: 34
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -7.5,2.5
|
||||
parent: 192
|
||||
- uid: 35
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.5,-2.5
|
||||
parent: 192
|
||||
- uid: 36
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.5,-5.5
|
||||
parent: 192
|
||||
- uid: 38
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -6.5,-1.5
|
||||
parent: 192
|
||||
- uid: 40
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -7.5,1.5
|
||||
parent: 192
|
||||
- uid: 41
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -7.5,-1.5
|
||||
parent: 192
|
||||
- uid: 43
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.5,-3.5
|
||||
parent: 192
|
||||
- uid: 44
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.5,-4.5
|
||||
parent: 192
|
||||
- uid: 45
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -5.5,0.5
|
||||
parent: 192
|
||||
- uid: 47
|
||||
components:
|
||||
- type: Transform
|
||||
rot: -1.5707963267948966 rad
|
||||
pos: 1.5,4.5
|
||||
parent: 192
|
||||
- uid: 50
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -7.5,-0.5
|
||||
parent: 192
|
||||
- uid: 52
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.5,-1.5
|
||||
parent: 192
|
||||
- uid: 53
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.5,-4.5
|
||||
parent: 192
|
||||
- uid: 56
|
||||
components:
|
||||
- type: Transform
|
||||
rot: -1.5707963267948966 rad
|
||||
pos: 0.5,4.5
|
||||
parent: 192
|
||||
- uid: 57
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -7.5,0.5
|
||||
parent: 192
|
||||
- uid: 58
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 3.5,-3.5
|
||||
parent: 192
|
||||
- uid: 59
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 3.5,-4.5
|
||||
parent: 192
|
||||
- uid: 60
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -6.5,0.5
|
||||
parent: 192
|
||||
- uid: 61
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.5,-0.5
|
||||
parent: 192
|
||||
- uid: 62
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.5,-5.5
|
||||
parent: 192
|
||||
- uid: 63
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -5.5,-0.5
|
||||
parent: 192
|
||||
- uid: 64
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -2.5,3.5
|
||||
parent: 192
|
||||
- uid: 65
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -3.5,3.5
|
||||
parent: 192
|
||||
- uid: 66
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -6.5,2.5
|
||||
parent: 192
|
||||
- uid: 67
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.5,0.5
|
||||
parent: 192
|
||||
- uid: 68
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,-5.5
|
||||
parent: 192
|
||||
- uid: 69
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -6.5,-3.5
|
||||
parent: 192
|
||||
- uid: 70
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -5.5,1.5
|
||||
parent: 192
|
||||
- uid: 71
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -3.5,4.5
|
||||
parent: 192
|
||||
- uid: 72
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -6.5,3.5
|
||||
parent: 192
|
||||
- uid: 73
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 3.5,1.5
|
||||
parent: 192
|
||||
- uid: 74
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -1.5,-5.5
|
||||
parent: 192
|
||||
- uid: 75
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -6.5,-2.5
|
||||
parent: 192
|
||||
- uid: 76
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -5.5,2.5
|
||||
parent: 192
|
||||
- uid: 77
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -4.5,4.5
|
||||
parent: 192
|
||||
- uid: 78
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -4.5,3.5
|
||||
parent: 192
|
||||
- uid: 79
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -5.5,-4.5
|
||||
parent: 192
|
||||
- uid: 80
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -2.5,-5.5
|
||||
parent: 192
|
||||
- uid: 81
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 3.5,2.5
|
||||
parent: 192
|
||||
- uid: 82
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -6.5,1.5
|
||||
parent: 192
|
||||
- uid: 83
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -5.5,3.5
|
||||
parent: 192
|
||||
- uid: 84
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -4.5,-5.5
|
||||
parent: 192
|
||||
- uid: 85
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -3.5,-6.5
|
||||
parent: 192
|
||||
- uid: 86
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -5.5,-3.5
|
||||
parent: 192
|
||||
- uid: 87
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,-4.5
|
||||
parent: 192
|
||||
- uid: 88
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -2.5,2.5
|
||||
parent: 192
|
||||
- uid: 89
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -6.5,-0.5
|
||||
parent: 192
|
||||
- uid: 90
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -1.5,-6.5
|
||||
parent: 192
|
||||
- uid: 91
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -5.5,4.5
|
||||
parent: 192
|
||||
- uid: 92
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -5.5,-2.5
|
||||
parent: 192
|
||||
- uid: 93
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -2.5,-6.5
|
||||
parent: 192
|
||||
- uid: 94
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -3.5,-5.5
|
||||
parent: 192
|
||||
- uid: 95
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -5.5,-1.5
|
||||
parent: 192
|
||||
- uid: 96
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -4.5,-4.5
|
||||
parent: 192
|
||||
- uid: 97
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -4.5,-2.5
|
||||
parent: 192
|
||||
- proto: RandomAmmoBox
|
||||
entities:
|
||||
- uid: 211
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -2.5,1.5
|
||||
parent: 192
|
||||
- uid: 212
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -3.5,1.5
|
||||
parent: 192
|
||||
- uid: 213
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,1.5
|
||||
parent: 192
|
||||
- uid: 214
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.5,1.5
|
||||
parent: 192
|
||||
- proto: RandomArtifactSpawner
|
||||
entities:
|
||||
- uid: 29
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -1.5,-0.5
|
||||
parent: 192
|
||||
- proto: RandomBoards
|
||||
entities:
|
||||
- uid: 27
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -1.5,-1.5
|
||||
parent: 192
|
||||
- uid: 210
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -1.5,1.5
|
||||
parent: 192
|
||||
- proto: RandomBox
|
||||
entities:
|
||||
- uid: 215
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.5,-3.5
|
||||
parent: 192
|
||||
- uid: 216
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,-3.5
|
||||
parent: 192
|
||||
- uid: 217
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -1.5,-3.5
|
||||
parent: 192
|
||||
- uid: 218
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -2.5,-3.5
|
||||
parent: 192
|
||||
- uid: 219
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -3.5,-3.5
|
||||
parent: 192
|
||||
- proto: SalvageLootSpawner
|
||||
entities:
|
||||
- uid: 2
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -4.5,-1.5
|
||||
parent: 192
|
||||
- uid: 4
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.5,-1.5
|
||||
parent: 192
|
||||
- uid: 6
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.5,-0.5
|
||||
parent: 192
|
||||
- uid: 8
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -4.5,-0.5
|
||||
parent: 192
|
||||
- proto: SalvagePartsSpawnerLow
|
||||
entities:
|
||||
- uid: 206
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -3.5,-0.5
|
||||
parent: 192
|
||||
- uid: 207
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -3.5,-1.5
|
||||
parent: 192
|
||||
- uid: 208
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.5,-1.5
|
||||
parent: 192
|
||||
- uid: 209
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.5,-0.5
|
||||
parent: 192
|
||||
- proto: SalvagePartsSpawnerMid
|
||||
entities:
|
||||
- uid: 28
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -1.5,0.5
|
||||
parent: 192
|
||||
- uid: 193
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,0.5
|
||||
parent: 192
|
||||
- uid: 194
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,-0.5
|
||||
parent: 192
|
||||
- uid: 195
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,-1.5
|
||||
parent: 192
|
||||
- uid: 196
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -2.5,0.5
|
||||
parent: 192
|
||||
- uid: 197
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -2.5,-0.5
|
||||
parent: 192
|
||||
- uid: 198
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -2.5,-1.5
|
||||
parent: 192
|
||||
- uid: 199
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -2.5,-2.5
|
||||
parent: 192
|
||||
- uid: 200
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -1.5,-2.5
|
||||
parent: 192
|
||||
- uid: 201
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,-2.5
|
||||
parent: 192
|
||||
- uid: 202
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -3.5,0.5
|
||||
parent: 192
|
||||
- uid: 203
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -3.5,-2.5
|
||||
parent: 192
|
||||
- uid: 204
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.5,-2.5
|
||||
parent: 192
|
||||
- uid: 205
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.5,0.5
|
||||
parent: 192
|
||||
- proto: SpaceTickSpawner
|
||||
entities:
|
||||
- uid: 1
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -4.5,2.5
|
||||
parent: 192
|
||||
- uid: 3
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -4.5,0.5
|
||||
parent: 192
|
||||
- uid: 5
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -4.5,-1.5
|
||||
parent: 192
|
||||
- uid: 7
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -4.5,-3.5
|
||||
parent: 192
|
||||
- uid: 9
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -3.5,2.5
|
||||
parent: 192
|
||||
- uid: 10
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -3.5,1.5
|
||||
parent: 192
|
||||
- uid: 12
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -3.5,-0.5
|
||||
parent: 192
|
||||
- uid: 14
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -3.5,-2.5
|
||||
parent: 192
|
||||
- uid: 16
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -3.5,-4.5
|
||||
parent: 192
|
||||
- uid: 18
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -2.5,1.5
|
||||
parent: 192
|
||||
- uid: 19
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -2.5,0.5
|
||||
parent: 192
|
||||
- uid: 21
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -2.5,-1.5
|
||||
parent: 192
|
||||
- uid: 23
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -2.5,-3.5
|
||||
parent: 192
|
||||
- uid: 25
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -1.5,2.5
|
||||
parent: 192
|
||||
- uid: 30
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -1.5,-2.5
|
||||
parent: 192
|
||||
- uid: 32
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -1.5,-4.5
|
||||
parent: 192
|
||||
- uid: 33
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,2.5
|
||||
parent: 192
|
||||
- uid: 37
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,-1.5
|
||||
parent: 192
|
||||
- uid: 39
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,-3.5
|
||||
parent: 192
|
||||
- uid: 42
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.5,1.5
|
||||
parent: 192
|
||||
- uid: 46
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.5,-2.5
|
||||
parent: 192
|
||||
- uid: 48
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.5,-4.5
|
||||
parent: 192
|
||||
- uid: 49
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.5,2.5
|
||||
parent: 192
|
||||
- uid: 51
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.5,0.5
|
||||
parent: 192
|
||||
- uid: 54
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.5,-2.5
|
||||
parent: 192
|
||||
- uid: 55
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.5,-3.5
|
||||
parent: 192
|
||||
- proto: WarpPointDebris
|
||||
entities:
|
||||
- uid: 11
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.5,1.5
|
||||
parent: 192
|
||||
...
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
|
@ -1,5 +1,6 @@
|
|||
meta:
|
||||
format: 6
|
||||
format: 7
|
||||
category: Map
|
||||
postmapinit: false
|
||||
tilemap:
|
||||
0: Space
|
||||
|
|
@ -17,8 +18,9 @@ entities:
|
|||
components:
|
||||
- type: MetaData
|
||||
- type: Transform
|
||||
pos: -7,5.5
|
||||
parent: invalid
|
||||
- type: Map
|
||||
mapPaused: True
|
||||
- type: GridTree
|
||||
- type: MapGrid
|
||||
chunks:
|
||||
-1,-1:
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
|
@ -0,0 +1,971 @@
|
|||
meta:
|
||||
format: 7
|
||||
category: Map
|
||||
engineVersion: 270.1.0
|
||||
forkId: ""
|
||||
forkVersion: ""
|
||||
time: 07/07/2026 02:28:34
|
||||
entityCount: 148
|
||||
maps:
|
||||
- 52
|
||||
grids:
|
||||
- 52
|
||||
orphans: []
|
||||
nullspace: []
|
||||
tilemap:
|
||||
0: Space
|
||||
20: FloorBrokenWood
|
||||
1: FloorShuttleOrange
|
||||
97: FloorSteelDirty
|
||||
119: FloorWood
|
||||
120: FloorWoodTile
|
||||
121: Lattice
|
||||
122: Plating
|
||||
entities:
|
||||
- proto: ""
|
||||
entities:
|
||||
- uid: 52
|
||||
components:
|
||||
- type: MetaData
|
||||
- type: Transform
|
||||
- type: Map
|
||||
mapPaused: True
|
||||
- type: GridTree
|
||||
- type: MapGrid
|
||||
chunks:
|
||||
-1,-1:
|
||||
ind: -1,-1
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAB5AAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAFAAAAAABAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAHcAAAAAAgAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAHoAAAAAAAB3AAAAAAEAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB4AAAAAAAAFAAAAAAFAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAeQAAAAAAAHcAAAAAAQB3AAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHgAAAAAAwB3AAAAAAIAdwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB4AAAAAAIAdwAAAAADAHcAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAeAAAAAABABQAAAAABAB3AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHgAAAAAAQB3AAAAAAEAdwAAAAADAA==
|
||||
version: 7
|
||||
0,-1:
|
||||
ind: 0,-1
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB3AAAAAAEAAQAAAAAAAHkAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAFAHoAAAAAAAB6AAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHcAAAAAAQB3AAAAAAMAFAAAAAACAHcAAAAAAQB5AAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB3AAAAAAEAdwAAAAADAHoAAAAAAAAUAAAAAAIAeAAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAAHcAAAAAAQB3AAAAAAMAFAAAAAADAHgAAAAAAwABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHcAAAAAAwB3AAAAAAMAdwAAAAACAHcAAAAAAwB4AAAAAAMAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB3AAAAAAEAdwAAAAACAHcAAAAAAQB3AAAAAAMAeAAAAAABAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAACAHcAAAAAAAB3AAAAAAIAdwAAAAACAHgAAAAAAQB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
version: 7
|
||||
0,0:
|
||||
ind: 0,0
|
||||
tiles: FAAAAAAFAHcAAAAAAwAUAAAAAAYAdwAAAAACAHgAAAAAAgB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHcAAAAAAAB3AAAAAAMAegAAAAAAAHoAAAAAAAB4AAAAAAMAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB3AAAAAAIAdwAAAAAAAHcAAAAAAgB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAACAHcAAAAAAQB6AAAAAAAAegAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHkAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
version: 7
|
||||
-1,0:
|
||||
ind: -1,0
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHgAAAAAAAB3AAAAAAEAdwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAABhAAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB3AAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAeQAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
version: 7
|
||||
- type: Broadphase
|
||||
- type: Physics
|
||||
bodyStatus: InAir
|
||||
angularDamping: 0.05
|
||||
linearDamping: 0.05
|
||||
fixedRotation: False
|
||||
canCollide: False
|
||||
bodyType: Dynamic
|
||||
- type: Fixtures
|
||||
fixtures: {}
|
||||
- type: Gravity
|
||||
gravityShakeSound: !type:SoundPathSpecifier
|
||||
path: /Audio/Effects/alert.ogg
|
||||
- type: DecalGrid
|
||||
chunkCollection:
|
||||
version: 2
|
||||
nodes:
|
||||
- node:
|
||||
color: '#FFFFFFFF'
|
||||
id: WoodTrimThinLineE
|
||||
decals:
|
||||
7: 3,-5
|
||||
8: 3,-6
|
||||
9: 3,-4
|
||||
10: 3,-3
|
||||
11: 3,-2
|
||||
12: 3,-1
|
||||
13: 3,0
|
||||
- node:
|
||||
color: '#FFFFFFFF'
|
||||
id: WoodTrimThinLineW
|
||||
decals:
|
||||
0: -2,-4
|
||||
1: -2,-5
|
||||
2: -2,-6
|
||||
3: -2,-3
|
||||
4: -2,-2
|
||||
5: -2,-1
|
||||
6: -2,0
|
||||
- type: GridAtmosphere
|
||||
version: 2
|
||||
data:
|
||||
tiles:
|
||||
-1,-1:
|
||||
0: 65535
|
||||
0,-1:
|
||||
0: 65535
|
||||
0,0:
|
||||
0: 65535
|
||||
-1,0:
|
||||
0: 65535
|
||||
-1,-2:
|
||||
0: 61420
|
||||
-1,-3:
|
||||
0: 50176
|
||||
0,-2:
|
||||
0: 65397
|
||||
1,-2:
|
||||
0: 12544
|
||||
1,-1:
|
||||
0: 13105
|
||||
0,1:
|
||||
0: 4095
|
||||
1,0:
|
||||
0: 13107
|
||||
-1,1:
|
||||
0: 3278
|
||||
1,1:
|
||||
0: 1
|
||||
uniqueMixes:
|
||||
- volume: 2500
|
||||
temperature: 293.15
|
||||
moles:
|
||||
Oxygen: 21.824879
|
||||
Nitrogen: 82.10312
|
||||
chunkSize: 4
|
||||
- type: OccluderTree
|
||||
- type: Shuttle
|
||||
dampingModifier: 0.25
|
||||
- type: GridPathfinding
|
||||
- type: RadiationGridResistance
|
||||
- type: SpreaderGrid
|
||||
- type: GasTileOverlay
|
||||
- type: ExplosionAirtightGrid
|
||||
- proto: APCBasic
|
||||
entities:
|
||||
- uid: 99
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,1.5
|
||||
parent: 52
|
||||
- type: Fixtures
|
||||
fixtures: {}
|
||||
- proto: Barricade
|
||||
entities:
|
||||
- uid: 144
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -1.5,-4.5
|
||||
parent: 52
|
||||
- uid: 145
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.5,-3.5
|
||||
parent: 52
|
||||
- proto: CableApcExtension
|
||||
entities:
|
||||
- uid: 58
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.5,0.5
|
||||
parent: 52
|
||||
- uid: 101
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.5,0.5
|
||||
parent: 52
|
||||
- uid: 102
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,0.5
|
||||
parent: 52
|
||||
- uid: 103
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,1.5
|
||||
parent: 52
|
||||
- uid: 108
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.5,0.5
|
||||
parent: 52
|
||||
- uid: 109
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 3.5,0.5
|
||||
parent: 52
|
||||
- uid: 110
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 3.5,-0.5
|
||||
parent: 52
|
||||
- uid: 111
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 3.5,-1.5
|
||||
parent: 52
|
||||
- uid: 112
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,0.5
|
||||
parent: 52
|
||||
- uid: 113
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -1.5,0.5
|
||||
parent: 52
|
||||
- uid: 114
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -1.5,-0.5
|
||||
parent: 52
|
||||
- uid: 115
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -1.5,-1.5
|
||||
parent: 52
|
||||
- uid: 116
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,2.5
|
||||
parent: 52
|
||||
- uid: 117
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,3.5
|
||||
parent: 52
|
||||
- uid: 118
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.5,3.5
|
||||
parent: 52
|
||||
- uid: 119
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.5,3.5
|
||||
parent: 52
|
||||
- uid: 120
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.5,3.5
|
||||
parent: 52
|
||||
- uid: 121
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.5,2.5
|
||||
parent: 52
|
||||
- uid: 122
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.5,1.5
|
||||
parent: 52
|
||||
- uid: 123
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -1.5,2.5
|
||||
parent: 52
|
||||
- uid: 124
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -2.5,2.5
|
||||
parent: 52
|
||||
- uid: 125
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 3.5,2.5
|
||||
parent: 52
|
||||
- uid: 126
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 4.5,2.5
|
||||
parent: 52
|
||||
- uid: 127
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.5,4.5
|
||||
parent: 52
|
||||
- uid: 128
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,4.5
|
||||
parent: 52
|
||||
- proto: CableHV
|
||||
entities:
|
||||
- uid: 24
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -2.5,0.5
|
||||
parent: 52
|
||||
- uid: 26
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -2.5,-0.5
|
||||
parent: 52
|
||||
- uid: 135
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -2.5,1.5
|
||||
parent: 52
|
||||
- proto: CableMV
|
||||
entities:
|
||||
- uid: 100
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -1.5,0.5
|
||||
parent: 52
|
||||
- uid: 104
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,1.5
|
||||
parent: 52
|
||||
- uid: 105
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,0.5
|
||||
parent: 52
|
||||
- uid: 106
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -2.5,0.5
|
||||
parent: 52
|
||||
- uid: 107
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -2.5,1.5
|
||||
parent: 52
|
||||
- proto: ChairWood
|
||||
entities:
|
||||
- uid: 8
|
||||
components:
|
||||
- type: Transform
|
||||
rot: 3.141592653589793 rad
|
||||
pos: 0.5,-4.5
|
||||
parent: 52
|
||||
- uid: 17
|
||||
components:
|
||||
- type: Transform
|
||||
rot: -1.5707963267948966 rad
|
||||
pos: 2.5,-0.5
|
||||
parent: 52
|
||||
- uid: 19
|
||||
components:
|
||||
- type: Transform
|
||||
rot: 3.141592653589793 rad
|
||||
pos: 1.5,-4.5
|
||||
parent: 52
|
||||
- uid: 27
|
||||
components:
|
||||
- type: Transform
|
||||
rot: 1.5707963267948966 rad
|
||||
pos: -1.5,-1.5
|
||||
parent: 52
|
||||
- uid: 28
|
||||
components:
|
||||
- type: Transform
|
||||
rot: 3.141592653589793 rad
|
||||
pos: -0.5,-3.5
|
||||
parent: 52
|
||||
- uid: 29
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,-0.5
|
||||
parent: 52
|
||||
- uid: 39
|
||||
components:
|
||||
- type: Transform
|
||||
rot: -1.5707963267948966 rad
|
||||
pos: 3.5,-1.5
|
||||
parent: 52
|
||||
- proto: ClothingEyesEyepatch
|
||||
entities:
|
||||
- uid: 92
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.45799494,-2.3092217
|
||||
parent: 52
|
||||
- proto: ClothingHeadHatPirate
|
||||
entities:
|
||||
- uid: 72
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.52966046,-0.47381306
|
||||
parent: 52
|
||||
- proto: ClothingHeadHatPirateTricord
|
||||
entities:
|
||||
- uid: 15
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.345557,3.7402463
|
||||
parent: 52
|
||||
- proto: ClothingNeckBling
|
||||
entities:
|
||||
- uid: 67
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.4993628,-3.1426823
|
||||
parent: 52
|
||||
- proto: ClothingOuterCoatPirate
|
||||
entities:
|
||||
- uid: 73
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.1702855,-0.55193806
|
||||
parent: 52
|
||||
- proto: ClothingUniformJumpsuitPirate
|
||||
entities:
|
||||
- uid: 37
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.611182,3.496825
|
||||
parent: 52
|
||||
- proto: CrateFunPirate
|
||||
entities:
|
||||
- uid: 35
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.5,3.5
|
||||
parent: 52
|
||||
- proto: DrinkGildlagerBottleFull
|
||||
entities:
|
||||
- uid: 2
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.0845438,-2.1036394
|
||||
parent: 52
|
||||
- uid: 54
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.4439188,-1.6661394
|
||||
parent: 52
|
||||
- proto: DrinkGrogGlass
|
||||
entities:
|
||||
- uid: 40
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.624363,-2.4551823
|
||||
parent: 52
|
||||
- uid: 66
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.05393684,-2.4239323
|
||||
parent: 52
|
||||
- uid: 89
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5627491,-1.3523273
|
||||
parent: 52
|
||||
- proto: DrinkShinyFlask
|
||||
entities:
|
||||
- uid: 86
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.042627335,-1.4742832
|
||||
parent: 52
|
||||
- type: SolutionContainerManager
|
||||
solutions:
|
||||
drink:
|
||||
temperature: 293.15
|
||||
canReact: True
|
||||
maxVol: 30
|
||||
name: null
|
||||
reagents:
|
||||
- data: []
|
||||
ReagentId: DeadRum
|
||||
Quantity: 20
|
||||
- proto: FoodCakeLemon
|
||||
entities:
|
||||
- uid: 82
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.8274878,-3.2208073
|
||||
parent: 52
|
||||
- proto: GeneratorBasic
|
||||
entities:
|
||||
- uid: 136
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -2.5,-0.5
|
||||
parent: 52
|
||||
- proto: GoldOre1
|
||||
entities:
|
||||
- uid: 1
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.21694303,2.57495
|
||||
parent: 52
|
||||
- uid: 4
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.37319303,2.465575
|
||||
parent: 52
|
||||
- uid: 5
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.423682,2.621825
|
||||
parent: 52
|
||||
- uid: 6
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.607568,2.778075
|
||||
parent: 52
|
||||
- uid: 10
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.670068,2.51245
|
||||
parent: 52
|
||||
- uid: 21
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.704932,2.6062
|
||||
parent: 52
|
||||
- uid: 31
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.486182,2.4812
|
||||
parent: 52
|
||||
- uid: 32
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.376807,2.778075
|
||||
parent: 52
|
||||
- uid: 33
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.673682,2.403075
|
||||
parent: 52
|
||||
- uid: 34
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.48256803,2.403075
|
||||
parent: 52
|
||||
- uid: 36
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.564307,2.7937
|
||||
parent: 52
|
||||
- uid: 38
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.49819303,2.621825
|
||||
parent: 52
|
||||
- uid: 47
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.623193,2.559325
|
||||
parent: 52
|
||||
- uid: 76
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.376807,2.38745
|
||||
parent: 52
|
||||
- uid: 130
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.29506803,2.778075
|
||||
parent: 52
|
||||
- proto: Grille
|
||||
entities:
|
||||
- uid: 7
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 5.5,-1.5
|
||||
parent: 52
|
||||
- uid: 22
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 5.5,0.5
|
||||
parent: 52
|
||||
- uid: 25
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -3.5,0.5
|
||||
parent: 52
|
||||
- uid: 30
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -3.5,-1.5
|
||||
parent: 52
|
||||
- proto: IngotGold1
|
||||
entities:
|
||||
- uid: 44
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.703125,-1.984375
|
||||
parent: 52
|
||||
- uid: 45
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.5,-1.40625
|
||||
parent: 52
|
||||
- uid: 57
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.484375,-1.078125
|
||||
parent: 52
|
||||
- uid: 131
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.171875,-1.1875
|
||||
parent: 52
|
||||
- uid: 132
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.71875,-1.515625
|
||||
parent: 52
|
||||
- uid: 133
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.015625,-1.578125
|
||||
parent: 52
|
||||
- proto: MarimbaInstrument
|
||||
entities:
|
||||
- uid: 18
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 4.5,1.5
|
||||
parent: 52
|
||||
- proto: MetalDoor
|
||||
entities:
|
||||
- uid: 49
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.5,1.5
|
||||
parent: 52
|
||||
- uid: 56
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.5,1.5
|
||||
parent: 52
|
||||
- proto: PoweredSmallLight
|
||||
entities:
|
||||
- uid: 90
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 4.5,1.5
|
||||
parent: 52
|
||||
- type: ApcPowerReceiver
|
||||
powerLoad: 0
|
||||
- uid: 91
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -2.5,1.5
|
||||
parent: 52
|
||||
- type: ApcPowerReceiver
|
||||
powerLoad: 0
|
||||
- proto: RandomAmmoBox
|
||||
entities:
|
||||
- uid: 147
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -1.5,-3.5
|
||||
parent: 52
|
||||
- proto: ReinforcedWindow
|
||||
entities:
|
||||
- uid: 68
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 5.5,0.5
|
||||
parent: 52
|
||||
- uid: 70
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 5.5,-1.5
|
||||
parent: 52
|
||||
- uid: 80
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -3.5,-1.5
|
||||
parent: 52
|
||||
- uid: 87
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -3.5,0.5
|
||||
parent: 52
|
||||
- proto: SalvageHumanCorpseSpawner
|
||||
entities:
|
||||
- uid: 137
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 4.5,0.5
|
||||
parent: 52
|
||||
- proto: SalvageMobSpawner75
|
||||
entities:
|
||||
- uid: 138
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 4.5,-1.5
|
||||
parent: 52
|
||||
- uid: 139
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 4.5,-2.5
|
||||
parent: 52
|
||||
- uid: 140
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 4.5,-3.5
|
||||
parent: 52
|
||||
- uid: 141
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -2.5,-1.5
|
||||
parent: 52
|
||||
- uid: 142
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -2.5,-2.5
|
||||
parent: 52
|
||||
- uid: 143
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -2.5,-3.5
|
||||
parent: 52
|
||||
- proto: SeashellInstrument
|
||||
entities:
|
||||
- uid: 20
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.345557,-1.4329147
|
||||
parent: 52
|
||||
- proto: SheetPlasteel1
|
||||
entities:
|
||||
- uid: 74
|
||||
components:
|
||||
- type: Transform
|
||||
rot: -1.5707963267948966 rad
|
||||
pos: 4.4650807,3.346371
|
||||
parent: 52
|
||||
- uid: 146
|
||||
components:
|
||||
- type: Transform
|
||||
rot: 3.141592653589793 rad
|
||||
pos: 4.8088307,3.492306
|
||||
parent: 52
|
||||
- proto: SpaceCash10
|
||||
entities:
|
||||
- uid: 14
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.578125,-2.515625
|
||||
parent: 52
|
||||
- uid: 16
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.953125,-2.1875
|
||||
parent: 52
|
||||
- uid: 43
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.671875,-2.4375
|
||||
parent: 52
|
||||
- proto: Stool
|
||||
entities:
|
||||
- uid: 9
|
||||
components:
|
||||
- type: Transform
|
||||
rot: -1.5707963267948966 rad
|
||||
pos: 4.5,0.5
|
||||
parent: 52
|
||||
- proto: SubstationBasic
|
||||
entities:
|
||||
- uid: 75
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -2.5,1.5
|
||||
parent: 52
|
||||
- proto: TableCarpet
|
||||
entities:
|
||||
- uid: 3
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,-2.5
|
||||
parent: 52
|
||||
- uid: 11
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.5,-2.5
|
||||
parent: 52
|
||||
- uid: 12
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.5,-3.5
|
||||
parent: 52
|
||||
- uid: 13
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,-1.5
|
||||
parent: 52
|
||||
- uid: 23
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.5,3.5
|
||||
parent: 52
|
||||
- uid: 41
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.5,-0.5
|
||||
parent: 52
|
||||
- uid: 42
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.5,-0.5
|
||||
parent: 52
|
||||
- uid: 46
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.5,-3.5
|
||||
parent: 52
|
||||
- uid: 62
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.5,-2.5
|
||||
parent: 52
|
||||
- uid: 64
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.5,-1.5
|
||||
parent: 52
|
||||
- uid: 78
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.5,-1.5
|
||||
parent: 52
|
||||
- uid: 83
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.5,-2.5
|
||||
parent: 52
|
||||
- uid: 134
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.5,-1.5
|
||||
parent: 52
|
||||
- proto: TableStone
|
||||
entities:
|
||||
- uid: 59
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.5,2.5
|
||||
parent: 52
|
||||
- uid: 95
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,2.5
|
||||
parent: 52
|
||||
- proto: WallWood
|
||||
entities:
|
||||
- uid: 48
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 5.5,2.5
|
||||
parent: 52
|
||||
- uid: 50
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 3.5,1.5
|
||||
parent: 52
|
||||
- uid: 51
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -1.5,1.5
|
||||
parent: 52
|
||||
- uid: 53
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 3.5,3.5
|
||||
parent: 52
|
||||
- uid: 55
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 5.5,1.5
|
||||
parent: 52
|
||||
- uid: 60
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.5,1.5
|
||||
parent: 52
|
||||
- uid: 61
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.5,4.5
|
||||
parent: 52
|
||||
- uid: 63
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,4.5
|
||||
parent: 52
|
||||
- uid: 65
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -3.5,-2.5
|
||||
parent: 52
|
||||
- uid: 69
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -3.5,-0.5
|
||||
parent: 52
|
||||
- uid: 71
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -1.5,2.5
|
||||
parent: 52
|
||||
- uid: 77
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -3.5,1.5
|
||||
parent: 52
|
||||
- uid: 79
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -1.5,3.5
|
||||
parent: 52
|
||||
- uid: 81
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -3.5,2.5
|
||||
parent: 52
|
||||
- uid: 84
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 4.5,2.5
|
||||
parent: 52
|
||||
- uid: 85
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 3.5,2.5
|
||||
parent: 52
|
||||
- uid: 88
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 5.5,-0.5
|
||||
parent: 52
|
||||
- uid: 93
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,3.5
|
||||
parent: 52
|
||||
- uid: 94
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -2.5,2.5
|
||||
parent: 52
|
||||
- uid: 96
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.5,4.5
|
||||
parent: 52
|
||||
- uid: 97
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,1.5
|
||||
parent: 52
|
||||
- uid: 98
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.5,4.5
|
||||
parent: 52
|
||||
- uid: 129
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.5,3.5
|
||||
parent: 52
|
||||
- proto: WarpPointDebris
|
||||
entities:
|
||||
- uid: 148
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.5,-5.5
|
||||
parent: 52
|
||||
...
|
||||
|
|
@ -0,0 +1,981 @@
|
|||
meta:
|
||||
format: 7
|
||||
category: Map
|
||||
engineVersion: 270.1.0
|
||||
forkId: ""
|
||||
forkVersion: ""
|
||||
time: 07/07/2026 02:30:40
|
||||
entityCount: 143
|
||||
maps:
|
||||
- 130
|
||||
grids:
|
||||
- 130
|
||||
orphans: []
|
||||
nullspace: []
|
||||
tilemap:
|
||||
0: Space
|
||||
82: FloorShuttleBlue
|
||||
83: FloorShuttleOrange
|
||||
85: FloorShuttleRed
|
||||
86: FloorShuttleWhite
|
||||
121: Lattice
|
||||
122: Plating
|
||||
entities:
|
||||
- proto: ""
|
||||
entities:
|
||||
- uid: 130
|
||||
components:
|
||||
- type: MetaData
|
||||
- type: Transform
|
||||
- type: Map
|
||||
mapPaused: True
|
||||
- type: GridTree
|
||||
- type: MapGrid
|
||||
chunks:
|
||||
-1,-1:
|
||||
ind: -1,-1
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABTAAAAAAAAUwAAAAAAAFMAAAAAAABTAAAAAAAAUwAAAAAAAFMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAHkAAAAAAAB5AAAAAAAAUwAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFMAAAAAAAB5AAAAAAAAegAAAAAAAHoAAAAAAABTAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHoAAAAAAABTAAAAAAAAUwAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAABTAAAAAAAAUwAAAAAAAFMAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAFMAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAUgAAAAAAAHkAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAFYAAAAAAAB6AAAAAAAAVgAAAAAAAFYAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB5AAAAAAAAegAAAAAAAFYAAAAAAABWAAAAAAAAegAAAAAAAA==
|
||||
version: 7
|
||||
0,-1:
|
||||
ind: 0,-1
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABTAAAAAAAAeQAAAAAAAHoAAAAAAABTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVgAAAAAAAFYAAAAAAABWAAAAAAAAeQAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFYAAAAAAABWAAAAAAAAVgAAAAAAAFYAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABWAAAAAAAAVgAAAAAAAFYAAAAAAABWAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAFYAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAABSAAAAAAAAUgAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABWAAAAAAAAVgAAAAAAAHoAAAAAAAB5AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVgAAAAAAAFYAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
version: 7
|
||||
-1,0:
|
||||
ind: -1,0
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAABTAAAAAAAAeQAAAAAAAFYAAAAAAABWAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAeQAAAAAAAHkAAAAAAABWAAAAAAAAVgAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAFYAAAAAAAB6AAAAAAAAVgAAAAAAAFYAAAAAAABSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAABWAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAFYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAABWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFMAAAAAAAB5AAAAAAAAeQAAAAAAAFUAAAAAAAB6AAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABTAAAAAAAAUwAAAAAAAFMAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
version: 7
|
||||
0,0:
|
||||
ind: 0,0
|
||||
tiles: VgAAAAAAAFYAAAAAAABSAAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFYAAAAAAABWAAAAAAAAUgAAAAAAAFYAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABWAAAAAAAAVgAAAAAAAFIAAAAAAABWAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAFIAAAAAAABSAAAAAAAAVgAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFYAAAAAAABWAAAAAAAAUgAAAAAAAFYAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABWAAAAAAAAVgAAAAAAAFIAAAAAAABWAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAFIAAAAAAABSAAAAAAAAVgAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAABWAAAAAAAAVgAAAAAAAFYAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
version: 7
|
||||
- type: Broadphase
|
||||
- type: Physics
|
||||
bodyStatus: InAir
|
||||
angularDamping: 0.05
|
||||
linearDamping: 0.05
|
||||
fixedRotation: False
|
||||
canCollide: False
|
||||
bodyType: Dynamic
|
||||
- type: Fixtures
|
||||
fixtures: {}
|
||||
- type: Gravity
|
||||
gravityShakeSound: !type:SoundPathSpecifier
|
||||
path: /Audio/Effects/alert.ogg
|
||||
- type: DecalGrid
|
||||
chunkCollection:
|
||||
version: 2
|
||||
nodes: []
|
||||
- type: OccluderTree
|
||||
- type: Shuttle
|
||||
dampingModifier: 0.25
|
||||
- type: RadiationGridResistance
|
||||
- type: SpreaderGrid
|
||||
- type: GridPathfinding
|
||||
- type: GridAtmosphere
|
||||
version: 2
|
||||
data:
|
||||
tiles:
|
||||
-2,-2:
|
||||
0: 52360
|
||||
-2,-1:
|
||||
0: 52428
|
||||
-1,-2:
|
||||
0: 65533
|
||||
-1,-1:
|
||||
0: 65535
|
||||
0,-3:
|
||||
0: 53248
|
||||
0,-2:
|
||||
0: 65535
|
||||
0,-1:
|
||||
0: 65535
|
||||
1,-2:
|
||||
0: 4369
|
||||
1,-1:
|
||||
0: 4369
|
||||
-2,0:
|
||||
0: 52420
|
||||
-2,1:
|
||||
0: 2252
|
||||
-1,0:
|
||||
0: 65535
|
||||
-1,1:
|
||||
0: 61439
|
||||
0,0:
|
||||
0: 65535
|
||||
0,1:
|
||||
0: 65535
|
||||
1,0:
|
||||
0: 4369
|
||||
1,1:
|
||||
0: 4369
|
||||
uniqueMixes:
|
||||
- volume: 2500
|
||||
temperature: 293.15
|
||||
moles:
|
||||
Oxygen: 21.824879
|
||||
Nitrogen: 82.10312
|
||||
chunkSize: 4
|
||||
- type: GasTileOverlay
|
||||
- type: ExplosionAirtightGrid
|
||||
- proto: AirlockGlass
|
||||
entities:
|
||||
- uid: 57
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.5,-3.5
|
||||
parent: 130
|
||||
- proto: AirlockShuttle
|
||||
entities:
|
||||
- uid: 38
|
||||
components:
|
||||
- type: Transform
|
||||
rot: -1.5707963267948966 rad
|
||||
pos: -5.5,-2.5
|
||||
parent: 130
|
||||
- uid: 39
|
||||
components:
|
||||
- type: Transform
|
||||
rot: -1.5707963267948966 rad
|
||||
pos: -5.5,3.5
|
||||
parent: 130
|
||||
- uid: 40
|
||||
components:
|
||||
- type: Transform
|
||||
rot: -1.5707963267948966 rad
|
||||
pos: -5.5,-4.5
|
||||
parent: 130
|
||||
- uid: 41
|
||||
components:
|
||||
- type: Transform
|
||||
rot: -1.5707963267948966 rad
|
||||
pos: -5.5,5.5
|
||||
parent: 130
|
||||
- proto: AlwaysPoweredWallLight
|
||||
entities:
|
||||
- uid: 126
|
||||
components:
|
||||
- type: Transform
|
||||
rot: 3.141592653589793 rad
|
||||
pos: -0.5,-2.5
|
||||
parent: 130
|
||||
- proto: BriefcaseBrownFilled
|
||||
entities:
|
||||
- uid: 55
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.8184211,1.0310183
|
||||
parent: 130
|
||||
- proto: ChairPilotSeat
|
||||
entities:
|
||||
- uid: 68
|
||||
components:
|
||||
- type: Transform
|
||||
rot: -1.5707963267948966 rad
|
||||
pos: 3.5,2.5
|
||||
parent: 130
|
||||
- uid: 69
|
||||
components:
|
||||
- type: Transform
|
||||
rot: 1.5707963267948966 rad
|
||||
pos: 0.5,5.5
|
||||
parent: 130
|
||||
- uid: 72
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,5.5
|
||||
parent: 130
|
||||
- uid: 73
|
||||
components:
|
||||
- type: Transform
|
||||
rot: 1.5707963267948966 rad
|
||||
pos: 1.5,-0.5
|
||||
parent: 130
|
||||
- uid: 74
|
||||
components:
|
||||
- type: Transform
|
||||
rot: 1.5707963267948966 rad
|
||||
pos: 1.5,-1.5
|
||||
parent: 130
|
||||
- uid: 77
|
||||
components:
|
||||
- type: Transform
|
||||
rot: -1.5707963267948966 rad
|
||||
pos: 3.5,1.5
|
||||
parent: 130
|
||||
- uid: 78
|
||||
components:
|
||||
- type: Transform
|
||||
rot: -1.5707963267948966 rad
|
||||
pos: 0.5,0.5
|
||||
parent: 130
|
||||
- uid: 79
|
||||
components:
|
||||
- type: Transform
|
||||
rot: 1.5707963267948966 rad
|
||||
pos: -1.5,2.5
|
||||
parent: 130
|
||||
- uid: 83
|
||||
components:
|
||||
- type: Transform
|
||||
rot: -1.5707963267948966 rad
|
||||
pos: 0.5,1.5
|
||||
parent: 130
|
||||
- uid: 84
|
||||
components:
|
||||
- type: Transform
|
||||
rot: -1.5707963267948966 rad
|
||||
pos: 0.5,2.5
|
||||
parent: 130
|
||||
- uid: 85
|
||||
components:
|
||||
- type: Transform
|
||||
rot: 1.5707963267948966 rad
|
||||
pos: 1.5,2.5
|
||||
parent: 130
|
||||
- uid: 86
|
||||
components:
|
||||
- type: Transform
|
||||
rot: 1.5707963267948966 rad
|
||||
pos: 1.5,1.5
|
||||
parent: 130
|
||||
- uid: 87
|
||||
components:
|
||||
- type: Transform
|
||||
rot: 1.5707963267948966 rad
|
||||
pos: 1.5,0.5
|
||||
parent: 130
|
||||
- uid: 88
|
||||
components:
|
||||
- type: Transform
|
||||
rot: 1.5707963267948966 rad
|
||||
pos: -1.5,1.5
|
||||
parent: 130
|
||||
- uid: 89
|
||||
components:
|
||||
- type: Transform
|
||||
rot: 1.5707963267948966 rad
|
||||
pos: -1.5,0.5
|
||||
parent: 130
|
||||
- uid: 91
|
||||
components:
|
||||
- type: Transform
|
||||
rot: -1.5707963267948966 rad
|
||||
pos: -2.5,-0.5
|
||||
parent: 130
|
||||
- proto: ClosetEmergencyFilledRandom
|
||||
entities:
|
||||
- uid: 131
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.5,-6.5
|
||||
parent: 130
|
||||
- uid: 132
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.5,-4.5
|
||||
parent: 130
|
||||
- uid: 133
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.5,7.5
|
||||
parent: 130
|
||||
- proto: ClosetMaintenanceFilledRandom
|
||||
entities:
|
||||
- uid: 128
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -3.5,-6.5
|
||||
parent: 130
|
||||
- proto: CrateEmergencyExplosive
|
||||
entities:
|
||||
- uid: 137
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -2.5,6.5
|
||||
parent: 130
|
||||
- proto: CrateGenericSteel
|
||||
entities:
|
||||
- uid: 139
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -2.5,-6.5
|
||||
parent: 130
|
||||
- proto: Crowbar
|
||||
entities:
|
||||
- uid: 116
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 3.5,7.5
|
||||
parent: 130
|
||||
- type: Physics
|
||||
canCollide: False
|
||||
- uid: 117
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 3.5,-5.5
|
||||
parent: 130
|
||||
- type: Physics
|
||||
canCollide: False
|
||||
- proto: ExtinguisherCabinetFilled
|
||||
entities:
|
||||
- uid: 120
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 4.5,3.5
|
||||
parent: 130
|
||||
- type: Fixtures
|
||||
fixtures: {}
|
||||
- uid: 121
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 4.5,-5.5
|
||||
parent: 130
|
||||
- type: Fixtures
|
||||
fixtures: {}
|
||||
- uid: 122
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,-4.5
|
||||
parent: 130
|
||||
- type: Fixtures
|
||||
fixtures: {}
|
||||
- uid: 123
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -3.5,-3.5
|
||||
parent: 130
|
||||
- type: Fixtures
|
||||
fixtures: {}
|
||||
- uid: 124
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -3.5,4.5
|
||||
parent: 130
|
||||
- type: Fixtures
|
||||
fixtures: {}
|
||||
- proto: GeneratorBasic
|
||||
entities:
|
||||
- uid: 44
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.5,-7.5
|
||||
parent: 130
|
||||
- proto: Girder
|
||||
entities:
|
||||
- uid: 54
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 4.5,-7.5
|
||||
parent: 130
|
||||
- proto: Grille
|
||||
entities:
|
||||
- uid: 4
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -5.5,-0.5
|
||||
parent: 130
|
||||
- uid: 10
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 4.5,-4.5
|
||||
parent: 130
|
||||
- uid: 12
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 4.5,5.5
|
||||
parent: 130
|
||||
- uid: 16
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 4.5,7.5
|
||||
parent: 130
|
||||
- uid: 17
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -1.5,5.5
|
||||
parent: 130
|
||||
- uid: 18
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 4.5,-6.5
|
||||
parent: 130
|
||||
- uid: 43
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -5.5,1.5
|
||||
parent: 130
|
||||
- uid: 51
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 4.5,0.5
|
||||
parent: 130
|
||||
- uid: 71
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 4.5,1.5
|
||||
parent: 130
|
||||
- proto: GrilleBroken
|
||||
entities:
|
||||
- uid: 45
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -1.5,7.5
|
||||
parent: 130
|
||||
- uid: 75
|
||||
components:
|
||||
- type: Transform
|
||||
rot: 3.141592653589793 rad
|
||||
pos: 2.5,-3.5
|
||||
parent: 130
|
||||
- uid: 80
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 4.5,-0.5
|
||||
parent: 130
|
||||
- uid: 81
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 3.5,-3.5
|
||||
parent: 130
|
||||
- uid: 144
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -5.5,0.5
|
||||
parent: 130
|
||||
- proto: MaterialDurathread1
|
||||
entities:
|
||||
- uid: 9
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.671875,-6.5154533
|
||||
parent: 130
|
||||
- uid: 34
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 2.296875,-6.1092033
|
||||
parent: 130
|
||||
- proto: MedkitBurnFilled
|
||||
entities:
|
||||
- uid: 114
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 3.5,-5.5
|
||||
parent: 130
|
||||
- type: Physics
|
||||
canCollide: False
|
||||
- uid: 115
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 3.5,7.5
|
||||
parent: 130
|
||||
- type: Physics
|
||||
canCollide: False
|
||||
- proto: MedkitFilled
|
||||
entities:
|
||||
- uid: 118
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 3.6129847,7.341474
|
||||
parent: 130
|
||||
- uid: 119
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 3.6442347,-5.629479
|
||||
parent: 130
|
||||
- proto: RandomBox
|
||||
entities:
|
||||
- uid: 76
|
||||
components:
|
||||
- type: Transform
|
||||
rot: -1.5707963267948966 rad
|
||||
pos: -2.5,-4.5
|
||||
parent: 130
|
||||
- proto: RandomItem
|
||||
entities:
|
||||
- uid: 8
|
||||
components:
|
||||
- type: Transform
|
||||
rot: 1.5707963267948966 rad
|
||||
pos: -1.5,2.5
|
||||
parent: 130
|
||||
- proto: RollerBed
|
||||
entities:
|
||||
- uid: 129
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.4799528,-6.355282
|
||||
parent: 130
|
||||
- type: Physics
|
||||
canCollide: False
|
||||
- proto: SalvageCanisterSpawner
|
||||
entities:
|
||||
- uid: 140
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -3.5,-4.5
|
||||
parent: 130
|
||||
- proto: SalvageMaterialCrateSpawner
|
||||
entities:
|
||||
- uid: 37
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 3.5,0.5
|
||||
parent: 130
|
||||
- uid: 134
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -1.5,-4.5
|
||||
parent: 130
|
||||
- uid: 135
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -1.5,-5.5
|
||||
parent: 130
|
||||
- uid: 136
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -1.5,-6.5
|
||||
parent: 130
|
||||
- proto: SalvageMobSpawner
|
||||
entities:
|
||||
- uid: 141
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -2.5,-5.5
|
||||
parent: 130
|
||||
- uid: 142
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.5,-6.5
|
||||
parent: 130
|
||||
- uid: 143
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.5,6.5
|
||||
parent: 130
|
||||
- proto: ShardGlassReinforced
|
||||
entities:
|
||||
- uid: 42
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -1.8659657,6.4085593
|
||||
parent: 130
|
||||
- type: Physics
|
||||
canCollide: False
|
||||
- uid: 70
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -2.2565908,6.7523093
|
||||
parent: 130
|
||||
- type: Physics
|
||||
canCollide: False
|
||||
- proto: SheetPlasteel10
|
||||
entities:
|
||||
- uid: 35
|
||||
components:
|
||||
- type: Transform
|
||||
rot: 1.5707963267948966 rad
|
||||
pos: 0.05889213,-7.6564994
|
||||
parent: 130
|
||||
- proto: SheetSteel1
|
||||
entities:
|
||||
- uid: 82
|
||||
components:
|
||||
- type: Transform
|
||||
rot: 0.00074002705514431 rad
|
||||
pos: 3.341268,-8.26206
|
||||
parent: 130
|
||||
- type: Physics
|
||||
canCollide: False
|
||||
- proto: ShuttleWindow
|
||||
entities:
|
||||
- uid: 32
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -5.5,1.5
|
||||
parent: 130
|
||||
- uid: 53
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 4.5,7.5
|
||||
parent: 130
|
||||
- uid: 58
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 4.5,-0.5
|
||||
parent: 130
|
||||
- uid: 59
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 3.5,-3.5
|
||||
parent: 130
|
||||
- uid: 61
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -1.5,5.5
|
||||
parent: 130
|
||||
- uid: 62
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 4.5,5.5
|
||||
parent: 130
|
||||
- uid: 63
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 4.5,-6.5
|
||||
parent: 130
|
||||
- uid: 64
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 4.5,-4.5
|
||||
parent: 130
|
||||
- uid: 65
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -5.5,-0.5
|
||||
parent: 130
|
||||
- uid: 66
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 4.5,1.5
|
||||
parent: 130
|
||||
- uid: 67
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 4.5,0.5
|
||||
parent: 130
|
||||
- proto: SpawnMobKangarooSalvage
|
||||
entities:
|
||||
- uid: 36
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,0.5
|
||||
parent: 130
|
||||
- proto: StasisBed
|
||||
entities:
|
||||
- uid: 90
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 3.5,-4.5
|
||||
parent: 130
|
||||
- proto: Table
|
||||
entities:
|
||||
- uid: 14
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 3.5,-5.5
|
||||
parent: 130
|
||||
- uid: 92
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,4.5
|
||||
parent: 130
|
||||
- uid: 93
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.5,4.5
|
||||
parent: 130
|
||||
- uid: 94
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.5,4.5
|
||||
parent: 130
|
||||
- uid: 95
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 1.5,5.5
|
||||
parent: 130
|
||||
- uid: 113
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 3.5,7.5
|
||||
parent: 130
|
||||
- proto: VendingMachineWallMedical
|
||||
entities:
|
||||
- uid: 23
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -1.5,4.5
|
||||
parent: 130
|
||||
- type: Fixtures
|
||||
fixtures: {}
|
||||
- uid: 125
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,-5.5
|
||||
parent: 130
|
||||
- type: Fixtures
|
||||
fixtures: {}
|
||||
- proto: WallShuttle
|
||||
entities:
|
||||
- uid: 3
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -3.5,-3.5
|
||||
parent: 130
|
||||
- uid: 5
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,-5.5
|
||||
parent: 130
|
||||
- uid: 7
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 4.5,4.5
|
||||
parent: 130
|
||||
- uid: 11
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -1.5,-3.5
|
||||
parent: 130
|
||||
- uid: 13
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,-4.5
|
||||
parent: 130
|
||||
- uid: 15
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.5,-3.5
|
||||
parent: 130
|
||||
- uid: 19
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -4.5,4.5
|
||||
parent: 130
|
||||
- uid: 20
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -5.5,4.5
|
||||
parent: 130
|
||||
- uid: 21
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -5.5,2.5
|
||||
parent: 130
|
||||
- uid: 22
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -1.5,4.5
|
||||
parent: 130
|
||||
- uid: 25
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 4.5,-2.5
|
||||
parent: 130
|
||||
- uid: 26
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 4.5,-1.5
|
||||
parent: 130
|
||||
- uid: 27
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 4.5,2.5
|
||||
parent: 130
|
||||
- uid: 28
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 4.5,-5.5
|
||||
parent: 130
|
||||
- uid: 29
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 4.5,-3.5
|
||||
parent: 130
|
||||
- uid: 30
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -5.5,-3.5
|
||||
parent: 130
|
||||
- uid: 31
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -5.5,-1.5
|
||||
parent: 130
|
||||
- uid: 33
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,-6.5
|
||||
parent: 130
|
||||
- uid: 46
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -3.5,4.5
|
||||
parent: 130
|
||||
- uid: 47
|
||||
components:
|
||||
- type: Transform
|
||||
pos: -0.5,-3.5
|
||||
parent: 130
|
||||
- uid: 50
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 4.5,6.5
|
||||
parent: 130
|
||||
- uid: 60
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 4.5,3.5
|
||||
parent: 130
|
||||
- proto: WarpPointDebris
|
||||
entities:
|
||||
- uid: 127
|
||||
components:
|
||||
- type: Transform
|
||||
pos: 0.5,-0.5
|
||||
parent: 130
|
||||
- proto: WindowReinforcedDirectional
|
||||
entities:
|
||||
- uid: 1
|
||||
components:
|
||||
- type: Transform
|
||||
rot: -1.5707963267948966 rad
|
||||
pos: 1.5,1.5
|
||||
parent: 130
|
||||
- uid: 2
|
||||
components:
|
||||
- type: Transform
|
||||
rot: -1.5707963267948966 rad
|
||||
pos: 1.5,2.5
|
||||
parent: 130
|
||||
- uid: 6
|
||||
components:
|
||||
- type: Transform
|
||||
rot: 3.141592653589793 rad
|
||||
pos: -0.5,-7.5
|
||||
parent: 130
|
||||
- uid: 24
|
||||
components:
|
||||
- type: Transform
|
||||
rot: -1.5707963267948966 rad
|
||||
pos: 1.5,0.5
|
||||
parent: 130
|
||||
- uid: 48
|
||||
components:
|
||||
- type: Transform
|
||||
rot: 3.141592653589793 rad
|
||||
pos: 1.5,-7.5
|
||||
parent: 130
|
||||
- uid: 49
|
||||
components:
|
||||
- type: Transform
|
||||
rot: 3.141592653589793 rad
|
||||
pos: 0.5,-7.5
|
||||
parent: 130
|
||||
- uid: 52
|
||||
components:
|
||||
- type: Transform
|
||||
rot: 3.141592653589793 rad
|
||||
pos: 2.5,-7.5
|
||||
parent: 130
|
||||
- uid: 56
|
||||
components:
|
||||
- type: Transform
|
||||
rot: 3.141592653589793 rad
|
||||
pos: -1.5,-7.5
|
||||
parent: 130
|
||||
- uid: 96
|
||||
components:
|
||||
- type: Transform
|
||||
rot: -1.5707963267948966 rad
|
||||
pos: 1.5,-0.5
|
||||
parent: 130
|
||||
- uid: 97
|
||||
components:
|
||||
- type: Transform
|
||||
rot: -1.5707963267948966 rad
|
||||
pos: 1.5,-1.5
|
||||
parent: 130
|
||||
- uid: 98
|
||||
components:
|
||||
- type: Transform
|
||||
rot: -1.5707963267948966 rad
|
||||
pos: -1.5,-1.5
|
||||
parent: 130
|
||||
- uid: 99
|
||||
components:
|
||||
- type: Transform
|
||||
rot: -1.5707963267948966 rad
|
||||
pos: -1.5,-0.5
|
||||
parent: 130
|
||||
- uid: 100
|
||||
components:
|
||||
- type: Transform
|
||||
rot: -1.5707963267948966 rad
|
||||
pos: -1.5,0.5
|
||||
parent: 130
|
||||
- uid: 101
|
||||
components:
|
||||
- type: Transform
|
||||
rot: -1.5707963267948966 rad
|
||||
pos: -1.5,1.5
|
||||
parent: 130
|
||||
- uid: 102
|
||||
components:
|
||||
- type: Transform
|
||||
rot: -1.5707963267948966 rad
|
||||
pos: -1.5,2.5
|
||||
parent: 130
|
||||
- uid: 103
|
||||
components:
|
||||
- type: Transform
|
||||
rot: 1.5707963267948966 rad
|
||||
pos: -2.5,2.5
|
||||
parent: 130
|
||||
- uid: 104
|
||||
components:
|
||||
- type: Transform
|
||||
rot: 1.5707963267948966 rad
|
||||
pos: -2.5,1.5
|
||||
parent: 130
|
||||
- uid: 105
|
||||
components:
|
||||
- type: Transform
|
||||
rot: 1.5707963267948966 rad
|
||||
pos: -2.5,0.5
|
||||
parent: 130
|
||||
- uid: 106
|
||||
components:
|
||||
- type: Transform
|
||||
rot: 1.5707963267948966 rad
|
||||
pos: -2.5,-0.5
|
||||
parent: 130
|
||||
- uid: 107
|
||||
components:
|
||||
- type: Transform
|
||||
rot: 1.5707963267948966 rad
|
||||
pos: -2.5,-1.5
|
||||
parent: 130
|
||||
- uid: 108
|
||||
components:
|
||||
- type: Transform
|
||||
rot: 1.5707963267948966 rad
|
||||
pos: 0.5,2.5
|
||||
parent: 130
|
||||
- uid: 109
|
||||
components:
|
||||
- type: Transform
|
||||
rot: 1.5707963267948966 rad
|
||||
pos: 0.5,1.5
|
||||
parent: 130
|
||||
- uid: 110
|
||||
components:
|
||||
- type: Transform
|
||||
rot: 1.5707963267948966 rad
|
||||
pos: 0.5,0.5
|
||||
parent: 130
|
||||
- uid: 111
|
||||
components:
|
||||
- type: Transform
|
||||
rot: 1.5707963267948966 rad
|
||||
pos: 0.5,-0.5
|
||||
parent: 130
|
||||
- uid: 112
|
||||
components:
|
||||
- type: Transform
|
||||
rot: 1.5707963267948966 rad
|
||||
pos: 0.5,-1.5
|
||||
parent: 130
|
||||
...
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
|
@ -96,7 +96,6 @@
|
|||
- id: SheetPlasma1
|
||||
amount: !type:RangeNumberSelector
|
||||
range: 3, 5
|
||||
- id: ResearchDisk
|
||||
- id: DrinkGoldenCup
|
||||
- id: TreasureSampleTube
|
||||
- !type:NestedSelector
|
||||
|
|
@ -105,7 +104,6 @@
|
|||
range: 1, 2
|
||||
- !type:NestedSelector
|
||||
tableId: SalvageInstrumentTable
|
||||
- id: AncientBookDamagedCommon # DeltaV
|
||||
|
||||
- type: entityTable
|
||||
id: SalvageTreasureUncommon
|
||||
|
|
@ -131,7 +129,6 @@
|
|||
- id: WristwatchGold
|
||||
- !type:NestedSelector
|
||||
tableId: RingTableCommon
|
||||
- id: AncientBookDamagedUncommon # DeltaV
|
||||
|
||||
- type: entityTable
|
||||
id: SalvageTreasureRare
|
||||
|
|
@ -139,10 +136,10 @@
|
|||
children:
|
||||
- id: MaterialDiamond1
|
||||
- id: TreasureCPUSupercharged
|
||||
- id: TechnologyDiskRare
|
||||
weight: 0.5
|
||||
- id: ResearchDisk10000
|
||||
weight: 0.5
|
||||
# - id: TechnologyDiskRare DeltaV - research moved to seperate spawner
|
||||
# weight: 0.5
|
||||
# - id: ResearchDisk10000 DeltaV - research moved to seperate spawner
|
||||
# weight: 0.5
|
||||
- id: ArabianLamp
|
||||
- !type:NestedSelector
|
||||
tableId: TreasureCoinPileRare
|
||||
|
|
@ -165,7 +162,6 @@
|
|||
weight: 1
|
||||
- !type:NestedSelector
|
||||
tableId: RingTableRare
|
||||
- id: AncientBookDamagedRare # DeltaV
|
||||
|
||||
- type: entityTable
|
||||
id: SalvageTreasureLegendary
|
||||
|
|
@ -184,6 +180,38 @@
|
|||
rolls: !type:RangeNumberSelector
|
||||
range: 2, 3
|
||||
|
||||
#DeltaV - "Arcana", or research with a focus on ancient books. Start:
|
||||
|
||||
- type: entityTable
|
||||
id: SalvageArcanaCommon
|
||||
table: !type:GroupSelector
|
||||
children:
|
||||
- id: AncientBookDamagedCommon
|
||||
- id: ResearchDisk
|
||||
weight: 0.3
|
||||
|
||||
- type: entityTable
|
||||
id: SalvageArcanaUncommon
|
||||
table: !type:GroupSelector
|
||||
children:
|
||||
- id: AncientBookDamagedUncommon
|
||||
- id: ResearchDisk5000
|
||||
weight: 0.15
|
||||
- id: TechnologyDisk
|
||||
weight: 0.15
|
||||
|
||||
- type: entityTable
|
||||
id: SalvageArcanaRare
|
||||
table: !type:GroupSelector
|
||||
children:
|
||||
- id: AncientBookDamagedRare
|
||||
- id: ResearchDisk10000
|
||||
weight: 0.15
|
||||
- id: TechnologyDiskRare
|
||||
weight: 0.15
|
||||
|
||||
#DeltaV - "Arcana", or research with a focus on ancient books. End
|
||||
|
||||
# Equipment: Tools and things used by salvagers. Quote unquote "Gamer Loot"
|
||||
|
||||
- type: entityTable
|
||||
|
|
|
|||
|
|
@ -1,25 +1,66 @@
|
|||
|
||||
# DeltaV - Gigantic asteroid, typically 1 (rare) (supports largest wrecks) start
|
||||
- type: dungeonConfig
|
||||
id: GiantBlobAsteroid
|
||||
# Floor generation
|
||||
layers:
|
||||
- !type:NoiseDistanceDunGen
|
||||
size: 50, 50
|
||||
distanceConfig: !type:DunGenEuclideanSquaredDistance
|
||||
blendWeight: 0.80
|
||||
layers:
|
||||
- tile: FloorAsteroidSand
|
||||
threshold: 0.35
|
||||
noise:
|
||||
frequency: 0.025
|
||||
noiseType: OpenSimplex2
|
||||
fractalType: FBm
|
||||
octaves: 2
|
||||
lacunarity: 2
|
||||
# Generate biome
|
||||
- !type:BiomeDunGen
|
||||
biomeTemplate: Asteroid
|
||||
#DeltaV - 33% chance of generating wreck
|
||||
- !type:EntityTableDunGen
|
||||
minCount: 0
|
||||
maxCount: 1
|
||||
table:
|
||||
id: AsteroidWreckLargeMarker
|
||||
- !type:OreDunGen
|
||||
replacement: AsteroidRock
|
||||
entity: AsteroidRockGibtonite
|
||||
count: 14
|
||||
minGroupSize: 0
|
||||
maxGroupSize: 1
|
||||
#DeltaV end
|
||||
|
||||
# Large asteroids, typically 1
|
||||
- type: dungeonConfig
|
||||
id: BlobAsteroid
|
||||
# Floor generation
|
||||
layers:
|
||||
- !type:NoiseDunGen
|
||||
tileCap: 1000
|
||||
tileCap: 1100
|
||||
capStd: 32
|
||||
iterations: 3
|
||||
layers:
|
||||
- tile: FloorAsteroidSand
|
||||
threshold: 0.30
|
||||
noise:
|
||||
frequency: 0.020
|
||||
noiseType: OpenSimplex2
|
||||
fractalType: FBm
|
||||
octaves: 2
|
||||
lacunarity: 2
|
||||
|
||||
- tile: FloorAsteroidSand
|
||||
threshold: 0.3
|
||||
noise:
|
||||
frequency: 0.020
|
||||
noiseType: OpenSimplex2
|
||||
fractalType: FBm
|
||||
octaves: 2
|
||||
lacunarity: 2
|
||||
# Generate biome
|
||||
- !type:BiomeDunGen
|
||||
biomeTemplate: Asteroid
|
||||
#DeltaV - 33% chance of generating wreck
|
||||
- !type:EntityTableDunGen
|
||||
minCount: 0
|
||||
maxCount: 1
|
||||
table:
|
||||
id: AsteroidWreckMediumMarker
|
||||
- !type:OreDunGen
|
||||
replacement: AsteroidRock
|
||||
entity: AsteroidRockGibtonite
|
||||
|
|
@ -49,6 +90,12 @@
|
|||
# Generate biome
|
||||
- !type:BiomeDunGen
|
||||
biomeTemplate: Asteroid
|
||||
#DeltaV - 33% chance of generating wreck
|
||||
- !type:EntityTableDunGen
|
||||
minCount: 0
|
||||
maxCount: 1
|
||||
table:
|
||||
id: AsteroidWreckMediumMarker
|
||||
- !type:OreDunGen
|
||||
replacement: AsteroidRock
|
||||
entity: AsteroidRockGibtonite
|
||||
|
|
@ -78,6 +125,12 @@
|
|||
# Generate biome
|
||||
- !type:BiomeDunGen
|
||||
biomeTemplate: Asteroid
|
||||
#DeltaV - 33% chance of generating wreck
|
||||
- !type:EntityTableDunGen
|
||||
minCount: 0
|
||||
maxCount: 1
|
||||
table:
|
||||
id: AsteroidWreckSmallMarker
|
||||
- !type:OreDunGen
|
||||
replacement: AsteroidRock
|
||||
entity: AsteroidRockGibtonite
|
||||
|
|
@ -106,6 +159,12 @@
|
|||
# Generate biome
|
||||
- !type:BiomeDunGen
|
||||
biomeTemplate: Asteroid
|
||||
#DeltaV - 33% chance of generating wreck
|
||||
- !type:EntityTableDunGen
|
||||
minCount: 0
|
||||
maxCount: 1
|
||||
table:
|
||||
id: AsteroidWreckSmallMarker
|
||||
- !type:OreDunGen
|
||||
replacement: AsteroidRock
|
||||
entity: AsteroidRockGibtonite
|
||||
|
|
|
|||
|
|
@ -3,92 +3,92 @@
|
|||
weights:
|
||||
OreIron: 1.0
|
||||
OreQuartz: 1.0
|
||||
OreCoal: 0.58 # DeltaV: was 0.33, added 0.25 from salt
|
||||
#OreSalt: 0.25 # DeltaV: removed salt, added weight to coal
|
||||
OreCoal: 0.33
|
||||
OreSalt: 0.125 #DeltaV - was 0.25
|
||||
OreGold: 0.25
|
||||
OreSilver: 0.25
|
||||
OrePlasma: 0.20
|
||||
OreUranium: 0.20
|
||||
OreArtifactFragment: 0.10
|
||||
OreBananium: 0.10
|
||||
OreArtifactFragment: 0.05 #DeltaV - was 0.10
|
||||
OreBananium: 0.05 #DeltaV - was 0.10
|
||||
|
||||
- type: oreDunGen
|
||||
id: OreIron
|
||||
replacement: AsteroidAltRock #Delta V - Changed from AsteroidRock to AsteroidAltRock to work with our Mining Rock Spawner.
|
||||
entity: AsteroidRockTin
|
||||
count: 5
|
||||
replacement: AsteroidAltRock #DeltaV - Changed from AsteroidRock to AsteroidAltRock to work with our Mining Rock Spawner.
|
||||
entity: AsteroidAltRockTin #DeltaV - was AsteroidRockTin
|
||||
count: 13 #DeltaV - Was 5
|
||||
minGroupSize: 5
|
||||
maxGroupSize: 7
|
||||
|
||||
- type: oreDunGen
|
||||
id: OreQuartz
|
||||
replacement: AsteroidAltRock #Delta V - Changed from AsteroidRock to AsteroidAltRock to work with our Mining Rock Spawner.
|
||||
entity: AsteroidRockQuartz
|
||||
count: 5
|
||||
replacement: AsteroidAltRock #DeltaV - Changed from AsteroidRock to AsteroidAltRock to work with our Mining Rock Spawner.
|
||||
entity: AsteroidAltRockQuartz #DeltaV - was AsteroidRockQuartz
|
||||
count: 13 #DeltaV - Was 5
|
||||
minGroupSize: 5
|
||||
maxGroupSize: 7
|
||||
|
||||
- type: oreDunGen
|
||||
id: OreCoal
|
||||
replacement: AsteroidAltRock #Delta V - Changed from AsteroidRock to AsteroidAltRock to work with our Mining Rock Spawner.
|
||||
entity: AsteroidRockCoal
|
||||
count: 3
|
||||
replacement: AsteroidAltRock #DeltaV - Changed from AsteroidRock to AsteroidAltRock to work with our Mining Rock Spawner.
|
||||
entity: AsteroidAltRockCoal #DeltaV - was AsteroidRockCoal
|
||||
count: 9 #DeltaV - Was 3
|
||||
minGroupSize: 5
|
||||
maxGroupSize: 7
|
||||
|
||||
- type: oreDunGen
|
||||
id: OreSalt
|
||||
replacement: AsteroidAltRock #Delta V - Changed from AsteroidRock to AsteroidAltRock to work with our Mining Rock Spawner.
|
||||
entity: AsteroidRockSalt
|
||||
count: 3
|
||||
replacement: AsteroidAltRock #DeltaV - Changed from AsteroidRock to AsteroidAltRock to work with our Mining Rock Spawner.
|
||||
entity: AsteroidAltRockSalt #DeltaV - was AsteroidRockSalt
|
||||
count: 4 #DeltaV - Was 3
|
||||
minGroupSize: 5
|
||||
maxGroupSize: 7
|
||||
|
||||
- type: oreDunGen
|
||||
id: OreGold
|
||||
replacement: AsteroidAltRock #Delta V - Changed from AsteroidRock to AsteroidAltRock to work with our Mining Rock Spawner.
|
||||
entity: AsteroidRockGold
|
||||
count: 4
|
||||
replacement: AsteroidAltRock #DeltaV - Changed from AsteroidRock to AsteroidAltRock to work with our Mining Rock Spawner.
|
||||
entity: AsteroidAltRockGold #DeltaV - was AsteroidRockGold
|
||||
count: 10 #DeltaV - Was 4
|
||||
minGroupSize: 5
|
||||
maxGroupSize: 7
|
||||
|
||||
- type: oreDunGen
|
||||
id: OreSilver
|
||||
replacement: AsteroidAltRock #Delta V - Changed from AsteroidRock to AsteroidAltRock to work with our Mining Rock Spawner.
|
||||
entity: AsteroidRockSilver
|
||||
count: 4
|
||||
replacement: AsteroidAltRock #DeltaV - Changed from AsteroidRock to AsteroidAltRock to work with our Mining Rock Spawner.
|
||||
entity: AsteroidAltRockSilver #DeltaV - was AsteroidRockSilver
|
||||
count: 10 #DeltaV - Was 4
|
||||
minGroupSize: 5
|
||||
maxGroupSize: 7
|
||||
|
||||
- type: oreDunGen
|
||||
id: OrePlasma
|
||||
replacement: AsteroidAltRock #Delta V - Changed from AsteroidRock to AsteroidAltRock to work with our Mining Rock Spawner.
|
||||
entity: AsteroidRockPlasma
|
||||
count: 4
|
||||
replacement: AsteroidAltRock #DeltaV - Changed from AsteroidRock to AsteroidAltRock to work with our Mining Rock Spawner.
|
||||
entity: AsteroidAltRockPlasma #DeltaV - was AsteroidRockPlasma
|
||||
count: 10 #DeltaV - Was 4
|
||||
minGroupSize: 5
|
||||
maxGroupSize: 7
|
||||
|
||||
- type: oreDunGen
|
||||
id: OreUranium
|
||||
replacement: AsteroidAltRock #Delta V - Changed from AsteroidRock to AsteroidAltRock to work with our Mining Rock Spawner.
|
||||
entity: AsteroidRockUranium
|
||||
count: 4
|
||||
replacement: AsteroidAltRock #DeltaV - Changed from AsteroidRock to AsteroidAltRock to work with our Mining Rock Spawner.
|
||||
entity: AsteroidAltRockUranium #DeltaV - was AsteroidRockUranium
|
||||
count: 10 #DeltaV - Was 4
|
||||
minGroupSize: 5
|
||||
maxGroupSize: 7
|
||||
|
||||
- type: oreDunGen
|
||||
id: OreBananium
|
||||
replacement: AsteroidAltRock #Delta V - Changed from AsteroidRock to AsteroidAltRock to work with our Mining Rock Spawner.
|
||||
entity: AsteroidRockBananium
|
||||
count: 6
|
||||
replacement: AsteroidAltRock #DeltaV - Changed from AsteroidRock to AsteroidAltRock to work with our Mining Rock Spawner.
|
||||
entity: AsteroidAltRockBananium #DeltaV - was AsteroidRockBananium
|
||||
count: 7 #DeltaV - Was 6
|
||||
minGroupSize: 3
|
||||
maxGroupSize: 6
|
||||
|
||||
- type: oreDunGen
|
||||
id: OreArtifactFragment
|
||||
replacement: AsteroidAltRock #Delta V - Changed from AsteroidRock to AsteroidAltRock to work with our Mining Rock Spawner.
|
||||
entity: AsteroidRockArtifactFragment
|
||||
count: 5
|
||||
replacement: AsteroidAltRock #DeltaV - Changed from AsteroidRock to AsteroidAltRock to work with our Mining Rock Spawner.
|
||||
entity: AsteroidRockArtifactFragment #DeltaV - was AsteroidRockArtifactFragment
|
||||
count: 7 #DeltaV - Was 6
|
||||
minGroupSize: 1
|
||||
maxGroupSize: 2
|
||||
|
||||
|
|
|
|||
|
|
@ -2,42 +2,48 @@
|
|||
id: ChunkDebris
|
||||
# Floor generation
|
||||
layers:
|
||||
- !type:NoiseDunGen
|
||||
tileCap: 500
|
||||
capStd: 32
|
||||
iterations: 7
|
||||
layers:
|
||||
- tile: FloorSteel
|
||||
threshold: 0.50
|
||||
noise:
|
||||
frequency: 0.05
|
||||
noiseType: OpenSimplex2
|
||||
fractalType: FBm
|
||||
octaves: 3
|
||||
lacunarity: 3
|
||||
gain: 0.5
|
||||
- tile: Plating
|
||||
threshold: 0.35
|
||||
noise:
|
||||
frequency: 0.05
|
||||
noiseType: OpenSimplex2
|
||||
fractalType: FBm
|
||||
octaves: 3
|
||||
lacunarity: 3
|
||||
gain: 0.3
|
||||
- tile: Lattice
|
||||
threshold: 0.25
|
||||
noise:
|
||||
frequency: 0.05
|
||||
noiseType: OpenSimplex2
|
||||
fractalType: FBm
|
||||
octaves: 3
|
||||
lacunarity: 3
|
||||
gain: 0.5
|
||||
|
||||
# Generate biome
|
||||
- !type:BiomeDunGen
|
||||
biomeTemplate: SpaceDebris
|
||||
- !type:NoiseDunGen
|
||||
tileCap: 500
|
||||
capStd: 32
|
||||
iterations: 7
|
||||
layers:
|
||||
- tile: FloorSteel
|
||||
threshold: 0.50
|
||||
noise:
|
||||
frequency: 0.05
|
||||
noiseType: OpenSimplex2
|
||||
fractalType: FBm
|
||||
octaves: 3
|
||||
lacunarity: 3
|
||||
gain: 0.5
|
||||
- tile: Plating
|
||||
threshold: 0.35
|
||||
noise:
|
||||
frequency: 0.05
|
||||
noiseType: OpenSimplex2
|
||||
fractalType: FBm
|
||||
octaves: 3
|
||||
lacunarity: 3
|
||||
gain: 0.3
|
||||
- tile: Lattice
|
||||
threshold: 0.25
|
||||
noise:
|
||||
frequency: 0.05
|
||||
noiseType: OpenSimplex2
|
||||
fractalType: FBm
|
||||
octaves: 3
|
||||
lacunarity: 3
|
||||
gain: 0.5
|
||||
#DeltaV start: we spawn wrecks into debris with a 1 in 3 chance
|
||||
- !type:BiomeDunGen
|
||||
biomeTemplate: SpaceDebris
|
||||
#Generate Dungeon
|
||||
- !type:EntityTableDunGen
|
||||
minCount: 0
|
||||
maxCount: 1
|
||||
table:
|
||||
id: DebrisWreckMarker
|
||||
#DeltaV end
|
||||
|
||||
- type: dungeonConfig
|
||||
id: ChunkDebrisSmall
|
||||
|
|
@ -75,7 +81,8 @@
|
|||
octaves: 3
|
||||
lacunarity: 3
|
||||
gain: 0.5
|
||||
|
||||
# Generate biome
|
||||
- !type:BiomeDunGen
|
||||
biomeTemplate: SpaceDebris
|
||||
- !type:BiomeDunGen
|
||||
biomeTemplate: SpaceDebrisLootRegular
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
# Asteroid
|
||||
# Debris structures
|
||||
- type: biomeTemplate
|
||||
id: SpaceDebris
|
||||
layers:
|
||||
|
|
@ -75,7 +75,23 @@
|
|||
allowedTiles:
|
||||
- FloorSteel
|
||||
- Plating
|
||||
threshold: 0.2
|
||||
threshold: 0.925
|
||||
noise:
|
||||
seed: 1
|
||||
frequency: 1
|
||||
entities:
|
||||
- SalvageSpawnerMobMagnet75
|
||||
|
||||
|
||||
#Debris Loot Regular
|
||||
- type: biomeTemplate
|
||||
id: SpaceDebrisLootRegular
|
||||
layers:
|
||||
- !type:BiomeEntityLayer
|
||||
allowedTiles:
|
||||
- FloorSteel
|
||||
- Plating
|
||||
threshold: 0.4
|
||||
noise:
|
||||
seed: 1
|
||||
frequency: 1
|
||||
|
|
@ -89,11 +105,139 @@
|
|||
allowedTiles:
|
||||
- FloorSteel
|
||||
- Plating
|
||||
threshold: 0.7
|
||||
threshold: 0.75
|
||||
noise:
|
||||
seed: 1
|
||||
frequency: 1
|
||||
entities:
|
||||
- SalvageSpawnerArcanaCommon
|
||||
- SalvageSpawnerArcanaUncommon
|
||||
- SalvageSpawnerArcanaRare
|
||||
- !type:BiomeEntityLayer
|
||||
allowedTiles:
|
||||
- FloorSteel
|
||||
- Plating
|
||||
threshold: 0.85
|
||||
noise:
|
||||
seed: 1
|
||||
frequency: 1
|
||||
entities:
|
||||
- SalvageSpawnerTreasure
|
||||
- SalvageSpawnerTreasure
|
||||
- SalvageSpawnerTreasureValuable
|
||||
|
||||
#Debris Loot Scrap Rich
|
||||
- type: biomeTemplate
|
||||
id: SpaceDebrisLootScrap
|
||||
layers:
|
||||
- !type:BiomeEntityLayer
|
||||
allowedTiles:
|
||||
- FloorSteel
|
||||
- Plating
|
||||
threshold: 0.3
|
||||
noise:
|
||||
seed: 1
|
||||
frequency: 1
|
||||
entities:
|
||||
- SalvageSpawnerScrapValuable
|
||||
- SalvageSpawnerScrapCommon
|
||||
- SalvageSpawnerScrapCommon75
|
||||
- !type:BiomeEntityLayer
|
||||
allowedTiles:
|
||||
- FloorSteel
|
||||
- Plating
|
||||
threshold: 0.8
|
||||
noise:
|
||||
seed: 2
|
||||
frequency: 1
|
||||
entities:
|
||||
- SalvageSpawnerArcanaCommon
|
||||
- SalvageSpawnerArcanaUncommon
|
||||
- SalvageSpawnerArcanaRare
|
||||
- !type:BiomeEntityLayer
|
||||
allowedTiles:
|
||||
- FloorSteel
|
||||
- Plating
|
||||
threshold: 0.9
|
||||
noise:
|
||||
seed: 3
|
||||
frequency: 1
|
||||
entities:
|
||||
- SalvageSpawnerTreasure
|
||||
- SalvageSpawnerTreasure
|
||||
- SalvageSpawnerTreasureValuable
|
||||
|
||||
#Debris Loot Valuables
|
||||
- type: biomeTemplate
|
||||
id: SpaceDebrisLootValuables
|
||||
layers:
|
||||
- !type:BiomeEntityLayer
|
||||
allowedTiles:
|
||||
- FloorSteel
|
||||
- Plating
|
||||
threshold: 0.5
|
||||
noise:
|
||||
seed: 1
|
||||
frequency: 1
|
||||
entities:
|
||||
- SalvageSpawnerScrapValuable
|
||||
- SalvageSpawnerScrapCommon
|
||||
- SalvageSpawnerScrapCommon
|
||||
- SalvageSpawnerScrapCommon
|
||||
- SalvageSpawnerScrapCommon75
|
||||
- !type:BiomeEntityLayer
|
||||
allowedTiles:
|
||||
- FloorSteel
|
||||
- Plating
|
||||
threshold: 0.75
|
||||
noise:
|
||||
seed: 2
|
||||
frequency: 1
|
||||
entities:
|
||||
- SalvageSpawnerArcanaCommon
|
||||
- SalvageSpawnerArcanaUncommon
|
||||
- SalvageSpawnerArcanaRare
|
||||
- !type:BiomeEntityLayer
|
||||
allowedTiles:
|
||||
- FloorSteel
|
||||
- Plating
|
||||
threshold: 0.8
|
||||
noise:
|
||||
seed: 3
|
||||
frequency: 1
|
||||
entities:
|
||||
- SalvageSpawnerTreasure
|
||||
- SalvageSpawnerTreasure
|
||||
- SalvageSpawnerTreasureValuable
|
||||
|
||||
|
||||
#Debris Loot Arcana
|
||||
- type: biomeTemplate
|
||||
id: SpaceDebrisLootArcana
|
||||
layers:
|
||||
- !type:BiomeEntityLayer
|
||||
allowedTiles:
|
||||
- FloorSteel
|
||||
- Plating
|
||||
threshold: 0.5
|
||||
noise:
|
||||
seed: 1
|
||||
frequency: 1
|
||||
entities:
|
||||
- SalvageSpawnerScrapValuable
|
||||
- SalvageSpawnerScrapCommon
|
||||
- SalvageSpawnerScrapCommon
|
||||
- SalvageSpawnerScrapCommon
|
||||
- SalvageSpawnerScrapCommon75
|
||||
- !type:BiomeEntityLayer
|
||||
allowedTiles:
|
||||
- FloorSteel
|
||||
- Plating
|
||||
threshold: 0.75
|
||||
noise:
|
||||
seed: 3
|
||||
frequency: 1
|
||||
entities:
|
||||
- SalvageSpawnerTreasure
|
||||
- SalvageSpawnerTreasure
|
||||
- SalvageSpawnerTreasureValuable
|
||||
|
|
@ -101,9 +245,11 @@
|
|||
allowedTiles:
|
||||
- FloorSteel
|
||||
- Plating
|
||||
threshold: 0.925
|
||||
threshold: 0.8
|
||||
noise:
|
||||
seed: 1
|
||||
seed: 2
|
||||
frequency: 1
|
||||
entities:
|
||||
- SalvageSpawnerMobMagnet75
|
||||
- SalvageSpawnerArcanaCommon
|
||||
- SalvageSpawnerArcanaUncommon
|
||||
- SalvageSpawnerArcanaRare
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
WallRockChromite: WallRockChromiteTin
|
||||
WallRockSand: WallRockSandTin
|
||||
WallRockSnow: WallRockSnowTin
|
||||
maxCount: 30
|
||||
maxCount: 40 #DeltaV - was 30
|
||||
minGroupSize: 10
|
||||
maxGroupSize: 15
|
||||
radius: 4
|
||||
|
|
@ -21,7 +21,7 @@
|
|||
WallRockBasalt: WallRockBasaltQuartz
|
||||
WallRockChromite: WallRockChromiteQuartz
|
||||
WallRockSnow: WallRockSnowQuartz
|
||||
maxCount: 30
|
||||
maxCount: 40 #DeltaV - was 30
|
||||
minGroupSize: 10
|
||||
maxGroupSize: 15
|
||||
radius: 4
|
||||
|
|
@ -35,7 +35,7 @@
|
|||
WallRockChromite: WallRockChromiteCoal
|
||||
WallRockSand: WallRockSandCoal
|
||||
WallRockSnow: WallRockSnowCoal
|
||||
maxCount: 30
|
||||
maxCount: 40 #DeltaV - was 30
|
||||
minGroupSize: 8
|
||||
maxGroupSize: 12
|
||||
radius: 4
|
||||
|
|
@ -49,7 +49,7 @@
|
|||
WallRockChromite: WallRockChromiteSalt
|
||||
WallRockSand: WallRockSandSalt
|
||||
WallRockSnow: WallRockSnowSalt
|
||||
maxCount: 30
|
||||
maxCount: 40 #DeltaV - was 30
|
||||
minGroupSize: 8
|
||||
maxGroupSize: 12
|
||||
radius: 4
|
||||
|
|
@ -65,7 +65,7 @@
|
|||
WallRockChromite: WallRockChromiteGold
|
||||
WallRockSand: WallRockSandGold
|
||||
WallRockSnow: WallRockSnowGold
|
||||
maxCount: 20
|
||||
maxCount: 25 #DeltaV - was 20
|
||||
minGroupSize: 5
|
||||
maxGroupSize: 10
|
||||
radius: 4
|
||||
|
|
@ -80,7 +80,7 @@
|
|||
WallRockChromite: WallRockChromiteSilver
|
||||
WallRockSand: WallRockSandSilver
|
||||
WallRockSnow: WallRockSnowSilver
|
||||
maxCount: 20
|
||||
maxCount: 25 #DeltaV - was 20
|
||||
minGroupSize: 5
|
||||
maxGroupSize: 10
|
||||
radius: 4
|
||||
|
|
@ -96,7 +96,7 @@
|
|||
WallRockChromite: WallRockChromitePlasma
|
||||
WallRockSand: WallRockSandPlasma
|
||||
WallRockSnow: WallRockSnowPlasma
|
||||
maxCount: 12
|
||||
maxCount: 17 #DeltaV - was 12
|
||||
minGroupSize: 4
|
||||
maxGroupSize: 8
|
||||
radius: 4
|
||||
|
|
@ -111,7 +111,7 @@
|
|||
WallRockChromite: WallRockChromiteUranium
|
||||
WallRockSand: WallRockSandUranium
|
||||
WallRockSnow: WallRockSnowUranium
|
||||
maxCount: 15
|
||||
maxCount: 20 #DeltaV - was 15
|
||||
minGroupSize: 4
|
||||
maxGroupSize: 8
|
||||
radius: 4
|
||||
|
|
@ -125,7 +125,7 @@
|
|||
WallRockChromite: WallRockChromiteDiamond
|
||||
WallRockSand: WallRockSandDiamond
|
||||
WallRockSnow: WallRockSnowDiamond
|
||||
maxCount: 6
|
||||
maxCount: 6 #DeltaV - was 30
|
||||
minGroupSize: 1
|
||||
maxGroupSize: 2
|
||||
radius: 4
|
||||
|
|
@ -140,7 +140,7 @@
|
|||
WallRockChromite: WallRockChromiteArtifactFragment
|
||||
WallRockSand: WallRockSandArtifactFragment
|
||||
WallRockSnow: WallRockSnowArtifactFragment
|
||||
maxCount: 6
|
||||
maxCount: 6 #DeltaV - was 30
|
||||
minGroupSize: 1
|
||||
maxGroupSize: 2
|
||||
radius: 4
|
||||
|
|
|
|||
|
|
@ -32,63 +32,63 @@
|
|||
- !type:OreDunGen
|
||||
replacement: IronRock
|
||||
entity: IronRockIron
|
||||
count: 50
|
||||
minGroupSize: 10
|
||||
maxGroupSize: 15
|
||||
count: 35 #DeltaV - Was 50
|
||||
minGroupSize: 6 #DeltaV - Was 10
|
||||
maxGroupSize: 11 #DeltaV - Was 15
|
||||
- !type:OreDunGen
|
||||
replacement: IronRock
|
||||
entity: IronRockCoal
|
||||
count: 50
|
||||
minGroupSize: 8
|
||||
maxGroupSize: 12
|
||||
count: 30 #DeltaV - Was 50
|
||||
minGroupSize: 6 #DeltaV - Was 8
|
||||
maxGroupSize: 10 #DeltaV - Was 12
|
||||
- !type:OreDunGen
|
||||
replacement: IronRock
|
||||
entity: IronRockQuartz
|
||||
count: 50
|
||||
minGroupSize: 10
|
||||
maxGroupSize: 15
|
||||
count: 35 #DeltaV - Was 50
|
||||
minGroupSize: 6 #DeltaV - Was 10
|
||||
maxGroupSize: 11 #DeltaV - Was 15
|
||||
- !type:OreDunGen
|
||||
replacement: IronRock
|
||||
entity: IronRockSalt
|
||||
count: 25
|
||||
minGroupSize: 8
|
||||
maxGroupSize: 12
|
||||
count: 25 #DeltaV - Was 50
|
||||
minGroupSize: 6 #DeltaV - Was 8
|
||||
maxGroupSize: 8 #DeltaV - Was 12
|
||||
- !type:OreDunGen
|
||||
replacement: IronRock
|
||||
entity: IronRockGold
|
||||
count: 40
|
||||
minGroupSize: 8
|
||||
maxGroupSize: 12
|
||||
count: 32 #DeltaV - Was 40
|
||||
minGroupSize: 5 #DeltaV - Was 8
|
||||
maxGroupSize: 9 #DeltaV - Was 12
|
||||
- !type:OreDunGen
|
||||
replacement: IronRock
|
||||
entity: IronRockSilver
|
||||
count: 40
|
||||
minGroupSize: 8
|
||||
maxGroupSize: 12
|
||||
count: 32 #DeltaV - Was 40
|
||||
minGroupSize: 5 #DeltaV - Was 8
|
||||
maxGroupSize: 9 #DeltaV - Was 12
|
||||
- !type:OreDunGen
|
||||
replacement: IronRock
|
||||
entity: IronRockPlasma
|
||||
count: 35
|
||||
count: 27 #DeltaV - Was 35
|
||||
minGroupSize: 4
|
||||
maxGroupSize: 8
|
||||
- !type:OreDunGen
|
||||
replacement: IronRock
|
||||
entity: IronRockUranium
|
||||
count: 35
|
||||
count: 27 #DeltaV - Was 35
|
||||
minGroupSize: 4
|
||||
maxGroupSize: 8
|
||||
- !type:OreDunGen
|
||||
replacement: IronRock
|
||||
entity: IronRockArtifactFragment
|
||||
count: 25
|
||||
count: 15 #DeltaV - Was 25
|
||||
minGroupSize: 1
|
||||
maxGroupSize: 3
|
||||
- !type:OreDunGen
|
||||
replacement: IronRock
|
||||
entity: IronRockDiamond
|
||||
count: 15
|
||||
minGroupSize: 1
|
||||
maxGroupSize: 2
|
||||
count: 16
|
||||
minGroupSize: 2 #DeltaV - Was 1
|
||||
maxGroupSize: 3 #DeltaV - Was 2
|
||||
- !type:OreDunGen # DeltaV
|
||||
replacement: IronRock
|
||||
entity: IronRockBluespace
|
||||
|
|
|
|||
|
|
@ -0,0 +1,48 @@
|
|||
|
||||
- type: entity
|
||||
parent: MarkerBase
|
||||
id: SalvageSpawnerArcanaCommon
|
||||
name: Salvage Arcana Spawner
|
||||
suffix: Common, 40%
|
||||
components:
|
||||
- type: Sprite
|
||||
layers:
|
||||
- state: pink
|
||||
- sprite: _DV/Objects/Misc/books.rsi
|
||||
state: ancientbookdamaged2
|
||||
- type: EntityTableSpawner
|
||||
table: !type:NestedSelector
|
||||
tableId: SalvageArcanaCommon
|
||||
prob: 0.4
|
||||
|
||||
- type: entity
|
||||
parent: MarkerBase
|
||||
id: SalvageSpawnerArcanaUncommon
|
||||
name: Salvage Arcana Spawner
|
||||
suffix: Uncommon, 20%
|
||||
components:
|
||||
- type: Sprite
|
||||
layers:
|
||||
- state: pink
|
||||
- sprite: _DV/Objects/Misc/books.rsi
|
||||
state: ancientbookdamaged2
|
||||
- type: EntityTableSpawner
|
||||
table: !type:NestedSelector
|
||||
tableId: SalvageArcanaUncommon
|
||||
prob: 0.2
|
||||
|
||||
- type: entity
|
||||
parent: MarkerBase
|
||||
id: SalvageSpawnerArcanaRare
|
||||
name: Salvage Arcana Spawner
|
||||
suffix: Rare, 10%
|
||||
components:
|
||||
- type: Sprite
|
||||
layers:
|
||||
- state: pink
|
||||
- sprite: _DV/Objects/Misc/books.rsi
|
||||
state: ancientbookdamaged2
|
||||
- type: EntityTableSpawner
|
||||
table: !type:NestedSelector
|
||||
tableId: SalvageArcanaRare
|
||||
prob: 0.1
|
||||
|
|
@ -43,13 +43,18 @@
|
|||
- FullTileMask
|
||||
layer:
|
||||
- WallLayer
|
||||
|
||||
- type: entity
|
||||
id: BaseAltRockSmoothed
|
||||
parent: BaseAltRock
|
||||
components:
|
||||
- type: IconSmooth
|
||||
key: walls
|
||||
base: rock_
|
||||
|
||||
- type: entity
|
||||
id: AsteroidAltRock
|
||||
parent: BaseAltRock
|
||||
parent: BaseAltRockSmoothed
|
||||
suffix: Low Yield, Standard Value
|
||||
components:
|
||||
- type: OreVein
|
||||
|
|
@ -58,25 +63,185 @@
|
|||
|
||||
- type: entity
|
||||
id: AsteroidAltRockMining
|
||||
parent: AsteroidAltRock
|
||||
parent: BaseAltRockSmoothed
|
||||
suffix: High Yield, Standard Value
|
||||
components:
|
||||
- type: OreVein
|
||||
oreChance: 0.33
|
||||
oreRarityPrototypeId: RandomOreDistributionStandard
|
||||
|
||||
- type: entity
|
||||
id: AsteroidAltRockTin
|
||||
parent: BaseAltRock
|
||||
description: An ore vein rich with iron.
|
||||
suffix: Iron
|
||||
components:
|
||||
- type: OreVein
|
||||
oreChance: 1.0
|
||||
currentOre: OreSteel
|
||||
- type: Sprite
|
||||
layers:
|
||||
- state: full
|
||||
- sprite: Structures/Walls/rock.rsi
|
||||
state: rock_tin
|
||||
map: [ "enum.MiningScannerVisualLayers.Overlay" ]
|
||||
|
||||
- type: entity
|
||||
id: AsteroidAltRockQuartz
|
||||
parent: BaseAltRock
|
||||
description: An ore vein rich with quartz.
|
||||
suffix: Quartz
|
||||
components:
|
||||
- type: OreVein
|
||||
oreChance: 1.0
|
||||
currentOre: OreSpaceQuartz
|
||||
- type: Sprite
|
||||
layers:
|
||||
- state: full
|
||||
- sprite: Structures/Walls/rock.rsi
|
||||
state: rock_quartz
|
||||
map: [ "enum.MiningScannerVisualLayers.Overlay" ]
|
||||
|
||||
- type: entity
|
||||
id: AsteroidAltRockCoal
|
||||
parent: BaseAltRock
|
||||
description: An ore vein rich with coal.
|
||||
suffix: Coal
|
||||
components:
|
||||
- type: OreVein
|
||||
oreChance: 1.0
|
||||
currentOre: OreCoal
|
||||
- type: Sprite
|
||||
layers:
|
||||
- state: full
|
||||
- sprite: Structures/Walls/rock.rsi
|
||||
state: rock_coal
|
||||
map: [ "enum.MiningScannerVisualLayers.Overlay" ]
|
||||
|
||||
- type: entity
|
||||
id: AsteroidAltRockSalt
|
||||
parent: BaseAltRock
|
||||
description: An ore vein rich with salt.
|
||||
suffix: Salt
|
||||
components:
|
||||
- type: OreVein
|
||||
oreChance: 1.0
|
||||
currentOre: OreSalt
|
||||
- type: Sprite
|
||||
layers:
|
||||
- state: full
|
||||
- sprite: Structures/Walls/rock.rsi
|
||||
state: rock_salt
|
||||
map: [ "enum.MiningScannerVisualLayers.Overlay" ]
|
||||
|
||||
- type: entity
|
||||
id: AsteroidAltRockGold
|
||||
parent: BaseAltRock
|
||||
description: An ore vein rich with gold.
|
||||
suffix: Gold
|
||||
components:
|
||||
- type: OreVein
|
||||
oreChance: 1.0
|
||||
currentOre: OreGold
|
||||
- type: Sprite
|
||||
layers:
|
||||
- state: full
|
||||
- sprite: Structures/Walls/rock.rsi
|
||||
state: rock_gold
|
||||
map: [ "enum.MiningScannerVisualLayers.Overlay" ]
|
||||
|
||||
- type: entity
|
||||
id: AsteroidAltRockSilver
|
||||
parent: BaseAltRock
|
||||
description: An ore vein rich with silver.
|
||||
suffix: Silver
|
||||
components:
|
||||
- type: OreVein
|
||||
oreChance: 1.0
|
||||
currentOre: OreSilver
|
||||
- type: Sprite
|
||||
layers:
|
||||
- state: full
|
||||
- sprite: Structures/Walls/rock.rsi
|
||||
state: rock_silver
|
||||
map: [ "enum.MiningScannerVisualLayers.Overlay" ]
|
||||
|
||||
- type: entity
|
||||
id: AsteroidAltRockPlasma
|
||||
parent: BaseAltRock
|
||||
description: An ore vein rich with plasma.
|
||||
suffix: Plasma
|
||||
components:
|
||||
- type: OreVein
|
||||
oreChance: 1.0
|
||||
currentOre: OrePlasma
|
||||
- type: Sprite
|
||||
layers:
|
||||
- state: full
|
||||
- sprite: Structures/Walls/rock.rsi
|
||||
state: rock_phoron
|
||||
map: [ "enum.MiningScannerVisualLayers.Overlay" ]
|
||||
|
||||
- type: entity
|
||||
id: AsteroidAltRockUranium
|
||||
parent: BaseAltRock
|
||||
description: An ore vein rich with uranium.
|
||||
suffix: Uranium
|
||||
components:
|
||||
- type: OreVein
|
||||
oreChance: 1.0
|
||||
currentOre: OreUranium
|
||||
- type: Sprite
|
||||
layers:
|
||||
- state: full
|
||||
- sprite: Structures/Walls/rock.rsi
|
||||
state: rock_uranium
|
||||
map: [ "enum.MiningScannerVisualLayers.Overlay" ]
|
||||
|
||||
- type: entity
|
||||
id: AsteroidAltRockBananium
|
||||
parent: BaseAltRock
|
||||
description: An ore vein rich with bananium.
|
||||
suffix: Bananium
|
||||
components:
|
||||
- type: OreVein
|
||||
oreChance: 1.0
|
||||
currentOre: OreBananium
|
||||
- type: Sprite
|
||||
layers:
|
||||
- state: full
|
||||
- sprite: Structures/Walls/rock.rsi
|
||||
state: rock_bananium
|
||||
map: [ "enum.MiningScannerVisualLayers.Overlay" ]
|
||||
|
||||
- type: entity
|
||||
id: AsteroidAltRockArtifactFragment
|
||||
parent: BaseAltRock
|
||||
description: A rock wall. What's that sticking out of it?
|
||||
suffix: Artifact Fragment
|
||||
components:
|
||||
- type: OreVein
|
||||
oreChance: 1.0
|
||||
currentOre: OreArtifactFragment
|
||||
- type: Sprite
|
||||
layers:
|
||||
- state: full
|
||||
- sprite: Structures/Walls/rock.rsi
|
||||
state: rock_artifact_fragment
|
||||
map: [ "enum.MiningScannerVisualLayers.Overlay" ]
|
||||
|
||||
- type: entity
|
||||
id: AsteroidRockOreCrab
|
||||
parent: AsteroidAltRock
|
||||
suffix: Ore Crab
|
||||
components:
|
||||
- type: OreVein
|
||||
oreChance: 0.33
|
||||
oreChance: 0.4
|
||||
oreRarityPrototypeId: OreCrab
|
||||
|
||||
- type: entity
|
||||
id: MountainRock
|
||||
parent: BaseAltRock
|
||||
parent: BaseAltRockSmoothed
|
||||
name: mountain rock
|
||||
description: A craggy mountain wall.
|
||||
suffix: Un-mineable
|
||||
|
|
|
|||
|
|
@ -0,0 +1,327 @@
|
|||
- type: entity
|
||||
id: AsteroidWreckLargeMarker
|
||||
parent: BaseRoomMarker
|
||||
name: Asteroid Wreck Marker (large)
|
||||
components:
|
||||
- type: RoomFill
|
||||
minSize: 20,20
|
||||
maxSize: 50,50
|
||||
roomWhitelist:
|
||||
tags:
|
||||
- AsteroidWreck
|
||||
|
||||
- type: entity
|
||||
id: AsteroidWreckMediumMarker
|
||||
parent: BaseRoomMarker
|
||||
name: Asteroid Wreck Marker (medium)
|
||||
components:
|
||||
- type: RoomFill
|
||||
minSize: 14,14
|
||||
maxSize: 25,25
|
||||
roomWhitelist:
|
||||
tags:
|
||||
- AsteroidWreck
|
||||
|
||||
- type: entity
|
||||
id: AsteroidWreckSmallMarker
|
||||
parent: BaseRoomMarker
|
||||
name: Asteroid Wreck Marker (small)
|
||||
components:
|
||||
- type: RoomFill
|
||||
minSize: 4,4
|
||||
maxSize: 18,18
|
||||
roomWhitelist:
|
||||
tags:
|
||||
- AsteroidWreck
|
||||
|
||||
|
||||
#List of MAPS that can be added to magnet wreck pulls.
|
||||
|
||||
#It is IMPORTANT that we use a mask tile (ignoreTile) to denote areas of space/incorporation into surrounding Debris.
|
||||
#This is because areas of space cause DunGen to produce exciting and often regrettable outcomes.
|
||||
|
||||
- type: dungeonRoom
|
||||
id: AsteroidSyndiHideout_AsteroidWreck
|
||||
size: 24,28
|
||||
atlas: /Maps/_DV/Salvage/AsteroidWrecks/DV-syndi-hideout-asteroidwreck.yml
|
||||
offset: -12,-9
|
||||
ignoreTile: FloorShuttleOrange
|
||||
deleteAfterUse: true
|
||||
tags:
|
||||
- AsteroidWreck
|
||||
|
||||
- type: dungeonRoom
|
||||
id: AsteroidChemlab_AsteroidWreck
|
||||
size: 24,28
|
||||
atlas: /Maps/_DV/Salvage/AsteroidWrecks/DV-asteroid-mining-chemlab-asteroidwreck.yml
|
||||
offset: -9,-9
|
||||
ignoreTile: FloorShuttleOrange
|
||||
deleteAfterUse: true
|
||||
tags:
|
||||
- AsteroidWreck
|
||||
|
||||
- type: dungeonRoom
|
||||
id: AsteroidTickNest_AsteroidWreck
|
||||
size: 12,12
|
||||
atlas: /Maps/_DV/Salvage/AsteroidWrecks/DV-tick-nest-asteroidwreck.yml
|
||||
offset: -8,-7
|
||||
ignoreTile: FloorShuttleOrange
|
||||
deleteAfterUse: true
|
||||
tags:
|
||||
- AsteroidWreck
|
||||
|
||||
- type: dungeonRoom
|
||||
id: AsteroidMiningLarge1_AsteroidWreck
|
||||
size: 27,24
|
||||
atlas: /Maps/_DV/Salvage/AsteroidWrecks/DV-large-asteroid-mining-01-asteroidwreck.yml
|
||||
offset: -12,-20
|
||||
ignoreTile: FloorShuttleOrange
|
||||
deleteAfterUse: true
|
||||
tags:
|
||||
- AsteroidWreck
|
||||
|
||||
- type: dungeonRoom
|
||||
id: AsteroidMiningMed1_AsteroidWreck
|
||||
size: 19,18
|
||||
atlas: /Maps/_DV/Salvage/AsteroidWrecks/DV-med-asteroid-mining-01-asteroidwreck.yml
|
||||
offset: -9,-2
|
||||
ignoreTile: FloorShuttleOrange
|
||||
deleteAfterUse: true
|
||||
tags:
|
||||
- AsteroidWreck
|
||||
|
||||
- type: dungeonRoom
|
||||
id: AsteroidCrystalCave_AsteroidWreck
|
||||
size: 13,14
|
||||
atlas: /Maps/_DV/Salvage/AsteroidWrecks/DV-crystal-cave-asteroidwreck.yml
|
||||
offset: -8,-8
|
||||
ignoreTile: FloorShuttleOrange
|
||||
deleteAfterUse: true
|
||||
tags:
|
||||
- AsteroidWreck
|
||||
|
||||
- type: dungeonRoom
|
||||
id: AsteroidBoneCave_AsteroidWreck
|
||||
size: 12,12
|
||||
atlas: /Maps/_DV/Salvage/AsteroidWrecks/DV-bone-cave-asteroidwreck.yml
|
||||
offset: -8,-7
|
||||
ignoreTile: FloorShuttleOrange
|
||||
deleteAfterUse: true
|
||||
tags:
|
||||
- AsteroidWreck
|
||||
|
||||
- type: dungeonRoom
|
||||
id: LargeAsteroid_1_AsteroidWreck
|
||||
size: 23,23
|
||||
atlas: /Maps/_DV/Salvage/AsteroidWrecks/DV-asteroid-large-01-asteroidwreck.yml
|
||||
offset: -12,-13
|
||||
ignoreTile: FloorShuttleOrange
|
||||
deleteAfterUse: true
|
||||
tags:
|
||||
- AsteroidWreck
|
||||
|
||||
- type: dungeonRoom
|
||||
id: LargeAsteroid_2_AsteroidWreck
|
||||
size: 23,23
|
||||
atlas: /Maps/_DV/Salvage/AsteroidWrecks/DV-asteroid-large-02-asteroidwreck.yml
|
||||
offset: -12,-13
|
||||
ignoreTile: FloorShuttleOrange
|
||||
deleteAfterUse: true
|
||||
tags:
|
||||
- AsteroidWreck
|
||||
|
||||
- type: dungeonRoom
|
||||
id: LargeAsteroid_3_AsteroidWreck
|
||||
size: 29,27
|
||||
atlas: /Maps/_DV/Salvage/AsteroidWrecks/DV-asteroid-large-03-asteroidwreck.yml
|
||||
offset: -15,-15
|
||||
ignoreTile: FloorShuttleOrange
|
||||
deleteAfterUse: true
|
||||
tags:
|
||||
- AsteroidWreck
|
||||
|
||||
- type: dungeonRoom
|
||||
id: DVMediumLibraryWreck_AsteroidWreck
|
||||
size: 15,18
|
||||
atlas: /Maps/_DV/Salvage/AsteroidWrecks/DV-med-library-asteroidwreck.yml
|
||||
offset: -9,-10
|
||||
ignoreTile: FloorShuttleOrange
|
||||
deleteAfterUse: true
|
||||
tags:
|
||||
- AsteroidWreck
|
||||
|
||||
|
||||
- type: dungeonRoom
|
||||
id: DVTickColony_AsteroidWreck
|
||||
size: 11,14
|
||||
atlas: /Maps/_DV/Salvage/AsteroidWrecks/DV-tick-colony-asteroidwreck.yml
|
||||
offset: -6,-7
|
||||
ignoreTile: FloorShuttleOrange
|
||||
deleteAfterUse: true
|
||||
tags:
|
||||
- AsteroidWreck
|
||||
|
||||
- type: dungeonRoom
|
||||
id: DVCargoDock_AsteroidWreck
|
||||
size: 13,15
|
||||
atlas: /Maps/_DV/Salvage/AsteroidWrecks/DV-med-dock-asteroidwreck.yml
|
||||
offset: -7,-6
|
||||
ignoreTile: FloorShuttleOrange
|
||||
deleteAfterUse: true
|
||||
tags:
|
||||
- AsteroidWreck
|
||||
|
||||
- type: dungeonRoom
|
||||
id: DVSpaceWaffleHome_AsteroidWreck
|
||||
size: 31,24
|
||||
atlas: /Maps/_DV/Salvage/AsteroidWrecks/DV-wh-salvage-asteroidwreck.yml
|
||||
offset: -16,-11
|
||||
ignoreTile: FloorShuttleOrange
|
||||
deleteAfterUse: true
|
||||
tags:
|
||||
- AsteroidWreck
|
||||
|
||||
|
||||
- type: dungeonRoom
|
||||
id: DVMediumCrashedShuttle_AsteroidWreck
|
||||
size: 14,22
|
||||
atlas: /Maps/_DV/Salvage/AsteroidWrecks/DV-med-crashed-shuttle-asteroidwreck.yml
|
||||
offset: -8,-13
|
||||
ignoreTile: FloorShuttleOrange
|
||||
deleteAfterUse: true
|
||||
tags:
|
||||
- AsteroidWreck
|
||||
|
||||
- type: dungeonRoom
|
||||
id: DVMeatball_AsteroidWreck
|
||||
size: 15,18
|
||||
atlas: /Maps/_DV/Salvage/AsteroidWrecks/DV-meatball-asteroidwreck.yml
|
||||
offset: -7,-9
|
||||
ignoreTile: FloorShuttleOrange
|
||||
deleteAfterUse: true
|
||||
tags:
|
||||
- AsteroidWreck
|
||||
|
||||
- type: dungeonRoom
|
||||
id: DVVeganMeatball_AsteroidWreck
|
||||
size: 17,17
|
||||
atlas: /Maps/_DV/Salvage/AsteroidWrecks/DV-vegan-meatball-asteroidwreck.yml
|
||||
offset: -8,-8
|
||||
ignoreTile: FloorShuttleOrange
|
||||
deleteAfterUse: true
|
||||
tags:
|
||||
- AsteroidWreck
|
||||
|
||||
- type: dungeonRoom
|
||||
id: DVEngineeringChunk_AsteroidWreck
|
||||
size: 38,44
|
||||
atlas: /Maps/_DV/Salvage/AsteroidWrecks/DV-engineering-chunk-asteroidwreck.yml
|
||||
offset: -18,-25
|
||||
ignoreTile: FloorShuttleOrange
|
||||
deleteAfterUse: true
|
||||
tags:
|
||||
- AsteroidWreck
|
||||
|
||||
|
||||
- type: dungeonRoom
|
||||
id: MediumChunk01_AsteroidWreck
|
||||
size: 18,19
|
||||
atlas: /Maps/_DV/Salvage/AsteroidWrecks/DV-med-chunk-01-asteroidwreck.yml
|
||||
offset: -10,-10
|
||||
ignoreTile: FloorShuttleOrange
|
||||
deleteAfterUse: true
|
||||
tags:
|
||||
- AsteroidWreck
|
||||
|
||||
- type: dungeonRoom
|
||||
id: MediumMiningOutpost01_AsteroidWreck
|
||||
size: 17,17
|
||||
atlas: /Maps/_DV/Salvage/AsteroidWrecks/DV-mining-outpost-01-asteroidwreck.yml
|
||||
offset: -9,-9
|
||||
ignoreTile: FloorShuttleOrange
|
||||
deleteAfterUse: true
|
||||
tags:
|
||||
- AsteroidWreck
|
||||
|
||||
|
||||
- type: dungeonRoom
|
||||
id: AtlasPerma_AsteroidWreck
|
||||
size: 19,16
|
||||
atlas: /Maps/_DV/Salvage/AsteroidWrecks/DV-atlas-perma-asteroidwreck.yml
|
||||
offset: -7,-7
|
||||
ignoreTile: FloorShuttleOrange
|
||||
deleteAfterUse: true
|
||||
tags:
|
||||
- AsteroidWreck
|
||||
|
||||
|
||||
- type: dungeonRoom
|
||||
id: AtlasCells_AsteroidWreck
|
||||
size: 24,20
|
||||
atlas: /Maps/_DV/Salvage/AsteroidWrecks/DV-atlas-jailcells-asteroidwreck.yml
|
||||
offset: -13,-10
|
||||
ignoreTile: FloorShuttleOrange
|
||||
deleteAfterUse: true
|
||||
tags:
|
||||
- AsteroidWreck
|
||||
|
||||
- type: dungeonRoom
|
||||
id: AtlasSalvage_AsteroidWreck
|
||||
size: 17,16
|
||||
atlas: /Maps/_DV/Salvage/AsteroidWrecks/DV-atlas-salvage-asteroidwreck.yml
|
||||
offset: -10,-8
|
||||
ignoreTile: FloorShuttleOrange
|
||||
deleteAfterUse: true
|
||||
tags:
|
||||
- AsteroidWreck
|
||||
|
||||
- type: dungeonRoom
|
||||
id: AtlasAtmos_AsteroidWreck
|
||||
size: 25,21
|
||||
atlas: /Maps/_DV/Salvage/AsteroidWrecks/DV-atlas-atmos-asteroidwreck.yml
|
||||
offset: -15,-13
|
||||
ignoreTile: FloorShuttleOrange
|
||||
deleteAfterUse: true
|
||||
tags:
|
||||
- AsteroidWreck
|
||||
|
||||
- type: dungeonRoom
|
||||
id: AtlasConferenceRoom_AsteroidWreck
|
||||
size: 20,30
|
||||
atlas: /Maps/_DV/Salvage/AsteroidWrecks/DV-atlas-conference-room-asteroidwreck.yml
|
||||
offset: -10,-17
|
||||
ignoreTile: FloorShuttleOrange
|
||||
deleteAfterUse: true
|
||||
tags:
|
||||
- AsteroidWreck
|
||||
|
||||
|
||||
- type: dungeonRoom
|
||||
id: DVMedium1_AsteroidWreck
|
||||
size: 18,17
|
||||
atlas: /Maps/_DV/Salvage/AsteroidWrecks/DV-medium-01-asteroidwreck.yml
|
||||
offset: -9,-9
|
||||
ignoreTile: FloorShuttleOrange
|
||||
deleteAfterUse: true
|
||||
tags:
|
||||
- AsteroidWreck
|
||||
|
||||
- type: dungeonRoom
|
||||
id: DVMediumVault1_AsteroidWreck
|
||||
size: 18,18
|
||||
atlas: /Maps/_DV/Salvage/AsteroidWrecks/DV-med-vault-01-asteroidwreck.yml
|
||||
offset: -9,-10
|
||||
ignoreTile: FloorShuttleOrange
|
||||
deleteAfterUse: true
|
||||
tags:
|
||||
- AsteroidWreck
|
||||
|
||||
- type: dungeonRoom
|
||||
id: DVMediumHaulingShuttle_AsteroidWreck
|
||||
size: 19,19
|
||||
atlas: /Maps/_DV/Salvage/AsteroidWrecks/DV-hauling-shuttle-asteroidwreck.yml
|
||||
offset: -7,-12
|
||||
ignoreTile: FloorShuttleOrange
|
||||
deleteAfterUse: true
|
||||
tags:
|
||||
- AsteroidWreck
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
diff a/Resources/Prototypes/_DV/Procedural/Magnet/asteroid_wreck_templates.yml b/Resources/Prototypes/_DV/Procedural/Magnet/asteroid_wreck_templates.yml (rejected hunks)
|
||||
@@ -1,6 +1,7 @@
|
||||
name: Asteroid Wreck Marker (medium)
|
||||
components:
|
||||
- type: RoomFill
|
||||
+ minSize: 1,1
|
||||
maxSize: 250,250
|
||||
roomWhitelist:
|
||||
tags:
|
||||
|
|
@ -0,0 +1,288 @@
|
|||
- type: entity
|
||||
id: DebrisWreckMarker
|
||||
parent: BaseRoomMarker
|
||||
name: Debris wreck marker
|
||||
components:
|
||||
- type: RoomFill
|
||||
minSize: 0,0
|
||||
maxSize: 65,65
|
||||
roomWhitelist:
|
||||
tags:
|
||||
- DebrisWreck
|
||||
|
||||
#List of MAPS that can be added to magnet debris pulls.
|
||||
|
||||
#It is IMPORTANT that we use a mask tile to denote areas of space/incorporation into surrounding Debris.
|
||||
#This is because areas of space cause DunGen to produce exciting and often regrettable outcomes.
|
||||
|
||||
- type: dungeonRoom
|
||||
id: DVAnimalFarm_DebrisWreck
|
||||
size: 15,15
|
||||
atlas: /Maps/_DV/Salvage/DebrisWrecks/DV-animalfarm-debriswreck.yml
|
||||
offset: -3,-4
|
||||
ignoreTile: FloorShuttleOrange
|
||||
deleteAfterUse: true
|
||||
tags:
|
||||
- DebrisWreck
|
||||
|
||||
- type: dungeonRoom
|
||||
id: DVMedChunk_DebrisWreck
|
||||
size: 17,18
|
||||
atlas: /Maps/_DV/Salvage/DebrisWrecks/DV-med-chunk-01-debriswreck.yml
|
||||
offset: -9,-9
|
||||
ignoreTile: FloorShuttleOrange
|
||||
deleteAfterUse: true
|
||||
tags:
|
||||
- DebrisWreck
|
||||
|
||||
- type: dungeonRoom
|
||||
id: DVMiningOutpost_DebrisWreck
|
||||
size: 16,15
|
||||
atlas: /Maps/_DV/Salvage/DebrisWrecks/DV-mining-outpost-01-debriswreck.yml
|
||||
offset: -8,-8
|
||||
ignoreTile: FloorShuttleOrange
|
||||
deleteAfterUse: true
|
||||
tags:
|
||||
- DebrisWreck
|
||||
|
||||
- type: dungeonRoom
|
||||
id: DVAtlasPerma_DebrisWreck
|
||||
size: 17,16
|
||||
atlas: /Maps/_DV/Salvage/DebrisWrecks/DV-atlas-perma-debriswreck.yml
|
||||
offset: -6,-6
|
||||
ignoreTile: FloorShuttleOrange
|
||||
deleteAfterUse: true
|
||||
tags:
|
||||
- DebrisWreck
|
||||
|
||||
- type: dungeonRoom
|
||||
id: DVAtlasJailCells_DebrisWreck
|
||||
size: 20,16
|
||||
atlas: /Maps/_DV/Salvage/DebrisWrecks/DV-atlas-jailcells-debriswreck.yml
|
||||
offset: -11,-8
|
||||
ignoreTile: FloorShuttleOrange
|
||||
deleteAfterUse: true
|
||||
tags:
|
||||
- DebrisWreck
|
||||
|
||||
- type: dungeonRoom
|
||||
id: DVAtlasAtmos_DebrisWreck
|
||||
size: 24,19
|
||||
atlas: /Maps/_DV/Salvage/DebrisWrecks/DV-atlas-atmos-debriswreck.yml
|
||||
offset: -14,-12
|
||||
ignoreTile: FloorShuttleOrange
|
||||
deleteAfterUse: true
|
||||
tags:
|
||||
- DebrisWreck
|
||||
|
||||
- type: dungeonRoom
|
||||
id: DVAtlasCargo_DebrisWreck
|
||||
size: 25,18
|
||||
atlas: /Maps/_DV/Salvage/DebrisWrecks/DV-atlas-cargo-debriswreck.yml
|
||||
offset: -12,-10
|
||||
ignoreTile: FloorShuttleOrange
|
||||
deleteAfterUse: true
|
||||
tags:
|
||||
- DebrisWreck
|
||||
|
||||
- type: dungeonRoom
|
||||
id: DVMedService_DebrisWreck
|
||||
size: 14,14
|
||||
atlas: /Maps/_DV/Salvage/DebrisWrecks/DV-med-service-chunk-01-debriswreck.yml
|
||||
offset: -8,-7
|
||||
ignoreTile: FloorShuttleOrange
|
||||
deleteAfterUse: true
|
||||
tags:
|
||||
- DebrisWreck
|
||||
|
||||
- type: dungeonRoom
|
||||
id: DVLaundromat_DebrisWreck
|
||||
size: 40,38
|
||||
atlas: /Maps/_DV/Salvage/DebrisWrecks/DV-laundromat-chunk-debriswreck.yml
|
||||
offset: -14,-11
|
||||
ignoreTile: FloorShuttleOrange
|
||||
deleteAfterUse: true
|
||||
tags:
|
||||
- DebrisWreck
|
||||
|
||||
- type: dungeonRoom
|
||||
id: DVSolarFarm_DebrisWreck
|
||||
size: 28,15
|
||||
atlas: /Maps/_DV/Salvage/DebrisWrecks/DV-solar-farm-debriswreck.yml
|
||||
offset: -8,-1
|
||||
ignoreTile: FloorShuttleOrange
|
||||
deleteAfterUse: true
|
||||
tags:
|
||||
- DebrisWreck
|
||||
|
||||
- type: dungeonRoom
|
||||
id: DVResearchOutpost_DebrisWreck
|
||||
size: 29,40
|
||||
atlas: /Maps/_DV/Salvage/DebrisWrecks/DV-research-outpost-01-debriswreck.yml
|
||||
offset: -15,-16
|
||||
ignoreTile: FloorShuttleOrange
|
||||
deleteAfterUse: true
|
||||
tags:
|
||||
- DebrisWreck
|
||||
|
||||
- type: dungeonRoom
|
||||
id: DVLargeEngineering_DebrisWreck
|
||||
size: 24,17
|
||||
atlas: /Maps/_DV/Salvage/DebrisWrecks/DV-large-engineer-chunk-debriswreck.yml
|
||||
offset: -12,-11
|
||||
ignoreTile: FloorShuttleOrange
|
||||
deleteAfterUse: true
|
||||
tags:
|
||||
- DebrisWreck
|
||||
|
||||
- type: dungeonRoom
|
||||
id: DVAtlasConferenceRoom_DebrisWreck
|
||||
size: 19,27
|
||||
atlas: /Maps/_DV/Salvage/DebrisWrecks/DV-atlas-conference-room-debriswreck.yml
|
||||
offset: -10,-16
|
||||
ignoreTile: FloorShuttleOrange
|
||||
deleteAfterUse: true
|
||||
tags:
|
||||
- DebrisWreck
|
||||
|
||||
|
||||
- type: dungeonRoom
|
||||
id: DVAtlasDorms_DebrisWreck
|
||||
size: 22,22
|
||||
atlas: /Maps/_DV/Salvage/DebrisWrecks/DV-atlas-dorms-debriswreck.yml
|
||||
offset: -3,-19
|
||||
ignoreTile: FloorShuttleOrange
|
||||
deleteAfterUse: true
|
||||
tags:
|
||||
- DebrisWreck
|
||||
|
||||
|
||||
- type: dungeonRoom
|
||||
id: DVAtlasEpi_DebrisWreck
|
||||
size: 21,23
|
||||
atlas: /Maps/_DV/Salvage/DebrisWrecks/DV-atlas-epi-debriswreck.yml
|
||||
offset: -2,-18
|
||||
ignoreTile: FloorShuttleOrange
|
||||
deleteAfterUse: true
|
||||
tags:
|
||||
- DebrisWreck
|
||||
|
||||
- type: dungeonRoom
|
||||
id: DVAtlasMedical_DebrisWreck
|
||||
size: 22,22
|
||||
atlas: /Maps/_DV/Salvage/DebrisWrecks/DV-atlas-medical-debriswreck.yml
|
||||
offset: -11,-19
|
||||
ignoreTile: FloorShuttleOrange
|
||||
deleteAfterUse: true
|
||||
tags:
|
||||
- DebrisWreck
|
||||
|
||||
- type: dungeonRoom
|
||||
id: DVAtlasSalvage_DebrisWreck
|
||||
size: 16,15
|
||||
atlas: /Maps/_DV/Salvage/DebrisWrecks/DV-atlas-salvage-debriswreck.yml
|
||||
offset: -9,-7
|
||||
ignoreTile: FloorShuttleOrange
|
||||
deleteAfterUse: true
|
||||
tags:
|
||||
- DebrisWreck
|
||||
|
||||
- type: dungeonRoom
|
||||
id: DVMedium01_DebrisWreck
|
||||
size: 16,15
|
||||
atlas: /Maps/_DV/Salvage/DebrisWrecks/DV-medium-01-debriswreck.yml
|
||||
offset: -8,-8
|
||||
ignoreTile: FloorShuttleOrange
|
||||
deleteAfterUse: true
|
||||
tags:
|
||||
- DebrisWreck
|
||||
|
||||
- type: dungeonRoom
|
||||
id: DVMediuMVault_DebrisWreck
|
||||
size: 15,15
|
||||
atlas: /Maps/_DV/Salvage/DebrisWrecks/DV-med-vault-01-debriswreck.yml
|
||||
offset: -8,-8
|
||||
ignoreTile: FloorShuttleOrange
|
||||
deleteAfterUse: true
|
||||
tags:
|
||||
- DebrisWreck
|
||||
|
||||
- type: dungeonRoom
|
||||
id: DVSilentOrchestra_DebrisWreck
|
||||
size: 15,15
|
||||
atlas: /Maps/_DV/Salvage/DebrisWrecks/DV-med-silent-orchestra-debriswreck.yml
|
||||
offset: -8,-8
|
||||
ignoreTile: FloorShuttleOrange
|
||||
deleteAfterUse: true
|
||||
tags:
|
||||
- DebrisWreck
|
||||
|
||||
- type: dungeonRoom
|
||||
id: DVCargo01_DebrisWreck
|
||||
size: 14,15
|
||||
atlas: /Maps/_DV/Salvage/DebrisWrecks/DV-cargo-01-debriswreck.yml
|
||||
offset: -9,-6
|
||||
ignoreTile: FloorShuttleOrange
|
||||
deleteAfterUse: true
|
||||
tags:
|
||||
- DebrisWreck
|
||||
|
||||
- type: dungeonRoom
|
||||
id: DVPirate_DebrisWreck
|
||||
size: 10,15
|
||||
atlas: /Maps/_DV/Salvage/DebrisWrecks/DV-med-pirate-debriswreck.yml
|
||||
offset: -4,-10
|
||||
ignoreTile: FloorShuttleOrange
|
||||
deleteAfterUse: true
|
||||
tags:
|
||||
- DebrisWreck
|
||||
|
||||
- type: dungeonRoom
|
||||
id: DERuinedEvacShuttle_DebrisWreck
|
||||
size: 11,17
|
||||
atlas: /Maps/_DV/Salvage/DebrisWrecks/DV-med-ruined-emergency-shuttle-debriswreck.yml
|
||||
offset: -6,-9
|
||||
ignoreTile: FloorShuttleOrange
|
||||
deleteAfterUse: true
|
||||
tags:
|
||||
- DebrisWreck
|
||||
|
||||
- type: dungeonRoom
|
||||
id: DVHaulingShuttle_DebrisWreck
|
||||
size: 18,16
|
||||
atlas: /Maps/_DV/Salvage/DebrisWrecks/DV-hauling-shuttle-debriswreck.yml
|
||||
offset: -6,-8
|
||||
ignoreTile: FloorShuttleOrange
|
||||
deleteAfterUse: true
|
||||
tags:
|
||||
- DebrisWreck
|
||||
|
||||
- type: dungeonRoom
|
||||
id: DVStationStation_DebrisWreck
|
||||
size: 52,42
|
||||
atlas: /Maps/_DV/Salvage/DebrisWrecks/DV-stationstation-debriswreck.yml
|
||||
offset: -17,-15
|
||||
ignoreTile: FloorShuttleOrange
|
||||
deleteAfterUse: true
|
||||
tags:
|
||||
- DebrisWreck
|
||||
|
||||
- type: dungeonRoom
|
||||
id: DVRuinCargoSalvage_DebrisWreck
|
||||
size: 37,27
|
||||
atlas: /Maps/_DV/Salvage/DebrisWrecks/DV-ruin-cargo-salvage-debriswreck.yml
|
||||
offset: -15,-13
|
||||
ignoreTile: FloorShuttleOrange
|
||||
deleteAfterUse: true
|
||||
tags:
|
||||
- DebrisWreck
|
||||
|
||||
- type: dungeonRoom
|
||||
id: DVSecurityChunk_DebrisWreck
|
||||
size: 24,20
|
||||
atlas: /Maps/_DV/Salvage/DebrisWrecks/DV-security-chunk-debriswreck.yml
|
||||
offset: -10,-9
|
||||
ignoreTile: FloorShuttleOrange
|
||||
deleteAfterUse: true
|
||||
tags:
|
||||
- DebrisWreck
|
||||
|
|
@ -42,6 +42,9 @@
|
|||
- type: Tag
|
||||
id: ArtifactFragment # Storage whitelist: OreBag. CargoBounty: BountyArtifactFragment. ConstructionGraph: Artifact
|
||||
|
||||
- type: Tag
|
||||
id: AsteroidWreck #DeltaV - Wrecks that can appear on Salvage Magnet asteroids
|
||||
|
||||
## B ##
|
||||
|
||||
- type: Tag
|
||||
|
|
|
|||
Loading…
Reference in New Issue