Patch 2.5 (#136)
* derelicts-base * WonderBox update v0.7 * White MapPool * ~45-90 generated, 30 mapped * radio receive sounds * default: * add wonderbox to mappool * added tags to cargo airlocks * MORE MORE MORE MORE
This commit is contained in:
@@ -5,6 +5,8 @@ using Content.Shared.Inventory.Events;
|
||||
using Content.Shared.Radio;
|
||||
using Content.Shared.Radio.Components;
|
||||
using Content.Shared.Radio.EntitySystems;
|
||||
using Robust.Shared.Audio;
|
||||
using Robust.Shared.Audio.Systems;
|
||||
using Robust.Shared.Network;
|
||||
using Robust.Shared.Player;
|
||||
|
||||
@@ -14,6 +16,7 @@ public sealed class HeadsetSystem : SharedHeadsetSystem
|
||||
{
|
||||
[Dependency] private readonly INetManager _netMan = default!;
|
||||
[Dependency] private readonly RadioSystem _radio = default!;
|
||||
[Dependency] private readonly SharedAudioSystem _audio = default!;
|
||||
|
||||
public override void Initialize()
|
||||
{
|
||||
@@ -101,6 +104,45 @@ public sealed class HeadsetSystem : SharedHeadsetSystem
|
||||
{
|
||||
if (TryComp(Transform(uid).ParentUid, out ActorComponent? actor))
|
||||
_netMan.ServerSendMessage(args.ChatMsg, actor.PlayerSession.ConnectedClient);
|
||||
|
||||
//WD-EDIT
|
||||
switch (args.Channel.ID)
|
||||
{
|
||||
case "Security":
|
||||
_audio.PlayPvs("/Audio/White/Radio/security.ogg", uid, AudioParams.Default);
|
||||
break;
|
||||
case "Common":
|
||||
_audio.PlayPvs("/Audio/White/Radio/common.ogg", uid, AudioParams.Default);
|
||||
break;
|
||||
case "Engineering":
|
||||
_audio.PlayPvs("/Audio/White/Radio/eng.ogg", uid, AudioParams.Default);
|
||||
break;
|
||||
case "Medical":
|
||||
_audio.PlayPvs("/Audio/White/Radio/med.ogg", uid, AudioParams.Default);
|
||||
break;
|
||||
case "Supply":
|
||||
_audio.PlayPvs("/Audio/White/Radio/cargo.ogg", uid, AudioParams.Default);
|
||||
break;
|
||||
case "Science":
|
||||
_audio.PlayPvs("/Audio/White/Radio/science.ogg", uid, AudioParams.Default);
|
||||
break;
|
||||
case "CentCom":
|
||||
_audio.PlayPvs("/Audio/White/Radio/cc.ogg", uid, AudioParams.Default);
|
||||
break;
|
||||
case "Command":
|
||||
_audio.PlayPvs("/Audio/White/Radio/command.ogg", uid, AudioParams.Default);
|
||||
break;
|
||||
case "Service":
|
||||
_audio.PlayPvs("/Audio/White/Radio/common.ogg", uid, AudioParams.Default);
|
||||
break;
|
||||
case "Syndicate":
|
||||
_audio.PlayPvs("/Audio/White/Radio/security.ogg", uid, AudioParams.Default);
|
||||
break;
|
||||
default:
|
||||
_audio.PlayPvs("/Audio/White/Radio/common.ogg", uid, AudioParams.Default);
|
||||
break;
|
||||
}
|
||||
//WD-EDIT
|
||||
}
|
||||
|
||||
private void OnEmpPulse(EntityUid uid, HeadsetComponent component, ref EmpPulseEvent args)
|
||||
|
||||
@@ -0,0 +1,34 @@
|
||||
using Robust.Shared.Prototypes;
|
||||
using Robust.Shared.Serialization.Manager;
|
||||
using Robust.Shared.Serialization.TypeSerializers.Implementations;
|
||||
using Robust.Shared.Utility;
|
||||
|
||||
namespace Content.Server.Worldgen.Components;
|
||||
|
||||
[RegisterComponent]
|
||||
public sealed class BlueprintPlacerComponent : Component
|
||||
{
|
||||
[DataField("blueprint", required: true, customTypeSerializer: typeof(ResPathSerializer))]
|
||||
public ResPath Blueprint = default!;
|
||||
|
||||
/// <summary>
|
||||
/// The components that get added to the target grid.
|
||||
/// </summary>
|
||||
[DataField("components", required: true)]
|
||||
public ComponentRegistry Components { get; } = default!;
|
||||
|
||||
//TODO: Get someone to make this a method on componentregistry that does it Correctly.
|
||||
/// <summary>
|
||||
/// Applies the worldgen config to the given target (presumably a grid.)
|
||||
/// </summary>
|
||||
public void Apply(EntityUid target, ISerializationManager serialization, IEntityManager entityManager, IComponentFactory componentFactory)
|
||||
{
|
||||
// Add all components required by the prototype. Engine update for this whenst.
|
||||
foreach (var data in Components.Values)
|
||||
{
|
||||
var comp = (Component) serialization.CreateCopy(data.Component, notNullableOverride: true);
|
||||
comp.Owner = target;
|
||||
entityManager.AddComponent(target, comp);
|
||||
}
|
||||
}
|
||||
}
|
||||
35
Content.Server/Worldgen/StructurePlacementComponent.cs
Normal file
35
Content.Server/Worldgen/StructurePlacementComponent.cs
Normal file
@@ -0,0 +1,35 @@
|
||||
namespace Content.Server.Worldgen;
|
||||
|
||||
|
||||
[RegisterComponent]
|
||||
public sealed class StructurePlacementComponent : Component
|
||||
{
|
||||
/// <summary>
|
||||
/// The structures to place into the world.
|
||||
/// </summary>
|
||||
[DataField("structures")] public List<StructureConfig> Structures = new();
|
||||
|
||||
/// <summary>
|
||||
/// Radius around which there should be no objects for placement to succeed.
|
||||
/// </summary>
|
||||
[DataField("safetyRadius")] public int SafetyRadius = 128;
|
||||
|
||||
[DataField("placementRadius")] public int PlacementRadius = 4096;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// A single structure's placement config.
|
||||
/// </summary>
|
||||
[DataDefinition]
|
||||
public sealed class StructureConfig
|
||||
{
|
||||
/// <summary>
|
||||
/// The entity to spawn into the world.
|
||||
/// </summary>
|
||||
[DataField("entity", required: true)] public string Entity = default!;
|
||||
|
||||
/// <summary>
|
||||
/// The amount of that entity to spawn.
|
||||
/// </summary>
|
||||
[DataField("amountRange")] public Vector2i AmountRange = Vector2i.One;
|
||||
}
|
||||
37
Content.Server/Worldgen/Systems/BlueprintPlacerSystem.cs
Normal file
37
Content.Server/Worldgen/Systems/BlueprintPlacerSystem.cs
Normal file
@@ -0,0 +1,37 @@
|
||||
using Content.Server.Worldgen.Components;
|
||||
using Robust.Server.GameObjects;
|
||||
using Robust.Server.Maps;
|
||||
using Robust.Shared.Serialization.Manager;
|
||||
|
||||
namespace Content.Server.Worldgen.Systems;
|
||||
|
||||
public sealed class BlueprintPlacerSystem : EntitySystem
|
||||
{
|
||||
[Dependency] private readonly MapLoaderSystem _mapLoader = default!;
|
||||
[Dependency] private readonly IComponentFactory _componentFactory = default!;
|
||||
[Dependency] private readonly ISerializationManager _serialization = default!;
|
||||
|
||||
/// <inheritdoc/>
|
||||
public override void Initialize()
|
||||
{
|
||||
SubscribeLocalEvent<BlueprintPlacerComponent, MapInitEvent>(OnMapInit);
|
||||
}
|
||||
|
||||
private void OnMapInit(EntityUid uid, BlueprintPlacerComponent component, MapInitEvent args)
|
||||
{
|
||||
var xform = Transform(uid);
|
||||
var options = new MapLoadOptions()
|
||||
{
|
||||
LoadMap = false,
|
||||
Offset = xform.WorldPosition,
|
||||
Rotation = xform.LocalRotation,
|
||||
};
|
||||
|
||||
_mapLoader.TryLoad(xform.MapID, component.Blueprint.ToString(), out var root, options);
|
||||
|
||||
if (root is null)
|
||||
return;
|
||||
|
||||
component.Apply(root[0], _serialization, EntityManager, _componentFactory);
|
||||
}
|
||||
}
|
||||
79
Content.Server/Worldgen/Systems/StructurePlacementSystem.cs
Normal file
79
Content.Server/Worldgen/Systems/StructurePlacementSystem.cs
Normal file
@@ -0,0 +1,79 @@
|
||||
using System.Linq;
|
||||
using Content.Server.Administration.Logs;
|
||||
using Content.Server.Worldgen.Components;
|
||||
using Content.Server.Worldgen.Tools;
|
||||
using Content.Shared.Database;
|
||||
using Robust.Shared.Map;
|
||||
using Robust.Shared.Map.Components;
|
||||
using Robust.Shared.Random;
|
||||
|
||||
namespace Content.Server.Worldgen.Systems;
|
||||
|
||||
public sealed class StructurePlacementSystem : EntitySystem
|
||||
{
|
||||
[Dependency] private readonly PoissonDiskSampler _sampler = default!;
|
||||
[Dependency] private readonly IAdminLogManager _log = default!;
|
||||
[Dependency] private readonly ILogManager _logManager = default!;
|
||||
[Dependency] private readonly IMapManager _map = default!;
|
||||
[Dependency] private readonly IRobustRandom _random = default!;
|
||||
|
||||
private ISawmill _sawmill = default!;
|
||||
/// <inheritdoc/>
|
||||
public override void Initialize()
|
||||
{
|
||||
SubscribeLocalEvent<StructurePlacementComponent, MapInitEvent>(OnMapInit);
|
||||
_sawmill = _logManager.GetSawmill("worldgen.structures");
|
||||
}
|
||||
|
||||
private void OnMapInit(EntityUid uid, StructurePlacementComponent component, MapInitEvent args)
|
||||
{
|
||||
if (!HasComp<WorldControllerComponent>(uid))
|
||||
return;
|
||||
|
||||
var totalLocations = (int)(component.Structures.Sum(x => x.AmountRange.Y) * 2f);
|
||||
|
||||
var locations = GetRandomValidPoints(uid, component, totalLocations);
|
||||
var mapId = Comp<MapComponent>(uid).MapId;
|
||||
var safetyBox = Box2.UnitCentered.Enlarged(component.SafetyRadius);
|
||||
|
||||
foreach (var config in component.Structures)
|
||||
{
|
||||
var toPlace = _random.Next(config.AmountRange.X, config.AmountRange.Y);
|
||||
|
||||
while (toPlace != 0)
|
||||
{
|
||||
var point = _random.PickAndTake(locations);
|
||||
var fail = _map.FindGridsIntersecting(mapId, safetyBox.Translated(point)).Any();
|
||||
if (fail)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
var ent = Spawn(config.Entity, new MapCoordinates(point, mapId));
|
||||
_log.Add(LogType.EntitySpawn, LogImpact.Medium, $"Spawned {ToPrettyString(ent)} at {new MapCoordinates(point, mapId)} for {ToPrettyString(uid)}.");
|
||||
toPlace--;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private List<Vector2> GetRandomValidPoints(EntityUid uid, StructurePlacementComponent component, int amount)
|
||||
{
|
||||
var points = new List<Vector2>();
|
||||
|
||||
var sample = _sampler.SampleCircle(Vector2.Zero, component.PlacementRadius, component.SafetyRadius);
|
||||
|
||||
while (sample.MoveNext(out var point))
|
||||
{
|
||||
points.Add(point.Value);
|
||||
}
|
||||
|
||||
if (points.Count < amount)
|
||||
{
|
||||
_sawmill.Error($"Failed to place {amount} points as {ToPrettyString(uid)}, attempting to continue anyways!");
|
||||
}
|
||||
|
||||
_sawmill.Info($"Placing {amount} debris at {points.Count} locations as {ToPrettyString(uid)}.");
|
||||
|
||||
return points;
|
||||
}
|
||||
}
|
||||
@@ -202,7 +202,7 @@ namespace Content.Shared.CCVar
|
||||
/// Prototype to use for map pool.
|
||||
/// </summary>
|
||||
public static readonly CVarDef<string>
|
||||
GameMapPool = CVarDef.Create("game.map_pool", "DefaultMapPool", CVar.SERVERONLY);
|
||||
GameMapPool = CVarDef.Create("game.map_pool", "WhiteMapPool", CVar.SERVERONLY);
|
||||
|
||||
/// <summary>
|
||||
/// The depth of the queue used to calculate which map is next in rotation.
|
||||
@@ -1915,7 +1915,7 @@ namespace Content.Shared.CCVar
|
||||
/// Whether or not world generation is enabled.
|
||||
/// </summary>
|
||||
public static readonly CVarDef<bool> WorldgenEnabled =
|
||||
CVarDef.Create("worldgen.enabled", false, CVar.SERVERONLY);
|
||||
CVarDef.Create("worldgen.enabled", true, CVar.SERVERONLY);
|
||||
|
||||
/// <summary>
|
||||
/// The worldgen config to use.
|
||||
@@ -1927,7 +1927,7 @@ namespace Content.Shared.CCVar
|
||||
/// The maximum amount of time the entity GC can process, in ms.
|
||||
/// </summary>
|
||||
public static readonly CVarDef<int> GCMaximumTimeMs =
|
||||
CVarDef.Create("entgc.maximum_time_ms", 5, CVar.SERVERONLY);
|
||||
CVarDef.Create("entgc.maximum_time_ms", 500, CVar.SERVERONLY);
|
||||
|
||||
/*
|
||||
* Replays
|
||||
|
||||
BIN
Resources/Audio/White/Radio/cargo.ogg
Normal file
BIN
Resources/Audio/White/Radio/cargo.ogg
Normal file
Binary file not shown.
BIN
Resources/Audio/White/Radio/cc.ogg
Normal file
BIN
Resources/Audio/White/Radio/cc.ogg
Normal file
Binary file not shown.
BIN
Resources/Audio/White/Radio/command.ogg
Normal file
BIN
Resources/Audio/White/Radio/command.ogg
Normal file
Binary file not shown.
BIN
Resources/Audio/White/Radio/common.ogg
Normal file
BIN
Resources/Audio/White/Radio/common.ogg
Normal file
Binary file not shown.
BIN
Resources/Audio/White/Radio/eng.ogg
Normal file
BIN
Resources/Audio/White/Radio/eng.ogg
Normal file
Binary file not shown.
BIN
Resources/Audio/White/Radio/handheld.ogg
Normal file
BIN
Resources/Audio/White/Radio/handheld.ogg
Normal file
Binary file not shown.
BIN
Resources/Audio/White/Radio/med.ogg
Normal file
BIN
Resources/Audio/White/Radio/med.ogg
Normal file
Binary file not shown.
BIN
Resources/Audio/White/Radio/science.ogg
Normal file
BIN
Resources/Audio/White/Radio/science.ogg
Normal file
Binary file not shown.
BIN
Resources/Audio/White/Radio/security.ogg
Normal file
BIN
Resources/Audio/White/Radio/security.ogg
Normal file
Binary file not shown.
174549
Resources/Maps/White/Whitebagel.yml
Normal file
174549
Resources/Maps/White/Whitebagel.yml
Normal file
File diff suppressed because it is too large
Load Diff
197068
Resources/Maps/White/Whitebox.yml
Normal file
197068
Resources/Maps/White/Whitebox.yml
Normal file
File diff suppressed because it is too large
Load Diff
186997
Resources/Maps/White/Whitekettle.yml
Normal file
186997
Resources/Maps/White/Whitekettle.yml
Normal file
File diff suppressed because it is too large
Load Diff
189755
Resources/Maps/White/Whitemeta.yml
Normal file
189755
Resources/Maps/White/Whitemeta.yml
Normal file
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -1,4 +1,4 @@
|
||||
- type: entity
|
||||
- type: entity
|
||||
id: BaseAsteroidDebris
|
||||
parent: BaseDebris
|
||||
name: Asteroid Debris
|
||||
@@ -136,3 +136,67 @@
|
||||
blobDrawProb: 0.66
|
||||
radius: 23
|
||||
floorPlacements: 250
|
||||
|
||||
- type: entity
|
||||
id: AfterlightBaseAsteroidDebris
|
||||
parent: BaseDebris
|
||||
name: Asteroid Debris
|
||||
abstract: true
|
||||
components:
|
||||
- type: MapGrid
|
||||
- type: BlobFloorPlanBuilder
|
||||
floorTileset:
|
||||
- FloorAsteroidCoarseSand0
|
||||
blobDrawProb: 0.5
|
||||
radius: 6
|
||||
floorPlacements: 16
|
||||
- type: SimpleFloorPlanPopulator
|
||||
entries:
|
||||
FloorAsteroidCoarseSand0:
|
||||
- id: AsteroidRockMining
|
||||
- type: GCAbleObject
|
||||
queue: SpaceDebris
|
||||
- type: IFF
|
||||
flags: HideLabel
|
||||
color: "#d67e27"
|
||||
|
||||
- type: entity
|
||||
id: AfterlightAsteroidDebrisSmall
|
||||
parent: AfterlightBaseAsteroidDebris
|
||||
name: Asteroid Debris Small
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: MapGrid
|
||||
- type: BlobFloorPlanBuilder
|
||||
floorPlacements: 8
|
||||
|
||||
- type: entity
|
||||
id: AfterlightAsteroidDebrisMedium
|
||||
parent: AfterlightBaseAsteroidDebris
|
||||
name: Asteroid Debris Medium
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: MapGrid
|
||||
- type: BlobFloorPlanBuilder
|
||||
floorPlacements: 16
|
||||
|
||||
- type: entity
|
||||
id: AfterlightAsteroidDebrisLarge
|
||||
parent: AfterlightBaseAsteroidDebris
|
||||
name: Asteroid Debris Large
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: MapGrid
|
||||
- type: BlobFloorPlanBuilder
|
||||
floorPlacements: 24
|
||||
|
||||
- type: entity
|
||||
id: AfterlightAsteroidDebrisLarger
|
||||
parent: AfterlightBaseAsteroidDebris
|
||||
name: Asteroid Debris Larger
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: MapGrid
|
||||
- type: BlobFloorPlanBuilder
|
||||
radius: 12
|
||||
floorPlacements: 36
|
||||
|
||||
@@ -78,3 +78,93 @@
|
||||
- type: MapGrid
|
||||
- type: BlobFloorPlanBuilder
|
||||
floorPlacements: 24
|
||||
|
||||
|
||||
- type: entity
|
||||
id: CombatRimBaseScrapDebris
|
||||
parent: BaseDebris
|
||||
name: Scrap Debris
|
||||
abstract: true
|
||||
components:
|
||||
- type: MapGrid
|
||||
- type: BlobFloorPlanBuilder
|
||||
floorTileset:
|
||||
- Plating
|
||||
- Plating
|
||||
- Plating
|
||||
- FloorSteel
|
||||
- Lattice
|
||||
blobDrawProb: 0.5
|
||||
radius: 6
|
||||
floorPlacements: 16
|
||||
- type: SimpleFloorPlanPopulator
|
||||
entries:
|
||||
Plating:
|
||||
- prob: 6 # Intentional blank.
|
||||
- id: EngiLootSpawner
|
||||
prob: 1
|
||||
- id: CommonLootSpawner
|
||||
prob: 0.03
|
||||
- id: SecLootSpawner
|
||||
prob: 0.03
|
||||
- id: MedLootSpawner
|
||||
prob: 0.01
|
||||
- id: MedLootSpawner
|
||||
prob: 0.7
|
||||
- id: WallSolid
|
||||
prob: 3
|
||||
- id: Grille
|
||||
prob: 1
|
||||
Lattice:
|
||||
- prob: 5
|
||||
- id: Grille
|
||||
prob: 1
|
||||
- id: CommonLootSpawner
|
||||
prob: 0.03
|
||||
- id: EngiLootSpawner
|
||||
prob: 0.03
|
||||
- id: MedLootSpawner
|
||||
prob: 0.03
|
||||
FloorSteel:
|
||||
- prob: 4 # Intentional blank.
|
||||
- id: CommonLootSpawner
|
||||
prob: 1
|
||||
- id: SecLootSpawner
|
||||
prob: 0.03
|
||||
- id: SalvageMobSpawner
|
||||
prob: 0.7
|
||||
- type: GCAbleObject
|
||||
queue: SpaceDebris
|
||||
- type: IFF
|
||||
flags: HideLabel
|
||||
color: "#88b0d1"
|
||||
|
||||
- type: entity
|
||||
id: CombatRimScrapDebrisSmall
|
||||
parent: CombatRimBaseScrapDebris
|
||||
name: Scrap Debris Small
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: MapGrid
|
||||
- type: BlobFloorPlanBuilder
|
||||
floorPlacements: 8
|
||||
|
||||
- type: entity
|
||||
id: CombatRimScrapDebrisMedium
|
||||
parent: CombatRimBaseScrapDebris
|
||||
name: Scrap Debris Medium
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: MapGrid
|
||||
- type: BlobFloorPlanBuilder
|
||||
floorPlacements: 16
|
||||
|
||||
- type: entity
|
||||
id: CombatRimScrapDebrisLarge
|
||||
parent: CombatRimBaseScrapDebris
|
||||
name: Scrap Debris Large
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: MapGrid
|
||||
- type: BlobFloorPlanBuilder
|
||||
floorPlacements: 24
|
||||
|
||||
599
Resources/Prototypes/Entities/World/MapsPlacer/init.yml
Normal file
599
Resources/Prototypes/Entities/World/MapsPlacer/init.yml
Normal file
@@ -0,0 +1,599 @@
|
||||
- type: entity
|
||||
id: D1
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: BlueprintPlacer
|
||||
blueprint: /WhiteMaps/D/abductor.yml
|
||||
components:
|
||||
- type: IFF
|
||||
flags: HideLabel
|
||||
|
||||
- type: entity
|
||||
id: D2
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: BlueprintPlacer
|
||||
blueprint: /WhiteMaps/D/asteroid.yml
|
||||
components:
|
||||
- type: IFF
|
||||
flags: HideLabel
|
||||
|
||||
- type: entity
|
||||
id: D4
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: BlueprintPlacer
|
||||
blueprint: /WhiteMaps/D/derelict.yml
|
||||
components:
|
||||
- type: IFF
|
||||
flags: HideLabel
|
||||
|
||||
- type: entity
|
||||
id: D5
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: BlueprintPlacer
|
||||
blueprint: /WhiteMaps/D/derelict2.yml
|
||||
components:
|
||||
- type: IFF
|
||||
flags: HideLabel
|
||||
|
||||
- type: entity
|
||||
id: D6
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: BlueprintPlacer
|
||||
blueprint: /WhiteMaps/D/derelict3.yml
|
||||
components:
|
||||
- type: IFF
|
||||
flags: HideLabel
|
||||
|
||||
- type: entity
|
||||
id: D7
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: BlueprintPlacer
|
||||
blueprint: /WhiteMaps/D/derelict4.yml
|
||||
components:
|
||||
- type: IFF
|
||||
flags: HideLabel
|
||||
|
||||
- type: entity
|
||||
id: D8
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: BlueprintPlacer
|
||||
blueprint: /WhiteMaps/D/derelict5.yml
|
||||
components:
|
||||
- type: IFF
|
||||
flags: HideLabel
|
||||
|
||||
- type: entity
|
||||
id: D10
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: BlueprintPlacer
|
||||
blueprint: /WhiteMaps/D/derelict7.yml
|
||||
components:
|
||||
- type: IFF
|
||||
flags: HideLabel
|
||||
|
||||
- type: entity
|
||||
id: D11
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: BlueprintPlacer
|
||||
blueprint: /WhiteMaps/D/derelict8.yml
|
||||
components:
|
||||
- type: IFF
|
||||
flags: HideLabel
|
||||
|
||||
- type: entity
|
||||
id: D14
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: BlueprintPlacer
|
||||
blueprint: /WhiteMaps/D/dj_station.yml
|
||||
components:
|
||||
- type: IFF
|
||||
flags: HideLabel
|
||||
|
||||
- type: entity
|
||||
id: D15
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: BlueprintPlacer
|
||||
blueprint: /WhiteMaps/D/dobivalka.yml
|
||||
components:
|
||||
- type: IFF
|
||||
flags: HideLabel
|
||||
|
||||
- type: entity
|
||||
id: D16
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: BlueprintPlacer
|
||||
blueprint: /WhiteMaps/D/junk.yml
|
||||
components:
|
||||
- type: IFF
|
||||
flags: HideLabel
|
||||
|
||||
- type: entity
|
||||
id: D17
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: BlueprintPlacer
|
||||
blueprint: /WhiteMaps/D/mining_station.yml
|
||||
components:
|
||||
- type: IFF
|
||||
flags: HideLabel
|
||||
|
||||
- type: entity
|
||||
id: D18
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: BlueprintPlacer
|
||||
blueprint: /WhiteMaps/D/musorka.yml
|
||||
components:
|
||||
- type: IFF
|
||||
flags: HideLabel
|
||||
|
||||
- type: entity
|
||||
id: D19
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: BlueprintPlacer
|
||||
blueprint: /WhiteMaps/D/shuttle.yml
|
||||
components:
|
||||
- type: IFF
|
||||
flags: HideLabel
|
||||
|
||||
- type: entity
|
||||
id: D20
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: BlueprintPlacer
|
||||
blueprint: /WhiteMaps/D/shuttle2.yml
|
||||
components:
|
||||
- type: IFF
|
||||
flags: HideLabel
|
||||
|
||||
- type: entity
|
||||
id: D21
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: BlueprintPlacer
|
||||
blueprint: /WhiteMaps/D/shuttle3.yml
|
||||
components:
|
||||
- type: IFF
|
||||
flags: HideLabel
|
||||
|
||||
- type: entity
|
||||
id: D22
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: BlueprintPlacer
|
||||
blueprint: /WhiteMaps/D/space_hospital.yml
|
||||
components:
|
||||
- type: IFF
|
||||
flags: HideLabel
|
||||
|
||||
- type: entity
|
||||
id: D23
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: BlueprintPlacer
|
||||
blueprint: /WhiteMaps/D/stolovka.yml
|
||||
components:
|
||||
- type: IFF
|
||||
flags: HideLabel
|
||||
|
||||
- type: entity
|
||||
id: D24
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: BlueprintPlacer
|
||||
blueprint: /WhiteMaps/D/stolovka2.yml
|
||||
components:
|
||||
- type: IFF
|
||||
flags: HideLabel
|
||||
|
||||
- type: entity
|
||||
id: D25
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: BlueprintPlacer
|
||||
blueprint: /Maps/Salvage/small-ship-1.yml
|
||||
components:
|
||||
- type: IFF
|
||||
flags: HideLabel
|
||||
|
||||
- type: entity
|
||||
id: D26
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: BlueprintPlacer
|
||||
blueprint: /Maps/Salvage/small-ai-survey-drone.yml
|
||||
components:
|
||||
- type: IFF
|
||||
flags: HideLabel
|
||||
|
||||
- type: entity
|
||||
id: D27
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: BlueprintPlacer
|
||||
blueprint: /Maps/Salvage/small-1.yml
|
||||
components:
|
||||
- type: IFF
|
||||
flags: HideLabel
|
||||
|
||||
- type: entity
|
||||
id: D28
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: BlueprintPlacer
|
||||
blueprint: /Maps/Salvage/small-2.yml
|
||||
components:
|
||||
- type: IFF
|
||||
flags: HideLabel
|
||||
|
||||
- type: entity
|
||||
id: D29
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: BlueprintPlacer
|
||||
blueprint: /Maps/Salvage/small-3.yml
|
||||
components:
|
||||
- type: IFF
|
||||
flags: HideLabel
|
||||
|
||||
- type: entity
|
||||
id: D30
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: BlueprintPlacer
|
||||
blueprint: /Maps/Salvage/medium-pirate.yml
|
||||
components:
|
||||
- type: IFF
|
||||
flags: HideLabel
|
||||
|
||||
- type: entity
|
||||
id: D31
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: BlueprintPlacer
|
||||
blueprint: /Maps/Salvage/medium-ruined-emergency-shuttle.yml
|
||||
components:
|
||||
- type: IFF
|
||||
flags: HideLabel
|
||||
|
||||
- type: entity
|
||||
id: D32
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: BlueprintPlacer
|
||||
blueprint: /Maps/Salvage/medium-library.yml
|
||||
components:
|
||||
- type: IFF
|
||||
flags: HideLabel
|
||||
|
||||
- type: entity
|
||||
id: D33
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: BlueprintPlacer
|
||||
blueprint: /WhiteMaps/D/1.yml
|
||||
components:
|
||||
- type: IFF
|
||||
flags: HideLabel
|
||||
|
||||
- type: entity
|
||||
id: D34
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: BlueprintPlacer
|
||||
blueprint: /WhiteMaps/D/2.yml
|
||||
components:
|
||||
- type: IFF
|
||||
flags: HideLabel
|
||||
|
||||
- type: entity
|
||||
id: D35
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: BlueprintPlacer
|
||||
blueprint: /WhiteMaps/D/3.yml
|
||||
components:
|
||||
- type: IFF
|
||||
flags: HideLabel
|
||||
|
||||
- type: entity
|
||||
id: D36
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: BlueprintPlacer
|
||||
blueprint: /WhiteMaps/D/4.yml
|
||||
components:
|
||||
- type: IFF
|
||||
flags: HideLabel
|
||||
|
||||
- type: entity
|
||||
id: D37
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: BlueprintPlacer
|
||||
blueprint: /WhiteMaps/D/5.yml
|
||||
components:
|
||||
- type: IFF
|
||||
flags: HideLabel
|
||||
|
||||
- type: entity
|
||||
id: D38
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: BlueprintPlacer
|
||||
blueprint: /WhiteMaps/D/6.yml
|
||||
components:
|
||||
- type: IFF
|
||||
flags: HideLabel
|
||||
|
||||
- type: entity
|
||||
id: D39
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: BlueprintPlacer
|
||||
blueprint: /WhiteMaps/D/7.yml
|
||||
components:
|
||||
- type: IFF
|
||||
flags: HideLabel
|
||||
|
||||
- type: entity
|
||||
id: D40
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: BlueprintPlacer
|
||||
blueprint: /WhiteMaps/D/8.yml
|
||||
components:
|
||||
- type: IFF
|
||||
flags: HideLabel
|
||||
|
||||
- type: entity
|
||||
id: D41
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: BlueprintPlacer
|
||||
blueprint: /WhiteMaps/D/9.yml
|
||||
components:
|
||||
- type: IFF
|
||||
flags: HideLabel
|
||||
|
||||
- type: entity
|
||||
id: D42
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: BlueprintPlacer
|
||||
blueprint: /WhiteMaps/D/10.yml
|
||||
components:
|
||||
- type: IFF
|
||||
flags: HideLabel
|
||||
|
||||
- type: entity
|
||||
id: D43
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: BlueprintPlacer
|
||||
blueprint: /WhiteMaps/D/11.yml
|
||||
components:
|
||||
- type: IFF
|
||||
flags: HideLabel
|
||||
|
||||
- type: entity
|
||||
id: D44
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: BlueprintPlacer
|
||||
blueprint: /WhiteMaps/D/12.yml
|
||||
components:
|
||||
- type: IFF
|
||||
flags: HideLabel
|
||||
|
||||
- type: entity
|
||||
id: D45
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: BlueprintPlacer
|
||||
blueprint: /WhiteMaps/D/13.yml
|
||||
components:
|
||||
- type: IFF
|
||||
flags: HideLabel
|
||||
|
||||
- type: entity
|
||||
id: D46
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: BlueprintPlacer
|
||||
blueprint: /WhiteMaps/D/14.yml
|
||||
components:
|
||||
- type: IFF
|
||||
flags: HideLabel
|
||||
|
||||
- type: entity
|
||||
id: D47
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: BlueprintPlacer
|
||||
blueprint: /WhiteMaps/D/15.yml
|
||||
components:
|
||||
- type: IFF
|
||||
flags: HideLabel
|
||||
|
||||
- type: entity
|
||||
id: D48
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: BlueprintPlacer
|
||||
blueprint: /WhiteMaps/D/16.yml
|
||||
components:
|
||||
- type: IFF
|
||||
flags: HideLabel
|
||||
|
||||
- type: entity
|
||||
id: D49
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: BlueprintPlacer
|
||||
blueprint: /WhiteMaps/D/17.yml
|
||||
components:
|
||||
- type: IFF
|
||||
flags: HideLabel
|
||||
|
||||
- type: entity
|
||||
id: D50
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: BlueprintPlacer
|
||||
blueprint: /WhiteMaps/D/18.yml
|
||||
components:
|
||||
- type: IFF
|
||||
flags: HideLabel
|
||||
|
||||
- type: entity
|
||||
id: D51
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: BlueprintPlacer
|
||||
blueprint: /WhiteMaps/D/19.yml
|
||||
components:
|
||||
- type: IFF
|
||||
flags: HideLabel
|
||||
|
||||
- type: entity
|
||||
id: D52
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: BlueprintPlacer
|
||||
blueprint: /WhiteMaps/D/20.yml
|
||||
components:
|
||||
- type: IFF
|
||||
flags: HideLabel
|
||||
|
||||
- type: entity
|
||||
id: D53
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: BlueprintPlacer
|
||||
blueprint: /WhiteMaps/D/21.yml
|
||||
components:
|
||||
- type: IFF
|
||||
flags: HideLabel
|
||||
|
||||
- type: entity
|
||||
id: D55
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: BlueprintPlacer
|
||||
blueprint: /WhiteMaps/D/23.yml
|
||||
components:
|
||||
- type: IFF
|
||||
flags: HideLabel
|
||||
|
||||
- type: entity
|
||||
id: D56
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: BlueprintPlacer
|
||||
blueprint: /WhiteMaps/D/24.yml
|
||||
components:
|
||||
- type: IFF
|
||||
flags: HideLabel
|
||||
|
||||
- type: entity
|
||||
id: D57
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: BlueprintPlacer
|
||||
blueprint: /WhiteMaps/D/25.yml
|
||||
components:
|
||||
- type: IFF
|
||||
flags: HideLabel
|
||||
|
||||
- type: entity
|
||||
id: D58
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: BlueprintPlacer
|
||||
blueprint: /WhiteMaps/D/26.yml
|
||||
components:
|
||||
- type: IFF
|
||||
flags: HideLabel
|
||||
|
||||
- type: entity
|
||||
id: D59
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: BlueprintPlacer
|
||||
blueprint: /WhiteMaps/D/27.yml
|
||||
components:
|
||||
- type: IFF
|
||||
flags: HideLabel
|
||||
|
||||
- type: entity
|
||||
id: D60
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: BlueprintPlacer
|
||||
blueprint: /WhiteMaps/D/28.yml
|
||||
components:
|
||||
- type: IFF
|
||||
flags: HideLabel
|
||||
|
||||
- type: entity
|
||||
id: D61
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: BlueprintPlacer
|
||||
blueprint: /WhiteMaps/D/29.yml
|
||||
components:
|
||||
- type: IFF
|
||||
flags: HideLabel
|
||||
|
||||
- type: entity
|
||||
id: D62
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: BlueprintPlacer
|
||||
blueprint: /WhiteMaps/D/30.yml
|
||||
components:
|
||||
- type: IFF
|
||||
flags: HideLabel
|
||||
|
||||
- type: entity
|
||||
id: D63
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: BlueprintPlacer
|
||||
blueprint: /WhiteMaps/D/31.yml
|
||||
components:
|
||||
- type: IFF
|
||||
flags: HideLabel
|
||||
|
||||
- type: entity
|
||||
id: D64
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: BlueprintPlacer
|
||||
blueprint: /WhiteMaps/D/32.yml
|
||||
components:
|
||||
- type: IFF
|
||||
flags: HideLabel
|
||||
|
||||
- type: entity
|
||||
id: D65
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: BlueprintPlacer
|
||||
blueprint: /WhiteMaps/D/33.yml
|
||||
components:
|
||||
- type: IFF
|
||||
flags: HideLabel
|
||||
8
Resources/Prototypes/Maps/Pools/White.yml
Normal file
8
Resources/Prototypes/Maps/Pools/White.yml
Normal file
@@ -0,0 +1,8 @@
|
||||
- type: gameMapPool
|
||||
id: WhiteMapPool
|
||||
maps:
|
||||
- WhiteBagel
|
||||
- WhiteBox
|
||||
- WhiteKettle
|
||||
- WhiteMeta
|
||||
- WonderBox
|
||||
55
Resources/Prototypes/Maps/White/Whitebagel.yml
Normal file
55
Resources/Prototypes/Maps/White/Whitebagel.yml
Normal file
@@ -0,0 +1,55 @@
|
||||
- type: gameMap
|
||||
id: WhiteBagel
|
||||
mapName: 'Bagel Station'
|
||||
mapPath: /Maps/White/Whitebagel.yml
|
||||
minPlayers: 0
|
||||
stations:
|
||||
Bagel:
|
||||
stationProto: StandardNanotrasenStation
|
||||
components:
|
||||
- type: StationNameSetup
|
||||
mapNameTemplate: '{0} Bagel Station {1}'
|
||||
nameGenerator:
|
||||
!type:NanotrasenNameGenerator
|
||||
prefixCreator: '14'
|
||||
- type: StationEmergencyShuttle
|
||||
emergencyShuttlePath: /Maps/Shuttles/emergency_lox.yml
|
||||
- type: StationJobs
|
||||
overflowJobs:
|
||||
- Passenger
|
||||
availableJobs:
|
||||
CargoTechnician: [ 3, 3 ]
|
||||
Passenger: [ -1, -1 ]
|
||||
Bartender: [ 2, 2 ]
|
||||
Botanist: [ 3, 3 ]
|
||||
Chef: [ 2, 2 ]
|
||||
Clown: [ 1, 1 ]
|
||||
Janitor: [ 3, 3 ]
|
||||
Mime: [ 1, 1 ]
|
||||
Captain: [ 1, 1 ]
|
||||
HeadOfPersonnel: [ 1, 1 ]
|
||||
ChiefEngineer: [ 1, 1 ]
|
||||
StationEngineer: [ 4, 4 ]
|
||||
ChiefMedicalOfficer: [ 1, 1 ]
|
||||
MedicalDoctor: [ 3, 3 ]
|
||||
Chemist: [ 2, 3 ]
|
||||
ResearchDirector: [ 1, 1 ]
|
||||
Scientist: [ 4, 4 ]
|
||||
HeadOfSecurity: [ 1, 1 ]
|
||||
SecurityOfficer: [ 4, 4 ]
|
||||
Chaplain: [ 1, 1 ]
|
||||
Warden: [ 1, 1 ]
|
||||
Librarian: [ 1, 1 ]
|
||||
Lawyer: [ 2, 2 ]
|
||||
Quartermaster: [ 1, 1 ]
|
||||
SalvageSpecialist: [ 3, 3 ]
|
||||
Musician: [ 1, 1 ]
|
||||
AtmosphericTechnician: [ 3, 3 ]
|
||||
TechnicalAssistant: [ 2, 2 ]
|
||||
MedicalIntern: [ 2, 2 ]
|
||||
ServiceWorker: [ 2, 2 ]
|
||||
SecurityCadet: [ 2, 2 ]
|
||||
Reporter: [ 2, 2 ]
|
||||
Detective: [ 1, 1 ]
|
||||
ResearchAssistant: [ 2, 2 ]
|
||||
Paramedic: [ 1, 1 ]
|
||||
54
Resources/Prototypes/Maps/White/Whitebox.yml
Normal file
54
Resources/Prototypes/Maps/White/Whitebox.yml
Normal file
@@ -0,0 +1,54 @@
|
||||
- type: gameMap
|
||||
id: WhiteBox
|
||||
mapName: 'Box Station'
|
||||
mapPath: /Maps/White/Whitebox.yml
|
||||
minPlayers: 0
|
||||
stations:
|
||||
Boxstation:
|
||||
stationProto: StandardNanotrasenStation
|
||||
components:
|
||||
- type: StationNameSetup
|
||||
mapNameTemplate: '{0} Box Station {1}'
|
||||
nameGenerator:
|
||||
!type:NanotrasenNameGenerator
|
||||
prefixCreator: 'TG'
|
||||
- type: StationEmergencyShuttle
|
||||
emergencyShuttlePath: /Maps/Shuttles/emergency_box.yml
|
||||
- type: StationJobs
|
||||
overflowJobs:
|
||||
- Passenger
|
||||
availableJobs:
|
||||
CargoTechnician: [ 3, 3 ]
|
||||
Passenger: [ -1, -1 ]
|
||||
Bartender: [ 2, 2 ]
|
||||
Botanist: [ 3, 3 ]
|
||||
Chef: [ 2, 2 ]
|
||||
Clown: [ 1, 1 ]
|
||||
Janitor: [ 3, 3 ]
|
||||
Mime: [ 1, 1 ]
|
||||
Captain: [ 1, 1 ]
|
||||
HeadOfPersonnel: [ 1, 1 ]
|
||||
ChiefEngineer: [ 1, 1 ]
|
||||
StationEngineer: [ 4, 4 ]
|
||||
ChiefMedicalOfficer: [ 1, 1 ]
|
||||
MedicalDoctor: [ 4, 4 ]
|
||||
Chemist: [ 3, 3 ]
|
||||
ResearchDirector: [ 1, 1 ]
|
||||
Scientist: [ 5, 5 ]
|
||||
HeadOfSecurity: [ 1, 1 ]
|
||||
SecurityOfficer: [ 6, 6 ]
|
||||
Chaplain: [ 2, 2 ]
|
||||
Warden: [ 1, 1 ]
|
||||
Librarian: [ 2, 2 ]
|
||||
Lawyer: [ 2, 2 ]
|
||||
Quartermaster: [ 1, 1 ]
|
||||
SalvageSpecialist: [ 3, 3 ]
|
||||
Musician: [ 2, 2 ]
|
||||
AtmosphericTechnician: [ 3, 3 ]
|
||||
TechnicalAssistant: [ 4, 4 ]
|
||||
MedicalIntern: [ 4, 4 ]
|
||||
ServiceWorker: [ 4, 4 ]
|
||||
SecurityCadet: [ 4, 4 ]
|
||||
Detective: [ 1, 1 ]
|
||||
ResearchAssistant: [ 4, 4 ]
|
||||
Paramedic: [ 1, 1 ]
|
||||
55
Resources/Prototypes/Maps/White/Whitekettle.yml
Normal file
55
Resources/Prototypes/Maps/White/Whitekettle.yml
Normal file
@@ -0,0 +1,55 @@
|
||||
- type: gameMap
|
||||
id: WhiteKettle
|
||||
mapName: 'Kettle'
|
||||
mapPath: /Maps/White/Whitekettle.yml
|
||||
minPlayers: 0
|
||||
stations:
|
||||
Kettle:
|
||||
stationProto: StandardNanotrasenStation
|
||||
components:
|
||||
- type: StationNameSetup
|
||||
mapNameTemplate: '{0} Kettle {1}'
|
||||
nameGenerator:
|
||||
!type:NanotrasenNameGenerator
|
||||
prefixCreator: '14'
|
||||
- type: StationEmergencyShuttle
|
||||
emergencyShuttlePath: /Maps/Shuttles/emergency_courser.yml
|
||||
- type: StationJobs
|
||||
overflowJobs:
|
||||
- Passenger
|
||||
availableJobs:
|
||||
CargoTechnician: [ 3, 3 ]
|
||||
Passenger: [ -1, -1 ]
|
||||
Bartender: [ 1, 2 ]
|
||||
Botanist: [ 3, 4 ]
|
||||
Chef: [ 2, 3 ]
|
||||
Clown: [ 1, 2 ]
|
||||
Janitor: [ 4, 4 ]
|
||||
Mime: [ 1, 2 ]
|
||||
Captain: [ 1, 1 ]
|
||||
HeadOfPersonnel: [ 1, 1 ]
|
||||
ChiefEngineer: [ 1, 1 ]
|
||||
StationEngineer: [ 4, 6 ]
|
||||
ChiefMedicalOfficer: [ 1, 1 ]
|
||||
MedicalDoctor: [ 3, 5 ]
|
||||
Chemist: [ 2, 3 ]
|
||||
ResearchDirector: [ 1, 1 ]
|
||||
Scientist: [ 4, 6 ]
|
||||
ResearchAssistant: [ 4, 4 ]
|
||||
HeadOfSecurity: [ 1, 1 ]
|
||||
SecurityOfficer: [ 4, 6 ]
|
||||
Chaplain: [ 1, 2 ]
|
||||
Warden: [ 1, 1 ]
|
||||
Librarian: [ 1, 2 ]
|
||||
Lawyer: [ 2, 3 ]
|
||||
Quartermaster: [ 1, 1 ]
|
||||
SalvageSpecialist: [ 3, 4 ]
|
||||
Musician: [ 1, 2 ]
|
||||
AtmosphericTechnician: [ 3, 3 ]
|
||||
TechnicalAssistant: [ 4, 4 ]
|
||||
MedicalIntern: [ 4, 4 ]
|
||||
ServiceWorker: [ 4, 4 ]
|
||||
SecurityCadet: [ 4, 4 ]
|
||||
Detective: [ 1, 1 ]
|
||||
Zookeeper: [1, 1]
|
||||
Paramedic: [2, 2]
|
||||
54
Resources/Prototypes/Maps/White/Whitemeta.yml
Normal file
54
Resources/Prototypes/Maps/White/Whitemeta.yml
Normal file
@@ -0,0 +1,54 @@
|
||||
- type: gameMap
|
||||
id: WhiteMeta
|
||||
mapName: 'Meta Station'
|
||||
mapPath: /Maps/White/Whitemeta.yml
|
||||
minPlayers: 0
|
||||
stations:
|
||||
Meta:
|
||||
stationProto: StandardNanotrasenStation
|
||||
components:
|
||||
- type: StationNameSetup
|
||||
mapNameTemplate: '{0} Meta Station {1}'
|
||||
nameGenerator:
|
||||
!type:NanotrasenNameGenerator
|
||||
prefixCreator: 'TG'
|
||||
- type: StationEmergencyShuttle
|
||||
emergencyShuttlePath: /Maps/Shuttles/emergency_courser.yml
|
||||
- type: StationJobs
|
||||
overflowJobs:
|
||||
- Passenger
|
||||
availableJobs:
|
||||
CargoTechnician: [ 3, 3 ]
|
||||
Passenger: [ -1, -1 ]
|
||||
Bartender: [ 2, 2 ]
|
||||
Botanist: [ 3, 3 ]
|
||||
Chef: [ 2, 2 ]
|
||||
Clown: [ 1, 1 ]
|
||||
Janitor: [ 3, 3 ]
|
||||
Mime: [ 1, 1 ]
|
||||
Captain: [ 1, 1 ]
|
||||
HeadOfPersonnel: [ 1, 1 ]
|
||||
ChiefEngineer: [ 1, 1 ]
|
||||
StationEngineer: [ 4, 4 ]
|
||||
ChiefMedicalOfficer: [ 1, 1 ]
|
||||
MedicalDoctor: [ 4, 4 ]
|
||||
Chemist: [ 3, 3 ]
|
||||
ResearchDirector: [ 1, 1 ]
|
||||
Scientist: [ 6, 6 ]
|
||||
HeadOfSecurity: [ 1, 1 ]
|
||||
SecurityOfficer: [ 6, 6 ]
|
||||
Chaplain: [ 2, 2 ]
|
||||
Warden: [ 1, 1 ]
|
||||
Librarian: [ 2, 2 ]
|
||||
Lawyer: [ 2, 2 ]
|
||||
Quartermaster: [ 1, 1 ]
|
||||
SalvageSpecialist: [ 3, 3 ]
|
||||
Musician: [ 2, 2 ]
|
||||
AtmosphericTechnician: [ 3, 3 ]
|
||||
TechnicalAssistant: [ 4, 4 ]
|
||||
MedicalIntern: [ 4, 4 ]
|
||||
ServiceWorker: [ 4, 4 ]
|
||||
SecurityCadet: [ 4, 4 ]
|
||||
Detective: [ 1, 1 ]
|
||||
ResearchAssistant: [ 4, 4 ]
|
||||
Paramedic: [ 1, 1 ]
|
||||
@@ -10,17 +10,116 @@
|
||||
- id: AsteroidDebrisSmall
|
||||
- id: AsteroidDebrisMedium
|
||||
- id: AsteroidDebrisLarge
|
||||
prob: 0.7
|
||||
- id: AsteroidDebrisLarger
|
||||
prob: 0.4
|
||||
- type: NoiseDrivenDebrisSelector
|
||||
noiseChannel: Wreck
|
||||
debrisTable:
|
||||
- id: ScrapDebrisSmall
|
||||
- id: ScrapDebrisMedium
|
||||
- id: ScrapDebrisLarge
|
||||
prob: 0.5
|
||||
- type: NoiseRangeCarver
|
||||
ranges:
|
||||
- 0.4, 0.6
|
||||
noiseChannel: Carver
|
||||
|
||||
- type: spaceBiome
|
||||
id: CombatRimAsteroidsStandard
|
||||
priority: 0
|
||||
noiseRanges: {}
|
||||
chunkComponents:
|
||||
- type: DebrisFeaturePlacerController
|
||||
densityNoiseChannel: Density
|
||||
- type: SimpleDebrisSelector
|
||||
debrisTable:
|
||||
- id: AfterlightAsteroidDebrisSmall
|
||||
- id: AfterlightAsteroidDebrisMedium
|
||||
prob: 0.7
|
||||
- id: AfterlightAsteroidDebrisLarge
|
||||
prob: 0.5
|
||||
- id: AfterlightAsteroidDebrisLarger
|
||||
prob: 0.3
|
||||
- id: AsteroidDebrisSmall
|
||||
- id: AsteroidDebrisMedium
|
||||
- id: AsteroidDebrisLarge
|
||||
- id: AsteroidDebrisLarger
|
||||
- type: NoiseDrivenDebrisSelector
|
||||
noiseChannel: Wreck
|
||||
debrisTable:
|
||||
- id: CombatRimScrapDebrisSmall
|
||||
- id: CombatRimScrapDebrisMedium
|
||||
prob: 0.7
|
||||
- id: CombatRimScrapDebrisLarge
|
||||
prob: 0.5
|
||||
- id: ScrapDebrisSmall
|
||||
- id: ScrapDebrisMedium
|
||||
- id: ScrapDebrisLarge
|
||||
- type: NoiseRangeCarver
|
||||
ranges:
|
||||
- 0.4, 0.6
|
||||
noiseChannel: Carver
|
||||
|
||||
- type: spaceBiome
|
||||
id: CombatRimAsteroidsWastes
|
||||
priority: 1
|
||||
noiseRanges:
|
||||
Temperature:
|
||||
- 0.0, 0.3
|
||||
chunkComponents:
|
||||
- type: DebrisFeaturePlacerController
|
||||
densityNoiseChannel: Density
|
||||
- type: SimpleDebrisSelector
|
||||
debrisTable:
|
||||
- id: AfterlightAsteroidDebrisSmall
|
||||
- id: AfterlightAsteroidDebrisMedium
|
||||
- id: AfterlightAsteroidDebrisLarge
|
||||
prob: 0.7
|
||||
- id: AfterlightAsteroidDebrisLarger
|
||||
prob: 0.4
|
||||
- id: AsteroidDebrisSmall
|
||||
- id: AsteroidDebrisMedium
|
||||
- id: AsteroidDebrisLarge
|
||||
- id: AsteroidDebrisLarger
|
||||
- type: NoiseDrivenDebrisSelector
|
||||
noiseChannel: Wreck
|
||||
debrisTable:
|
||||
- id: CombatRimScrapDebrisSmall
|
||||
- id: CombatRimScrapDebrisMedium
|
||||
prob: 0.1
|
||||
- id: CombatRimScrapDebrisLarge
|
||||
prob: 0.05
|
||||
- id: ScrapDebrisSmall
|
||||
- id: ScrapDebrisMedium
|
||||
- id: ScrapDebrisLarge
|
||||
- type: NoiseRangeCarver
|
||||
ranges:
|
||||
- 0.3, 0.7
|
||||
noiseChannel: Carver
|
||||
|
||||
- type: spaceBiome
|
||||
id: CombatRimAsteroidsEmptiness
|
||||
priority: 2
|
||||
noiseRanges:
|
||||
Temperature:
|
||||
- 0.0, 0.1
|
||||
Wreck:
|
||||
- 0.5, 0.6
|
||||
chunkComponents:
|
||||
- type: DebrisFeaturePlacerController
|
||||
densityNoiseChannel: Density
|
||||
- type: SimpleDebrisSelector
|
||||
debrisTable:
|
||||
- id: AfterlightAsteroidDebrisSmall
|
||||
- id: AfterlightAsteroidDebrisMedium
|
||||
prob: 0.7
|
||||
- id: AfterlightAsteroidDebrisLarge
|
||||
prob: 0.5
|
||||
- id: AfterlightAsteroidDebrisLarger
|
||||
prob: 0.2
|
||||
- id: AsteroidDebrisSmall
|
||||
- id: AsteroidDebrisMedium
|
||||
- id: AsteroidDebrisLarge
|
||||
- id: AsteroidDebrisLarger
|
||||
- type: NoiseRangeCarver
|
||||
ranges:
|
||||
- 0.3, 0.8
|
||||
noiseChannel: Carver
|
||||
|
||||
@@ -6,4 +6,129 @@
|
||||
biomes:
|
||||
- AsteroidsFallback
|
||||
- Failsafe
|
||||
- AsteroidsStandard
|
||||
- CombatRimAsteroidsStandard
|
||||
- CombatRimAsteroidsWastes
|
||||
- CombatRimAsteroidsEmptiness
|
||||
- type: StructurePlacement
|
||||
structures:
|
||||
- entity: D1
|
||||
amountRange: 1, 1
|
||||
- entity: D2
|
||||
amountRange: 1, 1
|
||||
- entity: D4
|
||||
amountRange: 1, 1
|
||||
- entity: D5
|
||||
amountRange: 1, 1
|
||||
- entity: D6
|
||||
amountRange: 1, 1
|
||||
- entity: D7
|
||||
amountRange: 1, 1
|
||||
- entity: D8
|
||||
amountRange: 1, 1
|
||||
- entity: D10
|
||||
amountRange: 1, 1
|
||||
- entity: D11
|
||||
amountRange: 1, 1
|
||||
- entity: D14
|
||||
amountRange: 1, 1
|
||||
- entity: D15
|
||||
amountRange: 1, 1
|
||||
- entity: D16
|
||||
amountRange: 1, 1
|
||||
- entity: D17
|
||||
amountRange: 1, 1
|
||||
- entity: D18
|
||||
amountRange: 1, 1
|
||||
- entity: D19
|
||||
amountRange: 1, 1
|
||||
- entity: D20
|
||||
amountRange: 1, 1
|
||||
- entity: D21
|
||||
amountRange: 1, 1
|
||||
- entity: D22
|
||||
amountRange: 1, 1
|
||||
- entity: D23
|
||||
amountRange: 1, 1
|
||||
- entity: D24
|
||||
amountRange: 1, 1
|
||||
- entity: D25
|
||||
amountRange: 1, 1
|
||||
- entity: D26
|
||||
amountRange: 1, 1
|
||||
- entity: D27
|
||||
amountRange: 1, 1
|
||||
- entity: D28
|
||||
amountRange: 1, 1
|
||||
- entity: D29
|
||||
amountRange: 1, 1
|
||||
- entity: D30
|
||||
amountRange: 1, 1
|
||||
- entity: D31
|
||||
amountRange: 1, 1
|
||||
- entity: D32
|
||||
amountRange: 1, 1
|
||||
- entity: D33
|
||||
amountRange: 1, 1
|
||||
- entity: D34
|
||||
amountRange: 1, 1
|
||||
- entity: D35
|
||||
amountRange: 1, 1
|
||||
- entity: D36
|
||||
amountRange: 1, 1
|
||||
- entity: D37
|
||||
amountRange: 1, 1
|
||||
- entity: D38
|
||||
amountRange: 1, 1
|
||||
- entity: D39
|
||||
amountRange: 1, 1
|
||||
- entity: D40
|
||||
amountRange: 1, 1
|
||||
- entity: D41
|
||||
amountRange: 1, 1
|
||||
- entity: D42
|
||||
amountRange: 1, 1
|
||||
- entity: D43
|
||||
amountRange: 1, 1
|
||||
- entity: D44
|
||||
amountRange: 1, 1
|
||||
- entity: D45
|
||||
amountRange: 1, 1
|
||||
- entity: D46
|
||||
amountRange: 1, 1
|
||||
- entity: D47
|
||||
amountRange: 1, 1
|
||||
- entity: D48
|
||||
amountRange: 1, 1
|
||||
- entity: D49
|
||||
amountRange: 1, 1
|
||||
- entity: D50
|
||||
amountRange: 1, 1
|
||||
- entity: D51
|
||||
amountRange: 1, 1
|
||||
- entity: D52
|
||||
amountRange: 1, 1
|
||||
- entity: D53
|
||||
amountRange: 1, 1
|
||||
- entity: D55
|
||||
amountRange: 1, 1
|
||||
- entity: D56
|
||||
amountRange: 1, 1
|
||||
- entity: D57
|
||||
amountRange: 1, 1
|
||||
- entity: D58
|
||||
amountRange: 1, 1
|
||||
- entity: D59
|
||||
amountRange: 1, 1
|
||||
- entity: D60
|
||||
amountRange: 1, 1
|
||||
- entity: D61
|
||||
amountRange: 1, 1
|
||||
- entity: D62
|
||||
amountRange: 1, 1
|
||||
- entity: D63
|
||||
amountRange: 1, 1
|
||||
- entity: D64
|
||||
amountRange: 1, 1
|
||||
- entity: D65
|
||||
amountRange: 1, 1
|
||||
|
||||
|
||||
399
Resources/WhiteMaps/D/1.yml
Normal file
399
Resources/WhiteMaps/D/1.yml
Normal file
@@ -0,0 +1,399 @@
|
||||
meta:
|
||||
format: 5
|
||||
postmapinit: false
|
||||
tilemap:
|
||||
0: Space
|
||||
4: FloorAsteroidCoarseSand0
|
||||
94: Lattice
|
||||
entities:
|
||||
- proto: ""
|
||||
entities:
|
||||
- uid: 1
|
||||
components:
|
||||
- type: MetaData
|
||||
- pos: 53.87402,4.9270763
|
||||
parent: invalid
|
||||
type: Transform
|
||||
- chunks:
|
||||
0,0:
|
||||
ind: 0,0
|
||||
tiles: BAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAABAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
0,-1:
|
||||
ind: 0,-1
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
-1,0:
|
||||
ind: -1,0
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
-1,-1:
|
||||
ind: -1,-1
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAA==
|
||||
type: MapGrid
|
||||
- type: Broadphase
|
||||
- angularDamping: 0.05
|
||||
linearDamping: 0.05
|
||||
fixedRotation: False
|
||||
bodyType: Dynamic
|
||||
type: Physics
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- type: OccluderTree
|
||||
- type: SpreaderGrid
|
||||
- type: Shuttle
|
||||
- nextUpdate: 196.1442294
|
||||
type: GridPathfinding
|
||||
- gravityShakeSound: !type:SoundPathSpecifier
|
||||
path: /Audio/Effects/alert.ogg
|
||||
type: Gravity
|
||||
- chunkCollection:
|
||||
version: 2
|
||||
nodes: []
|
||||
type: DecalGrid
|
||||
- version: 2
|
||||
data:
|
||||
tiles:
|
||||
0,0:
|
||||
0: 26215
|
||||
uniqueMixes:
|
||||
- volume: 2500
|
||||
temperature: 293.15
|
||||
moles:
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
chunkSize: 4
|
||||
type: GridAtmosphere
|
||||
- type: GasTileOverlay
|
||||
- type: RadiationGridResistance
|
||||
- proto: AsteroidRock
|
||||
entities:
|
||||
- uid: 2
|
||||
components:
|
||||
- pos: 1.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 4
|
||||
components:
|
||||
- pos: -2.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 5
|
||||
components:
|
||||
- pos: -2.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 7
|
||||
components:
|
||||
- pos: -1.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 8
|
||||
components:
|
||||
- pos: -1.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 9
|
||||
components:
|
||||
- pos: -0.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 10
|
||||
components:
|
||||
- pos: -0.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 11
|
||||
components:
|
||||
- pos: -0.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 12
|
||||
components:
|
||||
- pos: 0.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 13
|
||||
components:
|
||||
- pos: 0.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 14
|
||||
components:
|
||||
- pos: 0.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 15
|
||||
components:
|
||||
- pos: -0.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 16
|
||||
components:
|
||||
- pos: -1.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 17
|
||||
components:
|
||||
- pos: 1.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 18
|
||||
components:
|
||||
- pos: 2.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 19
|
||||
components:
|
||||
- pos: 2.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 20
|
||||
components:
|
||||
- pos: 3.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 21
|
||||
components:
|
||||
- pos: 3.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 22
|
||||
components:
|
||||
- pos: 4.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 23
|
||||
components:
|
||||
- pos: 4.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 24
|
||||
components:
|
||||
- pos: 5.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 25
|
||||
components:
|
||||
- pos: 5.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 26
|
||||
components:
|
||||
- pos: 4.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 27
|
||||
components:
|
||||
- pos: 3.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 28
|
||||
components:
|
||||
- pos: 2.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 29
|
||||
components:
|
||||
- pos: 3.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 30
|
||||
components:
|
||||
- pos: 4.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 32
|
||||
components:
|
||||
- pos: 3.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 33
|
||||
components:
|
||||
- pos: 3.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 34
|
||||
components:
|
||||
- pos: 2.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 35
|
||||
components:
|
||||
- pos: 2.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 37
|
||||
components:
|
||||
- pos: 1.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 38
|
||||
components:
|
||||
- pos: 0.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 39
|
||||
components:
|
||||
- pos: 0.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 41
|
||||
components:
|
||||
- pos: -0.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 42
|
||||
components:
|
||||
- pos: -1.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 43
|
||||
components:
|
||||
- pos: -1.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 44
|
||||
components:
|
||||
- pos: -2.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 45
|
||||
components:
|
||||
- pos: -1.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 46
|
||||
components:
|
||||
- pos: -0.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 47
|
||||
components:
|
||||
- pos: 0.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 48
|
||||
components:
|
||||
- pos: 1.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 49
|
||||
components:
|
||||
- pos: 0.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 50
|
||||
components:
|
||||
- pos: 0.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 51
|
||||
components:
|
||||
- pos: -0.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 52
|
||||
components:
|
||||
- pos: -0.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 53
|
||||
components:
|
||||
- pos: -0.5,-3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: DrinkMugHeart
|
||||
entities:
|
||||
- uid: 36
|
||||
components:
|
||||
- pos: 1.5174866,1.4636278
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextAttack: 179.9623134
|
||||
type: MeleeWeapon
|
||||
- nextSound: 180.1623134
|
||||
type: EmitSoundOnCollide
|
||||
- proto: Grille
|
||||
entities:
|
||||
- uid: 57
|
||||
components:
|
||||
- pos: 5.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: GrilleBroken
|
||||
entities:
|
||||
- uid: 31
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 2.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 58
|
||||
components:
|
||||
- pos: -3.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 59
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -4.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 60
|
||||
components:
|
||||
- pos: -4.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 61
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: 4.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 62
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 5.5,-3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: WallSolid
|
||||
entities:
|
||||
- uid: 3
|
||||
components:
|
||||
- pos: -0.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 6
|
||||
components:
|
||||
- pos: -1.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 40
|
||||
components:
|
||||
- pos: -2.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 54
|
||||
components:
|
||||
- pos: -3.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 55
|
||||
components:
|
||||
- pos: -4.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 56
|
||||
components:
|
||||
- pos: -5.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
...
|
||||
441
Resources/WhiteMaps/D/10.yml
Normal file
441
Resources/WhiteMaps/D/10.yml
Normal file
@@ -0,0 +1,441 @@
|
||||
meta:
|
||||
format: 5
|
||||
postmapinit: false
|
||||
tilemap:
|
||||
0: Space
|
||||
69: FloorSteel
|
||||
94: Lattice
|
||||
95: Plating
|
||||
entities:
|
||||
- proto: ""
|
||||
entities:
|
||||
- uid: 1
|
||||
components:
|
||||
- type: MetaData
|
||||
- pos: 13.339504,-1.4361249
|
||||
parent: invalid
|
||||
type: Transform
|
||||
- chunks:
|
||||
0,0:
|
||||
ind: 0,0
|
||||
tiles: XwAAAF4AAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAAAXwAAAEUAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAEUAAABFAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAF4AAABfAAAARQAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABFAAAAXgAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAAXgAAAEUAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF4AAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABeAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
0,-1:
|
||||
ind: 0,-1
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
-1,0:
|
||||
ind: -1,0
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
type: MapGrid
|
||||
- type: Broadphase
|
||||
- angularDamping: 0.05
|
||||
linearDamping: 0.05
|
||||
fixedRotation: False
|
||||
bodyType: Dynamic
|
||||
type: Physics
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- type: OccluderTree
|
||||
- type: SpreaderGrid
|
||||
- type: Shuttle
|
||||
- nextUpdate: 131.0333041
|
||||
type: GridPathfinding
|
||||
- gravityShakeSound: !type:SoundPathSpecifier
|
||||
path: /Audio/Effects/alert.ogg
|
||||
type: Gravity
|
||||
- chunkCollection:
|
||||
version: 2
|
||||
nodes:
|
||||
- node:
|
||||
color: '#DE3A3A96'
|
||||
id: QuarterTileOverlayGreyscale270
|
||||
decals:
|
||||
0: 1,1
|
||||
1: 1,2
|
||||
2: 0,3
|
||||
3: -1,3
|
||||
4: -2,3
|
||||
type: DecalGrid
|
||||
- version: 2
|
||||
data:
|
||||
tiles:
|
||||
0,0:
|
||||
0: 6001
|
||||
0,1:
|
||||
0: 1
|
||||
uniqueMixes:
|
||||
- volume: 2500
|
||||
temperature: 293.15
|
||||
moles:
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
chunkSize: 4
|
||||
type: GridAtmosphere
|
||||
- type: GasTileOverlay
|
||||
- type: RadiationGridResistance
|
||||
- proto: CableApcExtension
|
||||
entities:
|
||||
- uid: 38
|
||||
components:
|
||||
- pos: 3.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 39
|
||||
components:
|
||||
- pos: 2.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 40
|
||||
components:
|
||||
- pos: 2.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 41
|
||||
components:
|
||||
- pos: 2.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 42
|
||||
components:
|
||||
- pos: 2.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 43
|
||||
components:
|
||||
- pos: 2.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 44
|
||||
components:
|
||||
- pos: 2.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 45
|
||||
components:
|
||||
- pos: 2.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 46
|
||||
components:
|
||||
- pos: 1.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 47
|
||||
components:
|
||||
- pos: 0.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 48
|
||||
components:
|
||||
- pos: -0.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 49
|
||||
components:
|
||||
- pos: -1.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- proto: CableApcStack1
|
||||
entities:
|
||||
- uid: 35
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 2.89814,3.283545
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 314.1082534
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 36
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 1.6381397,6.028545
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 315.7770418
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 37
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 0.5581398,3.823545
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 317.41063
|
||||
type: EmitSoundOnCollide
|
||||
- proto: CableHV
|
||||
entities:
|
||||
- uid: 23
|
||||
components:
|
||||
- pos: 2.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 25
|
||||
components:
|
||||
- pos: 2.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 26
|
||||
components:
|
||||
- pos: 2.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 27
|
||||
components:
|
||||
- pos: 2.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 28
|
||||
components:
|
||||
- pos: 2.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 29
|
||||
components:
|
||||
- pos: 1.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 30
|
||||
components:
|
||||
- pos: 0.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 31
|
||||
components:
|
||||
- pos: -0.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 32
|
||||
components:
|
||||
- pos: 2.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 33
|
||||
components:
|
||||
- pos: 2.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 34
|
||||
components:
|
||||
- pos: 2.5,7.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- proto: GrilleBroken
|
||||
entities:
|
||||
- uid: 13
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 4.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 15
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: -1.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 16
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 0.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 18
|
||||
components:
|
||||
- pos: 0.5,8.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: ReinforcedGirder
|
||||
entities:
|
||||
- uid: 9
|
||||
components:
|
||||
- pos: 4.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 14
|
||||
components:
|
||||
- pos: -2.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: SheetSteel1
|
||||
entities:
|
||||
- uid: 20
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 3.6093426,-2.298963
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 275.7919387
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 21
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 1.8993435,-0.47646284
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 276.3426467
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 22
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 2.5068436,9.190214
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 277.7282035
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 24
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -1.4622707,5.230214
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 279.2972429
|
||||
type: EmitSoundOnCollide
|
||||
- proto: SignDirectionalHop
|
||||
entities:
|
||||
- uid: 19
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 0.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: SignDirectionalSec
|
||||
entities:
|
||||
- uid: 17
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 4.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: WallReinforced
|
||||
entities:
|
||||
- uid: 2
|
||||
components:
|
||||
- pos: 4.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 3
|
||||
components:
|
||||
- pos: 0.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 4
|
||||
components:
|
||||
- pos: 0.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 5
|
||||
components:
|
||||
- pos: 0.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 6
|
||||
components:
|
||||
- pos: 0.5,7.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 7
|
||||
components:
|
||||
- pos: -0.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 8
|
||||
components:
|
||||
- pos: 4.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 10
|
||||
components:
|
||||
- pos: 0.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 11
|
||||
components:
|
||||
- pos: -0.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 12
|
||||
components:
|
||||
- pos: -1.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
...
|
||||
288
Resources/WhiteMaps/D/11.yml
Normal file
288
Resources/WhiteMaps/D/11.yml
Normal file
@@ -0,0 +1,288 @@
|
||||
meta:
|
||||
format: 5
|
||||
postmapinit: false
|
||||
tilemap:
|
||||
0: Space
|
||||
69: FloorSteel
|
||||
94: Lattice
|
||||
95: Plating
|
||||
entities:
|
||||
- proto: ""
|
||||
entities:
|
||||
- uid: 1
|
||||
components:
|
||||
- type: MetaData
|
||||
- pos: 10.588213,-4.8383546
|
||||
parent: invalid
|
||||
type: Transform
|
||||
- chunks:
|
||||
0,0:
|
||||
ind: 0,0
|
||||
tiles: RQAAAEUAAABFAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABFAAAARQAAAEUAAABfAAAARQAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAEUAAABFAAAARQAAAF4AAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEUAAABfAAAARQAAAF4AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF4AAAAAAAAAXgAAAF8AAABeAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXgAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
-1,0:
|
||||
ind: -1,0
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
type: MapGrid
|
||||
- type: Broadphase
|
||||
- angularDamping: 0.05
|
||||
linearDamping: 0.05
|
||||
fixedRotation: False
|
||||
bodyType: Dynamic
|
||||
type: Physics
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- type: OccluderTree
|
||||
- type: SpreaderGrid
|
||||
- type: Shuttle
|
||||
- nextUpdate: 167.3886271
|
||||
type: GridPathfinding
|
||||
- gravityShakeSound: !type:SoundPathSpecifier
|
||||
path: /Audio/Effects/alert.ogg
|
||||
type: Gravity
|
||||
- chunkCollection:
|
||||
version: 2
|
||||
nodes:
|
||||
- node:
|
||||
color: '#FFFFFFFF'
|
||||
id: Arrows
|
||||
decals:
|
||||
20: 5,3
|
||||
21: 3,3
|
||||
22: 1,3
|
||||
23: -1,3
|
||||
- node:
|
||||
color: '#FFFFFFFF'
|
||||
id: Bot
|
||||
decals:
|
||||
17: 1,4
|
||||
18: 3,4
|
||||
19: 5,4
|
||||
- node:
|
||||
color: '#A4610696'
|
||||
id: QuarterTileOverlayGreyscale180
|
||||
decals:
|
||||
0: 5,1
|
||||
1: 4,1
|
||||
2: 3,1
|
||||
3: 2,1
|
||||
4: 1,1
|
||||
5: 0,1
|
||||
6: 5,3
|
||||
7: 4,3
|
||||
8: 3,3
|
||||
9: 2,3
|
||||
10: 1,3
|
||||
11: 0,3
|
||||
12: -1,3
|
||||
- node:
|
||||
color: '#FFFFFFFF'
|
||||
id: WarnLineW
|
||||
decals:
|
||||
13: 4,5
|
||||
14: 3,5
|
||||
15: 2,5
|
||||
16: 1,5
|
||||
type: DecalGrid
|
||||
- version: 2
|
||||
data:
|
||||
tiles:
|
||||
0,0:
|
||||
0: 13105
|
||||
0,1:
|
||||
0: 17
|
||||
uniqueMixes:
|
||||
- volume: 2500
|
||||
temperature: 293.15
|
||||
moles:
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
chunkSize: 4
|
||||
type: GridAtmosphere
|
||||
- type: GasTileOverlay
|
||||
- type: RadiationGridResistance
|
||||
- proto: BannerCargo
|
||||
entities:
|
||||
- uid: 18
|
||||
components:
|
||||
- pos: 0.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: Catwalk
|
||||
entities:
|
||||
- uid: 7
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: 5.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 9
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: 3.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 10
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: 3.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 11
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: 1.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 12
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: 1.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 13
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: 5.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 15
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: -0.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 16
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: -0.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: CrateEmptySpawner
|
||||
entities:
|
||||
- uid: 25
|
||||
components:
|
||||
- pos: 1.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 26
|
||||
components:
|
||||
- pos: 1.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 27
|
||||
components:
|
||||
- pos: -0.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: GrilleBroken
|
||||
entities:
|
||||
- uid: 8
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: -0.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: SalvageMaterialCrateSpawner
|
||||
entities:
|
||||
- uid: 28
|
||||
components:
|
||||
- pos: 5.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: SheetSteel1
|
||||
entities:
|
||||
- uid: 17
|
||||
components:
|
||||
- pos: 6.9401703,4.549718
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 312.9897438
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 19
|
||||
components:
|
||||
- pos: 8.229729,8.239718
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 310.7721182
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 20
|
||||
components:
|
||||
- pos: 6.3172283,7.542218
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 311.9721729
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 21
|
||||
components:
|
||||
- pos: 2.9351702,7.407218
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 313.7716578
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 22
|
||||
components:
|
||||
- pos: 4.51017,9.319718
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 314.3056731
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 23
|
||||
components:
|
||||
- pos: 0.6401701,6.169718
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 315.3553751
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 24
|
||||
components:
|
||||
- pos: -1.2273302,1.8722179
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 316.1107626
|
||||
type: EmitSoundOnCollide
|
||||
- proto: SignCargoDock
|
||||
entities:
|
||||
- uid: 14
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: 4.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: WallSolid
|
||||
entities:
|
||||
- uid: 2
|
||||
components:
|
||||
- pos: 0.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 3
|
||||
components:
|
||||
- pos: 1.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 4
|
||||
components:
|
||||
- pos: 2.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 5
|
||||
components:
|
||||
- pos: 3.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 6
|
||||
components:
|
||||
- pos: 4.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
...
|
||||
275
Resources/WhiteMaps/D/12.yml
Normal file
275
Resources/WhiteMaps/D/12.yml
Normal file
@@ -0,0 +1,275 @@
|
||||
meta:
|
||||
format: 5
|
||||
postmapinit: false
|
||||
tilemap:
|
||||
0: Space
|
||||
50: FloorLino
|
||||
94: Lattice
|
||||
95: Plating
|
||||
entities:
|
||||
- proto: ""
|
||||
entities:
|
||||
- uid: 1
|
||||
components:
|
||||
- type: MetaData
|
||||
- pos: 7.0722,-1.7378107
|
||||
parent: invalid
|
||||
type: Transform
|
||||
- chunks:
|
||||
0,0:
|
||||
ind: 0,0
|
||||
tiles: MgAAADIAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADIAAAAyAAAAMgAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAyAAAAMgAAADIAAABfAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAF8AAAAyAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADIAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
-1,0:
|
||||
ind: -1,0
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAMgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAADIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAADIAAABfAAAAMgAAADIAAAAyAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF8AAAAyAAAAMgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAF8AAAAyAAAAMgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF4AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
0,-1:
|
||||
ind: 0,-1
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
-1,-1:
|
||||
ind: -1,-1
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAA==
|
||||
type: MapGrid
|
||||
- type: Broadphase
|
||||
- angularDamping: 0.05
|
||||
linearDamping: 0.05
|
||||
fixedRotation: False
|
||||
bodyType: Dynamic
|
||||
type: Physics
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- type: OccluderTree
|
||||
- type: SpreaderGrid
|
||||
- type: Shuttle
|
||||
- nextUpdate: 89.1986176
|
||||
type: GridPathfinding
|
||||
- gravityShakeSound: !type:SoundPathSpecifier
|
||||
path: /Audio/Effects/alert.ogg
|
||||
type: Gravity
|
||||
- chunkCollection:
|
||||
version: 2
|
||||
nodes: []
|
||||
type: DecalGrid
|
||||
- version: 2
|
||||
data:
|
||||
tiles:
|
||||
0,0:
|
||||
0: 13107
|
||||
0,1:
|
||||
0: 1
|
||||
uniqueMixes:
|
||||
- volume: 2500
|
||||
temperature: 293.15
|
||||
moles:
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
chunkSize: 4
|
||||
type: GridAtmosphere
|
||||
- type: GasTileOverlay
|
||||
- proto: ChairWood
|
||||
entities:
|
||||
- uid: 7
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: -0.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 8
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 1.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 9
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 1.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 10
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: -0.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 11
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -1.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 12
|
||||
components:
|
||||
- pos: -2.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: DrinkVodkaBottleFull
|
||||
entities:
|
||||
- uid: 28
|
||||
components:
|
||||
- pos: 0.32625866,2.1388068
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextAttack: 225.2802337
|
||||
type: MeleeWeapon
|
||||
- nextSound: 225.4802337
|
||||
type: EmitSoundOnCollide
|
||||
- proto: FoodDonutJellySlugcat
|
||||
entities:
|
||||
- uid: 18
|
||||
components:
|
||||
- pos: 0.32042837,2.710394
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 156.1663624
|
||||
type: EmitSoundOnCollide
|
||||
- proto: FoodPlate
|
||||
entities:
|
||||
- uid: 14
|
||||
components:
|
||||
- pos: 0.71958303,1.760205
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 117.3815098
|
||||
type: EmitSoundOnCollide
|
||||
- proto: FoodPlateSmall
|
||||
entities:
|
||||
- uid: 15
|
||||
components:
|
||||
- pos: 0.31458282,2.2552052
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 118.9318472
|
||||
type: EmitSoundOnCollide
|
||||
- proto: FoodPlateTrash
|
||||
entities:
|
||||
- uid: 13
|
||||
components:
|
||||
- pos: -2.295951,4.730205
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 115.5854831
|
||||
type: EmitSoundOnCollide
|
||||
- proto: ForkPlastic
|
||||
entities:
|
||||
- uid: 16
|
||||
components:
|
||||
- pos: 0.73103523,2.4046721
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 127.3157669
|
||||
type: EmitSoundOnCollide
|
||||
- proto: SheetSteel1
|
||||
entities:
|
||||
- uid: 2
|
||||
components:
|
||||
- pos: 3.8298721,1.4673262
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 179.5274
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 19
|
||||
components:
|
||||
- pos: 5.2248726,2.4348264
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 180.181328
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 20
|
||||
components:
|
||||
- pos: 3.5598726,3.402326
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 180.7988339
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 21
|
||||
components:
|
||||
- pos: 1.751276,3.9561124
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 182.032161
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 22
|
||||
components:
|
||||
- pos: 0.5587764,5.5986123
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 182.6820956
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 23
|
||||
components:
|
||||
- pos: -1.3537235,6.611112
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 184.2118226
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 24
|
||||
components:
|
||||
- pos: -3.6937237,3.3936124
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 184.9322244
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 25
|
||||
components:
|
||||
- pos: -5.8987236,4.5861125
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 185.5971295
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 26
|
||||
components:
|
||||
- pos: -5.4037237,3.3486123
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 186.2138603
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 27
|
||||
components:
|
||||
- pos: -2.1799889,0.58111227
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 187.3965125
|
||||
type: EmitSoundOnCollide
|
||||
- proto: SpoonPlastic
|
||||
entities:
|
||||
- uid: 17
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: -1.676465,4.723485
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 137.3826569
|
||||
type: EmitSoundOnCollide
|
||||
- proto: TableWood
|
||||
entities:
|
||||
- uid: 3
|
||||
components:
|
||||
- pos: 0.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 4
|
||||
components:
|
||||
- pos: 0.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 5
|
||||
components:
|
||||
- pos: -2.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 6
|
||||
components:
|
||||
- pos: -1.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
...
|
||||
215
Resources/WhiteMaps/D/13.yml
Normal file
215
Resources/WhiteMaps/D/13.yml
Normal file
@@ -0,0 +1,215 @@
|
||||
meta:
|
||||
format: 5
|
||||
postmapinit: false
|
||||
tilemap:
|
||||
0: Space
|
||||
49: FloorLaundry
|
||||
94: Lattice
|
||||
95: Plating
|
||||
entities:
|
||||
- proto: ""
|
||||
entities:
|
||||
- uid: 1
|
||||
components:
|
||||
- type: MetaData
|
||||
- pos: 2.9068992,-2.952049
|
||||
parent: invalid
|
||||
type: Transform
|
||||
- chunks:
|
||||
0,0:
|
||||
ind: 0,0
|
||||
tiles: XwAAADEAAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAxAAAAMQAAAF8AAAAxAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAMQAAADEAAAAxAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
0,-1:
|
||||
ind: 0,-1
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
type: MapGrid
|
||||
- type: Broadphase
|
||||
- angularDamping: 0.05
|
||||
linearDamping: 0.05
|
||||
fixedRotation: False
|
||||
bodyType: Dynamic
|
||||
type: Physics
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- type: OccluderTree
|
||||
- type: SpreaderGrid
|
||||
- type: Shuttle
|
||||
- nextUpdate: 152.9966904
|
||||
type: GridPathfinding
|
||||
- gravityShakeSound: !type:SoundPathSpecifier
|
||||
path: /Audio/Effects/alert.ogg
|
||||
type: Gravity
|
||||
- chunkCollection:
|
||||
version: 2
|
||||
nodes: []
|
||||
type: DecalGrid
|
||||
- version: 2
|
||||
data:
|
||||
tiles:
|
||||
0,0:
|
||||
0: 14193
|
||||
uniqueMixes:
|
||||
- volume: 2500
|
||||
temperature: 293.15
|
||||
moles:
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
chunkSize: 4
|
||||
type: GridAtmosphere
|
||||
- type: GasTileOverlay
|
||||
- type: RadiationGridResistance
|
||||
- proto: BoxTrashbag
|
||||
entities:
|
||||
- uid: 16
|
||||
components:
|
||||
- pos: 1.4916518,2.6406403
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 314.039195
|
||||
type: EmitSoundOnCollide
|
||||
- proto: ClosetJanitorFilled
|
||||
entities:
|
||||
- uid: 13
|
||||
components:
|
||||
- pos: 1.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: GrilleBroken
|
||||
entities:
|
||||
- uid: 9
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 0.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 10
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 3.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: JanitorialTrolley
|
||||
entities:
|
||||
- uid: 15
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 3.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: MopItem
|
||||
entities:
|
||||
- uid: 14
|
||||
components:
|
||||
- pos: 1.4359796,1.9436302
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextAttack: 204.831202
|
||||
type: MeleeWeapon
|
||||
- nextSound: 205.031202
|
||||
type: EmitSoundOnCollide
|
||||
- proto: RandomSpawner
|
||||
entities:
|
||||
- uid: 2
|
||||
components:
|
||||
- pos: 4.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 17
|
||||
components:
|
||||
- pos: 2.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: SheetSteel1
|
||||
entities:
|
||||
- uid: 18
|
||||
components:
|
||||
- pos: 3.451115,-0.56166244
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 329.0090552
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 19
|
||||
components:
|
||||
- pos: 5.6526403,1.3508375
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 330.0605879
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 20
|
||||
components:
|
||||
- pos: 4.5951405,2.3633375
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 331.9457557
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 21
|
||||
components:
|
||||
- pos: 1.2401559,-0.56651735
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 335.673478
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 22
|
||||
components:
|
||||
- pos: 0.43928266,-1.2366626
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 333.7919432
|
||||
type: EmitSoundOnCollide
|
||||
- proto: Table
|
||||
entities:
|
||||
- uid: 11
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 1.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 12
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 1.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: WallSolid
|
||||
entities:
|
||||
- uid: 3
|
||||
components:
|
||||
- pos: 0.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 4
|
||||
components:
|
||||
- pos: 0.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 5
|
||||
components:
|
||||
- pos: 0.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 6
|
||||
components:
|
||||
- pos: 0.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 7
|
||||
components:
|
||||
- pos: 1.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 8
|
||||
components:
|
||||
- pos: 2.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
...
|
||||
393
Resources/WhiteMaps/D/14.yml
Normal file
393
Resources/WhiteMaps/D/14.yml
Normal file
@@ -0,0 +1,393 @@
|
||||
meta:
|
||||
format: 5
|
||||
postmapinit: false
|
||||
tilemap:
|
||||
0: Space
|
||||
82: FloorWhite
|
||||
94: Lattice
|
||||
95: Plating
|
||||
entities:
|
||||
- proto: ""
|
||||
entities:
|
||||
- uid: 1
|
||||
components:
|
||||
- type: MetaData
|
||||
- pos: 4.2498226,8.691597
|
||||
parent: invalid
|
||||
type: Transform
|
||||
- chunks:
|
||||
0,0:
|
||||
ind: 0,0
|
||||
tiles: UgAAAFIAAABSAAAAUgAAAFIAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABeAAAAUgAAAF4AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
0,-1:
|
||||
ind: 0,-1
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAFIAAABSAAAAUgAAAFIAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAFIAAABSAAAAUgAAAFIAAABfAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
-1,0:
|
||||
ind: -1,0
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
-1,-1:
|
||||
ind: -1,-1
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAA==
|
||||
type: MapGrid
|
||||
- type: Broadphase
|
||||
- angularDamping: 0.05
|
||||
linearDamping: 0.05
|
||||
fixedRotation: False
|
||||
bodyType: Dynamic
|
||||
type: Physics
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- type: OccluderTree
|
||||
- type: SpreaderGrid
|
||||
- type: Shuttle
|
||||
- nextUpdate: 292.0329856
|
||||
type: GridPathfinding
|
||||
- gravityShakeSound: !type:SoundPathSpecifier
|
||||
path: /Audio/Effects/alert.ogg
|
||||
type: Gravity
|
||||
- chunkCollection:
|
||||
version: 2
|
||||
nodes:
|
||||
- node:
|
||||
color: '#9FED5896'
|
||||
id: QuarterTileOverlayGreyscale180
|
||||
decals:
|
||||
0: 0,0
|
||||
1: 1,0
|
||||
2: 2,0
|
||||
3: 3,0
|
||||
4: 4,0
|
||||
- node:
|
||||
color: '#9FED5896'
|
||||
id: ThreeQuarterTileOverlayGreyscale
|
||||
decals:
|
||||
5: 3,-1
|
||||
6: 1,-1
|
||||
- node:
|
||||
color: '#9FED5896'
|
||||
id: ThreeQuarterTileOverlayGreyscale180
|
||||
decals:
|
||||
7: 2,-2
|
||||
8: 4,-2
|
||||
- node:
|
||||
color: '#9FED5896'
|
||||
id: ThreeQuarterTileOverlayGreyscale270
|
||||
decals:
|
||||
11: 1,-2
|
||||
12: 3,-2
|
||||
13: 5,-2
|
||||
- node:
|
||||
color: '#9FED5896'
|
||||
id: ThreeQuarterTileOverlayGreyscale90
|
||||
decals:
|
||||
9: 4,-1
|
||||
10: 2,-1
|
||||
type: DecalGrid
|
||||
- version: 2
|
||||
data:
|
||||
tiles:
|
||||
0,0:
|
||||
0: 15
|
||||
0,-1:
|
||||
0: 58880
|
||||
uniqueMixes:
|
||||
- volume: 2500
|
||||
temperature: 293.15
|
||||
moles:
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
chunkSize: 4
|
||||
type: GridAtmosphere
|
||||
- type: GasTileOverlay
|
||||
- type: RadiationGridResistance
|
||||
- proto: Bed
|
||||
entities:
|
||||
- uid: 22
|
||||
components:
|
||||
- pos: 2.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 23
|
||||
components:
|
||||
- pos: 4.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: BedsheetGreen
|
||||
entities:
|
||||
- uid: 25
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 4.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 227.9070704
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 26
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 2.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 228.9124611
|
||||
type: EmitSoundOnCollide
|
||||
- proto: Grille
|
||||
entities:
|
||||
- uid: 9
|
||||
components:
|
||||
- pos: 3.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 10
|
||||
components:
|
||||
- pos: 2.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 11
|
||||
components:
|
||||
- pos: 1.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: GrilleBroken
|
||||
entities:
|
||||
- uid: 2
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 7.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 12
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: 0.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: ShardGlass
|
||||
entities:
|
||||
- uid: 21
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 0.4057436,-2.2793694
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextAttack: 165.6102515
|
||||
type: MeleeWeapon
|
||||
- nextSound: 165.8102515
|
||||
type: EmitSoundOnCollide
|
||||
- proto: ShardGlassReinforced
|
||||
entities:
|
||||
- uid: 18
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 5.5327044,-0.42311954
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextAttack: 157.3222185
|
||||
type: MeleeWeapon
|
||||
- nextSound: 157.5222185
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 19
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 6.9566345,-0.42311954
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextAttack: 160.5331273
|
||||
type: MeleeWeapon
|
||||
- nextSound: 160.7331273
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 20
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 6.0941343,0.42063046
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextAttack: 161.0589634
|
||||
type: MeleeWeapon
|
||||
- nextSound: 161.2589634
|
||||
type: EmitSoundOnCollide
|
||||
- proto: SheetSteel1
|
||||
entities:
|
||||
- uid: 33
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 1.5471563,4.4714355
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 423.1994127
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 34
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 2.5034065,2.5214357
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 423.9320362
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 35
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 0.9471564,1.6589355
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 424.5321254
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 36
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -1.2090936,0.55268574
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 426.3816463
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 37
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 6.694681,-1.3686829
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 429.9531029
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 38
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 5.532181,0.5438175
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 431.2821979
|
||||
type: EmitSoundOnCollide
|
||||
- proto: SignVirology
|
||||
entities:
|
||||
- uid: 24
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 6.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: Syringe
|
||||
entities:
|
||||
- uid: 39
|
||||
components:
|
||||
- pos: 2.4710684,-0.4873724
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 489.5822391
|
||||
type: EmitSoundOnCollide
|
||||
- proto: TableFrame
|
||||
entities:
|
||||
- uid: 32
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 4.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: TableGlass
|
||||
entities:
|
||||
- uid: 31
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 2.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: WallSolid
|
||||
entities:
|
||||
- uid: 3
|
||||
components:
|
||||
- pos: 6.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 4
|
||||
components:
|
||||
- pos: 5.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 5
|
||||
components:
|
||||
- pos: 4.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: WindoorMedicalLocked
|
||||
entities:
|
||||
- uid: 29
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 1.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 30
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 3.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: Window
|
||||
entities:
|
||||
- uid: 6
|
||||
components:
|
||||
- pos: 3.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 7
|
||||
components:
|
||||
- pos: 2.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 8
|
||||
components:
|
||||
- pos: 1.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: WindowReinforcedDirectional
|
||||
entities:
|
||||
- uid: 13
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 1.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 14
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 1.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 15
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 3.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 16
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 3.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 17
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 5.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 27
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 4.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 28
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 2.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
...
|
||||
280
Resources/WhiteMaps/D/15.yml
Normal file
280
Resources/WhiteMaps/D/15.yml
Normal file
@@ -0,0 +1,280 @@
|
||||
meta:
|
||||
format: 5
|
||||
postmapinit: false
|
||||
tilemap:
|
||||
0: Space
|
||||
72: FloorSteelDirty
|
||||
94: Lattice
|
||||
95: Plating
|
||||
entities:
|
||||
- proto: ""
|
||||
entities:
|
||||
- uid: 1
|
||||
components:
|
||||
- type: MetaData
|
||||
- pos: 2.738078,6.355337
|
||||
parent: invalid
|
||||
type: Transform
|
||||
- chunks:
|
||||
0,0:
|
||||
ind: 0,0
|
||||
tiles: SAAAAF4AAABfAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABIAAAASAAAAF8AAABeAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABIAAAAXwAAAEgAAABfAAAASAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAF8AAABIAAAAXwAAAEgAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
-1,0:
|
||||
ind: -1,0
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
0,-1:
|
||||
ind: 0,-1
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
type: MapGrid
|
||||
- type: Broadphase
|
||||
- angularDamping: 0.05
|
||||
linearDamping: 0.05
|
||||
fixedRotation: False
|
||||
bodyType: Dynamic
|
||||
type: Physics
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- type: OccluderTree
|
||||
- type: SpreaderGrid
|
||||
- type: Shuttle
|
||||
- nextUpdate: 147.8436326
|
||||
type: GridPathfinding
|
||||
- gravityShakeSound: !type:SoundPathSpecifier
|
||||
path: /Audio/Effects/alert.ogg
|
||||
type: Gravity
|
||||
- chunkCollection:
|
||||
version: 2
|
||||
nodes:
|
||||
- node:
|
||||
color: '#D4D4D496'
|
||||
id: QuarterTileOverlayGreyscale
|
||||
decals:
|
||||
0: 1,1
|
||||
1: 2,1
|
||||
- node:
|
||||
angle: 0.7155849933176751 rad
|
||||
color: '#D4291693'
|
||||
id: revolution
|
||||
decals:
|
||||
2: 2.0835028,0.7718358
|
||||
type: DecalGrid
|
||||
- version: 2
|
||||
data:
|
||||
tiles:
|
||||
0,0:
|
||||
0: 13105
|
||||
0,1:
|
||||
0: 17
|
||||
uniqueMixes:
|
||||
- volume: 2500
|
||||
temperature: 293.15
|
||||
moles:
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
chunkSize: 4
|
||||
type: GridAtmosphere
|
||||
- type: GasTileOverlay
|
||||
- type: RadiationGridResistance
|
||||
- proto: Airlock
|
||||
entities:
|
||||
- uid: 17
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 4.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 18
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 2.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 19
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 0.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: FoodDonutJellySlugcat
|
||||
entities:
|
||||
- uid: 25
|
||||
components:
|
||||
- pos: 4.5203924,3.5165386
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 350.1194719
|
||||
type: EmitSoundOnCollide
|
||||
- proto: PosterLegitEnlist
|
||||
entities:
|
||||
- uid: 24
|
||||
components:
|
||||
- pos: 3.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: SheetSteel1
|
||||
entities:
|
||||
- uid: 20
|
||||
components:
|
||||
- pos: 4.8059335,0.4046135
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 375.8961595
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 26
|
||||
components:
|
||||
- pos: 6.36814,1.2671137
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 374.9858015
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 28
|
||||
components:
|
||||
- pos: -0.4121256,1.0233636
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 377.2184644
|
||||
type: EmitSoundOnCollide
|
||||
- proto: SmallLight
|
||||
entities:
|
||||
- uid: 27
|
||||
components:
|
||||
- pos: 1.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 29
|
||||
components:
|
||||
- pos: 0.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 30
|
||||
components:
|
||||
- pos: 2.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 31
|
||||
components:
|
||||
- pos: 4.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: ToiletDirtyWater
|
||||
entities:
|
||||
- uid: 21
|
||||
components:
|
||||
- pos: 4.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 22
|
||||
components:
|
||||
- pos: 2.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- isSeatUp: True
|
||||
type: Toilet
|
||||
- uid: 23
|
||||
components:
|
||||
- pos: 0.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: WallSolid
|
||||
entities:
|
||||
- uid: 2
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 5.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 3
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 3.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 4
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 5.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 5
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -0.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 6
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -0.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 7
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 1.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 8
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 1.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 9
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 1.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 10
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 5.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 11
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 0.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 12
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -0.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 13
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 4.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 14
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 2.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 15
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 3.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 16
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 3.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
...
|
||||
186
Resources/WhiteMaps/D/16.yml
Normal file
186
Resources/WhiteMaps/D/16.yml
Normal file
@@ -0,0 +1,186 @@
|
||||
meta:
|
||||
format: 5
|
||||
postmapinit: false
|
||||
tilemap:
|
||||
0: Space
|
||||
23: FloorDark
|
||||
94: Lattice
|
||||
95: Plating
|
||||
entities:
|
||||
- proto: ""
|
||||
entities:
|
||||
- uid: 1
|
||||
components:
|
||||
- type: MetaData
|
||||
- pos: 5.4065905,5.218735
|
||||
parent: invalid
|
||||
type: Transform
|
||||
- chunks:
|
||||
0,0:
|
||||
ind: 0,0
|
||||
tiles: FwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
-1,0:
|
||||
ind: -1,0
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
type: MapGrid
|
||||
- type: Broadphase
|
||||
- angularDamping: 0.05
|
||||
linearDamping: 0.05
|
||||
fixedRotation: False
|
||||
bodyType: Dynamic
|
||||
type: Physics
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- type: OccluderTree
|
||||
- type: SpreaderGrid
|
||||
- type: Shuttle
|
||||
- nextUpdate: 180.5097762
|
||||
type: GridPathfinding
|
||||
- gravityShakeSound: !type:SoundPathSpecifier
|
||||
path: /Audio/Effects/alert.ogg
|
||||
type: Gravity
|
||||
- chunkCollection:
|
||||
version: 2
|
||||
nodes:
|
||||
- node:
|
||||
color: '#DE3A3A96'
|
||||
id: QuarterTileOverlayGreyscale
|
||||
decals:
|
||||
0: -2,1
|
||||
1: -1,1
|
||||
2: 0,1
|
||||
type: DecalGrid
|
||||
- type: RadiationGridResistance
|
||||
- version: 2
|
||||
data:
|
||||
tiles:
|
||||
0,0:
|
||||
0: 4913
|
||||
-1,0:
|
||||
0: 36544
|
||||
-1,1:
|
||||
0: 8
|
||||
uniqueMixes:
|
||||
- volume: 2500
|
||||
temperature: 293.15
|
||||
moles:
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
chunkSize: 4
|
||||
type: GridAtmosphere
|
||||
- type: GasTileOverlay
|
||||
- proto: Grille
|
||||
entities:
|
||||
- uid: 4
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -1.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 5
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 0.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: GrilleBroken
|
||||
entities:
|
||||
- uid: 8
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: -0.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 9
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: -0.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: ReinforcedWindow
|
||||
entities:
|
||||
- uid: 3
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -1.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 7
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 0.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: ShardGlassReinforced
|
||||
entities:
|
||||
- uid: 11
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 0.6893463,0.524951
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextAttack: 189.507796
|
||||
type: MeleeWeapon
|
||||
- nextSound: 189.707796
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 12
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: -0.6794038,2.3249512
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextAttack: 190.8935444
|
||||
type: MeleeWeapon
|
||||
- nextSound: 191.0935444
|
||||
type: EmitSoundOnCollide
|
||||
- proto: SheetSteel1
|
||||
entities:
|
||||
- uid: 13
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 1.2508655,1.2597241
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 209.7788712
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 14
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -0.62413454,4.5972247
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 211.4935333
|
||||
type: EmitSoundOnCollide
|
||||
- proto: TableFrame
|
||||
entities:
|
||||
- uid: 10
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 0.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: WallSolid
|
||||
entities:
|
||||
- uid: 2
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -2.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 6
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 1.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
...
|
||||
362
Resources/WhiteMaps/D/17.yml
Normal file
362
Resources/WhiteMaps/D/17.yml
Normal file
@@ -0,0 +1,362 @@
|
||||
meta:
|
||||
format: 5
|
||||
postmapinit: false
|
||||
tilemap:
|
||||
0: Space
|
||||
94: Lattice
|
||||
95: Plating
|
||||
entities:
|
||||
- proto: ""
|
||||
entities:
|
||||
- uid: 1
|
||||
components:
|
||||
- type: MetaData
|
||||
- pos: 3.7451544,6.974985
|
||||
parent: invalid
|
||||
type: Transform
|
||||
- chunks:
|
||||
0,0:
|
||||
ind: 0,0
|
||||
tiles: XwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
0,-1:
|
||||
ind: 0,-1
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
-1,-1:
|
||||
ind: -1,-1
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAA==
|
||||
type: MapGrid
|
||||
- type: Broadphase
|
||||
- angularDamping: 0.05
|
||||
linearDamping: 0.05
|
||||
fixedRotation: False
|
||||
bodyType: Dynamic
|
||||
type: Physics
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- type: OccluderTree
|
||||
- type: SpreaderGrid
|
||||
- type: Shuttle
|
||||
- nextUpdate: 160.3285322
|
||||
type: GridPathfinding
|
||||
- gravityShakeSound: !type:SoundPathSpecifier
|
||||
path: /Audio/Effects/alert.ogg
|
||||
type: Gravity
|
||||
- chunkCollection:
|
||||
version: 2
|
||||
nodes: []
|
||||
type: DecalGrid
|
||||
- version: 2
|
||||
data:
|
||||
tiles:
|
||||
0,0:
|
||||
0: 11
|
||||
1: 4
|
||||
0,-1:
|
||||
0: 58880
|
||||
uniqueMixes:
|
||||
- volume: 2500
|
||||
temperature: 293.15
|
||||
moles:
|
||||
- 21.824879
|
||||
- 82.10312
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- volume: 2500
|
||||
temperature: 5000
|
||||
moles:
|
||||
- 6666.982
|
||||
- 0
|
||||
- 0
|
||||
- 6666.982
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
chunkSize: 4
|
||||
type: GridAtmosphere
|
||||
- type: GasTileOverlay
|
||||
- type: RadiationGridResistance
|
||||
- proto: AtmosFixInstantPlasmaFireMarker
|
||||
entities:
|
||||
- uid: 37
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 2.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: BlastDoor
|
||||
entities:
|
||||
- uid: 17
|
||||
components:
|
||||
- pos: 2.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: GasOutletInjector
|
||||
entities:
|
||||
- uid: 18
|
||||
components:
|
||||
- pos: 1.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 115.4365229
|
||||
type: EmitSoundOnCollide
|
||||
- proto: GasPipeBend
|
||||
entities:
|
||||
- uid: 27
|
||||
components:
|
||||
- pos: 3.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- nextSound: 146.0101673
|
||||
type: EmitSoundOnCollide
|
||||
- proto: GasPipeStraight
|
||||
entities:
|
||||
- uid: 30
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 2.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- nextSound: 175.970036
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 31
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 2.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- nextSound: 176.5894146
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 32
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 3.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- nextSound: 183.302466
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 33
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 3.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- nextSound: 183.302466
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 34
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 1.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- nextSound: 185.3862263
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 35
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 1.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- nextSound: 185.3862263
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 36
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 1.5,-3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- nextSound: 185.3862263
|
||||
type: EmitSoundOnCollide
|
||||
- proto: GasPipeTJunction
|
||||
entities:
|
||||
- uid: 28
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 3.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- nextSound: 169.2024365
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 29
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 3.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- nextSound: 172.2857082
|
||||
type: EmitSoundOnCollide
|
||||
- proto: GasVentScrubber
|
||||
entities:
|
||||
- uid: 19
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: 2.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 128.5868767
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 20
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: 2.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 129.1025985
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 21
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: 1.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 129.7660449
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 22
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: 1.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 130.2595567
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 23
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: 2.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 130.79562
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 24
|
||||
components:
|
||||
- pos: 3.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 133.336557
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 25
|
||||
components:
|
||||
- pos: 3.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 134.6667306
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 26
|
||||
components:
|
||||
- pos: 3.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 135.18639
|
||||
type: EmitSoundOnCollide
|
||||
- proto: ReinforcedWindow
|
||||
entities:
|
||||
- uid: 2
|
||||
components:
|
||||
- pos: 4.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 3
|
||||
components:
|
||||
- pos: 4.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 4
|
||||
components:
|
||||
- pos: 4.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 5
|
||||
components:
|
||||
- pos: 4.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 6
|
||||
components:
|
||||
- pos: 4.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 7
|
||||
components:
|
||||
- pos: 3.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 8
|
||||
components:
|
||||
- pos: 2.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 9
|
||||
components:
|
||||
- pos: 1.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 10
|
||||
components:
|
||||
- pos: 0.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 11
|
||||
components:
|
||||
- pos: 0.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 12
|
||||
components:
|
||||
- pos: 0.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 13
|
||||
components:
|
||||
- pos: 0.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 14
|
||||
components:
|
||||
- pos: 0.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: WallReinforced
|
||||
entities:
|
||||
- uid: 15
|
||||
components:
|
||||
- pos: 1.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 16
|
||||
components:
|
||||
- pos: 3.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
...
|
||||
182
Resources/WhiteMaps/D/18.yml
Normal file
182
Resources/WhiteMaps/D/18.yml
Normal file
@@ -0,0 +1,182 @@
|
||||
meta:
|
||||
format: 5
|
||||
postmapinit: false
|
||||
tilemap:
|
||||
0: Space
|
||||
4: FloorAsteroidCoarseSand0
|
||||
entities:
|
||||
- proto: ""
|
||||
entities:
|
||||
- uid: 1
|
||||
components:
|
||||
- type: MetaData
|
||||
- pos: 2.9771347,3.8007069
|
||||
parent: invalid
|
||||
type: Transform
|
||||
- chunks:
|
||||
0,0:
|
||||
ind: 0,0
|
||||
tiles: BAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
-1,0:
|
||||
ind: -1,0
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
type: MapGrid
|
||||
- type: Broadphase
|
||||
- angularDamping: 0.05
|
||||
linearDamping: 0.05
|
||||
fixedRotation: False
|
||||
bodyType: Dynamic
|
||||
type: Physics
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- type: OccluderTree
|
||||
- type: SpreaderGrid
|
||||
- type: Shuttle
|
||||
- nextUpdate: 53.6030516
|
||||
type: GridPathfinding
|
||||
- gravityShakeSound: !type:SoundPathSpecifier
|
||||
path: /Audio/Effects/alert.ogg
|
||||
type: Gravity
|
||||
- chunkCollection:
|
||||
version: 2
|
||||
nodes: []
|
||||
type: DecalGrid
|
||||
- version: 2
|
||||
data:
|
||||
tiles:
|
||||
0,0:
|
||||
0: 14193
|
||||
uniqueMixes:
|
||||
- volume: 2500
|
||||
temperature: 293.15
|
||||
moles:
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
chunkSize: 4
|
||||
type: GridAtmosphere
|
||||
- type: GasTileOverlay
|
||||
- proto: AsteroidRockMining
|
||||
entities:
|
||||
- uid: 2
|
||||
components:
|
||||
- pos: 4.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 3
|
||||
components:
|
||||
- pos: 3.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 4
|
||||
components:
|
||||
- pos: 2.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 5
|
||||
components:
|
||||
- pos: 1.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 6
|
||||
components:
|
||||
- pos: 0.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 7
|
||||
components:
|
||||
- pos: 1.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 8
|
||||
components:
|
||||
- pos: 2.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 9
|
||||
components:
|
||||
- pos: 3.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 10
|
||||
components:
|
||||
- pos: 4.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 11
|
||||
components:
|
||||
- pos: 3.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 13
|
||||
components:
|
||||
- pos: 1.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 14
|
||||
components:
|
||||
- pos: 0.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 15
|
||||
components:
|
||||
- pos: -0.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 16
|
||||
components:
|
||||
- pos: 3.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 17
|
||||
components:
|
||||
- pos: 2.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 19
|
||||
components:
|
||||
- pos: 0.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 20
|
||||
components:
|
||||
- pos: -0.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 21
|
||||
components:
|
||||
- pos: 0.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 22
|
||||
components:
|
||||
- pos: 1.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 23
|
||||
components:
|
||||
- pos: 2.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: SpaceTickSpawner
|
||||
entities:
|
||||
- uid: 12
|
||||
components:
|
||||
- pos: 2.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 18
|
||||
components:
|
||||
- pos: 1.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
...
|
||||
158
Resources/WhiteMaps/D/19.yml
Normal file
158
Resources/WhiteMaps/D/19.yml
Normal file
@@ -0,0 +1,158 @@
|
||||
meta:
|
||||
format: 5
|
||||
postmapinit: false
|
||||
tilemap:
|
||||
0: Space
|
||||
48: FloorKitchen
|
||||
94: Lattice
|
||||
95: Plating
|
||||
entities:
|
||||
- proto: ""
|
||||
entities:
|
||||
- uid: 1
|
||||
components:
|
||||
- type: MetaData
|
||||
- pos: 2.9783866,1.8164935
|
||||
parent: invalid
|
||||
type: Transform
|
||||
- chunks:
|
||||
0,0:
|
||||
ind: 0,0
|
||||
tiles: XgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAAF4AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAADAAAAAwAAAAMAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXwAAADAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
0,-1:
|
||||
ind: 0,-1
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
-1,0:
|
||||
ind: -1,0
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
type: MapGrid
|
||||
- type: Broadphase
|
||||
- angularDamping: 0.05
|
||||
linearDamping: 0.05
|
||||
fixedRotation: False
|
||||
bodyType: Dynamic
|
||||
type: Physics
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- type: OccluderTree
|
||||
- type: SpreaderGrid
|
||||
- type: Shuttle
|
||||
- nextUpdate: 95.0294585
|
||||
type: GridPathfinding
|
||||
- gravityShakeSound: !type:SoundPathSpecifier
|
||||
path: /Audio/Effects/alert.ogg
|
||||
type: Gravity
|
||||
- chunkCollection:
|
||||
version: 2
|
||||
nodes: []
|
||||
type: DecalGrid
|
||||
- version: 2
|
||||
data:
|
||||
tiles:
|
||||
0,0:
|
||||
0: 65425
|
||||
0,1:
|
||||
0: 35021
|
||||
1,0:
|
||||
0: 4096
|
||||
1,1:
|
||||
0: 1
|
||||
0,-1:
|
||||
0: 4096
|
||||
-1,0:
|
||||
0: 34944
|
||||
uniqueMixes:
|
||||
- volume: 2500
|
||||
temperature: 293.15
|
||||
moles:
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
chunkSize: 4
|
||||
type: GridAtmosphere
|
||||
- type: GasTileOverlay
|
||||
- proto: FoodPlateSmallTrash
|
||||
entities:
|
||||
- uid: 11
|
||||
components:
|
||||
- pos: 1.2247508,3.6282668
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 104.6305143
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 12
|
||||
components:
|
||||
- pos: 0.7185004,2.8782668
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 105.5495326
|
||||
type: EmitSoundOnCollide
|
||||
- proto: FoodPlateTrash
|
||||
entities:
|
||||
- uid: 10
|
||||
components:
|
||||
- pos: 2.1435006,2.8595166
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 102.1206123
|
||||
type: EmitSoundOnCollide
|
||||
- proto: KitchenKnife
|
||||
entities:
|
||||
- uid: 2
|
||||
components:
|
||||
- pos: 1.3185008,2.761106
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextAttack: 111.5821397
|
||||
type: MeleeWeapon
|
||||
- nextSound: 111.7821397
|
||||
type: EmitSoundOnCollide
|
||||
- proto: KitchenMicrowave
|
||||
entities:
|
||||
- uid: 9
|
||||
components:
|
||||
- pos: 2.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: Table
|
||||
entities:
|
||||
- uid: 3
|
||||
components:
|
||||
- pos: 0.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 4
|
||||
components:
|
||||
- pos: 0.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 5
|
||||
components:
|
||||
- pos: 1.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 6
|
||||
components:
|
||||
- pos: 1.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 7
|
||||
components:
|
||||
- pos: 2.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 8
|
||||
components:
|
||||
- pos: 2.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
...
|
||||
602
Resources/WhiteMaps/D/2.yml
Normal file
602
Resources/WhiteMaps/D/2.yml
Normal file
@@ -0,0 +1,602 @@
|
||||
meta:
|
||||
format: 5
|
||||
postmapinit: false
|
||||
tilemap:
|
||||
0: Space
|
||||
4: FloorAsteroidCoarseSand0
|
||||
5: FloorAsteroidCoarseSandDug
|
||||
94: Lattice
|
||||
entities:
|
||||
- proto: ""
|
||||
entities:
|
||||
- uid: 1
|
||||
components:
|
||||
- type: MetaData
|
||||
- pos: 49.493793,1.2523144
|
||||
parent: invalid
|
||||
type: Transform
|
||||
- chunks:
|
||||
0,0:
|
||||
ind: 0,0
|
||||
tiles: BAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABQAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAAAAAAAAAAAABeAAAAAAAAAAQAAAAEAAAABQAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAAAAAAAAAAAABeAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAUAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
-1,0:
|
||||
ind: -1,0
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
0,-1:
|
||||
ind: 0,-1
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
type: MapGrid
|
||||
- type: Broadphase
|
||||
- angularDamping: 0.05
|
||||
linearDamping: 0.05
|
||||
fixedRotation: False
|
||||
bodyType: Dynamic
|
||||
type: Physics
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- type: OccluderTree
|
||||
- type: SpreaderGrid
|
||||
- type: Shuttle
|
||||
- nextUpdate: 206.0959294
|
||||
type: GridPathfinding
|
||||
- gravityShakeSound: !type:SoundPathSpecifier
|
||||
path: /Audio/Effects/alert.ogg
|
||||
type: Gravity
|
||||
- chunkCollection:
|
||||
version: 2
|
||||
nodes: []
|
||||
type: DecalGrid
|
||||
- version: 2
|
||||
data:
|
||||
tiles:
|
||||
0,0:
|
||||
0: 4369
|
||||
0,1:
|
||||
0: 4369
|
||||
0,2:
|
||||
0: 1
|
||||
uniqueMixes:
|
||||
- volume: 2500
|
||||
temperature: 293.15
|
||||
moles:
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
chunkSize: 4
|
||||
type: GridAtmosphere
|
||||
- type: GasTileOverlay
|
||||
- proto: AsteroidRockMining
|
||||
entities:
|
||||
- uid: 5
|
||||
components:
|
||||
- pos: 0.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 8
|
||||
components:
|
||||
- pos: 1.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 9
|
||||
components:
|
||||
- pos: 2.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 10
|
||||
components:
|
||||
- pos: 3.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 11
|
||||
components:
|
||||
- pos: 4.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 12
|
||||
components:
|
||||
- pos: 5.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 13
|
||||
components:
|
||||
- pos: 6.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 14
|
||||
components:
|
||||
- pos: 7.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 15
|
||||
components:
|
||||
- pos: 8.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 16
|
||||
components:
|
||||
- pos: 9.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 17
|
||||
components:
|
||||
- pos: 10.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 18
|
||||
components:
|
||||
- pos: 10.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 19
|
||||
components:
|
||||
- pos: 10.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 20
|
||||
components:
|
||||
- pos: 9.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 21
|
||||
components:
|
||||
- pos: 8.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 22
|
||||
components:
|
||||
- pos: 8.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 23
|
||||
components:
|
||||
- pos: 7.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 24
|
||||
components:
|
||||
- pos: 8.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 25
|
||||
components:
|
||||
- pos: 8.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 26
|
||||
components:
|
||||
- pos: 8.5,7.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 27
|
||||
components:
|
||||
- pos: 9.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 28
|
||||
components:
|
||||
- pos: 9.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 29
|
||||
components:
|
||||
- pos: 9.5,7.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 30
|
||||
components:
|
||||
- pos: 10.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 31
|
||||
components:
|
||||
- pos: 10.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 32
|
||||
components:
|
||||
- pos: 10.5,7.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 33
|
||||
components:
|
||||
- pos: 7.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 34
|
||||
components:
|
||||
- pos: 7.5,7.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 35
|
||||
components:
|
||||
- pos: 7.5,8.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 36
|
||||
components:
|
||||
- pos: 7.5,9.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 37
|
||||
components:
|
||||
- pos: 8.5,8.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 38
|
||||
components:
|
||||
- pos: 9.5,8.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 39
|
||||
components:
|
||||
- pos: 8.5,9.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 40
|
||||
components:
|
||||
- pos: 6.5,9.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 41
|
||||
components:
|
||||
- pos: 6.5,8.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 42
|
||||
components:
|
||||
- pos: 6.5,7.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 43
|
||||
components:
|
||||
- pos: 5.5,9.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 44
|
||||
components:
|
||||
- pos: 5.5,8.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 45
|
||||
components:
|
||||
- pos: 5.5,7.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 46
|
||||
components:
|
||||
- pos: 4.5,9.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 47
|
||||
components:
|
||||
- pos: 4.5,8.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 48
|
||||
components:
|
||||
- pos: 4.5,7.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 49
|
||||
components:
|
||||
- pos: 3.5,9.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 50
|
||||
components:
|
||||
- pos: 3.5,8.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 51
|
||||
components:
|
||||
- pos: 3.5,7.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 52
|
||||
components:
|
||||
- pos: 2.5,7.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 53
|
||||
components:
|
||||
- pos: 2.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 54
|
||||
components:
|
||||
- pos: 1.5,7.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 55
|
||||
components:
|
||||
- pos: 1.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 56
|
||||
components:
|
||||
- pos: 0.5,7.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 57
|
||||
components:
|
||||
- pos: 0.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 58
|
||||
components:
|
||||
- pos: -0.5,7.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 59
|
||||
components:
|
||||
- pos: -0.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 60
|
||||
components:
|
||||
- pos: 0.5,8.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 61
|
||||
components:
|
||||
- pos: 1.5,8.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 62
|
||||
components:
|
||||
- pos: 1.5,9.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 63
|
||||
components:
|
||||
- pos: 2.5,9.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 64
|
||||
components:
|
||||
- pos: 2.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 65
|
||||
components:
|
||||
- pos: 1.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 66
|
||||
components:
|
||||
- pos: 0.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 67
|
||||
components:
|
||||
- pos: -0.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 68
|
||||
components:
|
||||
- pos: -0.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 69
|
||||
components:
|
||||
- pos: 0.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 70
|
||||
components:
|
||||
- pos: 1.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 71
|
||||
components:
|
||||
- pos: 1.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 72
|
||||
components:
|
||||
- pos: 0.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 73
|
||||
components:
|
||||
- pos: -0.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 74
|
||||
components:
|
||||
- pos: -0.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 75
|
||||
components:
|
||||
- pos: 0.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 76
|
||||
components:
|
||||
- pos: 1.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 77
|
||||
components:
|
||||
- pos: 0.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 78
|
||||
components:
|
||||
- pos: 1.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 79
|
||||
components:
|
||||
- pos: 2.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 80
|
||||
components:
|
||||
- pos: 3.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 81
|
||||
components:
|
||||
- pos: 4.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 82
|
||||
components:
|
||||
- pos: 5.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 83
|
||||
components:
|
||||
- pos: 6.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 84
|
||||
components:
|
||||
- pos: 7.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 85
|
||||
components:
|
||||
- pos: 8.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 86
|
||||
components:
|
||||
- pos: 9.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 87
|
||||
components:
|
||||
- pos: 8.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 88
|
||||
components:
|
||||
- pos: 7.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 89
|
||||
components:
|
||||
- pos: 6.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 90
|
||||
components:
|
||||
- pos: 5.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 91
|
||||
components:
|
||||
- pos: 4.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 92
|
||||
components:
|
||||
- pos: 3.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 93
|
||||
components:
|
||||
- pos: 6.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 94
|
||||
components:
|
||||
- pos: 5.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 95
|
||||
components:
|
||||
- pos: 4.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 96
|
||||
components:
|
||||
- pos: 3.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 97
|
||||
components:
|
||||
- pos: 2.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 98
|
||||
components:
|
||||
- pos: 1.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: ChairWood
|
||||
entities:
|
||||
- uid: 3
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: 4.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 4
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 6.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: FoodDonutJellySlugcat
|
||||
entities:
|
||||
- uid: 6
|
||||
components:
|
||||
- pos: 5.4568977,5.5956154
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 141.7103928
|
||||
type: EmitSoundOnCollide
|
||||
- proto: OxygenTankFilled
|
||||
entities:
|
||||
- uid: 7
|
||||
components:
|
||||
- pos: 2.602459,5.5251017
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextAttack: 173.2070785
|
||||
type: MeleeWeapon
|
||||
- nextSound: 173.4070785
|
||||
type: EmitSoundOnCollide
|
||||
- proto: PlushieSpaceLizard
|
||||
entities:
|
||||
- uid: 100
|
||||
components:
|
||||
- pos: 2.438549,1.436814
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextAttack: 256.8825207
|
||||
type: MeleeWeapon
|
||||
- nextSound: 257.0825207
|
||||
type: EmitSoundOnCollide
|
||||
- proto: Spear
|
||||
entities:
|
||||
- uid: 99
|
||||
components:
|
||||
- pos: 9.479401,3.4888139
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextAttack: 226.8548275
|
||||
type: MeleeWeapon
|
||||
- nextSound: 227.0548275
|
||||
type: EmitSoundOnCollide
|
||||
- proto: TableWood
|
||||
entities:
|
||||
- uid: 2
|
||||
components:
|
||||
- pos: 5.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
...
|
||||
205
Resources/WhiteMaps/D/20.yml
Normal file
205
Resources/WhiteMaps/D/20.yml
Normal file
@@ -0,0 +1,205 @@
|
||||
meta:
|
||||
format: 5
|
||||
postmapinit: false
|
||||
tilemap:
|
||||
0: Space
|
||||
83: FloorWhiteDiagonal
|
||||
94: Lattice
|
||||
95: Plating
|
||||
entities:
|
||||
- proto: ""
|
||||
entities:
|
||||
- uid: 1
|
||||
components:
|
||||
- type: MetaData
|
||||
- pos: 1.7328067,2.0164936
|
||||
parent: invalid
|
||||
type: Transform
|
||||
- chunks:
|
||||
0,0:
|
||||
ind: 0,0
|
||||
tiles: XwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFMAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABTAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
-1,0:
|
||||
ind: -1,0
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABTAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAUwAAAFMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAFMAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAFMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
-1,-1:
|
||||
ind: -1,-1
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAFMAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABTAAAAUwAAAA==
|
||||
0,-1:
|
||||
ind: 0,-1
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
type: MapGrid
|
||||
- type: Broadphase
|
||||
- angularDamping: 0.05
|
||||
linearDamping: 0.05
|
||||
fixedRotation: False
|
||||
bodyType: Dynamic
|
||||
type: Physics
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- type: OccluderTree
|
||||
- type: SpreaderGrid
|
||||
- type: Shuttle
|
||||
- nextUpdate: 236.9004741
|
||||
type: GridPathfinding
|
||||
- gravityShakeSound: !type:SoundPathSpecifier
|
||||
path: /Audio/Effects/alert.ogg
|
||||
type: Gravity
|
||||
- chunkCollection:
|
||||
version: 2
|
||||
nodes:
|
||||
- node:
|
||||
color: '#334E6DC8'
|
||||
id: QuarterTileOverlayGreyscale
|
||||
decals:
|
||||
0: -2,-2
|
||||
1: -2,-1
|
||||
2: -2,0
|
||||
3: -2,1
|
||||
4: -2,2
|
||||
type: DecalGrid
|
||||
- version: 2
|
||||
data:
|
||||
tiles:
|
||||
0,0:
|
||||
0: 13105
|
||||
0,1:
|
||||
0: 17
|
||||
uniqueMixes:
|
||||
- volume: 2500
|
||||
temperature: 293.15
|
||||
moles:
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
chunkSize: 4
|
||||
type: GridAtmosphere
|
||||
- type: GasTileOverlay
|
||||
- type: RadiationGridResistance
|
||||
- proto: AirlockGlass
|
||||
entities:
|
||||
- uid: 2
|
||||
components:
|
||||
- pos: -1.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 17
|
||||
components:
|
||||
- pos: -0.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 18
|
||||
components:
|
||||
- pos: 0.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: FirelockGlass
|
||||
entities:
|
||||
- uid: 9
|
||||
components:
|
||||
- pos: 0.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 19
|
||||
components:
|
||||
- pos: -1.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 20
|
||||
components:
|
||||
- pos: -0.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: PosterContrabandC20r
|
||||
entities:
|
||||
- uid: 21
|
||||
components:
|
||||
- pos: 1.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: ReinforcedWindow
|
||||
entities:
|
||||
- uid: 10
|
||||
components:
|
||||
- pos: 1.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 11
|
||||
components:
|
||||
- pos: 1.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 12
|
||||
components:
|
||||
- pos: 1.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 13
|
||||
components:
|
||||
- pos: -2.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 14
|
||||
components:
|
||||
- pos: 1.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 15
|
||||
components:
|
||||
- pos: 1.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 16
|
||||
components:
|
||||
- pos: -2.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: SignDirectionalHop
|
||||
entities:
|
||||
- uid: 22
|
||||
components:
|
||||
- pos: -2.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: WallReinforced
|
||||
entities:
|
||||
- uid: 3
|
||||
components:
|
||||
- pos: -2.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 4
|
||||
components:
|
||||
- pos: -2.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 5
|
||||
components:
|
||||
- pos: -2.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 6
|
||||
components:
|
||||
- pos: 1.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 7
|
||||
components:
|
||||
- pos: 1.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 8
|
||||
components:
|
||||
- pos: 1.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
...
|
||||
2661
Resources/WhiteMaps/D/21.yml
Normal file
2661
Resources/WhiteMaps/D/21.yml
Normal file
File diff suppressed because it is too large
Load Diff
1448
Resources/WhiteMaps/D/23.yml
Normal file
1448
Resources/WhiteMaps/D/23.yml
Normal file
File diff suppressed because it is too large
Load Diff
2237
Resources/WhiteMaps/D/24.yml
Normal file
2237
Resources/WhiteMaps/D/24.yml
Normal file
File diff suppressed because it is too large
Load Diff
1318
Resources/WhiteMaps/D/25.yml
Normal file
1318
Resources/WhiteMaps/D/25.yml
Normal file
File diff suppressed because it is too large
Load Diff
847
Resources/WhiteMaps/D/26.yml
Normal file
847
Resources/WhiteMaps/D/26.yml
Normal file
@@ -0,0 +1,847 @@
|
||||
meta:
|
||||
format: 5
|
||||
postmapinit: false
|
||||
tilemap:
|
||||
0: Space
|
||||
82: FloorWhite
|
||||
94: Lattice
|
||||
95: Plating
|
||||
entities:
|
||||
- proto: ""
|
||||
entities:
|
||||
- uid: 1
|
||||
components:
|
||||
- type: MetaData
|
||||
- pos: 4.9671144,2.7783031
|
||||
parent: invalid
|
||||
type: Transform
|
||||
- chunks:
|
||||
0,0:
|
||||
ind: 0,0
|
||||
tiles: XwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFIAAABSAAAAUgAAAF8AAABSAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABSAAAAUgAAAFIAAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAFIAAABfAAAAXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFIAAABSAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABSAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
-1,0:
|
||||
ind: -1,0
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF4AAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAFIAAABSAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABSAAAAUgAAAFIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAFIAAABSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
type: MapGrid
|
||||
- type: Broadphase
|
||||
- angularDamping: 0.05
|
||||
linearDamping: 0.05
|
||||
fixedRotation: False
|
||||
bodyType: Dynamic
|
||||
type: Physics
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- type: OccluderTree
|
||||
- nextUpdate: 0
|
||||
type: SpreaderGrid
|
||||
- type: Shuttle
|
||||
- nextUpdate: 1232.7911077
|
||||
type: GridPathfinding
|
||||
- gravityShakeSound: !type:SoundPathSpecifier
|
||||
path: /Audio/Effects/alert.ogg
|
||||
type: Gravity
|
||||
- chunkCollection:
|
||||
version: 2
|
||||
nodes:
|
||||
- node:
|
||||
angle: 1.5707963267948966 rad
|
||||
color: '#FFFFFFFF'
|
||||
id: Box
|
||||
decals:
|
||||
49: -1,2
|
||||
- node:
|
||||
angle: 1.5707963267948966 rad
|
||||
color: '#560079FF'
|
||||
id: HalfTileOverlayGreyscale
|
||||
decals:
|
||||
48: -2,8
|
||||
- node:
|
||||
angle: 3.141592653589793 rad
|
||||
color: '#560079FF'
|
||||
id: HalfTileOverlayGreyscale270
|
||||
decals:
|
||||
32: 1,6
|
||||
33: 1,7
|
||||
34: 1,2
|
||||
35: 1,3
|
||||
36: 0,1
|
||||
- node:
|
||||
angle: 4.71238898038469 rad
|
||||
color: '#560079FF'
|
||||
id: HalfTileOverlayGreyscale270
|
||||
decals:
|
||||
0: -2,8
|
||||
1: -1,8
|
||||
2: 0,8
|
||||
3: 1,7
|
||||
4: -3,7
|
||||
5: 2,5
|
||||
6: 3,5
|
||||
7: -4,5
|
||||
8: -5,5
|
||||
9: -6,5
|
||||
10: -7,5
|
||||
37: -3,3
|
||||
38: -2,3
|
||||
39: -1,3
|
||||
40: 0,3
|
||||
41: 1,3
|
||||
- node:
|
||||
angle: 6.283185307179586 rad
|
||||
color: '#560079FF'
|
||||
id: HalfTileOverlayGreyscale270
|
||||
decals:
|
||||
11: -3,6
|
||||
12: -3,7
|
||||
13: -3,3
|
||||
14: -3,2
|
||||
15: -2,1
|
||||
- node:
|
||||
angle: 7.853981633974483 rad
|
||||
color: '#560079FF'
|
||||
id: HalfTileOverlayGreyscale270
|
||||
decals:
|
||||
16: -2,1
|
||||
17: -1,1
|
||||
18: 0,1
|
||||
19: 1,2
|
||||
20: -3,2
|
||||
21: 4,4
|
||||
22: 3,4
|
||||
23: 2,4
|
||||
24: 1,4
|
||||
25: 0,4
|
||||
26: -1,4
|
||||
27: -2,4
|
||||
28: -3,4
|
||||
29: -4,4
|
||||
30: -5,4
|
||||
31: -6,4
|
||||
- node:
|
||||
color: '#560079FF'
|
||||
id: QuarterTileOverlayGreyscale180
|
||||
decals:
|
||||
47: 0,2
|
||||
- node:
|
||||
color: '#560079FF'
|
||||
id: QuarterTileOverlayGreyscale270
|
||||
decals:
|
||||
46: -2,2
|
||||
- node:
|
||||
angle: 4.71238898038469 rad
|
||||
color: '#560079FF'
|
||||
id: QuarterTileOverlayGreyscale270
|
||||
decals:
|
||||
42: -3,5
|
||||
43: -2,7
|
||||
- node:
|
||||
color: '#560079FF'
|
||||
id: QuarterTileOverlayGreyscale90
|
||||
decals:
|
||||
44: 0,7
|
||||
45: 1,5
|
||||
type: DecalGrid
|
||||
- version: 2
|
||||
data:
|
||||
tiles:
|
||||
0,0:
|
||||
0: 4369
|
||||
1: 58978
|
||||
0,1:
|
||||
0: 4369
|
||||
1: 28398
|
||||
0,2:
|
||||
0: 1
|
||||
1: 54
|
||||
1,0:
|
||||
1: 12288
|
||||
1,1:
|
||||
1: 791
|
||||
-3,1:
|
||||
1: 128
|
||||
-2,0:
|
||||
1: 61440
|
||||
-2,1:
|
||||
1: 4095
|
||||
-1,0:
|
||||
1: 65534
|
||||
-1,1:
|
||||
1: 65535
|
||||
-1,2:
|
||||
1: 239
|
||||
uniqueMixes:
|
||||
- volume: 2500
|
||||
temperature: 293.15
|
||||
moles:
|
||||
- 21.824879
|
||||
- 82.10312
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- volume: 2500
|
||||
temperature: 293.15
|
||||
moles:
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
chunkSize: 4
|
||||
type: GridAtmosphere
|
||||
- type: GasTileOverlay
|
||||
- type: RadiationGridResistance
|
||||
- proto: AirlockScienceLocked
|
||||
entities:
|
||||
- uid: 2
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -4.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 3
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -4.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 4
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 3.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 5
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 3.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: BannerScience
|
||||
entities:
|
||||
- uid: 7
|
||||
components:
|
||||
- pos: -1.5,8.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: Beaker
|
||||
entities:
|
||||
- uid: 8
|
||||
components:
|
||||
- pos: 1.7614384,3.4184008
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextAttack: 1301.6656935
|
||||
type: MeleeWeapon
|
||||
- nextSound: 1301.8656935
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 9
|
||||
components:
|
||||
- pos: -2.4573119,2.8746505
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextAttack: 1303.7493292
|
||||
type: MeleeWeapon
|
||||
- nextSound: 1303.9493292
|
||||
type: EmitSoundOnCollide
|
||||
- proto: BlastDoor
|
||||
entities:
|
||||
- uid: 10
|
||||
components:
|
||||
- pos: -0.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: ClosetL3ScienceFilled
|
||||
entities:
|
||||
- uid: 11
|
||||
components:
|
||||
- pos: -2.5,7.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 12
|
||||
components:
|
||||
- pos: -2.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: ComputerBroken
|
||||
entities:
|
||||
- uid: 13
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -0.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: CrateArtifactContainer
|
||||
entities:
|
||||
- uid: 14
|
||||
components:
|
||||
- pos: 1.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- locked: False
|
||||
type: Lock
|
||||
- fixtures:
|
||||
fix1:
|
||||
shape: !type:PhysShapeCircle
|
||||
radius: 0.45
|
||||
position: 0,0
|
||||
mask:
|
||||
- Impassable
|
||||
- MidImpassable
|
||||
- LowImpassable
|
||||
layer:
|
||||
- BulletImpassable
|
||||
- Opaque
|
||||
density: 75
|
||||
hard: True
|
||||
restitution: 0
|
||||
friction: 0.4
|
||||
type: Fixtures
|
||||
- open: True
|
||||
removedMasks: 20
|
||||
type: EntityStorage
|
||||
- isPlaceable: True
|
||||
type: PlaceableSurface
|
||||
- uid: 15
|
||||
components:
|
||||
- pos: 1.5,7.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- locked: False
|
||||
type: Lock
|
||||
- fixtures:
|
||||
fix1:
|
||||
shape: !type:PhysShapeCircle
|
||||
radius: 0.45
|
||||
position: 0,0
|
||||
mask:
|
||||
- Impassable
|
||||
- MidImpassable
|
||||
- LowImpassable
|
||||
layer:
|
||||
- BulletImpassable
|
||||
- Opaque
|
||||
density: 75
|
||||
hard: True
|
||||
restitution: 0
|
||||
friction: 0.4
|
||||
type: Fixtures
|
||||
- open: True
|
||||
removedMasks: 20
|
||||
type: EntityStorage
|
||||
- isPlaceable: True
|
||||
type: PlaceableSurface
|
||||
- proto: DisposalUnit
|
||||
entities:
|
||||
- uid: 16
|
||||
components:
|
||||
- pos: -2.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: Dropper
|
||||
entities:
|
||||
- uid: 17
|
||||
components:
|
||||
- pos: -2.374931,3.212111
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 1317.7559088
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 18
|
||||
components:
|
||||
- pos: -2.674931,3.530861
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 1318.6029677
|
||||
type: EmitSoundOnCollide
|
||||
- proto: FirelockEdge
|
||||
entities:
|
||||
- uid: 19
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 0.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 20
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: 2.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 21
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: 2.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 22
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: -3.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 23
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: -3.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: FirelockGlass
|
||||
entities:
|
||||
- uid: 24
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: -4.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 25
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: -4.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 26
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 3.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 27
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 3.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: GasOutletInjector
|
||||
entities:
|
||||
- uid: 28
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -1.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 1158.9949913
|
||||
type: EmitSoundOnCollide
|
||||
- proto: GasPipeStraight
|
||||
entities:
|
||||
- uid: 29
|
||||
components:
|
||||
- pos: 0.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- nextSound: 918.3258061
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 30
|
||||
components:
|
||||
- pos: -1.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- nextSound: 921.5788935
|
||||
type: EmitSoundOnCollide
|
||||
- proto: GasPort
|
||||
entities:
|
||||
- uid: 31
|
||||
components:
|
||||
- pos: 0.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 1087.0156333
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 32
|
||||
components:
|
||||
- pos: -1.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 1087.8330249
|
||||
type: EmitSoundOnCollide
|
||||
- proto: GasPressurePump
|
||||
entities:
|
||||
- uid: 33
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 0.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 980.0978226
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 34
|
||||
components:
|
||||
- pos: -1.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 977.3997762
|
||||
type: EmitSoundOnCollide
|
||||
- proto: GasVentScrubber
|
||||
entities:
|
||||
- uid: 35
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 0.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 1071.2476637
|
||||
type: EmitSoundOnCollide
|
||||
- proto: LargeBeaker
|
||||
entities:
|
||||
- uid: 36
|
||||
components:
|
||||
- pos: 1.3489385,2.6309004
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextAttack: 1296.1028787
|
||||
type: MeleeWeapon
|
||||
- nextSound: 1296.3028787
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 37
|
||||
components:
|
||||
- pos: 1.5926886,2.8746505
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextAttack: 1297.3253121
|
||||
type: MeleeWeapon
|
||||
- nextSound: 1297.5253121
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 38
|
||||
components:
|
||||
- pos: 1.2926884,3.3059006
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextAttack: 1298.4985714
|
||||
type: MeleeWeapon
|
||||
- nextSound: 1298.6985714
|
||||
type: EmitSoundOnCollide
|
||||
- proto: MachineFrameDestroyed
|
||||
entities:
|
||||
- uid: 39
|
||||
components:
|
||||
- pos: 0.5,8.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: PlasmaReinforcedWindowDirectional
|
||||
entities:
|
||||
- uid: 40
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -2.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 41
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -1.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 42
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 1.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 43
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -0.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: PosterLegitEnlist
|
||||
entities:
|
||||
- uid: 44
|
||||
components:
|
||||
- pos: -5.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: PosterLegitHereForYourSafety
|
||||
entities:
|
||||
- uid: 45
|
||||
components:
|
||||
- pos: 4.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: PosterLegitScience
|
||||
entities:
|
||||
- uid: 46
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: -3.5,7.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: RandomArtifactSpawner20
|
||||
entities:
|
||||
- uid: 47
|
||||
components:
|
||||
- pos: -0.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: ReinforcedWindow
|
||||
entities:
|
||||
- uid: 48
|
||||
components:
|
||||
- pos: 0.5,9.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 49
|
||||
components:
|
||||
- pos: -0.5,9.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 50
|
||||
components:
|
||||
- pos: -1.5,9.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: SignalButton
|
||||
entities:
|
||||
- uid: 51
|
||||
components:
|
||||
- pos: 2.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- state: True
|
||||
type: SignalSwitch
|
||||
- type: ItemCooldown
|
||||
- proto: SpawnMobCarp
|
||||
entities:
|
||||
- uid: 6
|
||||
components:
|
||||
- pos: 0.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 92
|
||||
components:
|
||||
- pos: -0.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 93
|
||||
components:
|
||||
- pos: -1.5,7.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: TablePlasmaGlass
|
||||
entities:
|
||||
- uid: 52
|
||||
components:
|
||||
- pos: 1.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 53
|
||||
components:
|
||||
- pos: 1.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 54
|
||||
components:
|
||||
- pos: -2.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 55
|
||||
components:
|
||||
- pos: -2.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: WallReinforced
|
||||
entities:
|
||||
- uid: 56
|
||||
components:
|
||||
- pos: -6.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 57
|
||||
components:
|
||||
- pos: -5.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 58
|
||||
components:
|
||||
- pos: -4.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 59
|
||||
components:
|
||||
- pos: -3.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 60
|
||||
components:
|
||||
- pos: -3.5,7.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 61
|
||||
components:
|
||||
- pos: -3.5,8.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 62
|
||||
components:
|
||||
- pos: -2.5,8.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 63
|
||||
components:
|
||||
- pos: -2.5,9.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 64
|
||||
components:
|
||||
- pos: 1.5,9.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 65
|
||||
components:
|
||||
- pos: 1.5,8.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 66
|
||||
components:
|
||||
- pos: 2.5,8.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 67
|
||||
components:
|
||||
- pos: 2.5,7.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 68
|
||||
components:
|
||||
- pos: 2.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 69
|
||||
components:
|
||||
- pos: 3.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 70
|
||||
components:
|
||||
- pos: 4.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 71
|
||||
components:
|
||||
- pos: 4.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 72
|
||||
components:
|
||||
- pos: 3.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 73
|
||||
components:
|
||||
- pos: 2.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 74
|
||||
components:
|
||||
- pos: 2.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 75
|
||||
components:
|
||||
- pos: 2.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 76
|
||||
components:
|
||||
- pos: 1.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 77
|
||||
components:
|
||||
- pos: 1.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 78
|
||||
components:
|
||||
- pos: -2.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 79
|
||||
components:
|
||||
- pos: -2.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 80
|
||||
components:
|
||||
- pos: -3.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 81
|
||||
components:
|
||||
- pos: -3.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 82
|
||||
components:
|
||||
- pos: -3.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 83
|
||||
components:
|
||||
- pos: -4.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 84
|
||||
components:
|
||||
- pos: -5.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 85
|
||||
components:
|
||||
- pos: -6.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 86
|
||||
components:
|
||||
- pos: -7.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 87
|
||||
components:
|
||||
- pos: -1.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 88
|
||||
components:
|
||||
- pos: 0.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: WaterCooler
|
||||
entities:
|
||||
- uid: 89
|
||||
components:
|
||||
- pos: 1.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: WaterTankFull
|
||||
entities:
|
||||
- uid: 90
|
||||
components:
|
||||
- pos: -0.5,8.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: WindoorScienceLocked
|
||||
entities:
|
||||
- uid: 91
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 0.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
...
|
||||
1496
Resources/WhiteMaps/D/27.yml
Normal file
1496
Resources/WhiteMaps/D/27.yml
Normal file
File diff suppressed because it is too large
Load Diff
2379
Resources/WhiteMaps/D/28.yml
Normal file
2379
Resources/WhiteMaps/D/28.yml
Normal file
File diff suppressed because it is too large
Load Diff
2675
Resources/WhiteMaps/D/29.yml
Normal file
2675
Resources/WhiteMaps/D/29.yml
Normal file
File diff suppressed because it is too large
Load Diff
579
Resources/WhiteMaps/D/3.yml
Normal file
579
Resources/WhiteMaps/D/3.yml
Normal file
@@ -0,0 +1,579 @@
|
||||
meta:
|
||||
format: 5
|
||||
postmapinit: false
|
||||
tilemap:
|
||||
0: Space
|
||||
4: FloorAsteroidCoarseSand0
|
||||
5: FloorAsteroidCoarseSandDug
|
||||
entities:
|
||||
- proto: ""
|
||||
entities:
|
||||
- uid: 1
|
||||
components:
|
||||
- type: MetaData
|
||||
- pos: 48.45556,-0.61510295
|
||||
parent: invalid
|
||||
type: Transform
|
||||
- chunks:
|
||||
0,0:
|
||||
ind: 0,0
|
||||
tiles: BAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAUAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAUAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAUAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
-1,0:
|
||||
ind: -1,0
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAFAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAUAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAFAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
0,-1:
|
||||
ind: 0,-1
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
-1,-1:
|
||||
ind: -1,-1
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAFAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAFAAAABAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAFAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAUAAAAEAAAABAAAAA==
|
||||
type: MapGrid
|
||||
- type: Broadphase
|
||||
- angularDamping: 0.05
|
||||
linearDamping: 0.05
|
||||
fixedRotation: False
|
||||
bodyType: Dynamic
|
||||
type: Physics
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- type: OccluderTree
|
||||
- type: SpreaderGrid
|
||||
- type: Shuttle
|
||||
- nextUpdate: 209.5993331
|
||||
type: GridPathfinding
|
||||
- gravityShakeSound: !type:SoundPathSpecifier
|
||||
path: /Audio/Effects/alert.ogg
|
||||
type: Gravity
|
||||
- chunkCollection:
|
||||
version: 2
|
||||
nodes:
|
||||
- node:
|
||||
color: '#FFFFFFFF'
|
||||
id: Remains
|
||||
decals:
|
||||
0: -3,-1
|
||||
1: -1,8
|
||||
type: DecalGrid
|
||||
- version: 2
|
||||
data:
|
||||
tiles:
|
||||
0,0:
|
||||
0: 13105
|
||||
0,1:
|
||||
0: 3
|
||||
uniqueMixes:
|
||||
- volume: 2500
|
||||
temperature: 293.15
|
||||
moles:
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
chunkSize: 4
|
||||
type: GridAtmosphere
|
||||
- type: GasTileOverlay
|
||||
- proto: AsteroidRockMining
|
||||
entities:
|
||||
- uid: 2
|
||||
components:
|
||||
- pos: 1.5,9.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 3
|
||||
components:
|
||||
- pos: -1.5,10.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 4
|
||||
components:
|
||||
- pos: -1.5,9.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 5
|
||||
components:
|
||||
- pos: -1.5,8.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 6
|
||||
components:
|
||||
- pos: -1.5,7.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 7
|
||||
components:
|
||||
- pos: -1.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 8
|
||||
components:
|
||||
- pos: -0.5,10.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 9
|
||||
components:
|
||||
- pos: -0.5,9.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 11
|
||||
components:
|
||||
- pos: -0.5,7.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 12
|
||||
components:
|
||||
- pos: -0.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 13
|
||||
components:
|
||||
- pos: 0.5,10.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 14
|
||||
components:
|
||||
- pos: 0.5,9.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 15
|
||||
components:
|
||||
- pos: 0.5,8.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 16
|
||||
components:
|
||||
- pos: 0.5,7.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 17
|
||||
components:
|
||||
- pos: 0.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 18
|
||||
components:
|
||||
- pos: 1.5,8.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 19
|
||||
components:
|
||||
- pos: 1.5,7.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 21
|
||||
components:
|
||||
- pos: 1.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 22
|
||||
components:
|
||||
- pos: 1.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 23
|
||||
components:
|
||||
- pos: 1.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 24
|
||||
components:
|
||||
- pos: 1.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 25
|
||||
components:
|
||||
- pos: 1.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 26
|
||||
components:
|
||||
- pos: 1.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 27
|
||||
components:
|
||||
- pos: 1.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 28
|
||||
components:
|
||||
- pos: 2.5,7.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 29
|
||||
components:
|
||||
- pos: 2.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 30
|
||||
components:
|
||||
- pos: 2.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 31
|
||||
components:
|
||||
- pos: 2.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 32
|
||||
components:
|
||||
- pos: 2.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 34
|
||||
components:
|
||||
- pos: 2.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 35
|
||||
components:
|
||||
- pos: 2.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 36
|
||||
components:
|
||||
- pos: 3.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 37
|
||||
components:
|
||||
- pos: 3.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 38
|
||||
components:
|
||||
- pos: 3.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 39
|
||||
components:
|
||||
- pos: 3.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 40
|
||||
components:
|
||||
- pos: -4.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 41
|
||||
components:
|
||||
- pos: -0.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 42
|
||||
components:
|
||||
- pos: 0.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 43
|
||||
components:
|
||||
- pos: 0.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 44
|
||||
components:
|
||||
- pos: 0.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 45
|
||||
components:
|
||||
- pos: 0.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 46
|
||||
components:
|
||||
- pos: 0.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 47
|
||||
components:
|
||||
- pos: 0.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 48
|
||||
components:
|
||||
- pos: 0.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 49
|
||||
components:
|
||||
- pos: -0.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 50
|
||||
components:
|
||||
- pos: -0.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 51
|
||||
components:
|
||||
- pos: -0.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 52
|
||||
components:
|
||||
- pos: -0.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 53
|
||||
components:
|
||||
- pos: -0.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 54
|
||||
components:
|
||||
- pos: -2.5,7.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 55
|
||||
components:
|
||||
- pos: -2.5,8.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 56
|
||||
components:
|
||||
- pos: -2.5,9.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 57
|
||||
components:
|
||||
- pos: -1.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 58
|
||||
components:
|
||||
- pos: -1.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 59
|
||||
components:
|
||||
- pos: -1.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 60
|
||||
components:
|
||||
- pos: -1.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 61
|
||||
components:
|
||||
- pos: -1.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 62
|
||||
components:
|
||||
- pos: -2.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 63
|
||||
components:
|
||||
- pos: -2.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 65
|
||||
components:
|
||||
- pos: -2.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 66
|
||||
components:
|
||||
- pos: -2.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 67
|
||||
components:
|
||||
- pos: -3.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 68
|
||||
components:
|
||||
- pos: -3.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 69
|
||||
components:
|
||||
- pos: -3.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 70
|
||||
components:
|
||||
- pos: -3.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 71
|
||||
components:
|
||||
- pos: -3.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 72
|
||||
components:
|
||||
- pos: -3.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 73
|
||||
components:
|
||||
- pos: -3.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 74
|
||||
components:
|
||||
- pos: -4.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 75
|
||||
components:
|
||||
- pos: -5.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 76
|
||||
components:
|
||||
- pos: -5.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 77
|
||||
components:
|
||||
- pos: -5.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 78
|
||||
components:
|
||||
- pos: -4.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 79
|
||||
components:
|
||||
- pos: -4.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 80
|
||||
components:
|
||||
- pos: -4.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 81
|
||||
components:
|
||||
- pos: -4.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 82
|
||||
components:
|
||||
- pos: -4.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 83
|
||||
components:
|
||||
- pos: -4.5,-3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 84
|
||||
components:
|
||||
- pos: -4.5,-4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 85
|
||||
components:
|
||||
- pos: -3.5,-4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 86
|
||||
components:
|
||||
- pos: -3.5,-3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 87
|
||||
components:
|
||||
- pos: -2.5,-3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 88
|
||||
components:
|
||||
- pos: -5.5,-4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 89
|
||||
components:
|
||||
- pos: -5.5,-3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 90
|
||||
components:
|
||||
- pos: -5.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 91
|
||||
components:
|
||||
- pos: -5.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 92
|
||||
components:
|
||||
- pos: -6.5,-3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 93
|
||||
components:
|
||||
- pos: -6.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: ClothingHeadHatHoodGoliathCloak
|
||||
entities:
|
||||
- uid: 95
|
||||
components:
|
||||
- pos: 1.3472519,6.6692705
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 325.1657865
|
||||
type: EmitSoundOnCollide
|
||||
- proto: ClothingNeckCloakGoliathCloak
|
||||
entities:
|
||||
- uid: 94
|
||||
components:
|
||||
- pos: 1.7747536,6.3317704
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 321.0655756
|
||||
type: EmitSoundOnCollide
|
||||
- proto: LeftArmSkeleton
|
||||
entities:
|
||||
- uid: 64
|
||||
components:
|
||||
- pos: 2.5993538,2.6738303
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 281.718819
|
||||
type: EmitSoundOnCollide
|
||||
- proto: RightFootSkeleton
|
||||
entities:
|
||||
- uid: 20
|
||||
components:
|
||||
- pos: 2.3068542,2.6963303
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 276.076447
|
||||
type: EmitSoundOnCollide
|
||||
- proto: RightLegSkeleton
|
||||
entities:
|
||||
- uid: 33
|
||||
components:
|
||||
- pos: 2.3293533,2.7863302
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 278.3657358
|
||||
type: EmitSoundOnCollide
|
||||
- proto: TorsoSkeleton
|
||||
entities:
|
||||
- uid: 10
|
||||
components:
|
||||
- pos: 2.5768547,2.3813303
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 273.5653522
|
||||
type: EmitSoundOnCollide
|
||||
...
|
||||
1198
Resources/WhiteMaps/D/30.yml
Normal file
1198
Resources/WhiteMaps/D/30.yml
Normal file
File diff suppressed because it is too large
Load Diff
3159
Resources/WhiteMaps/D/31.yml
Normal file
3159
Resources/WhiteMaps/D/31.yml
Normal file
File diff suppressed because it is too large
Load Diff
2919
Resources/WhiteMaps/D/32.yml
Normal file
2919
Resources/WhiteMaps/D/32.yml
Normal file
File diff suppressed because it is too large
Load Diff
1381
Resources/WhiteMaps/D/33.yml
Normal file
1381
Resources/WhiteMaps/D/33.yml
Normal file
File diff suppressed because it is too large
Load Diff
357
Resources/WhiteMaps/D/4.yml
Normal file
357
Resources/WhiteMaps/D/4.yml
Normal file
@@ -0,0 +1,357 @@
|
||||
meta:
|
||||
format: 5
|
||||
postmapinit: false
|
||||
tilemap:
|
||||
0: Space
|
||||
4: FloorAsteroidCoarseSand0
|
||||
5: FloorAsteroidCoarseSandDug
|
||||
entities:
|
||||
- proto: ""
|
||||
entities:
|
||||
- uid: 1
|
||||
components:
|
||||
- type: MetaData
|
||||
- pos: 42.607742,-3.7738743
|
||||
parent: invalid
|
||||
type: Transform
|
||||
- chunks:
|
||||
0,0:
|
||||
ind: 0,0
|
||||
tiles: BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAQAAAAFAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAUAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAUAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABQAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
-1,0:
|
||||
ind: -1,0
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
type: MapGrid
|
||||
- type: Broadphase
|
||||
- angularDamping: 0.05
|
||||
linearDamping: 0.05
|
||||
fixedRotation: False
|
||||
bodyType: Dynamic
|
||||
type: Physics
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- type: OccluderTree
|
||||
- type: SpreaderGrid
|
||||
- type: Shuttle
|
||||
- nextUpdate: 65.7816179
|
||||
type: GridPathfinding
|
||||
- gravityShakeSound: !type:SoundPathSpecifier
|
||||
path: /Audio/Effects/alert.ogg
|
||||
type: Gravity
|
||||
- chunkCollection:
|
||||
version: 2
|
||||
nodes:
|
||||
- node:
|
||||
color: '#FFFFFFFF'
|
||||
id: Remains
|
||||
decals:
|
||||
0: 2,3
|
||||
type: DecalGrid
|
||||
- version: 2
|
||||
data:
|
||||
tiles:
|
||||
0,0:
|
||||
0: 30513
|
||||
uniqueMixes:
|
||||
- volume: 2500
|
||||
temperature: 293.15
|
||||
moles:
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
chunkSize: 4
|
||||
type: GridAtmosphere
|
||||
- type: GasTileOverlay
|
||||
- proto: AsteroidRockMining
|
||||
entities:
|
||||
- uid: 2
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 7.5,9.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 3
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 7.5,8.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 4
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 7.5,7.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 5
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 6.5,9.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 6
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 6.5,8.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 7
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 6.5,7.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 8
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 6.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 9
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 6.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 10
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 5.5,9.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 11
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 5.5,8.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 12
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 5.5,7.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 13
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 5.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 14
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 5.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 15
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 5.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 16
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 5.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 17
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 4.5,8.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 18
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 4.5,7.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 19
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 4.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 20
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 4.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 21
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 4.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 22
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 3.5,8.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 23
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 3.5,7.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 24
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 3.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 25
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 3.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 26
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 3.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 27
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 3.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 28
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 3.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 29
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 2.5,7.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 30
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 2.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 31
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 2.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 32
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 2.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 34
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 2.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 35
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 2.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 36
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 1.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 37
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 1.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 38
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 1.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 39
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 1.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 40
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 1.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 41
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 0.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 42
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 0.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 43
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 0.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 44
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 0.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 45
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 0.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 46
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -0.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 47
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -0.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: HeadSkeleton
|
||||
entities:
|
||||
- uid: 33
|
||||
components:
|
||||
- flags: SessionSpecific
|
||||
type: MetaData
|
||||
- pos: 4.464157,6.480661
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 168.8888985
|
||||
type: EmitSoundOnCollide
|
||||
...
|
||||
222
Resources/WhiteMaps/D/5.yml
Normal file
222
Resources/WhiteMaps/D/5.yml
Normal file
@@ -0,0 +1,222 @@
|
||||
meta:
|
||||
format: 5
|
||||
postmapinit: false
|
||||
tilemap:
|
||||
0: Space
|
||||
47: FloorHydro
|
||||
48: FloorKitchen
|
||||
94: Lattice
|
||||
95: Plating
|
||||
entities:
|
||||
- proto: ""
|
||||
entities:
|
||||
- uid: 1
|
||||
components:
|
||||
- type: MetaData
|
||||
- pos: 42.86761,-1.9785788
|
||||
parent: invalid
|
||||
type: Transform
|
||||
- chunks:
|
||||
0,0:
|
||||
ind: 0,0
|
||||
tiles: XwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAwAAAAMAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
-1,0:
|
||||
ind: -1,0
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
-1,-1:
|
||||
ind: -1,-1
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAALwAAAA==
|
||||
0,-1:
|
||||
ind: 0,-1
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAALwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAC8AAABeAAAALwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
type: MapGrid
|
||||
- type: Broadphase
|
||||
- angularDamping: 0.05
|
||||
linearDamping: 0.05
|
||||
fixedRotation: False
|
||||
bodyType: Dynamic
|
||||
type: Physics
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- type: OccluderTree
|
||||
- type: SpreaderGrid
|
||||
- type: Shuttle
|
||||
- nextUpdate: 315.5630914
|
||||
type: GridPathfinding
|
||||
- gravityShakeSound: !type:SoundPathSpecifier
|
||||
path: /Audio/Effects/alert.ogg
|
||||
type: Gravity
|
||||
- chunkCollection:
|
||||
version: 2
|
||||
nodes:
|
||||
- node:
|
||||
color: '#9FED5896'
|
||||
id: HalfTileOverlayGreyscale
|
||||
decals:
|
||||
5: -1,-1
|
||||
6: 0,-1
|
||||
7: 1,-1
|
||||
8: 3,-1
|
||||
- node:
|
||||
color: '#D4D4D496'
|
||||
id: HalfTileOverlayGreyscale180
|
||||
decals:
|
||||
0: 3,1
|
||||
1: 2,1
|
||||
2: 1,1
|
||||
3: -1,1
|
||||
- node:
|
||||
color: '#9FED5896'
|
||||
id: HalfTileOverlayGreyscale270
|
||||
decals:
|
||||
9: -1,-1
|
||||
type: DecalGrid
|
||||
- version: 2
|
||||
data:
|
||||
tiles:
|
||||
0,0:
|
||||
0: 8815
|
||||
1,0:
|
||||
0: 1
|
||||
uniqueMixes:
|
||||
- volume: 2500
|
||||
temperature: 293.15
|
||||
moles:
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
chunkSize: 4
|
||||
type: GridAtmosphere
|
||||
- type: GasTileOverlay
|
||||
- type: RadiationGridResistance
|
||||
- proto: AirlockFreezerKitchenHydroLocked
|
||||
entities:
|
||||
- uid: 9
|
||||
components:
|
||||
- pos: 0.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: FoodPlateSmall
|
||||
entities:
|
||||
- uid: 15
|
||||
components:
|
||||
- pos: 0.5761833,2.6196804
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 244.6662409
|
||||
type: EmitSoundOnCollide
|
||||
- proto: FoodPlateTrash
|
||||
entities:
|
||||
- uid: 14
|
||||
components:
|
||||
- pos: 1.7911835,1.9446805
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 240.1152102
|
||||
type: EmitSoundOnCollide
|
||||
- proto: GrilleBroken
|
||||
entities:
|
||||
- uid: 2
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 5.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 16
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: -3.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 17
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -1.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: HydroponicsToolClippers
|
||||
entities:
|
||||
- uid: 13
|
||||
components:
|
||||
- pos: 1.9936829,-1.1378198
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextAttack: 230.833356
|
||||
type: MeleeWeapon
|
||||
- nextSound: 231.033356
|
||||
type: EmitSoundOnCollide
|
||||
- proto: TableReinforced
|
||||
entities:
|
||||
- uid: 12
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 1.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: WallSolid
|
||||
entities:
|
||||
- uid: 3
|
||||
components:
|
||||
- pos: 4.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 4
|
||||
components:
|
||||
- pos: 3.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 5
|
||||
components:
|
||||
- pos: 2.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 6
|
||||
components:
|
||||
- pos: -0.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 7
|
||||
components:
|
||||
- pos: -1.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 8
|
||||
components:
|
||||
- pos: -2.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 18
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -1.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 19
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -1.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: WindoorKitchenHydroponicsLocked
|
||||
entities:
|
||||
- uid: 10
|
||||
components:
|
||||
- pos: 1.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 11
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 1.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
...
|
||||
954
Resources/WhiteMaps/D/6.yml
Normal file
954
Resources/WhiteMaps/D/6.yml
Normal file
@@ -0,0 +1,954 @@
|
||||
meta:
|
||||
format: 5
|
||||
postmapinit: false
|
||||
tilemap:
|
||||
0: Space
|
||||
82: FloorWhite
|
||||
94: Lattice
|
||||
95: Plating
|
||||
entities:
|
||||
- proto: ""
|
||||
entities:
|
||||
- uid: 1
|
||||
components:
|
||||
- type: MetaData
|
||||
- pos: 32.86274,-3.6396961
|
||||
parent: invalid
|
||||
type: Transform
|
||||
- chunks:
|
||||
0,0:
|
||||
ind: 0,0
|
||||
tiles: UgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAF8AAABSAAAAUgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAXgAAAFIAAABSAAAAXwAAAF4AAABfAAAAAAAAAAAAAAAAAAAAAAAAAFIAAABSAAAAUgAAAFIAAABSAAAAXgAAAFIAAABeAAAAXwAAAF8AAABSAAAAXwAAAF4AAABeAAAAAAAAAAAAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABfAAAAXwAAAF4AAABSAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAFIAAABSAAAAUgAAAFIAAABfAAAAXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
type: MapGrid
|
||||
- type: Broadphase
|
||||
- angularDamping: 0.05
|
||||
linearDamping: 0.05
|
||||
fixedRotation: False
|
||||
bodyType: Dynamic
|
||||
type: Physics
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- type: OccluderTree
|
||||
- type: SpreaderGrid
|
||||
- type: Shuttle
|
||||
- nextUpdate: 253.3409906
|
||||
type: GridPathfinding
|
||||
- gravityShakeSound: !type:SoundPathSpecifier
|
||||
path: /Audio/Effects/alert.ogg
|
||||
type: Gravity
|
||||
- chunkCollection:
|
||||
version: 2
|
||||
nodes:
|
||||
- node:
|
||||
color: '#52B4E996'
|
||||
id: HalfTileOverlayGreyscale
|
||||
decals:
|
||||
12: 1,2
|
||||
13: 2,2
|
||||
14: 3,2
|
||||
15: 1,4
|
||||
16: 2,4
|
||||
17: 3,4
|
||||
18: 1,6
|
||||
19: 2,6
|
||||
20: 3,6
|
||||
- node:
|
||||
color: '#52B4E996'
|
||||
id: QuarterTileOverlayGreyscale
|
||||
decals:
|
||||
6: 4,1
|
||||
7: 4,2
|
||||
8: 4,3
|
||||
9: 4,4
|
||||
10: 4,5
|
||||
11: 4,6
|
||||
- node:
|
||||
color: '#52B4E996'
|
||||
id: QuarterTileOverlayGreyscale180
|
||||
decals:
|
||||
0: 9,1
|
||||
1: 8,1
|
||||
2: 7,1
|
||||
3: 6,1
|
||||
4: 5,1
|
||||
5: 4,1
|
||||
type: DecalGrid
|
||||
- version: 2
|
||||
data:
|
||||
tiles:
|
||||
0,0:
|
||||
0: 239
|
||||
1,0:
|
||||
0: 17
|
||||
uniqueMixes:
|
||||
- volume: 2500
|
||||
temperature: 293.15
|
||||
moles:
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
chunkSize: 4
|
||||
type: GridAtmosphere
|
||||
- type: GasTileOverlay
|
||||
- type: RadiationGridResistance
|
||||
- proto: Bed
|
||||
entities:
|
||||
- uid: 35
|
||||
components:
|
||||
- pos: 1.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 36
|
||||
components:
|
||||
- pos: 1.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 37
|
||||
components:
|
||||
- pos: 1.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: BedsheetMedical
|
||||
entities:
|
||||
- uid: 56
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 1.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 262.1576363
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 57
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 1.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 262.7444582
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 58
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 1.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 263.2730505
|
||||
type: EmitSoundOnCollide
|
||||
- proto: CableApcExtension
|
||||
entities:
|
||||
- uid: 85
|
||||
components:
|
||||
- pos: 8.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 87
|
||||
components:
|
||||
- pos: 7.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 88
|
||||
components:
|
||||
- pos: 6.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 89
|
||||
components:
|
||||
- pos: 5.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 90
|
||||
components:
|
||||
- pos: 4.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 91
|
||||
components:
|
||||
- pos: 3.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 92
|
||||
components:
|
||||
- pos: 2.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 93
|
||||
components:
|
||||
- pos: 5.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 94
|
||||
components:
|
||||
- pos: 5.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 95
|
||||
components:
|
||||
- pos: 6.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 96
|
||||
components:
|
||||
- pos: 7.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 97
|
||||
components:
|
||||
- pos: 8.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 98
|
||||
components:
|
||||
- pos: 9.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 99
|
||||
components:
|
||||
- pos: 10.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 100
|
||||
components:
|
||||
- pos: 11.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 101
|
||||
components:
|
||||
- pos: 4.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 102
|
||||
components:
|
||||
- pos: 3.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 103
|
||||
components:
|
||||
- pos: 2.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 104
|
||||
components:
|
||||
- pos: 5.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 105
|
||||
components:
|
||||
- pos: 5.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 106
|
||||
components:
|
||||
- pos: 4.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 107
|
||||
components:
|
||||
- pos: 3.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 108
|
||||
components:
|
||||
- pos: 2.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 109
|
||||
components:
|
||||
- pos: 6.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 110
|
||||
components:
|
||||
- pos: 7.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 111
|
||||
components:
|
||||
- pos: 9.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 112
|
||||
components:
|
||||
- pos: 10.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 113
|
||||
components:
|
||||
- pos: 11.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 114
|
||||
components:
|
||||
- pos: 12.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- proto: CableApcStack1
|
||||
entities:
|
||||
- uid: 84
|
||||
components:
|
||||
- pos: 6.5781937,3.1785927
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 421.7984912
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 86
|
||||
components:
|
||||
- pos: 8.546757,5.7210927
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 425.9821328
|
||||
type: EmitSoundOnCollide
|
||||
- proto: CableMV
|
||||
entities:
|
||||
- uid: 82
|
||||
components:
|
||||
- pos: 9.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 115
|
||||
components:
|
||||
- pos: 8.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 116
|
||||
components:
|
||||
- pos: 7.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 117
|
||||
components:
|
||||
- pos: 6.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 118
|
||||
components:
|
||||
- pos: 5.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 119
|
||||
components:
|
||||
- pos: 5.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 120
|
||||
components:
|
||||
- pos: 5.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 121
|
||||
components:
|
||||
- pos: 5.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 122
|
||||
components:
|
||||
- pos: 5.5,7.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 123
|
||||
components:
|
||||
- pos: 5.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 124
|
||||
components:
|
||||
- pos: 5.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 125
|
||||
components:
|
||||
- pos: 4.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 126
|
||||
components:
|
||||
- pos: 3.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 127
|
||||
components:
|
||||
- pos: 2.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- proto: CableMVStack1
|
||||
entities:
|
||||
- uid: 83
|
||||
components:
|
||||
- pos: 6.9471703,5.4510927
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 418.8820877
|
||||
type: EmitSoundOnCollide
|
||||
- proto: Grille
|
||||
entities:
|
||||
- uid: 25
|
||||
components:
|
||||
- pos: 4.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 26
|
||||
components:
|
||||
- pos: 3.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 27
|
||||
components:
|
||||
- pos: 2.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 28
|
||||
components:
|
||||
- pos: 0.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 29
|
||||
components:
|
||||
- pos: 0.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 30
|
||||
components:
|
||||
- pos: 0.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 31
|
||||
components:
|
||||
- pos: 0.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 32
|
||||
components:
|
||||
- pos: 2.5,7.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 33
|
||||
components:
|
||||
- pos: 3.5,7.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 34
|
||||
components:
|
||||
- pos: 4.5,7.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: HospitalCurtainsOpen
|
||||
entities:
|
||||
- uid: 64
|
||||
components:
|
||||
- pos: 4.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 65
|
||||
components:
|
||||
- pos: 4.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 66
|
||||
components:
|
||||
- pos: 4.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 67
|
||||
components:
|
||||
- pos: 4.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 68
|
||||
components:
|
||||
- pos: 4.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 69
|
||||
components:
|
||||
- pos: 4.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: MaterialCloth1
|
||||
entities:
|
||||
- uid: 70
|
||||
components:
|
||||
- pos: 5.571457,2.4596114
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 312.4631982
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 71
|
||||
components:
|
||||
- pos: 5.2564545,3.1346114
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 312.7661484
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 72
|
||||
components:
|
||||
- pos: 6.4489555,1.9196113
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 313.4189993
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 73
|
||||
components:
|
||||
- pos: 2.4541473,3.4946113
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 314.4152301
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 74
|
||||
components:
|
||||
- pos: 5.498871,5.407111
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 316.4493865
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 75
|
||||
components:
|
||||
- pos: 3.0913696,5.2946115
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 316.9159723
|
||||
type: EmitSoundOnCollide
|
||||
- proto: PillCanister
|
||||
entities:
|
||||
- uid: 61
|
||||
components:
|
||||
- pos: 2.497879,2.5671825
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 282.9745028
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 62
|
||||
components:
|
||||
- pos: 3.3528824,4.5021825
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 284.1752187
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 63
|
||||
components:
|
||||
- pos: 3.03788,4.6371827
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 284.4738275
|
||||
type: EmitSoundOnCollide
|
||||
- proto: SheetSteel1
|
||||
entities:
|
||||
- uid: 2
|
||||
components:
|
||||
- pos: 10.573547,1.7782643
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 328.098961
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 76
|
||||
components:
|
||||
- pos: 11.541046,2.8132644
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 328.7400407
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 77
|
||||
components:
|
||||
- pos: 10.303547,3.2182643
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 328.9823285
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 78
|
||||
components:
|
||||
- pos: 12.9135475,4.7257643
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 329.9657071
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 79
|
||||
components:
|
||||
- pos: 6.6135483,6.5032644
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 330.6985909
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 80
|
||||
components:
|
||||
- pos: 9.111046,5.5582647
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 331.1994675
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 81
|
||||
components:
|
||||
- pos: 8.346046,6.300764
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 331.6990735
|
||||
type: EmitSoundOnCollide
|
||||
- proto: Syringe
|
||||
entities:
|
||||
- uid: 59
|
||||
components:
|
||||
- pos: 3.03788,2.5221825
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 271.8813489
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 60
|
||||
components:
|
||||
- pos: 2.3403816,4.5921826
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 275.6375195
|
||||
type: EmitSoundOnCollide
|
||||
- proto: TableFrame
|
||||
entities:
|
||||
- uid: 50
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 3.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 51
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 2.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: TableGlass
|
||||
entities:
|
||||
- uid: 52
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 2.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 53
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 3.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 54
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 3.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 55
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 2.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: WallSolid
|
||||
entities:
|
||||
- uid: 3
|
||||
components:
|
||||
- pos: 8.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 4
|
||||
components:
|
||||
- pos: 6.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 5
|
||||
components:
|
||||
- pos: 7.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 7
|
||||
components:
|
||||
- pos: 5.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 10
|
||||
components:
|
||||
- pos: 0.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 11
|
||||
components:
|
||||
- pos: 1.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 13
|
||||
components:
|
||||
- pos: 0.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 16
|
||||
components:
|
||||
- pos: 0.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 18
|
||||
components:
|
||||
- pos: 0.5,7.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 19
|
||||
components:
|
||||
- pos: 1.5,7.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 23
|
||||
components:
|
||||
- pos: 5.5,7.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 24
|
||||
components:
|
||||
- pos: 6.5,7.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: WindoorMedicalLocked
|
||||
entities:
|
||||
- uid: 38
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: 3.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 39
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: 3.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 40
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: 3.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: Window
|
||||
entities:
|
||||
- uid: 6
|
||||
components:
|
||||
- pos: 3.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 8
|
||||
components:
|
||||
- pos: 4.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 9
|
||||
components:
|
||||
- pos: 0.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 12
|
||||
components:
|
||||
- pos: 3.5,7.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 14
|
||||
components:
|
||||
- pos: 0.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 15
|
||||
components:
|
||||
- pos: 4.5,7.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 17
|
||||
components:
|
||||
- pos: 2.5,7.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 20
|
||||
components:
|
||||
- pos: 0.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 21
|
||||
components:
|
||||
- pos: 0.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 22
|
||||
components:
|
||||
- pos: 2.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: WindowReinforcedDirectional
|
||||
entities:
|
||||
- uid: 41
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: 3.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 42
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: 3.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 43
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: 3.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 44
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 3.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 45
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 2.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 46
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 1.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 47
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 3.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 48
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 2.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 49
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 1.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
...
|
||||
622
Resources/WhiteMaps/D/7.yml
Normal file
622
Resources/WhiteMaps/D/7.yml
Normal file
@@ -0,0 +1,622 @@
|
||||
meta:
|
||||
format: 5
|
||||
postmapinit: false
|
||||
tilemap:
|
||||
0: Space
|
||||
28: FloorDarkMono
|
||||
94: Lattice
|
||||
95: Plating
|
||||
entities:
|
||||
- proto: ""
|
||||
entities:
|
||||
- uid: 1
|
||||
components:
|
||||
- type: MetaData
|
||||
- pos: 34.247856,-6.5103292
|
||||
parent: invalid
|
||||
type: Transform
|
||||
- chunks:
|
||||
0,0:
|
||||
ind: 0,0
|
||||
tiles: XwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAcAAAAXwAAAF4AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAHAAAABwAAABfAAAAXgAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAABwAAAAcAAAAXgAAAF4AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAcAAAAHAAAABwAAABeAAAAHAAAAF4AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAHAAAABwAAAAcAAAAHAAAABwAAAAcAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAABwAAAAcAAAAHAAAABwAAAAcAAAAHAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
-1,0:
|
||||
ind: -1,0
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAHAAAABwAAAAcAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF4AAAAcAAAAXgAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABeAAAAXwAAABwAAAAcAAAAHAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF4AAABeAAAAXgAAABwAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
type: MapGrid
|
||||
- type: Broadphase
|
||||
- angularDamping: 0.05
|
||||
linearDamping: 0.05
|
||||
fixedRotation: False
|
||||
bodyType: Dynamic
|
||||
type: Physics
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- type: OccluderTree
|
||||
- type: SpreaderGrid
|
||||
- type: Shuttle
|
||||
- nextUpdate: 402.0043377
|
||||
type: GridPathfinding
|
||||
- gravityShakeSound: !type:SoundPathSpecifier
|
||||
path: /Audio/Effects/alert.ogg
|
||||
type: Gravity
|
||||
- chunkCollection:
|
||||
version: 2
|
||||
nodes:
|
||||
- node:
|
||||
color: '#DE3A3A96'
|
||||
id: QuarterTileOverlayGreyscale
|
||||
decals:
|
||||
1: 1,1
|
||||
2: 1,2
|
||||
3: 1,3
|
||||
12: -6,2
|
||||
13: -2,5
|
||||
14: -1,5
|
||||
15: 0,5
|
||||
16: 1,5
|
||||
17: 1,6
|
||||
18: 2,6
|
||||
19: 3,6
|
||||
20: 4,6
|
||||
21: 5,6
|
||||
22: 6,6
|
||||
- node:
|
||||
color: '#DE3A3A96'
|
||||
id: QuarterTileOverlayGreyscale180
|
||||
decals:
|
||||
0: 1,1
|
||||
4: 0,4
|
||||
5: -1,4
|
||||
6: -2,4
|
||||
7: -3,4
|
||||
8: -4,4
|
||||
9: -4,2
|
||||
10: -5,2
|
||||
11: -6,2
|
||||
23: 6,6
|
||||
24: 6,5
|
||||
type: DecalGrid
|
||||
- version: 2
|
||||
data:
|
||||
tiles:
|
||||
0,0:
|
||||
0: 13111
|
||||
uniqueMixes:
|
||||
- volume: 2500
|
||||
temperature: 293.15
|
||||
moles:
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
chunkSize: 4
|
||||
type: GridAtmosphere
|
||||
- type: GasTileOverlay
|
||||
- type: RadiationGridResistance
|
||||
- proto: AirlockBrigGlassLocked
|
||||
entities:
|
||||
- uid: 37
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: -0.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 38
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: -0.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: Bed
|
||||
entities:
|
||||
- uid: 60
|
||||
components:
|
||||
- pos: 6.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 61
|
||||
components:
|
||||
- pos: 4.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 62
|
||||
components:
|
||||
- pos: 2.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: BedsheetBlack
|
||||
entities:
|
||||
- uid: 63
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 6.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 381.8426251
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 64
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 4.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 382.7922646
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 65
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 2.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 383.3410816
|
||||
type: EmitSoundOnCollide
|
||||
- proto: BoxHandcuff
|
||||
entities:
|
||||
- uid: 77
|
||||
components:
|
||||
- pos: 2.5858994,2.876946
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 475.1705232
|
||||
type: EmitSoundOnCollide
|
||||
- proto: GrilleBroken
|
||||
entities:
|
||||
- uid: 36
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 3.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 39
|
||||
components:
|
||||
- pos: -6.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 40
|
||||
components:
|
||||
- pos: -2.5,9.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 41
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 7.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: Rack
|
||||
entities:
|
||||
- uid: 48
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -3.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 49
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -4.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 50
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -5.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: ShardGlass
|
||||
entities:
|
||||
- uid: 69
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 5.6444054,6.459689
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextAttack: 412.087686
|
||||
type: MeleeWeapon
|
||||
- nextSound: 412.287686
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 70
|
||||
components:
|
||||
- pos: 3.7136307,6.4002013
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextAttack: 413.4252596
|
||||
type: MeleeWeapon
|
||||
- nextSound: 413.6252596
|
||||
type: EmitSoundOnCollide
|
||||
- proto: SheetSteel1
|
||||
entities:
|
||||
- uid: 42
|
||||
components:
|
||||
- pos: 7.6257324,3.346351
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 432.2388139
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 71
|
||||
components:
|
||||
- pos: 4.3857346,0.5563507
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 435.7545903
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 72
|
||||
components:
|
||||
- pos: 4.7907333,2.446351
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 436.3729571
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 73
|
||||
components:
|
||||
- pos: -5.212044,4.2942343
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 438.4410527
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 74
|
||||
components:
|
||||
- pos: -3.4345436,4.9242344
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 439.9025946
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 75
|
||||
components:
|
||||
- pos: -3.5695438,8.051735
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 440.6371022
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 76
|
||||
components:
|
||||
- pos: -4.803034,5.987985
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 443.5377751
|
||||
type: EmitSoundOnCollide
|
||||
- proto: SignPrison
|
||||
entities:
|
||||
- uid: 78
|
||||
components:
|
||||
- pos: -2.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: Table
|
||||
entities:
|
||||
- uid: 46
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 2.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 47
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 2.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: TableFrame
|
||||
entities:
|
||||
- uid: 66
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 5.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 67
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 3.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: TableGlass
|
||||
entities:
|
||||
- uid: 68
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 1.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: WallReinforced
|
||||
entities:
|
||||
- uid: 2
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 7.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 3
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 7.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 4
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 7.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 5
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 7.5,7.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 6
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: -6.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 7
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 6.5,7.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 8
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 5.5,7.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 9
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 4.5,7.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 10
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 3.5,7.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 11
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 2.5,7.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 12
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 1.5,7.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 13
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 0.5,7.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 14
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 0.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 15
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: -0.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 16
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: -1.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 17
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: -2.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 18
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: -2.5,7.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 19
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: -2.5,8.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 20
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: -6.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 21
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: -6.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 22
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: -5.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 23
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: -4.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 24
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: -3.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 25
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: -2.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 26
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: -2.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 27
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: -2.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 28
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 0.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 29
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: -1.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 30
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: -0.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 31
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 0.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 32
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 0.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 33
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 0.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 34
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 1.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 35
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 2.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: WardrobePrisonFilled
|
||||
entities:
|
||||
- uid: 79
|
||||
components:
|
||||
- pos: 5.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 80
|
||||
components:
|
||||
- pos: 3.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 81
|
||||
components:
|
||||
- pos: 1.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: WindoorBrigLocked
|
||||
entities:
|
||||
- uid: 43
|
||||
components:
|
||||
- pos: 6.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 44
|
||||
components:
|
||||
- pos: 4.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 45
|
||||
components:
|
||||
- pos: 2.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: WindowReinforcedDirectional
|
||||
entities:
|
||||
- uid: 51
|
||||
components:
|
||||
- pos: 5.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 52
|
||||
components:
|
||||
- pos: 3.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 53
|
||||
components:
|
||||
- pos: 1.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 54
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 1.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 55
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 1.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 56
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 3.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 57
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 3.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 58
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 5.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 59
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 5.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
...
|
||||
949
Resources/WhiteMaps/D/8.yml
Normal file
949
Resources/WhiteMaps/D/8.yml
Normal file
@@ -0,0 +1,949 @@
|
||||
meta:
|
||||
format: 5
|
||||
postmapinit: false
|
||||
tilemap:
|
||||
0: Space
|
||||
94: Lattice
|
||||
95: Plating
|
||||
entities:
|
||||
- proto: ""
|
||||
entities:
|
||||
- uid: 1
|
||||
components:
|
||||
- type: MetaData
|
||||
- pos: 26.19083,-0.99888664
|
||||
parent: invalid
|
||||
type: Transform
|
||||
- chunks:
|
||||
0,0:
|
||||
ind: 0,0
|
||||
tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXgAAAF8AAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
0,-1:
|
||||
ind: 0,-1
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAA==
|
||||
type: MapGrid
|
||||
- type: Broadphase
|
||||
- angularDamping: 0.05
|
||||
linearDamping: 0.05
|
||||
fixedRotation: False
|
||||
bodyType: Dynamic
|
||||
type: Physics
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- type: OccluderTree
|
||||
- type: SpreaderGrid
|
||||
- type: Shuttle
|
||||
- nextUpdate: 407.0774236
|
||||
type: GridPathfinding
|
||||
- gravityShakeSound: !type:SoundPathSpecifier
|
||||
path: /Audio/Effects/alert.ogg
|
||||
type: Gravity
|
||||
- chunkCollection:
|
||||
version: 2
|
||||
nodes: []
|
||||
type: DecalGrid
|
||||
- version: 2
|
||||
data:
|
||||
tiles:
|
||||
0,0:
|
||||
0: 43695
|
||||
0,1:
|
||||
0: 546
|
||||
1,0:
|
||||
0: 43695
|
||||
1,1:
|
||||
0: 35498
|
||||
1,2:
|
||||
0: 8
|
||||
2,0:
|
||||
0: 7
|
||||
0,-2:
|
||||
0: 8192
|
||||
0,-1:
|
||||
0: 43690
|
||||
1,-2:
|
||||
0: 41504
|
||||
1,-1:
|
||||
0: 43690
|
||||
uniqueMixes:
|
||||
- volume: 2500
|
||||
temperature: 293.15
|
||||
moles:
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
chunkSize: 4
|
||||
type: GridAtmosphere
|
||||
- type: GasTileOverlay
|
||||
- type: RadiationGridResistance
|
||||
- proto: AirlockExternalEngineeringLocked
|
||||
entities:
|
||||
- uid: 104
|
||||
components:
|
||||
- pos: 10.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: CableApcStack
|
||||
entities:
|
||||
- uid: 92
|
||||
components:
|
||||
- flags: InContainer
|
||||
type: MetaData
|
||||
- parent: 91
|
||||
type: Transform
|
||||
- nextSound: 174.540253
|
||||
type: EmitSoundOnCollide
|
||||
- canCollide: False
|
||||
type: Physics
|
||||
- proto: CableHV
|
||||
entities:
|
||||
- uid: 34
|
||||
components:
|
||||
- pos: 7.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 35
|
||||
components:
|
||||
- pos: 7.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 36
|
||||
components:
|
||||
- pos: 7.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 37
|
||||
components:
|
||||
- pos: 7.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 38
|
||||
components:
|
||||
- pos: 7.5,-3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 39
|
||||
components:
|
||||
- pos: 7.5,-4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 40
|
||||
components:
|
||||
- pos: 5.5,-6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 41
|
||||
components:
|
||||
- pos: 5.5,-5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 42
|
||||
components:
|
||||
- pos: 5.5,-4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 43
|
||||
components:
|
||||
- pos: 5.5,-3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 44
|
||||
components:
|
||||
- pos: 5.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 45
|
||||
components:
|
||||
- pos: 5.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 46
|
||||
components:
|
||||
- pos: 5.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 47
|
||||
components:
|
||||
- pos: 5.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 48
|
||||
components:
|
||||
- pos: 5.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 49
|
||||
components:
|
||||
- pos: 5.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 50
|
||||
components:
|
||||
- pos: 5.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 51
|
||||
components:
|
||||
- pos: 5.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 52
|
||||
components:
|
||||
- pos: 5.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 53
|
||||
components:
|
||||
- pos: 5.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 54
|
||||
components:
|
||||
- pos: 7.5,8.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 55
|
||||
components:
|
||||
- pos: 7.5,7.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 56
|
||||
components:
|
||||
- pos: 7.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 57
|
||||
components:
|
||||
- pos: 7.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 58
|
||||
components:
|
||||
- pos: 7.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 59
|
||||
components:
|
||||
- pos: 7.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 60
|
||||
components:
|
||||
- pos: 7.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 61
|
||||
components:
|
||||
- pos: 4.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 62
|
||||
components:
|
||||
- pos: 6.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 63
|
||||
components:
|
||||
- pos: 3.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 64
|
||||
components:
|
||||
- pos: 2.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 65
|
||||
components:
|
||||
- pos: 1.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 66
|
||||
components:
|
||||
- pos: 1.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 67
|
||||
components:
|
||||
- pos: 1.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 68
|
||||
components:
|
||||
- pos: 1.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 69
|
||||
components:
|
||||
- pos: 1.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 70
|
||||
components:
|
||||
- pos: 1.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 71
|
||||
components:
|
||||
- pos: 1.5,-4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 72
|
||||
components:
|
||||
- pos: 1.5,-3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 73
|
||||
components:
|
||||
- pos: 1.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 74
|
||||
components:
|
||||
- pos: 1.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 75
|
||||
components:
|
||||
- pos: 1.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 76
|
||||
components:
|
||||
- pos: 3.5,-3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 77
|
||||
components:
|
||||
- pos: 3.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 78
|
||||
components:
|
||||
- pos: 3.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 79
|
||||
components:
|
||||
- pos: 3.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 80
|
||||
components:
|
||||
- pos: 3.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 81
|
||||
components:
|
||||
- pos: 3.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 82
|
||||
components:
|
||||
- pos: 8.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 83
|
||||
components:
|
||||
- pos: 9.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- proto: CableHVStack
|
||||
entities:
|
||||
- uid: 93
|
||||
components:
|
||||
- flags: InContainer
|
||||
type: MetaData
|
||||
- parent: 91
|
||||
type: Transform
|
||||
- nextSound: 171.293018
|
||||
type: EmitSoundOnCollide
|
||||
- canCollide: False
|
||||
type: Physics
|
||||
- uid: 95
|
||||
components:
|
||||
- flags: InContainer
|
||||
type: MetaData
|
||||
- parent: 91
|
||||
type: Transform
|
||||
- nextSound: 172.0258784
|
||||
type: EmitSoundOnCollide
|
||||
- canCollide: False
|
||||
type: Physics
|
||||
- proto: CableMVStack
|
||||
entities:
|
||||
- uid: 94
|
||||
components:
|
||||
- flags: InContainer
|
||||
type: MetaData
|
||||
- parent: 91
|
||||
type: Transform
|
||||
- nextSound: 176.890616
|
||||
type: EmitSoundOnCollide
|
||||
- canCollide: False
|
||||
type: Physics
|
||||
- proto: ClothingBackpackSatchelEngineering
|
||||
entities:
|
||||
- uid: 91
|
||||
components:
|
||||
- pos: 5.7317867,0.53978384
|
||||
parent: 1
|
||||
type: Transform
|
||||
- containers:
|
||||
storagebase: !type:Container
|
||||
showEnts: False
|
||||
occludes: True
|
||||
ents:
|
||||
- 92
|
||||
- 93
|
||||
- 94
|
||||
- 95
|
||||
- 96
|
||||
- 97
|
||||
- 98
|
||||
- 99
|
||||
- 100
|
||||
type: ContainerContainer
|
||||
- nextSound: 156.8098369
|
||||
type: EmitSoundOnCollide
|
||||
- type: ItemCooldown
|
||||
- proto: GrilleBroken
|
||||
entities:
|
||||
- uid: 103
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 11.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 105
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 12.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: SheetSteel
|
||||
entities:
|
||||
- uid: 100
|
||||
components:
|
||||
- flags: InContainer
|
||||
type: MetaData
|
||||
- parent: 91
|
||||
type: Transform
|
||||
- nextSound: 228.5571428
|
||||
type: EmitSoundOnCollide
|
||||
- canCollide: False
|
||||
type: Physics
|
||||
- proto: SheetSteel1
|
||||
entities:
|
||||
- uid: 84
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 7.6996117,4.43857
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 131.8597438
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 85
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 0.57398415,0.41183347
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 136.4759139
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 86
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 5.530142,4.46557
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 133.4759301
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 87
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 3.6941414,1.1715696
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 134.6594543
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 88
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 5.492712,-0.86366004
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 138.1090816
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 89
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 7.7225723,-0.77001053
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 139.2928817
|
||||
type: EmitSoundOnCollide
|
||||
- proto: SolarAssemblyPart
|
||||
entities:
|
||||
- uid: 97
|
||||
components:
|
||||
- flags: InContainer
|
||||
type: MetaData
|
||||
- parent: 91
|
||||
type: Transform
|
||||
- nextSound: 212.9398752
|
||||
type: EmitSoundOnCollide
|
||||
- canCollide: False
|
||||
type: Physics
|
||||
- uid: 98
|
||||
components:
|
||||
- flags: InContainer
|
||||
type: MetaData
|
||||
- parent: 91
|
||||
type: Transform
|
||||
- nextSound: 197.075005
|
||||
type: EmitSoundOnCollide
|
||||
- canCollide: False
|
||||
type: Physics
|
||||
- uid: 99
|
||||
components:
|
||||
- flags: InContainer
|
||||
type: MetaData
|
||||
- parent: 91
|
||||
type: Transform
|
||||
- nextSound: 198.3091959
|
||||
type: EmitSoundOnCollide
|
||||
- canCollide: False
|
||||
type: Physics
|
||||
- proto: SolarControlComputerCircuitboard
|
||||
entities:
|
||||
- uid: 96
|
||||
components:
|
||||
- flags: InContainer
|
||||
type: MetaData
|
||||
- parent: 91
|
||||
type: Transform
|
||||
- nextSound: 200.909364
|
||||
type: EmitSoundOnCollide
|
||||
- canCollide: False
|
||||
type: Physics
|
||||
- proto: SolarPanelBroken
|
||||
entities:
|
||||
- uid: 2
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 7.5,-4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 3
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 7.5,-3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 4
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 7.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 5
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 7.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 6
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 5.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 7
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 5.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 8
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 5.5,-3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 9
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 5.5,-4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 10
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 5.5,-5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 11
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 5.5,-6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 12
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 1.5,-4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 13
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 3.5,-3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 14
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 3.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 15
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 3.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 16
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 1.5,-3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 17
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 1.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 18
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 1.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 19
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 7.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 20
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 7.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 21
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 7.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 22
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 7.5,7.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 23
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 7.5,8.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 24
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 5.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 25
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 5.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 26
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 5.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 27
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 5.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 28
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 3.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 29
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 3.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 30
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 1.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 31
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 1.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 32
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 1.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 33
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 1.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: WallSolid
|
||||
entities:
|
||||
- uid: 90
|
||||
components:
|
||||
- pos: 11.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 101
|
||||
components:
|
||||
- pos: 10.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 102
|
||||
components:
|
||||
- pos: 10.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
...
|
||||
561
Resources/WhiteMaps/D/9.yml
Normal file
561
Resources/WhiteMaps/D/9.yml
Normal file
@@ -0,0 +1,561 @@
|
||||
meta:
|
||||
format: 5
|
||||
postmapinit: false
|
||||
tilemap:
|
||||
0: Space
|
||||
23: FloorDark
|
||||
94: Lattice
|
||||
95: Plating
|
||||
entities:
|
||||
- proto: ""
|
||||
entities:
|
||||
- uid: 1
|
||||
components:
|
||||
- type: MetaData
|
||||
- pos: 20.039164,-0.75123215
|
||||
parent: invalid
|
||||
type: Transform
|
||||
- chunks:
|
||||
0,0:
|
||||
ind: 0,0
|
||||
tiles: XgAAABcAAAAXAAAAFwAAAF4AAABfAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAABfAAAAFwAAABcAAAAXAAAAXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAFwAAABcAAAAXAAAAXwAAABcAAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAXwAAAF8AAABeAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
-1,0:
|
||||
ind: -1,0
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAFwAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAABcAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAABcAAAAXAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
0,-1:
|
||||
ind: 0,-1
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAABcAAABfAAAAXgAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAAAXAAAAXgAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
-1,-1:
|
||||
ind: -1,-1
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAA==
|
||||
type: MapGrid
|
||||
- type: Broadphase
|
||||
- angularDamping: 0.05
|
||||
linearDamping: 0.05
|
||||
fixedRotation: False
|
||||
bodyType: Dynamic
|
||||
type: Physics
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- type: OccluderTree
|
||||
- type: SpreaderGrid
|
||||
- type: Shuttle
|
||||
- nextUpdate: 286.2536644
|
||||
type: GridPathfinding
|
||||
- gravityShakeSound: !type:SoundPathSpecifier
|
||||
path: /Audio/Effects/alert.ogg
|
||||
type: Gravity
|
||||
- chunkCollection:
|
||||
version: 2
|
||||
nodes:
|
||||
- node:
|
||||
color: '#DE3A3A96'
|
||||
id: QuarterTileOverlayGreyscale
|
||||
decals:
|
||||
2: -1,3
|
||||
3: 0,3
|
||||
4: 1,3
|
||||
5: 2,3
|
||||
6: 3,3
|
||||
7: 4,3
|
||||
8: 5,3
|
||||
11: 3,0
|
||||
12: 3,1
|
||||
13: 3,2
|
||||
- node:
|
||||
color: '#DE3A3A96'
|
||||
id: QuarterTileOverlayGreyscale180
|
||||
decals:
|
||||
14: 1,2
|
||||
15: 1,0
|
||||
type: DecalGrid
|
||||
- version: 2
|
||||
data:
|
||||
tiles:
|
||||
0,0:
|
||||
0: 14193
|
||||
uniqueMixes:
|
||||
- volume: 2500
|
||||
temperature: 293.15
|
||||
moles:
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
chunkSize: 4
|
||||
type: GridAtmosphere
|
||||
- type: GasTileOverlay
|
||||
- type: RadiationGridResistance
|
||||
- proto: Barricade
|
||||
entities:
|
||||
- uid: 35
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 5.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 36
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 7.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 37
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -0.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 38
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -1.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 39
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 3.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 40
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 5.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 41
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 6.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 42
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -0.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: Catwalk
|
||||
entities:
|
||||
- uid: 59
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 2.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 60
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 2.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 61
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 2.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 62
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 2.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 63
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 2.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: Grille
|
||||
entities:
|
||||
- uid: 21
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 8.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 43
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 7.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 44
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 6.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 45
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 9.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 47
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -2.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 48
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -3.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 49
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -4.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: GrilleBroken
|
||||
entities:
|
||||
- uid: 46
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 7.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 50
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: -5.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 51
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: -4.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 52
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 9.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 53
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 10.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: HighSecArmoryLocked
|
||||
entities:
|
||||
- uid: 26
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 3.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 27
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 1.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 28
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 1.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 29
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 3.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: ReinforcedGirder
|
||||
entities:
|
||||
- uid: 54
|
||||
components:
|
||||
- pos: 11.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 55
|
||||
components:
|
||||
- pos: -2.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 56
|
||||
components:
|
||||
- pos: -3.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 57
|
||||
components:
|
||||
- pos: -3.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: SheetPlasteel1
|
||||
entities:
|
||||
- uid: 66
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 10.703756,5.615217
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 363.9928357
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 71
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -5.6183586,4.490217
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 361.6080534
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 72
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 7.801256,6.740217
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 365.0021557
|
||||
type: EmitSoundOnCollide
|
||||
- proto: SheetSteel1
|
||||
entities:
|
||||
- uid: 58
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 7.4020863,-0.37016964
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 352.9909712
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 64
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 6.592087,0.77733034
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 353.7077914
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 65
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 8.527088,2.7123303
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 354.522223
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 67
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 2.5163822,-3.3283343
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 356.3206748
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 68
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 3.8663826,-1.4833345
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 356.6952545
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 69
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -0.4915886,-0.9658344
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 357.6532236
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 70
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -1.3008747,1.6002527
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 358.5550103
|
||||
type: EmitSoundOnCollide
|
||||
- proto: SignArmory
|
||||
entities:
|
||||
- uid: 25
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 2.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 30
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 2.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: WallReinforced
|
||||
entities:
|
||||
- uid: 2
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 6.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 3
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 2.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 4
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 4.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 5
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 5.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 6
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 6.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 7
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 0.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 8
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -0.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 9
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -1.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 10
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 2.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 11
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 4.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 12
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 5.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 13
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 0.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 14
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -0.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 15
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 0.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 16
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -0.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 17
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 4.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 18
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 5.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 19
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 7.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 20
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 8.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 22
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -1.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 23
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -1.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 24
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -2.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: WeaponTurretSyndicateBroken
|
||||
entities:
|
||||
- uid: 31
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 4.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 32
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 0.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 33
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 5.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 34
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -0.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
...
|
||||
986
Resources/WhiteMaps/D/abductor.yml
Normal file
986
Resources/WhiteMaps/D/abductor.yml
Normal file
@@ -0,0 +1,986 @@
|
||||
meta:
|
||||
format: 5
|
||||
postmapinit: false
|
||||
tilemap:
|
||||
0: Space
|
||||
81: FloorWhite
|
||||
94: Plating
|
||||
entities:
|
||||
- proto: ""
|
||||
entities:
|
||||
- uid: 1
|
||||
components:
|
||||
- type: MetaData
|
||||
- pos: -1.6649301,0.7031255
|
||||
parent: invalid
|
||||
type: Transform
|
||||
- chunks:
|
||||
0,0:
|
||||
ind: 0,0
|
||||
tiles: UQAAAFEAAABRAAAAUQAAAFEAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFEAAABRAAAAUQAAAFEAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABRAAAAUQAAAFEAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
0,-1:
|
||||
ind: 0,-1
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFEAAABRAAAAUQAAAFEAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABRAAAAUQAAAFEAAABRAAAAUQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAFEAAABRAAAAUQAAAFEAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
-1,-1:
|
||||
ind: -1,-1
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAFEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAFEAAABRAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABRAAAAUQAAAA==
|
||||
-1,0:
|
||||
ind: -1,0
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABRAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAFEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
type: MapGrid
|
||||
- type: Broadphase
|
||||
- angularDamping: 0.05
|
||||
linearDamping: 0.05
|
||||
fixedRotation: False
|
||||
bodyType: Dynamic
|
||||
type: Physics
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- type: OccluderTree
|
||||
- type: SpreaderGrid
|
||||
- type: Shuttle
|
||||
- nextUpdate: 430.8503271
|
||||
type: GridPathfinding
|
||||
- gravityShakeSound: !type:SoundPathSpecifier
|
||||
path: /Audio/Effects/alert.ogg
|
||||
type: Gravity
|
||||
- chunkCollection:
|
||||
version: 2
|
||||
nodes:
|
||||
- node:
|
||||
color: '#DE3A3AFF'
|
||||
id: Bot
|
||||
decals:
|
||||
2: 1,-1
|
||||
- node:
|
||||
color: '#FFFFFFFF'
|
||||
id: Dirt
|
||||
decals:
|
||||
29: 1,1
|
||||
30: 0,1
|
||||
31: 0,-1
|
||||
32: 0,0
|
||||
33: 3,-1
|
||||
34: 2,-2
|
||||
35: 2,-1
|
||||
36: 3,-2
|
||||
37: 4,-1
|
||||
38: 4,0
|
||||
39: 3,0
|
||||
- node:
|
||||
color: '#FFFFFFFF'
|
||||
id: DirtHeavy
|
||||
decals:
|
||||
40: 0,0
|
||||
41: -1,0
|
||||
42: 0,1
|
||||
43: 1,1
|
||||
44: 1,2
|
||||
45: 4,0
|
||||
46: 0,-2
|
||||
47: -1,-3
|
||||
48: 1,-3
|
||||
- node:
|
||||
color: '#FFFFFFFF'
|
||||
id: DirtMedium
|
||||
decals:
|
||||
7: 4,-1
|
||||
8: 3,-2
|
||||
9: 3,-1
|
||||
10: 2,-1
|
||||
11: 2,-2
|
||||
12: 2,-3
|
||||
13: 1,-3
|
||||
14: 1,-2
|
||||
15: 0,-2
|
||||
16: 0,-3
|
||||
17: -1,-3
|
||||
18: -1,-2
|
||||
19: -2,-2
|
||||
20: -1,-1
|
||||
21: -2,-1
|
||||
22: -2,0
|
||||
23: 0,0
|
||||
24: 1,0
|
||||
25: 1,0
|
||||
26: 2,0
|
||||
27: 3,0
|
||||
28: 3,1
|
||||
- node:
|
||||
color: '#DE3A3AFF'
|
||||
id: body
|
||||
decals:
|
||||
1: 1,0
|
||||
- node:
|
||||
color: '#DE3A3AFF'
|
||||
id: splatter
|
||||
decals:
|
||||
3: 1,-1
|
||||
4: -1,0
|
||||
5: 2,-2
|
||||
6: 3,0
|
||||
type: DecalGrid
|
||||
- version: 2
|
||||
data:
|
||||
tiles:
|
||||
0,0:
|
||||
0: 7
|
||||
0,-1:
|
||||
0: 30464
|
||||
uniqueMixes:
|
||||
- volume: 2500
|
||||
temperature: 293.15
|
||||
moles:
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
chunkSize: 4
|
||||
type: GridAtmosphere
|
||||
- type: GasTileOverlay
|
||||
- type: RadiationGridResistance
|
||||
- proto: AirlockShuttle
|
||||
entities:
|
||||
- uid: 32
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: 5.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: APCBasic
|
||||
entities:
|
||||
- uid: 67
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 2.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: BaseComputer
|
||||
entities:
|
||||
- uid: 105
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 0.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: CableApcExtension
|
||||
entities:
|
||||
- uid: 76
|
||||
components:
|
||||
- pos: 2.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 77
|
||||
components:
|
||||
- pos: 1.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 78
|
||||
components:
|
||||
- pos: 1.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 79
|
||||
components:
|
||||
- pos: 1.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 80
|
||||
components:
|
||||
- pos: 1.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 81
|
||||
components:
|
||||
- pos: 1.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 82
|
||||
components:
|
||||
- pos: 1.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 83
|
||||
components:
|
||||
- pos: 1.5,-3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 84
|
||||
components:
|
||||
- pos: 0.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 85
|
||||
components:
|
||||
- pos: -0.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 86
|
||||
components:
|
||||
- pos: -1.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 87
|
||||
components:
|
||||
- pos: -2.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 88
|
||||
components:
|
||||
- pos: -2.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 89
|
||||
components:
|
||||
- pos: -2.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 90
|
||||
components:
|
||||
- pos: 2.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 91
|
||||
components:
|
||||
- pos: 3.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 92
|
||||
components:
|
||||
- pos: 4.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 93
|
||||
components:
|
||||
- pos: 5.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 94
|
||||
components:
|
||||
- pos: 5.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 95
|
||||
components:
|
||||
- pos: 5.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 96
|
||||
components:
|
||||
- pos: 3.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 97
|
||||
components:
|
||||
- pos: 3.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 98
|
||||
components:
|
||||
- pos: 3.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 99
|
||||
components:
|
||||
- pos: 3.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 100
|
||||
components:
|
||||
- pos: -0.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 101
|
||||
components:
|
||||
- pos: -0.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 102
|
||||
components:
|
||||
- pos: -0.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 103
|
||||
components:
|
||||
- pos: -0.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- proto: CableHV
|
||||
entities:
|
||||
- uid: 52
|
||||
components:
|
||||
- pos: 1.5,-4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 53
|
||||
components:
|
||||
- pos: 0.5,-4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 54
|
||||
components:
|
||||
- pos: 2.5,-4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 55
|
||||
components:
|
||||
- pos: 1.5,-3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 58
|
||||
components:
|
||||
- pos: 2.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 59
|
||||
components:
|
||||
- pos: 1.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 60
|
||||
components:
|
||||
- pos: 0.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 61
|
||||
components:
|
||||
- pos: 1.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 62
|
||||
components:
|
||||
- pos: 1.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 63
|
||||
components:
|
||||
- pos: 1.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 64
|
||||
components:
|
||||
- pos: 1.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 65
|
||||
components:
|
||||
- pos: 1.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 66
|
||||
components:
|
||||
- pos: 1.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- proto: CableMV
|
||||
entities:
|
||||
- uid: 68
|
||||
components:
|
||||
- pos: 1.5,-3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 69
|
||||
components:
|
||||
- pos: 1.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 70
|
||||
components:
|
||||
- pos: 1.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 71
|
||||
components:
|
||||
- pos: 1.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 72
|
||||
components:
|
||||
- pos: 1.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 73
|
||||
components:
|
||||
- pos: 1.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 74
|
||||
components:
|
||||
- pos: 1.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 75
|
||||
components:
|
||||
- pos: 2.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- proto: ChairPilotSeat
|
||||
entities:
|
||||
- uid: 107
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 1.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: ComputerBroken
|
||||
entities:
|
||||
- uid: 23
|
||||
components:
|
||||
- pos: 3.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 37
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: -0.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 106
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: -1.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: ComputerShuttle
|
||||
entities:
|
||||
- uid: 46
|
||||
components:
|
||||
- pos: 1.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: CrateFilledSpawner
|
||||
entities:
|
||||
- uid: 115
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 2.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 116
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 0.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: DonkpocketBoxSpawner
|
||||
entities:
|
||||
- uid: 114
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -0.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: GeneratorWallmountAPU
|
||||
entities:
|
||||
- uid: 49
|
||||
components:
|
||||
- pos: 0.5,-4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 50
|
||||
components:
|
||||
- pos: 1.5,-4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 51
|
||||
components:
|
||||
- pos: 2.5,-4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 56
|
||||
components:
|
||||
- pos: 2.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 57
|
||||
components:
|
||||
- pos: 0.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: Gyroscope
|
||||
entities:
|
||||
- uid: 4
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -1.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextFire: 139.9262266
|
||||
type: Thruster
|
||||
- uid: 6
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 4.5,-3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextFire: 146.8940696
|
||||
type: Thruster
|
||||
- uid: 8
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 4.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextFire: 145.700226
|
||||
type: Thruster
|
||||
- uid: 11
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -1.5,-3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextFire: 150.1003939
|
||||
type: Thruster
|
||||
- proto: OperatingTable
|
||||
entities:
|
||||
- uid: 104
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 1.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: Poweredlight
|
||||
entities:
|
||||
- uid: 108
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: -1.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: False
|
||||
type: AmbientSound
|
||||
- uid: 109
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 2.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: False
|
||||
type: AmbientSound
|
||||
- uid: 111
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 0.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: False
|
||||
type: AmbientSound
|
||||
- proto: PoweredlightEmpty
|
||||
entities:
|
||||
- uid: 112
|
||||
components:
|
||||
- pos: 2.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: RandomAnomalySpawner
|
||||
entities:
|
||||
- uid: 113
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 1.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: ReinforcedPlasmaWindow
|
||||
entities:
|
||||
- uid: 15
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 1.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: SalvageMaterialCrateSpawner
|
||||
entities:
|
||||
- uid: 117
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 2.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: SpawnMobKangaroo
|
||||
entities:
|
||||
- uid: 110
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 1.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: SubstationBasic
|
||||
entities:
|
||||
- uid: 47
|
||||
components:
|
||||
- pos: 1.5,-3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 48
|
||||
components:
|
||||
- pos: 1.5,-3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: Thruster
|
||||
entities:
|
||||
- uid: 38
|
||||
components:
|
||||
- pos: -2.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextFire: 161.8290616
|
||||
type: Thruster
|
||||
- uid: 39
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -2.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextFire: 157.6612399
|
||||
type: Thruster
|
||||
- uid: 40
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: -0.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextFire: 163.6423342
|
||||
type: Thruster
|
||||
- uid: 41
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: -0.5,-4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextFire: 165.6753866
|
||||
type: Thruster
|
||||
- uid: 42
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 3.5,-4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextFire: 167.1116032
|
||||
type: Thruster
|
||||
- uid: 43
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 5.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextFire: 175.0862753
|
||||
type: Thruster
|
||||
- uid: 44
|
||||
components:
|
||||
- pos: 5.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextFire: 176.6502282
|
||||
type: Thruster
|
||||
- uid: 45
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 3.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextFire: 177.4639528
|
||||
type: Thruster
|
||||
- proto: WallShuttle
|
||||
entities:
|
||||
- uid: 2
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: -0.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 3
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: -1.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 5
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: -1.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 7
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: -0.5,-3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 9
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 4.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 10
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 3.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 12
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 3.5,-3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 13
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 4.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 14
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 2.5,-4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 16
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 0.5,-4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 17
|
||||
components:
|
||||
- pos: 0.5,-3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 18
|
||||
components:
|
||||
- pos: 2.5,-3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 21
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 0.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 25
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: 0.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 26
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: 2.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 27
|
||||
components:
|
||||
- pos: 1.5,-4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 28
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: 5.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 29
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: -2.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 30
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: 5.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 31
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: -2.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 33
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: -2.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 36
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 2.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: WallShuttleDiagonal
|
||||
entities:
|
||||
- uid: 19
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: -0.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 20
|
||||
components:
|
||||
- pos: 3.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 22
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -1.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 24
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: 4.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 34
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: -1.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 35
|
||||
components:
|
||||
- pos: 4.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
...
|
||||
818
Resources/WhiteMaps/D/asteroid.yml
Normal file
818
Resources/WhiteMaps/D/asteroid.yml
Normal file
@@ -0,0 +1,818 @@
|
||||
meta:
|
||||
format: 5
|
||||
postmapinit: false
|
||||
tilemap:
|
||||
0: Space
|
||||
4: FloorAsteroidCoarseSand0
|
||||
15: FloorBlueCircuit
|
||||
44: FloorGreenCircuit
|
||||
58: FloorReinforced
|
||||
entities:
|
||||
- proto: ""
|
||||
entities:
|
||||
- uid: 1
|
||||
components:
|
||||
- type: MetaData
|
||||
- pos: -0.060417175,-2.788187
|
||||
parent: invalid
|
||||
type: Transform
|
||||
- chunks:
|
||||
0,0:
|
||||
ind: 0,0
|
||||
tiles: BAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
0,-1:
|
||||
ind: 0,-1
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAA8AAAA6AAAADwAAAAQAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAA6AAAALAAAADoAAAAEAAAABAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAADwAAADoAAAAPAAAABAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
-1,0:
|
||||
ind: -1,0
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
-1,-1:
|
||||
ind: -1,-1
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAA==
|
||||
type: MapGrid
|
||||
- type: Broadphase
|
||||
- angularDamping: 0.05
|
||||
linearDamping: 0.05
|
||||
fixedRotation: False
|
||||
bodyType: Dynamic
|
||||
type: Physics
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- type: OccluderTree
|
||||
- type: SpreaderGrid
|
||||
- type: Shuttle
|
||||
- nextUpdate: 499.9214919
|
||||
type: GridPathfinding
|
||||
- gravityShakeSound: !type:SoundPathSpecifier
|
||||
path: /Audio/Effects/alert.ogg
|
||||
type: Gravity
|
||||
- chunkCollection:
|
||||
version: 2
|
||||
nodes: []
|
||||
type: DecalGrid
|
||||
- version: 2
|
||||
data:
|
||||
tiles:
|
||||
0,0:
|
||||
0: 7
|
||||
0,-1:
|
||||
0: 30464
|
||||
uniqueMixes:
|
||||
- volume: 2500
|
||||
temperature: 293.15
|
||||
moles:
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
chunkSize: 4
|
||||
type: GridAtmosphere
|
||||
- type: GasTileOverlay
|
||||
- proto: AsteroidRock
|
||||
entities:
|
||||
- uid: 2
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 0.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 26
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 2.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 27
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 2.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 28
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 3.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 29
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 4.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 30
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 5.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 31
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 6.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 32
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 7.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 33
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 4.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 34
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 5.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 35
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 6.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 36
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 7.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 37
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 0.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 38
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 1.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 39
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 1.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 40
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 2.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 41
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 2.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 42
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 0.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 43
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 1.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 44
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 1.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 45
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 1.5,-3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 46
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 1.5,-4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 47
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 2.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 48
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 2.5,-3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 49
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 2.5,-4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 50
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 1.5,-5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 51
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 1.5,-6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 52
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 1.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 53
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 2.5,-6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 54
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 3.5,-6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 55
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 4.5,-6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 56
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 5.5,-6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 57
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 3.5,-5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 58
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 4.5,-5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 59
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 5.5,-5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 60
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 6.5,-5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 61
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 3.5,-4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 62
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 3.5,-3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 63
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 4.5,-3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 64
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 5.5,-3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 65
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 5.5,-4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 66
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 6.5,-4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 67
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 7.5,-4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 68
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 8.5,-4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 69
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 6.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 70
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 7.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 71
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 8.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 72
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 7.5,-3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 73
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 8.5,-3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 74
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 7.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 75
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 8.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 76
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 8.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 77
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 3.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 78
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 4.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 79
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 5.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 80
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 6.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 81
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 7.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 82
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 6.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 84
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 0.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 85
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 1.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 86
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 1.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 87
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 2.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 88
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 3.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 89
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 4.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 90
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 5.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 91
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 6.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 92
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 7.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 93
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 8.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 94
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 8.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 95
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 8.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 96
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: -0.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 97
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 9.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 98
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 9.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 99
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 9.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 100
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 9.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 101
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 9.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 102
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 9.5,-3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 103
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 9.5,-4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 104
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 7.5,-5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 105
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 8.5,-5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 106
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 9.5,-5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 107
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 10.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 108
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 10.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 109
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 10.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 110
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 10.5,-3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 111
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 10.5,-4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 112
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: -0.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 113
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: -0.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 114
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: -0.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 115
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 0.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 116
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 0.5,-3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 117
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 0.5,-4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 118
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 3.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 119
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 4.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 120
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 5.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 121
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 7.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 122
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 6.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: AsteroidRockMining
|
||||
entities:
|
||||
- uid: 83
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 8.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: ClothingHandsGlovesIhscombat
|
||||
entities:
|
||||
- uid: 24
|
||||
components:
|
||||
- pos: 4.0764055,-1.706533
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 188.715936
|
||||
type: EmitSoundOnCollide
|
||||
- proto: CombatKnife
|
||||
entities:
|
||||
- uid: 25
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 4.5142317,-1.331533
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextAttack: 192.0826253
|
||||
type: MeleeWeapon
|
||||
- nextSound: 192.2826253
|
||||
type: EmitSoundOnCollide
|
||||
- proto: CrateFilledSpawner
|
||||
entities:
|
||||
- uid: 11
|
||||
components:
|
||||
- pos: 2.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 12
|
||||
components:
|
||||
- pos: 6.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 13
|
||||
components:
|
||||
- pos: 4.5,-4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 14
|
||||
components:
|
||||
- pos: 2.5,-5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: RailingCorner
|
||||
entities:
|
||||
- uid: 18
|
||||
components:
|
||||
- pos: 5.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 19
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 3.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 20
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: 5.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 21
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 3.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: SalvageMaterialCrateSpawner
|
||||
entities:
|
||||
- uid: 15
|
||||
components:
|
||||
- pos: 6.5,-3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 16
|
||||
components:
|
||||
- pos: 3.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 17
|
||||
components:
|
||||
- pos: 7.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: SalvageMobSpawner
|
||||
entities:
|
||||
- uid: 3
|
||||
components:
|
||||
- pos: 3.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 4
|
||||
components:
|
||||
- pos: 3.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 5
|
||||
components:
|
||||
- pos: 4.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 6
|
||||
components:
|
||||
- pos: 5.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 7
|
||||
components:
|
||||
- pos: 5.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 8
|
||||
components:
|
||||
- pos: 5.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 9
|
||||
components:
|
||||
- pos: 4.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 10
|
||||
components:
|
||||
- pos: 3.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: ToyAi
|
||||
entities:
|
||||
- uid: 22
|
||||
components:
|
||||
- pos: 4.529868,-1.409658
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 161.1133595
|
||||
type: EmitSoundOnCollide
|
||||
- proto: WeaponLaserCarbine
|
||||
entities:
|
||||
- uid: 23
|
||||
components:
|
||||
- pos: 4.482958,-1.862783
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextFire: 175.7636378
|
||||
type: Gun
|
||||
- nextSound: 175.9636378
|
||||
type: EmitSoundOnCollide
|
||||
...
|
||||
6813
Resources/WhiteMaps/D/derelict.yml
Normal file
6813
Resources/WhiteMaps/D/derelict.yml
Normal file
File diff suppressed because it is too large
Load Diff
9910
Resources/WhiteMaps/D/derelict2.yml
Normal file
9910
Resources/WhiteMaps/D/derelict2.yml
Normal file
File diff suppressed because it is too large
Load Diff
2186
Resources/WhiteMaps/D/derelict3.yml
Normal file
2186
Resources/WhiteMaps/D/derelict3.yml
Normal file
File diff suppressed because it is too large
Load Diff
898
Resources/WhiteMaps/D/derelict4.yml
Normal file
898
Resources/WhiteMaps/D/derelict4.yml
Normal file
@@ -0,0 +1,898 @@
|
||||
meta:
|
||||
format: 5
|
||||
postmapinit: false
|
||||
tilemap:
|
||||
0: Space
|
||||
58: FloorReinforced
|
||||
81: FloorWhite
|
||||
93: Lattice
|
||||
94: Plating
|
||||
entities:
|
||||
- proto: ""
|
||||
entities:
|
||||
- uid: 1
|
||||
components:
|
||||
- type: MetaData
|
||||
- pos: -0.19383812,1.3377485
|
||||
parent: invalid
|
||||
type: Transform
|
||||
- chunks:
|
||||
0,0:
|
||||
ind: 0,0
|
||||
tiles: UQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFEAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABRAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFEAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAUQAAAFEAAABdAAAAUQAAAF0AAABRAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABRAAAAUQAAAFEAAABRAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABRAAAAXQAAAFEAAABRAAAAUQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABRAAAAUQAAAFEAAABRAAAAXQAAAFEAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF0AAABRAAAAUQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
0,-1:
|
||||
ind: 0,-1
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
-1,0:
|
||||
ind: -1,0
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABRAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAUQAAAFEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAFEAAABRAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABdAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAUQAAAFEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABRAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABRAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAUQAAAFEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAFEAAABRAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABRAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAADoAAAA6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAA6AAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAFEAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAA==
|
||||
-1,-1:
|
||||
ind: -1,-1
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABRAAAAUQAAAA==
|
||||
type: MapGrid
|
||||
- type: Broadphase
|
||||
- angularDamping: 0.05
|
||||
linearDamping: 0.05
|
||||
fixedRotation: False
|
||||
bodyType: Dynamic
|
||||
type: Physics
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- type: OccluderTree
|
||||
- type: SpreaderGrid
|
||||
- type: Shuttle
|
||||
- nextUpdate: 853.1585204
|
||||
type: GridPathfinding
|
||||
- gravityShakeSound: !type:SoundPathSpecifier
|
||||
path: /Audio/Effects/alert.ogg
|
||||
type: Gravity
|
||||
- chunkCollection:
|
||||
version: 2
|
||||
nodes: []
|
||||
type: DecalGrid
|
||||
- version: 2
|
||||
data:
|
||||
tiles:
|
||||
0,0:
|
||||
0: 307
|
||||
0,-1:
|
||||
0: 13056
|
||||
uniqueMixes:
|
||||
- volume: 2500
|
||||
temperature: 293.15
|
||||
moles:
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
chunkSize: 4
|
||||
type: GridAtmosphere
|
||||
- type: GasTileOverlay
|
||||
- type: RadiationGridResistance
|
||||
- proto: AirlockScienceGlass
|
||||
entities:
|
||||
- uid: 88
|
||||
components:
|
||||
- pos: 0.5,11.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 89
|
||||
components:
|
||||
- pos: -0.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: APCBasic
|
||||
entities:
|
||||
- uid: 38
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 1.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: BlastDoor
|
||||
entities:
|
||||
- uid: 77
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -2.5,11.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- links:
|
||||
- 87
|
||||
type: DeviceLinkSink
|
||||
- proto: CableApcExtension
|
||||
entities:
|
||||
- uid: 39
|
||||
components:
|
||||
- pos: 1.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 40
|
||||
components:
|
||||
- pos: 0.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 41
|
||||
components:
|
||||
- pos: -0.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 42
|
||||
components:
|
||||
- pos: -0.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 43
|
||||
components:
|
||||
- pos: -0.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 44
|
||||
components:
|
||||
- pos: -0.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 45
|
||||
components:
|
||||
- pos: -0.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 46
|
||||
components:
|
||||
- pos: -0.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 47
|
||||
components:
|
||||
- pos: -0.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 48
|
||||
components:
|
||||
- pos: -0.5,7.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 49
|
||||
components:
|
||||
- pos: -0.5,8.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 50
|
||||
components:
|
||||
- pos: -0.5,9.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 51
|
||||
components:
|
||||
- pos: -0.5,10.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 52
|
||||
components:
|
||||
- pos: -0.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 53
|
||||
components:
|
||||
- pos: 0.5,8.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 54
|
||||
components:
|
||||
- pos: 1.5,8.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 55
|
||||
components:
|
||||
- pos: 2.5,8.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 56
|
||||
components:
|
||||
- pos: 3.5,8.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 57
|
||||
components:
|
||||
- pos: 4.5,8.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 58
|
||||
components:
|
||||
- pos: 5.5,8.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 120
|
||||
components:
|
||||
- pos: -0.5,11.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 121
|
||||
components:
|
||||
- pos: -0.5,12.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- proto: CableMV
|
||||
entities:
|
||||
- uid: 59
|
||||
components:
|
||||
- pos: 1.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 60
|
||||
components:
|
||||
- pos: 0.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 61
|
||||
components:
|
||||
- pos: -0.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 62
|
||||
components:
|
||||
- pos: -0.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 63
|
||||
components:
|
||||
- pos: -0.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 64
|
||||
components:
|
||||
- pos: -0.5,7.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 65
|
||||
components:
|
||||
- pos: -0.5,8.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 66
|
||||
components:
|
||||
- pos: 0.5,8.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 67
|
||||
components:
|
||||
- pos: 1.5,8.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 68
|
||||
components:
|
||||
- pos: 2.5,8.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 69
|
||||
components:
|
||||
- pos: 3.5,8.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 70
|
||||
components:
|
||||
- pos: 4.5,8.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 71
|
||||
components:
|
||||
- pos: 5.5,8.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- proto: ChairOfficeLight
|
||||
entities:
|
||||
- uid: 2
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -0.5,8.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: ClosetBombFilled
|
||||
entities:
|
||||
- uid: 36
|
||||
components:
|
||||
- pos: 0.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: ClosetL3Virology
|
||||
entities:
|
||||
- uid: 33
|
||||
components:
|
||||
- pos: 0.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: ComputerAnalysisConsole
|
||||
entities:
|
||||
- uid: 92
|
||||
components:
|
||||
- pos: -0.5,9.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: LandMineExplosive
|
||||
entities:
|
||||
- uid: 116
|
||||
components:
|
||||
- pos: 2.7265959,11.385007
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: LockerElectricalSuppliesFilled
|
||||
entities:
|
||||
- uid: 34
|
||||
components:
|
||||
- pos: 0.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: LockerScienceFilled
|
||||
entities:
|
||||
- uid: 31
|
||||
components:
|
||||
- pos: 0.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 32
|
||||
components:
|
||||
- pos: 0.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: MachineArtifactAnalyzer
|
||||
entities:
|
||||
- uid: 99
|
||||
components:
|
||||
- pos: -1.5,11.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: Poweredlight
|
||||
entities:
|
||||
- uid: 117
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 2.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: False
|
||||
type: AmbientSound
|
||||
- uid: 118
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: -1.5,9.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: False
|
||||
type: AmbientSound
|
||||
- proto: PoweredlightEmpty
|
||||
entities:
|
||||
- uid: 75
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 0.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 76
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -0.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: Protolathe
|
||||
entities:
|
||||
- uid: 98
|
||||
components:
|
||||
- pos: 3.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: RandomArtifactSpawner20
|
||||
entities:
|
||||
- uid: 119
|
||||
components:
|
||||
- pos: -1.5,11.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: ReinforcedGirder
|
||||
entities:
|
||||
- uid: 6
|
||||
components:
|
||||
- pos: -2.5,8.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 8
|
||||
components:
|
||||
- pos: -2.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 25
|
||||
components:
|
||||
- pos: 1.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 78
|
||||
components:
|
||||
- pos: -2.5,13.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: ReinforcedPlasmaWindow
|
||||
entities:
|
||||
- uid: 80
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -1.5,10.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 81
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -0.5,10.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 83
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -1.5,13.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 84
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -0.5,13.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 85
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 0.5,13.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 86
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 0.5,12.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: RnDLootSpawner
|
||||
entities:
|
||||
- uid: 103
|
||||
components:
|
||||
- pos: 4.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 104
|
||||
components:
|
||||
- pos: 4.5,10.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 115
|
||||
components:
|
||||
- pos: 3.5,12.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: SalvagePartsT3Spawner
|
||||
entities:
|
||||
- uid: 105
|
||||
components:
|
||||
- pos: -1.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 106
|
||||
components:
|
||||
- pos: -1.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 107
|
||||
components:
|
||||
- pos: -1.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: SheetGlass
|
||||
entities:
|
||||
- uid: 100
|
||||
components:
|
||||
- pos: 1.4120884,6.4366465
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 595.4004744
|
||||
type: EmitSoundOnCollide
|
||||
- proto: SheetPlasma
|
||||
entities:
|
||||
- uid: 102
|
||||
components:
|
||||
- pos: 3.5019977,10.630464
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 602.0863546
|
||||
type: EmitSoundOnCollide
|
||||
- proto: SheetSteel
|
||||
entities:
|
||||
- uid: 101
|
||||
components:
|
||||
- pos: 2.3388023,6.602209
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 586.7089662
|
||||
type: EmitSoundOnCollide
|
||||
- proto: SignalButton
|
||||
entities:
|
||||
- uid: 87
|
||||
components:
|
||||
- pos: 0.5,10.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- state: True
|
||||
type: SignalSwitch
|
||||
- linkedPorts:
|
||||
77:
|
||||
- Pressed: Toggle
|
||||
registeredSinks:
|
||||
Pressed:
|
||||
- 77
|
||||
type: DeviceLinkSource
|
||||
- type: ItemCooldown
|
||||
- proto: SpaceTickSpawner
|
||||
entities:
|
||||
- uid: 112
|
||||
components:
|
||||
- pos: -1.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 113
|
||||
components:
|
||||
- pos: 0.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 114
|
||||
components:
|
||||
- pos: -1.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: SpawnMobBear
|
||||
entities:
|
||||
- uid: 108
|
||||
components:
|
||||
- pos: -0.5,12.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 109
|
||||
components:
|
||||
- pos: -1.5,11.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: SpawnMobCarp
|
||||
entities:
|
||||
- uid: 110
|
||||
components:
|
||||
- pos: 4.5,7.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 111
|
||||
components:
|
||||
- pos: -1.5,8.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: Table
|
||||
entities:
|
||||
- uid: 72
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: -1.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 73
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: -1.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 74
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: -1.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 90
|
||||
components:
|
||||
- pos: 1.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 91
|
||||
components:
|
||||
- pos: 2.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 93
|
||||
components:
|
||||
- pos: 4.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 94
|
||||
components:
|
||||
- pos: 3.5,10.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 95
|
||||
components:
|
||||
- pos: 4.5,10.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 96
|
||||
components:
|
||||
- pos: 3.5,12.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 97
|
||||
components:
|
||||
- pos: 4.5,12.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: WallReinforced
|
||||
entities:
|
||||
- uid: 3
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -2.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 4
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -2.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 5
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -2.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 7
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -2.5,7.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 9
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -2.5,9.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 10
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -2.5,10.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 11
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -2.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 12
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -2.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 13
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -2.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 14
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -2.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 15
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -2.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 17
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 4.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 18
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 5.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 20
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 1.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 21
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 1.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 22
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 1.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 23
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 2.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 24
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 3.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 26
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -0.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 27
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 0.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 28
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 1.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 29
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 1.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 30
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 1.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 35
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 1.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 37
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -1.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 79
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -2.5,12.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 82
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 0.5,10.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: WallSolid
|
||||
entities:
|
||||
- uid: 16
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 0.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 19
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: -1.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
...
|
||||
1627
Resources/WhiteMaps/D/derelict5.yml
Normal file
1627
Resources/WhiteMaps/D/derelict5.yml
Normal file
File diff suppressed because it is too large
Load Diff
1407
Resources/WhiteMaps/D/derelict7.yml
Normal file
1407
Resources/WhiteMaps/D/derelict7.yml
Normal file
File diff suppressed because it is too large
Load Diff
1794
Resources/WhiteMaps/D/derelict8.yml
Normal file
1794
Resources/WhiteMaps/D/derelict8.yml
Normal file
File diff suppressed because it is too large
Load Diff
2323
Resources/WhiteMaps/D/dj_station.yml
Normal file
2323
Resources/WhiteMaps/D/dj_station.yml
Normal file
File diff suppressed because it is too large
Load Diff
1134
Resources/WhiteMaps/D/dobivalka.yml
Normal file
1134
Resources/WhiteMaps/D/dobivalka.yml
Normal file
File diff suppressed because it is too large
Load Diff
434
Resources/WhiteMaps/D/junk.yml
Normal file
434
Resources/WhiteMaps/D/junk.yml
Normal file
@@ -0,0 +1,434 @@
|
||||
meta:
|
||||
format: 5
|
||||
postmapinit: false
|
||||
tilemap:
|
||||
0: Space
|
||||
93: Lattice
|
||||
94: Plating
|
||||
entities:
|
||||
- proto: ""
|
||||
entities:
|
||||
- uid: 1
|
||||
components:
|
||||
- type: MetaData
|
||||
- pos: -1.7871891,-1.389231
|
||||
parent: invalid
|
||||
type: Transform
|
||||
- chunks:
|
||||
0,0:
|
||||
ind: 0,0
|
||||
tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
0,-1:
|
||||
ind: 0,-1
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
-1,-1:
|
||||
ind: -1,-1
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
type: MapGrid
|
||||
- type: Broadphase
|
||||
- angularDamping: 0.05
|
||||
linearDamping: 0.05
|
||||
fixedRotation: False
|
||||
bodyType: Dynamic
|
||||
type: Physics
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- type: OccluderTree
|
||||
- type: SpreaderGrid
|
||||
- type: Shuttle
|
||||
- nextUpdate: 292.7588784
|
||||
type: GridPathfinding
|
||||
- gravityShakeSound: !type:SoundPathSpecifier
|
||||
path: /Audio/Effects/alert.ogg
|
||||
type: Gravity
|
||||
- chunkCollection:
|
||||
version: 2
|
||||
nodes: []
|
||||
type: DecalGrid
|
||||
- version: 2
|
||||
data:
|
||||
tiles:
|
||||
0,0:
|
||||
0: 3
|
||||
0,-2:
|
||||
0: 4368
|
||||
0,-1:
|
||||
0: 4369
|
||||
uniqueMixes:
|
||||
- volume: 2500
|
||||
temperature: 293.15
|
||||
moles:
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
chunkSize: 4
|
||||
type: GridAtmosphere
|
||||
- type: GasTileOverlay
|
||||
- type: RadiationGridResistance
|
||||
- proto: AirlockBrigGlassLocked
|
||||
entities:
|
||||
- uid: 30
|
||||
components:
|
||||
- pos: 2.5,-9.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: AirlockExternalCargoLocked
|
||||
entities:
|
||||
- uid: 2
|
||||
components:
|
||||
- pos: -1.5,-5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: AirlockSecurity
|
||||
entities:
|
||||
- uid: 31
|
||||
components:
|
||||
- pos: 0.5,-5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: BookEscalationSecurity
|
||||
entities:
|
||||
- uid: 53
|
||||
components:
|
||||
- pos: 3.086536,-4.381817
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextAttack: 360.9879023
|
||||
type: MeleeWeapon
|
||||
- nextSound: 361.1879023
|
||||
type: EmitSoundOnCollide
|
||||
- proto: Chair
|
||||
entities:
|
||||
- uid: 39
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 4.5,-3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 40
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 4.5,-5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 41
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 4.5,-4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 42
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: 1.5,-3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 43
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: 1.5,-4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 44
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: 1.5,-5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: CommonLootSpawner
|
||||
entities:
|
||||
- uid: 54
|
||||
components:
|
||||
- pos: 1.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: FoodDonutJellyBungo
|
||||
entities:
|
||||
- uid: 45
|
||||
components:
|
||||
- pos: 2.403853,-3.5243976
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 349.1583112
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 46
|
||||
components:
|
||||
- pos: 2.3882165,-4.133773
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 350.4258657
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 47
|
||||
components:
|
||||
- pos: 2.3882165,-4.852523
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 350.627414
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 48
|
||||
components:
|
||||
- pos: 2.4101245,-5.417692
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 350.8596069
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 49
|
||||
components:
|
||||
- pos: 3.6547837,-3.3993976
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 351.823723
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 50
|
||||
components:
|
||||
- pos: 3.62351,-4.024398
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 351.9941914
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 51
|
||||
components:
|
||||
- pos: 3.62351,-4.633773
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 352.1604486
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 52
|
||||
components:
|
||||
- pos: 3.6547837,-5.274398
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 352.3257106
|
||||
type: EmitSoundOnCollide
|
||||
- proto: Grille
|
||||
entities:
|
||||
- uid: 3
|
||||
components:
|
||||
- pos: 0.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 4
|
||||
components:
|
||||
- pos: 0.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 5
|
||||
components:
|
||||
- pos: 1.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: ReinforcedWindow
|
||||
entities:
|
||||
- uid: 22
|
||||
components:
|
||||
- pos: 0.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 23
|
||||
components:
|
||||
- pos: 0.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 24
|
||||
components:
|
||||
- pos: 1.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: SalvageMobSpawner
|
||||
entities:
|
||||
- uid: 60
|
||||
components:
|
||||
- pos: 5.5,-8.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: SalvagePartsT2Spawner
|
||||
entities:
|
||||
- uid: 56
|
||||
components:
|
||||
- pos: 4.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: SecLootSpawner
|
||||
entities:
|
||||
- uid: 57
|
||||
components:
|
||||
- pos: 2.5,-3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 58
|
||||
components:
|
||||
- pos: 3.5,-5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: SpawnMobBearSalvage
|
||||
entities:
|
||||
- uid: 59
|
||||
components:
|
||||
- pos: 3.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: SpawnMobKangarooSalvage
|
||||
entities:
|
||||
- uid: 32
|
||||
components:
|
||||
- pos: 4.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: SpawnMobSpiderSalvage
|
||||
entities:
|
||||
- uid: 55
|
||||
components:
|
||||
- pos: 1.5,-8.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: Table
|
||||
entities:
|
||||
- uid: 33
|
||||
components:
|
||||
- pos: 2.5,-3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 34
|
||||
components:
|
||||
- pos: 2.5,-4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 35
|
||||
components:
|
||||
- pos: 2.5,-5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 36
|
||||
components:
|
||||
- pos: 3.5,-3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 37
|
||||
components:
|
||||
- pos: 3.5,-4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 38
|
||||
components:
|
||||
- pos: 3.5,-5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: WallReinforced
|
||||
entities:
|
||||
- uid: 6
|
||||
components:
|
||||
- pos: 0.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 7
|
||||
components:
|
||||
- pos: 0.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 8
|
||||
components:
|
||||
- pos: 0.5,-3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 9
|
||||
components:
|
||||
- pos: -1.5,-4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 10
|
||||
components:
|
||||
- pos: -0.5,-4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 11
|
||||
components:
|
||||
- pos: 0.5,-4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 12
|
||||
components:
|
||||
- pos: -1.5,-6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 13
|
||||
components:
|
||||
- pos: -0.5,-6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 14
|
||||
components:
|
||||
- pos: 0.5,-6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 15
|
||||
components:
|
||||
- pos: 0.5,-7.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 16
|
||||
components:
|
||||
- pos: 0.5,-8.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 17
|
||||
components:
|
||||
- pos: 0.5,-9.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 18
|
||||
components:
|
||||
- pos: 1.5,-9.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 19
|
||||
components:
|
||||
- pos: 3.5,-9.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 20
|
||||
components:
|
||||
- pos: 4.5,-8.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 21
|
||||
components:
|
||||
- pos: 3.5,-8.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: WallSolid
|
||||
entities:
|
||||
- uid: 25
|
||||
components:
|
||||
- pos: 2.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 26
|
||||
components:
|
||||
- pos: 3.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 27
|
||||
components:
|
||||
- pos: 3.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 28
|
||||
components:
|
||||
- pos: 4.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 29
|
||||
components:
|
||||
- pos: 5.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
...
|
||||
896
Resources/WhiteMaps/D/mining_station.yml
Normal file
896
Resources/WhiteMaps/D/mining_station.yml
Normal file
@@ -0,0 +1,896 @@
|
||||
meta:
|
||||
format: 5
|
||||
postmapinit: false
|
||||
tilemap:
|
||||
0: Space
|
||||
4: FloorAsteroidCoarseSand0
|
||||
10: FloorAsteroidSand
|
||||
68: FloorSteel
|
||||
71: FloorSteelDirty
|
||||
94: Plating
|
||||
entities:
|
||||
- proto: ""
|
||||
entities:
|
||||
- uid: 1
|
||||
components:
|
||||
- type: MetaData
|
||||
- pos: -7.9051685,6.9746227
|
||||
parent: invalid
|
||||
type: Transform
|
||||
- chunks:
|
||||
0,0:
|
||||
ind: 0,0
|
||||
tiles: RwAAAEcAAABHAAAARwAAAEcAAABHAAAACgAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEcAAABEAAAARwAAAEcAAABEAAAARwAAAAoAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABHAAAARwAAAEQAAABEAAAARwAAAEcAAAAKAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAEcAAABHAAAARwAAAEcAAABHAAAACgAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEcAAABHAAAARAAAAEcAAABHAAAARwAAAAoAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAF4AAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAABEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
0,-1:
|
||||
ind: 0,-1
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAEcAAABHAAAARwAAAEcAAABHAAAACgAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
-1,-1:
|
||||
ind: -1,-1
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAARwAAAA==
|
||||
-1,0:
|
||||
ind: -1,0
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAACgAAAEcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAoAAABHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAACgAAAEcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
type: MapGrid
|
||||
- type: Broadphase
|
||||
- angularDamping: 0.05
|
||||
linearDamping: 0.05
|
||||
fixedRotation: False
|
||||
bodyType: Dynamic
|
||||
type: Physics
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- type: OccluderTree
|
||||
- type: SpreaderGrid
|
||||
- type: Shuttle
|
||||
- nextUpdate: 1268.7095444
|
||||
type: GridPathfinding
|
||||
- gravityShakeSound: !type:SoundPathSpecifier
|
||||
path: /Audio/Effects/alert.ogg
|
||||
type: Gravity
|
||||
- chunkCollection:
|
||||
version: 2
|
||||
nodes:
|
||||
- node:
|
||||
color: '#FFFFFFFF'
|
||||
id: carp
|
||||
decals:
|
||||
0: 2.0138798,2.9295921
|
||||
type: DecalGrid
|
||||
- version: 2
|
||||
data:
|
||||
tiles:
|
||||
0,0:
|
||||
0: 13111
|
||||
uniqueMixes:
|
||||
- volume: 2500
|
||||
temperature: 293.15
|
||||
moles:
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
chunkSize: 4
|
||||
type: GridAtmosphere
|
||||
- type: GasTileOverlay
|
||||
- type: RadiationGridResistance
|
||||
- proto: AirlockExternal
|
||||
entities:
|
||||
- uid: 23
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 2.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 53
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 2.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: APCBasic
|
||||
entities:
|
||||
- uid: 102
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: -0.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: AsteroidRock
|
||||
entities:
|
||||
- uid: 6
|
||||
components:
|
||||
- pos: 1.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 8
|
||||
components:
|
||||
- pos: 2.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 20
|
||||
components:
|
||||
- pos: -0.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 25
|
||||
components:
|
||||
- pos: -0.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 27
|
||||
components:
|
||||
- pos: 0.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 28
|
||||
components:
|
||||
- pos: 1.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 29
|
||||
components:
|
||||
- pos: 2.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 30
|
||||
components:
|
||||
- pos: 2.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 31
|
||||
components:
|
||||
- pos: 0.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 32
|
||||
components:
|
||||
- pos: 0.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 35
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 0.5,-3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 36
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 1.5,-3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 37
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 3.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 38
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 3.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 40
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 5.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 41
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 6.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 42
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 6.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 43
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 6.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 44
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 6.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 45
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 6.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 46
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 6.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 47
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 6.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 48
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 6.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 49
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 6.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 50
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 5.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 51
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 5.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 52
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 5.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 61
|
||||
components:
|
||||
- pos: 3.5,7.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 62
|
||||
components:
|
||||
- pos: 5.5,7.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 64
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: -2.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 65
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: -2.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 66
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: -2.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 67
|
||||
components:
|
||||
- pos: 0.5,7.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 68
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: -2.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 69
|
||||
components:
|
||||
- pos: 4.5,7.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 70
|
||||
components:
|
||||
- pos: 3.5,8.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 71
|
||||
components:
|
||||
- pos: -0.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 72
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: -1.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 73
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: -1.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 74
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: -1.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 75
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: -1.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 76
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: -1.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 77
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: -1.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 78
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: -1.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 79
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: -1.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 81
|
||||
components:
|
||||
- pos: -0.5,7.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 82
|
||||
components:
|
||||
- pos: 2.5,8.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 83
|
||||
components:
|
||||
- pos: 1.5,7.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 90
|
||||
components:
|
||||
- pos: 8.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 91
|
||||
components:
|
||||
- pos: 8.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 111
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: 7.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 112
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: 7.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 113
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: 7.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 114
|
||||
components:
|
||||
- pos: 1.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 115
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: 7.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 116
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: 7.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 117
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: 7.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 118
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: 6.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 119
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: 7.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 121
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: 8.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 123
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: 8.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 124
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: 6.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 125
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: 5.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 126
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: 8.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: AsteroidRockMining
|
||||
entities:
|
||||
- uid: 86
|
||||
components:
|
||||
- pos: -2.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: BookFishing
|
||||
entities:
|
||||
- uid: 98
|
||||
components:
|
||||
- pos: 0.59964514,3.5942469
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 843.1120002
|
||||
type: EmitSoundOnCollide
|
||||
- proto: BookGnominomicon
|
||||
entities:
|
||||
- uid: 122
|
||||
components:
|
||||
- pos: 0.28691244,3.7504969
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 840.0824119
|
||||
type: EmitSoundOnCollide
|
||||
- proto: CableApcExtension
|
||||
entities:
|
||||
- uid: 103
|
||||
components:
|
||||
- pos: -0.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 104
|
||||
components:
|
||||
- pos: 0.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 105
|
||||
components:
|
||||
- pos: 1.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 106
|
||||
components:
|
||||
- pos: 2.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 107
|
||||
components:
|
||||
- pos: 2.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 108
|
||||
components:
|
||||
- pos: 2.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 109
|
||||
components:
|
||||
- pos: 2.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 110
|
||||
components:
|
||||
- pos: 2.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- proto: CigaretteSpent
|
||||
entities:
|
||||
- uid: 34
|
||||
components:
|
||||
- pos: 2.6490827,1.2903852
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 1422.8337186
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 59
|
||||
components:
|
||||
- pos: 1.7463093,2.8019724
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 1420.4242858
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 63
|
||||
components:
|
||||
- pos: 1.6368532,2.4894724
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 1420.1583976
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 88
|
||||
components:
|
||||
- pos: 4.0876527,1.1810102
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 1422.2840484
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 120
|
||||
components:
|
||||
- pos: 1.7775831,2.5363474
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 1420.7334337
|
||||
type: EmitSoundOnCollide
|
||||
- proto: CigarGoldSpent
|
||||
entities:
|
||||
- uid: 89
|
||||
components:
|
||||
- pos: 3.7592835,3.355215
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 1425.2254174
|
||||
type: EmitSoundOnCollide
|
||||
- proto: ClothingNeckCloakMiner
|
||||
entities:
|
||||
- uid: 26
|
||||
components:
|
||||
- pos: 1.5942125,-1.4570937
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 882.3438757
|
||||
type: EmitSoundOnCollide
|
||||
- proto: DrinkVodkaBottleFull
|
||||
entities:
|
||||
- uid: 60
|
||||
components:
|
||||
- desc: Эта бутылка до краев наполнена жгучим спиртом, но тем не менее, я бы не стал это пить.
|
||||
name: подозрительная бутылка водки
|
||||
type: MetaData
|
||||
- pos: 7.488246,1.7049093
|
||||
parent: 1
|
||||
type: Transform
|
||||
- solutions:
|
||||
drink:
|
||||
temperature: 293.15
|
||||
canMix: False
|
||||
canReact: True
|
||||
maxVol: 100
|
||||
reagents:
|
||||
- Quantity: 5
|
||||
ReagentId: Corpium
|
||||
- Quantity: 55
|
||||
ReagentId: Vodka
|
||||
- Quantity: 40
|
||||
ReagentId: Lexorin
|
||||
type: SolutionContainerManager
|
||||
- nextAttack: 1050.0840196
|
||||
type: MeleeWeapon
|
||||
- nextSound: 1050.2840196
|
||||
type: EmitSoundOnCollide
|
||||
- tags: []
|
||||
type: Tag
|
||||
- proto: GasCanisterBrokenBase
|
||||
entities:
|
||||
- uid: 85
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: 4.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: LockerSalvageSpecialistFilled
|
||||
entities:
|
||||
- uid: 2
|
||||
components:
|
||||
- pos: 4.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 33
|
||||
components:
|
||||
- pos: 4.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: Pickaxe
|
||||
entities:
|
||||
- uid: 87
|
||||
components:
|
||||
- pos: 0.680542,2.5081787
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextAttack: 921.7341141
|
||||
type: MeleeWeapon
|
||||
- nextSound: 921.9341141
|
||||
type: EmitSoundOnCollide
|
||||
- uid: 92
|
||||
components:
|
||||
- pos: 0.44599247,2.8363037
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextAttack: 920.4465301
|
||||
type: MeleeWeapon
|
||||
- nextSound: 920.6465301
|
||||
type: EmitSoundOnCollide
|
||||
- proto: RandomSpawner
|
||||
entities:
|
||||
- uid: 80
|
||||
components:
|
||||
- pos: 3.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 101
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: 2.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: ReinforcedWindow
|
||||
entities:
|
||||
- uid: 18
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 3.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 19
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 1.5,6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 22
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 1.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 55
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 3.5,5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: SalvageMaterialCrateSpawner
|
||||
entities:
|
||||
- uid: 94
|
||||
components:
|
||||
- pos: 0.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: SalvageMobSpawner
|
||||
entities:
|
||||
- uid: 95
|
||||
components:
|
||||
- pos: 2.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 96
|
||||
components:
|
||||
- pos: 3.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 99
|
||||
components:
|
||||
- pos: 3.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 100
|
||||
components:
|
||||
- pos: 3.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: SmallLight
|
||||
entities:
|
||||
- uid: 24
|
||||
components:
|
||||
- pos: 1.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: Syringe
|
||||
entities:
|
||||
- uid: 39
|
||||
components:
|
||||
- pos: 1.3623762,1.4392843
|
||||
parent: 1
|
||||
type: Transform
|
||||
- tags:
|
||||
- Syringe
|
||||
type: Tag
|
||||
- solutions:
|
||||
injector:
|
||||
temperature: 293.15
|
||||
canMix: False
|
||||
canReact: True
|
||||
maxVol: 15
|
||||
reagents:
|
||||
- Quantity: 15
|
||||
ReagentId: SpaceDrugs
|
||||
type: SolutionContainerManager
|
||||
- nextSound: 1014.9839894
|
||||
type: EmitSoundOnCollide
|
||||
- proto: Table
|
||||
entities:
|
||||
- uid: 93
|
||||
components:
|
||||
- pos: 0.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 97
|
||||
components:
|
||||
- pos: 0.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: VendingMachineSalvage
|
||||
entities:
|
||||
- uid: 84
|
||||
components:
|
||||
- flags: SessionSpecific
|
||||
type: MetaData
|
||||
- pos: 4.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextEmpEject: 332.298517
|
||||
type: VendingMachine
|
||||
- proto: WallReinforced
|
||||
entities:
|
||||
- uid: 3
|
||||
components:
|
||||
- pos: 5.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 4
|
||||
components:
|
||||
- pos: 5.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 5
|
||||
components:
|
||||
- pos: 5.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 7
|
||||
components:
|
||||
- pos: 4.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 9
|
||||
components:
|
||||
- pos: 5.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 10
|
||||
components:
|
||||
- pos: 5.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 11
|
||||
components:
|
||||
- pos: -0.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 12
|
||||
components:
|
||||
- pos: 3.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 13
|
||||
components:
|
||||
- pos: -0.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 14
|
||||
components:
|
||||
- pos: -0.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 15
|
||||
components:
|
||||
- pos: -0.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 16
|
||||
components:
|
||||
- pos: -0.5,2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 17
|
||||
components:
|
||||
- pos: -0.5,3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 21
|
||||
components:
|
||||
- pos: 5.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 54
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 4.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 56
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 3.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 57
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 1.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 58
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 0.5,4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
...
|
||||
1774
Resources/WhiteMaps/D/musorka.yml
Normal file
1774
Resources/WhiteMaps/D/musorka.yml
Normal file
File diff suppressed because it is too large
Load Diff
1473
Resources/WhiteMaps/D/shuttle.yml
Normal file
1473
Resources/WhiteMaps/D/shuttle.yml
Normal file
File diff suppressed because it is too large
Load Diff
1551
Resources/WhiteMaps/D/shuttle2.yml
Normal file
1551
Resources/WhiteMaps/D/shuttle2.yml
Normal file
File diff suppressed because it is too large
Load Diff
1039
Resources/WhiteMaps/D/shuttle3.yml
Normal file
1039
Resources/WhiteMaps/D/shuttle3.yml
Normal file
File diff suppressed because it is too large
Load Diff
1322
Resources/WhiteMaps/D/space_hospital.yml
Normal file
1322
Resources/WhiteMaps/D/space_hospital.yml
Normal file
File diff suppressed because it is too large
Load Diff
1254
Resources/WhiteMaps/D/stolovka.yml
Normal file
1254
Resources/WhiteMaps/D/stolovka.yml
Normal file
File diff suppressed because it is too large
Load Diff
776
Resources/WhiteMaps/D/stolovka2.yml
Normal file
776
Resources/WhiteMaps/D/stolovka2.yml
Normal file
@@ -0,0 +1,776 @@
|
||||
meta:
|
||||
format: 5
|
||||
postmapinit: false
|
||||
tilemap:
|
||||
0: Space
|
||||
56: FloorPlastic
|
||||
86: FloorWhiteMono
|
||||
91: FloorWood
|
||||
93: Lattice
|
||||
94: Plating
|
||||
entities:
|
||||
- proto: ""
|
||||
entities:
|
||||
- uid: 1
|
||||
components:
|
||||
- type: MetaData
|
||||
- pos: 0.37182128,0.8394073
|
||||
parent: invalid
|
||||
type: Transform
|
||||
- chunks:
|
||||
0,0:
|
||||
ind: 0,0
|
||||
tiles: WwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABbAAAAWwAAAFsAAABbAAAAXQAAAFsAAABbAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
-1,0:
|
||||
ind: -1,0
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
-1,-1:
|
||||
ind: -1,-1
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAFYAAABWAAAAVgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABWAAAAVgAAAFYAAABWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAVgAAAFYAAABWAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAA==
|
||||
0,-1:
|
||||
ind: 0,-1
|
||||
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAADgAAAA4AAAAXQAAADgAAAA4AAAAOAAAADgAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAABeAAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABdAAAAWwAAAFsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
type: MapGrid
|
||||
- type: Broadphase
|
||||
- angularDamping: 0.05
|
||||
linearDamping: 0.05
|
||||
fixedRotation: False
|
||||
bodyType: Dynamic
|
||||
type: Physics
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- type: OccluderTree
|
||||
- type: SpreaderGrid
|
||||
- type: Shuttle
|
||||
- nextUpdate: 728.7528113
|
||||
type: GridPathfinding
|
||||
- gravityShakeSound: !type:SoundPathSpecifier
|
||||
path: /Audio/Effects/alert.ogg
|
||||
type: Gravity
|
||||
- chunkCollection:
|
||||
version: 2
|
||||
nodes: []
|
||||
type: DecalGrid
|
||||
- version: 2
|
||||
data:
|
||||
tiles:
|
||||
0,0:
|
||||
0: 51
|
||||
-1,0:
|
||||
0: 136
|
||||
-1,-1:
|
||||
0: 32768
|
||||
0,-1:
|
||||
0: 12288
|
||||
uniqueMixes:
|
||||
- volume: 2500
|
||||
temperature: 293.15
|
||||
moles:
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
- 0
|
||||
chunkSize: 4
|
||||
type: GridAtmosphere
|
||||
- type: GasTileOverlay
|
||||
- type: RadiationGridResistance
|
||||
- proto: AirlockFreezer
|
||||
entities:
|
||||
- uid: 47
|
||||
components:
|
||||
- pos: -0.5,-4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: AirlockKitchenLocked
|
||||
entities:
|
||||
- uid: 48
|
||||
components:
|
||||
- pos: 0.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: APCBasic
|
||||
entities:
|
||||
- uid: 55
|
||||
components:
|
||||
- pos: 1.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: AtmosFixFreezerMarker
|
||||
entities:
|
||||
- uid: 83
|
||||
components:
|
||||
- pos: -3.5,-3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 84
|
||||
components:
|
||||
- pos: -3.5,-4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 85
|
||||
components:
|
||||
- pos: -3.5,-5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 86
|
||||
components:
|
||||
- pos: -2.5,-3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 87
|
||||
components:
|
||||
- pos: -2.5,-4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 88
|
||||
components:
|
||||
- pos: -2.5,-5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 89
|
||||
components:
|
||||
- pos: -1.5,-3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 90
|
||||
components:
|
||||
- pos: -1.5,-4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 91
|
||||
components:
|
||||
- pos: -1.5,-5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: CableApcExtension
|
||||
entities:
|
||||
- uid: 56
|
||||
components:
|
||||
- pos: 1.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: True
|
||||
type: AmbientSound
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 57
|
||||
components:
|
||||
- pos: 1.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 58
|
||||
components:
|
||||
- pos: 1.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 59
|
||||
components:
|
||||
- pos: 1.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 60
|
||||
components:
|
||||
- pos: 1.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 61
|
||||
components:
|
||||
- pos: 2.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 62
|
||||
components:
|
||||
- pos: 3.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 63
|
||||
components:
|
||||
- pos: 4.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 64
|
||||
components:
|
||||
- pos: 5.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 65
|
||||
components:
|
||||
- pos: 6.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 66
|
||||
components:
|
||||
- pos: 7.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 67
|
||||
components:
|
||||
- pos: 1.5,-3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 68
|
||||
components:
|
||||
- pos: 1.5,-4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 69
|
||||
components:
|
||||
- pos: 2.5,-4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 70
|
||||
components:
|
||||
- pos: 3.5,-4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 71
|
||||
components:
|
||||
- pos: 4.5,-4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 72
|
||||
components:
|
||||
- pos: 5.5,-4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 73
|
||||
components:
|
||||
- pos: 6.5,-4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 74
|
||||
components:
|
||||
- pos: 7.5,-4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 75
|
||||
components:
|
||||
- pos: 0.5,-4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 76
|
||||
components:
|
||||
- pos: -0.5,-4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 77
|
||||
components:
|
||||
- pos: -1.5,-4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- uid: 78
|
||||
components:
|
||||
- pos: -2.5,-4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- fixtures: {}
|
||||
type: Fixtures
|
||||
- proto: ChairWood
|
||||
entities:
|
||||
- uid: 101
|
||||
components:
|
||||
- pos: 3.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 102
|
||||
components:
|
||||
- pos: 4.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 103
|
||||
components:
|
||||
- pos: 2.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 104
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 2.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 105
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 3.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 106
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 4.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 107
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: 6.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 108
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: 6.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 109
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 8.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 110
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 8.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: ClosetChefFilled
|
||||
entities:
|
||||
- uid: 53
|
||||
components:
|
||||
- pos: 1.5,-5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: ClothingShoesChef
|
||||
entities:
|
||||
- uid: 98
|
||||
components:
|
||||
- pos: 4.9089355,-3.5503626
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 586.6604786
|
||||
type: EmitSoundOnCollide
|
||||
- proto: GasPassiveVent
|
||||
entities:
|
||||
- uid: 96
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: -2.5,-5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 565.2095587
|
||||
type: EmitSoundOnCollide
|
||||
- proto: GasThermoMachineFreezer
|
||||
entities:
|
||||
- uid: 95
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: -1.5,-5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: Girder
|
||||
entities:
|
||||
- uid: 2
|
||||
components:
|
||||
- pos: -0.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 19
|
||||
components:
|
||||
- pos: 1.5,-6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 24
|
||||
components:
|
||||
- pos: 6.5,-6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 30
|
||||
components:
|
||||
- pos: 8.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: KitchenKnife
|
||||
entities:
|
||||
- uid: 51
|
||||
components:
|
||||
- pos: 6.495012,-2.6457658
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextAttack: 444.0806953
|
||||
type: MeleeWeapon
|
||||
- nextSound: 444.2806953
|
||||
type: EmitSoundOnCollide
|
||||
- proto: KitchenMicrowave
|
||||
entities:
|
||||
- uid: 54
|
||||
components:
|
||||
- pos: 3.5,-5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: KitchenReagentGrinder
|
||||
entities:
|
||||
- uid: 52
|
||||
components:
|
||||
- pos: 5.5,-5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: KitchenSpike
|
||||
entities:
|
||||
- uid: 93
|
||||
components:
|
||||
- pos: -3.5,-3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: LampGold
|
||||
entities:
|
||||
- uid: 111
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 3.489552,0.88543475
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 743.3069619
|
||||
type: EmitSoundOnCollide
|
||||
- proto: LockerFreezer
|
||||
entities:
|
||||
- uid: 92
|
||||
components:
|
||||
- pos: 0.5,-5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: MonkeyCubeBox
|
||||
entities:
|
||||
- uid: 94
|
||||
components:
|
||||
- pos: -2.5283165,-3.6613908
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextSound: 548.4292643
|
||||
type: EmitSoundOnCollide
|
||||
- proto: Poweredlight
|
||||
entities:
|
||||
- uid: 79
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 7.5,-4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: False
|
||||
type: AmbientSound
|
||||
- uid: 80
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 1.5,-1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: False
|
||||
type: AmbientSound
|
||||
- uid: 81
|
||||
components:
|
||||
- rot: 3.141592653589793 rad
|
||||
pos: 3.5,-5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: False
|
||||
type: AmbientSound
|
||||
- uid: 82
|
||||
components:
|
||||
- pos: -2.5,-3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- enabled: False
|
||||
type: AmbientSound
|
||||
- proto: SpawnMobBearSalvage
|
||||
entities:
|
||||
- uid: 99
|
||||
components:
|
||||
- pos: -2.5,-4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 100
|
||||
components:
|
||||
- pos: 4.5,-0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: Table
|
||||
entities:
|
||||
- uid: 31
|
||||
components:
|
||||
- pos: 2.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 32
|
||||
components:
|
||||
- pos: 3.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 33
|
||||
components:
|
||||
- pos: 4.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 34
|
||||
components:
|
||||
- pos: 5.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 35
|
||||
components:
|
||||
- pos: 6.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 36
|
||||
components:
|
||||
- pos: 7.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 37
|
||||
components:
|
||||
- pos: 2.5,-5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 38
|
||||
components:
|
||||
- pos: 3.5,-5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 39
|
||||
components:
|
||||
- pos: 4.5,-5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 40
|
||||
components:
|
||||
- pos: 5.5,-5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 41
|
||||
components:
|
||||
- pos: 6.5,-5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 97
|
||||
components:
|
||||
- rot: 1.5707963267948966 rad
|
||||
pos: -3.5,-5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: TableWood
|
||||
entities:
|
||||
- uid: 42
|
||||
components:
|
||||
- pos: 2.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 43
|
||||
components:
|
||||
- pos: 3.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 44
|
||||
components:
|
||||
- pos: 4.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 45
|
||||
components:
|
||||
- pos: 7.5,1.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 46
|
||||
components:
|
||||
- pos: 7.5,0.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- proto: VendingMachineDinnerware
|
||||
entities:
|
||||
- uid: 49
|
||||
components:
|
||||
- flags: SessionSpecific
|
||||
type: MetaData
|
||||
- pos: 7.5,-5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextEmpEject: 420.6097437
|
||||
type: VendingMachine
|
||||
- proto: VendingMachineRestockDinnerware
|
||||
entities:
|
||||
- uid: 50
|
||||
components:
|
||||
- pos: 4.2509427,-5.627874
|
||||
parent: 1
|
||||
type: Transform
|
||||
- nextAttack: 439.8466104
|
||||
type: MeleeWeapon
|
||||
- nextSound: 440.0466104
|
||||
type: EmitSoundOnCollide
|
||||
- proto: WallSolid
|
||||
entities:
|
||||
- uid: 3
|
||||
components:
|
||||
- pos: 1.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 4
|
||||
components:
|
||||
- pos: -1.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 5
|
||||
components:
|
||||
- pos: -2.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 6
|
||||
components:
|
||||
- pos: -3.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 7
|
||||
components:
|
||||
- pos: -4.5,-2.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 8
|
||||
components:
|
||||
- pos: -4.5,-3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 9
|
||||
components:
|
||||
- pos: -4.5,-4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 10
|
||||
components:
|
||||
- pos: -4.5,-5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 11
|
||||
components:
|
||||
- pos: -4.5,-6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 12
|
||||
components:
|
||||
- pos: -3.5,-6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 13
|
||||
components:
|
||||
- pos: -2.5,-6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 14
|
||||
components:
|
||||
- pos: -1.5,-6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 15
|
||||
components:
|
||||
- pos: -0.5,-6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 16
|
||||
components:
|
||||
- pos: -0.5,-5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 17
|
||||
components:
|
||||
- pos: -0.5,-3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 18
|
||||
components:
|
||||
- pos: 0.5,-6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 20
|
||||
components:
|
||||
- pos: 2.5,-6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 21
|
||||
components:
|
||||
- pos: 3.5,-6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 22
|
||||
components:
|
||||
- pos: 4.5,-6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 23
|
||||
components:
|
||||
- pos: 5.5,-6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 25
|
||||
components:
|
||||
- pos: 7.5,-6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 26
|
||||
components:
|
||||
- pos: 8.5,-6.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 27
|
||||
components:
|
||||
- pos: 8.5,-5.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 28
|
||||
components:
|
||||
- rot: -1.5707963267948966 rad
|
||||
pos: 8.5,-4.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
- uid: 29
|
||||
components:
|
||||
- pos: 8.5,-3.5
|
||||
parent: 1
|
||||
type: Transform
|
||||
...
|
||||
Reference in New Issue
Block a user