diff --git a/Content.Client/Clothing/UI/ChameleonMenu.xaml.cs b/Content.Client/Clothing/UI/ChameleonMenu.xaml.cs
index 131ee3b1e90..4532484d8a3 100644
--- a/Content.Client/Clothing/UI/ChameleonMenu.xaml.cs
+++ b/Content.Client/Clothing/UI/ChameleonMenu.xaml.cs
@@ -1,4 +1,4 @@
-using System.Linq;
+using System.Linq;
using System.Numerics;
using Content.Client.Clothing.Systems;
using Content.Client.Stylesheets;
@@ -74,13 +74,9 @@ private void UpdateGrid()
};
button.OnPressed += _ => OnIdSelected?.Invoke(id);
Grid.AddChild(button);
-
- var texture = _sprite.GetPrototypeIcon(proto);
- button.AddChild(new TextureRect
- {
- Stretch = TextureRect.StretchMode.KeepAspectCentered,
- Texture = texture.Default
- });
+ var entityPrototypeView = new EntityPrototypeView();
+ entityPrototypeView.SetPrototype(proto);
+ button.AddChild(entityPrototypeView);
}
}
diff --git a/Content.Server/Atmos/Piping/Other/Components/GasMinerComponent.cs b/Content.Server/Atmos/Piping/Other/Components/GasMinerComponent.cs
index e6d8ec790d8..18a0b9b0782 100644
--- a/Content.Server/Atmos/Piping/Other/Components/GasMinerComponent.cs
+++ b/Content.Server/Atmos/Piping/Other/Components/GasMinerComponent.cs
@@ -25,6 +25,9 @@ public sealed partial class GasMinerComponent : Component
[DataField("spawnTemperature")]
public float SpawnTemperature { get; set; } = Atmospherics.T20C;
+ ///
+ /// Number of moles created per second when the miner is working.
+ ///
[ViewVariables(VVAccess.ReadWrite)]
[DataField("spawnAmount")]
public float SpawnAmount { get; set; } = Atmospherics.MolesCellStandard * 20f;
diff --git a/Content.Server/Atmos/Piping/Other/EntitySystems/GasMinerSystem.cs b/Content.Server/Atmos/Piping/Other/EntitySystems/GasMinerSystem.cs
index aa206dbc686..2505c8189f8 100644
--- a/Content.Server/Atmos/Piping/Other/EntitySystems/GasMinerSystem.cs
+++ b/Content.Server/Atmos/Piping/Other/EntitySystems/GasMinerSystem.cs
@@ -24,18 +24,22 @@ public override void Initialize()
private void OnMinerUpdated(Entity ent, ref AtmosDeviceUpdateEvent args)
{
var miner = ent.Comp;
- if (!CheckMinerOperation(ent, out var environment) || !miner.Enabled || !miner.SpawnGas.HasValue || miner.SpawnAmount <= 0f)
+
+ // SpawnAmount is declared in mol/s so to get the amount of gas we hope to mine, we have to multiply this by
+ // how long we have been waiting to spawn it.
+ var toSpawn = miner.SpawnAmount * args.dt;
+ if (!CheckMinerOperation(ent, toSpawn, out var environment) || !miner.Enabled || !miner.SpawnGas.HasValue || toSpawn <= 0f)
return;
// Time to mine some gas.
var merger = new GasMixture(1) { Temperature = miner.SpawnTemperature };
- merger.SetMoles(miner.SpawnGas.Value, miner.SpawnAmount);
+ merger.SetMoles(miner.SpawnGas.Value, toSpawn);
_atmosphereSystem.Merge(environment, merger);
}
- private bool CheckMinerOperation(Entity ent, [NotNullWhen(true)] out GasMixture? environment)
+ private bool CheckMinerOperation(Entity ent, float toSpawn, [NotNullWhen(true)] out GasMixture? environment)
{
var (uid, miner) = ent;
var transform = Transform(uid);
@@ -59,7 +63,7 @@ private bool CheckMinerOperation(Entity ent, [NotNullWhen(tru
// External pressure above threshold.
if (!float.IsInfinity(miner.MaxExternalPressure) &&
- environment.Pressure > miner.MaxExternalPressure - miner.SpawnAmount * miner.SpawnTemperature * Atmospherics.R / environment.Volume)
+ environment.Pressure > miner.MaxExternalPressure - toSpawn * miner.SpawnTemperature * Atmospherics.R / environment.Volume)
{
miner.Broken = true;
return false;
diff --git a/Content.Shared/Armor/AllowSuitStorageComponent.cs b/Content.Shared/Armor/AllowSuitStorageComponent.cs
index aa7bce1c873..23ddd896349 100644
--- a/Content.Shared/Armor/AllowSuitStorageComponent.cs
+++ b/Content.Shared/Armor/AllowSuitStorageComponent.cs
@@ -1,3 +1,5 @@
+using Content.Shared.Whitelist;
+
namespace Content.Shared.Armor;
///
@@ -6,5 +8,12 @@ namespace Content.Shared.Armor;
[RegisterComponent]
public sealed partial class AllowSuitStorageComponent : Component
{
-
+ ///
+ /// Whitelist for what entities are allowed in the suit storage slot.
+ ///
+ [DataField]
+ public EntityWhitelist Whitelist = new()
+ {
+ Components = new[] {"Item"}
+ };
}
diff --git a/Content.Shared/Inventory/InventorySystem.Equip.cs b/Content.Shared/Inventory/InventorySystem.Equip.cs
index 7acfafee4a6..324d6a7af02 100644
--- a/Content.Shared/Inventory/InventorySystem.Equip.cs
+++ b/Content.Shared/Inventory/InventorySystem.Equip.cs
@@ -248,9 +248,17 @@ public bool CanEquip(EntityUid actor, EntityUid target, EntityUid itemUid, strin
return false;
if (slotDefinition.DependsOnComponents is { } componentRegistry)
+ {
foreach (var (_, entry) in componentRegistry)
+ {
if (!HasComp(slotEntity, entry.Component.GetType()))
return false;
+
+ if (TryComp(slotEntity, out var comp) &&
+ _whitelistSystem.IsWhitelistFailOrNull(comp.Whitelist, itemUid))
+ return false;
+ }
+ }
}
var fittingInPocket = slotDefinition.SlotFlags.HasFlag(SlotFlags.POCKET) &&
diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml
index 9ff1b9667fa..0d1446bcc87 100644
--- a/Resources/Changelog/Changelog.yml
+++ b/Resources/Changelog/Changelog.yml
@@ -1,28 +1,4 @@
Entries:
-- author: Flareguy
- changes:
- - message: Added emergency nitrogen lockers. You can scarcely find them in public
- areas, or scattered around in maintenance tunnels.
- type: Add
- id: 6330
- time: '2024-04-10T21:20:05.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/26752
-- author: Jark255
- changes:
- - message: Door electronics now require network configurators to change their access
- settings, rather than doing so by hand.
- type: Fix
- id: 6331
- time: '2024-04-11T12:21:15.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/26888
-- author: lunarcomets
- changes:
- - message: Cryogenic sleep units now remove crew members from the manifest, and
- announce when crew members go into cryogenic storage.
- type: Tweak
- id: 6332
- time: '2024-04-11T20:48:46.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/26813
- author: Vermidia
changes:
- message: Salt and Pepper shakers look like shakers.
@@ -3832,3 +3808,24 @@
id: 6829
time: '2024-06-28T03:34:24.0000000+00:00'
url: https://github.com/space-wizards/space-station-14/pull/29487
+- author: slarticodefast
+ changes:
+ - message: Passive vents now have the correct sprite.
+ type: Fix
+ id: 6830
+ time: '2024-06-28T12:33:03.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/29536
+- author: Plykiya
+ changes:
+ - message: Icons in the chameleon menu now appear correctly.
+ type: Fix
+ id: 6831
+ time: '2024-06-28T21:21:36.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/29539
+- author: DogZeroX
+ changes:
+ - message: Bananium no longer emit rads
+ type: Remove
+ id: 6832
+ time: '2024-06-28T23:28:27.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/29545
diff --git a/Resources/Maps/oasis.yml b/Resources/Maps/oasis.yml
index 646d3e270a6..6b557df8da1 100644
--- a/Resources/Maps/oasis.yml
+++ b/Resources/Maps/oasis.yml
@@ -468,7 +468,7 @@ entities:
972: -55,-12
973: -56,-12
974: -57,-12
- 3496: -3,-31
+ 3491: -3,-31
- node:
angle: 3.141592653589793 rad
color: '#FFFFFFFF'
@@ -479,14 +479,14 @@ entities:
color: '#FFFFFFFF'
id: BotGreyscale
decals:
- 2726: 35,-25
- 2727: 35,-26
- 2728: 32,-25
- 2729: 32,-24
- 2730: 32,-22
- 2841: 7,-38
- 2972: 15,-40
- 2973: 15,-41
+ 2721: 35,-25
+ 2722: 35,-26
+ 2723: 32,-25
+ 2724: 32,-24
+ 2725: 32,-22
+ 2836: 7,-38
+ 2967: 15,-40
+ 2968: 15,-41
- node:
angle: 3.141592653589793 rad
color: '#FFFFFFFF'
@@ -499,183 +499,183 @@ entities:
color: '#FFFFFFFF'
id: BotLeftGreyscale
decals:
- 2842: 7,-38
+ 2837: 7,-38
- node:
color: '#FFFFFFFF'
id: BotRightGreyscale
decals:
- 2843: 7,-38
+ 2838: 7,-38
- node:
color: '#FFFFFFFF'
id: Box
decals:
1734: 49,-37
1735: 49,-38
- 2346: -7,-51
- 2347: -5,-53
+ 2341: -7,-51
+ 2342: -5,-53
- node:
color: '#C74EBDB2'
id: BrickCornerOverlayNE
decals:
- 2938: -18,-25
+ 2933: -18,-25
- node:
color: '#EFB34196'
id: BrickCornerOverlayNE
decals:
- 2489: 5,51
- 3103: -3,42
+ 2484: 5,51
+ 3098: -3,42
- node:
color: '#F9801DB2'
id: BrickCornerOverlayNE
decals:
- 2951: -22,-25
+ 2946: -22,-25
- node:
color: '#FED83DB2'
id: BrickCornerOverlayNE
decals:
- 2944: -15,-25
+ 2939: -15,-25
- node:
color: '#C74EBDB2'
id: BrickCornerOverlayNW
decals:
- 2939: -20,-25
+ 2934: -20,-25
- node:
color: '#EFB34196'
id: BrickCornerOverlayNW
decals:
- 2490: 3,51
- 3102: -6,42
+ 2485: 3,51
+ 3097: -6,42
- node:
color: '#F9801DB2'
id: BrickCornerOverlayNW
decals:
- 2950: -23,-25
+ 2945: -23,-25
- node:
color: '#FED83DB2'
id: BrickCornerOverlayNW
decals:
- 2945: -16,-25
+ 2940: -16,-25
- node:
color: '#C74EBDB2'
id: BrickCornerOverlaySE
decals:
- 2941: -18,-26
+ 2936: -18,-26
- node:
color: '#EFB34196'
id: BrickCornerOverlaySE
decals:
- 2491: 5,49
- 3100: -3,41
+ 2486: 5,49
+ 3095: -3,41
- node:
color: '#F9801DB2'
id: BrickCornerOverlaySE
decals:
- 2948: -22,-26
+ 2943: -22,-26
- node:
color: '#FED83DB2'
id: BrickCornerOverlaySE
decals:
- 2946: -15,-26
+ 2941: -15,-26
- node:
color: '#C74EBDB2'
id: BrickCornerOverlaySW
decals:
- 2940: -20,-26
+ 2935: -20,-26
- node:
color: '#EFB34196'
id: BrickCornerOverlaySW
decals:
- 2443: 7,40
- 2492: 3,49
- 3101: -6,41
+ 2438: 7,40
+ 2487: 3,49
+ 3096: -6,41
- node:
color: '#F9801DB2'
id: BrickCornerOverlaySW
decals:
- 2949: -23,-26
+ 2944: -23,-26
- node:
color: '#FED83DB2'
id: BrickCornerOverlaySW
decals:
- 2947: -16,-26
+ 2942: -16,-26
- node:
color: '#EFB34196'
id: BrickLineOverlayE
decals:
- 2454: 9,50
- 2455: 9,48
- 2456: 9,47
- 2464: 19,50
- 2475: 19,51
- 2476: 9,51
- 2495: 5,50
- 2497: 3,50
+ 2449: 9,50
+ 2450: 9,48
+ 2451: 9,47
+ 2459: 19,50
+ 2470: 19,51
+ 2471: 9,51
+ 2490: 5,50
+ 2492: 3,50
- node:
color: '#C74EBDB2'
id: BrickLineOverlayN
decals:
- 2942: -19,-25
- 2953: -20,-27
- 2954: -18,-27
- 2960: -19,-27
+ 2937: -19,-25
+ 2948: -20,-27
+ 2949: -18,-27
+ 2955: -19,-27
- node:
color: '#EFB34196'
id: BrickLineOverlayN
decals:
- 2457: 10,46
- 2458: 11,46
- 2459: 15,46
- 2460: 16,46
- 2494: 4,51
- 2500: 4,49
- 3104: -4,42
- 3105: -5,42
+ 2452: 10,46
+ 2453: 11,46
+ 2454: 15,46
+ 2455: 16,46
+ 2489: 4,51
+ 2495: 4,49
+ 3099: -4,42
+ 3100: -5,42
- node:
color: '#F9801DB2'
id: BrickLineOverlayN
decals:
- 2952: -23,-27
- 2961: -22,-27
+ 2947: -23,-27
+ 2956: -22,-27
- node:
color: '#FED83DB2'
id: BrickLineOverlayN
decals:
- 2955: -15,-27
- 2959: -16,-27
+ 2950: -15,-27
+ 2954: -16,-27
- node:
color: '#C74EBDB2'
id: BrickLineOverlayS
decals:
- 2943: -19,-26
+ 2938: -19,-26
- node:
color: '#EFB34196'
id: BrickLineOverlayS
decals:
- 2496: 4,49
- 2498: 4,51
- 3106: -5,41
- 3107: -4,41
+ 2491: 4,49
+ 2493: 4,51
+ 3101: -5,41
+ 3102: -4,41
- node:
color: '#EFB34196'
id: BrickLineOverlayW
decals:
- 2444: 7,41
- 2445: 7,42
- 2446: 7,43
- 2447: 7,44
- 2448: 7,45
- 2449: 7,46
- 2450: 7,47
- 2451: 7,48
- 2452: 7,49
- 2453: 7,50
- 2461: 17,47
- 2462: 17,48
- 2463: 17,50
- 2474: 17,51
- 2477: 7,51
- 2493: 3,50
- 2499: 5,50
+ 2439: 7,41
+ 2440: 7,42
+ 2441: 7,43
+ 2442: 7,44
+ 2443: 7,45
+ 2444: 7,46
+ 2445: 7,47
+ 2446: 7,48
+ 2447: 7,49
+ 2448: 7,50
+ 2456: 17,47
+ 2457: 17,48
+ 2458: 17,50
+ 2469: 17,51
+ 2472: 7,51
+ 2488: 3,50
+ 2494: 5,50
- node:
color: '#FFFFFFFF'
id: BrickTileDarkCornerNe
@@ -725,10 +725,10 @@ entities:
618: 22,6
619: 22,5
887: -52,6
- 2524: 27,42
- 2525: 27,43
- 2526: 30,42
- 2527: 30,43
+ 2519: 27,42
+ 2520: 27,43
+ 2521: 30,42
+ 2522: 30,43
- node:
color: '#FFFFFFFF'
id: BrickTileDarkLineN
@@ -736,7 +736,7 @@ entities:
873: -54,8
884: -56,7
1728: 41,-40
- 3514: -8,-24
+ 3509: -8,-24
- node:
color: '#FFFFFFFF'
id: BrickTileDarkLineS
@@ -750,50 +750,50 @@ entities:
id: BrickTileDarkLineW
decals:
883: -57,6
- 2528: 31,42
- 2529: 31,43
+ 2523: 31,42
+ 2524: 31,43
- node:
color: '#FFFFFFFF'
id: BrickTileSteelCornerNe
decals:
724: -1,-34
- 2330: -4,-50
- 2394: 32,-38
- 3086: -28,42
+ 2325: -4,-50
+ 2389: 32,-38
+ 3081: -28,42
- node:
color: '#FFFFFFFF'
id: BrickTileSteelCornerNw
decals:
- 2331: -8,-50
- 2393: 29,-38
- 3087: -33,42
- 3432: 19,-18
- 3433: 18,-19
+ 2326: -8,-50
+ 2388: 29,-38
+ 3082: -33,42
+ 3427: 19,-18
+ 3428: 18,-19
- node:
color: '#FFFFFFFF'
id: BrickTileSteelCornerSe
decals:
723: -1,-39
- 2332: -4,-54
- 2402: 32,-40
- 3088: -28,40
+ 2327: -4,-54
+ 2397: 32,-40
+ 3083: -28,40
- node:
color: '#FFFFFFFF'
id: BrickTileSteelCornerSw
decals:
- 2333: -8,-54
- 2398: 29,-40
- 3089: -33,40
+ 2328: -8,-54
+ 2393: 29,-40
+ 3084: -33,40
- node:
color: '#FFFFFFFF'
id: BrickTileSteelEndN
decals:
- 2322: -8,-44
+ 2317: -8,-44
- node:
color: '#FFFFFFFF'
id: BrickTileSteelEndS
decals:
- 2323: -8,-48
+ 2318: -8,-48
- node:
color: '#FFFFFFFF'
id: BrickTileSteelInnerNe
@@ -803,7 +803,7 @@ entities:
color: '#FFFFFFFF'
id: BrickTileSteelInnerNw
decals:
- 3438: 19,-19
+ 3433: 19,-19
- node:
color: '#FFFFFFFF'
id: BrickTileSteelInnerSe
@@ -820,64 +820,64 @@ entities:
719: -1,-35
722: -2,-33
1815: 17,30
- 2324: -8,-47
- 2325: -8,-46
- 2326: -8,-45
- 2334: -4,-53
- 2335: -4,-52
- 2336: -4,-51
- 2401: 32,-39
- 3090: -28,41
+ 2319: -8,-47
+ 2320: -8,-46
+ 2321: -8,-45
+ 2329: -4,-53
+ 2330: -4,-52
+ 2331: -4,-51
+ 2396: 32,-39
+ 3085: -28,41
- node:
color: '#FFFFFFFF'
id: BrickTileSteelLineN
decals:
- 2337: -5,-50
- 2338: -6,-50
- 2339: -7,-50
- 2395: 30,-38
- 2399: 31,-38
- 3096: -32,42
- 3097: -31,42
- 3098: -30,42
- 3099: -29,42
- 3436: 20,-18
- 3437: 21,-18
+ 2332: -5,-50
+ 2333: -6,-50
+ 2334: -7,-50
+ 2390: 30,-38
+ 2394: 31,-38
+ 3091: -32,42
+ 3092: -31,42
+ 3093: -30,42
+ 3094: -29,42
+ 3431: 20,-18
+ 3432: 21,-18
- node:
color: '#FFFFFFFF'
id: BrickTileSteelLineS
decals:
- 2340: -5,-54
- 2341: -6,-54
- 2342: -7,-54
- 2396: 30,-40
- 2397: 31,-40
- 3092: -32,40
- 3093: -31,40
- 3094: -30,40
- 3095: -29,40
+ 2335: -5,-54
+ 2336: -6,-54
+ 2337: -7,-54
+ 2391: 30,-40
+ 2392: 31,-40
+ 3087: -32,40
+ 3088: -31,40
+ 3089: -30,40
+ 3090: -29,40
- node:
color: '#FFFFFFFF'
id: BrickTileSteelLineW
decals:
1816: 12,30
- 2327: -8,-47
- 2328: -8,-46
- 2329: -8,-45
- 2343: -8,-53
- 2344: -8,-52
- 2345: -8,-51
- 2400: 29,-39
- 3091: -33,41
- 3434: 18,-21
- 3435: 18,-20
+ 2322: -8,-47
+ 2323: -8,-46
+ 2324: -8,-45
+ 2338: -8,-53
+ 2339: -8,-52
+ 2340: -8,-51
+ 2395: 29,-39
+ 3086: -33,41
+ 3429: 18,-21
+ 3430: 18,-20
- node:
color: '#00BEBE7F'
id: BrickTileWhiteCornerNe
decals:
- 3174: -27,43
- 3184: -36,4
- 3186: -42,5
+ 3169: -27,43
+ 3179: -36,4
+ 3181: -42,5
- node:
color: '#334E6DC8'
id: BrickTileWhiteCornerNe
@@ -898,30 +898,30 @@ entities:
494: -25,-26
505: -29,-26
557: -24,-39
- 2366: 28,-35
- 2388: 37,-37
+ 2361: 28,-35
+ 2383: 37,-37
- node:
color: '#765428FF'
id: BrickTileWhiteCornerNe
decals:
- 3338: -53,-17
+ 3333: -53,-17
- node:
color: '#9FED58B3'
id: BrickTileWhiteCornerNe
decals:
- 2539: -46,-30
+ 2534: -46,-30
- node:
color: '#BC863FFF'
id: BrickTileWhiteCornerNe
decals:
- 3227: -49,3
+ 3222: -49,3
- node:
color: '#D381C996'
id: BrickTileWhiteCornerNe
decals:
837: -11,-47
- 2194: 16,-35
- 2195: 12,-43
+ 2189: 16,-35
+ 2190: 12,-43
- node:
color: '#DE3A3A96'
id: BrickTileWhiteCornerNe
@@ -933,7 +933,7 @@ entities:
color: '#EFB34196'
id: BrickTileWhiteCornerNe
decals:
- 3108: -2,43
+ 3103: -2,43
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteCornerNe
@@ -943,8 +943,8 @@ entities:
color: '#00BEBE7F'
id: BrickTileWhiteCornerNw
decals:
- 3175: -34,43
- 3185: -44,5
+ 3170: -34,43
+ 3180: -44,5
- node:
color: '#334E6DC8'
id: BrickTileWhiteCornerNw
@@ -953,7 +953,7 @@ entities:
604: 20,8
610: 23,9
611: 23,8
- 3216: -44,-9
+ 3211: -44,-9
- node:
color: '#4B709CFF'
id: BrickTileWhiteCornerNw
@@ -969,30 +969,30 @@ entities:
504: -33,-26
558: -28,-39
727: -2,-39
- 2365: 27,-35
+ 2360: 27,-35
- node:
color: '#765428FF'
id: BrickTileWhiteCornerNw
decals:
- 3337: -58,-17
+ 3332: -58,-17
- node:
color: '#9FED58B3'
id: BrickTileWhiteCornerNw
decals:
- 2540: -48,-30
+ 2535: -48,-30
- node:
color: '#BC863FFF'
id: BrickTileWhiteCornerNw
decals:
- 3226: -51,3
- 3363: -51,-2
+ 3221: -51,3
+ 3358: -51,-2
- node:
color: '#D381C996'
id: BrickTileWhiteCornerNw
decals:
838: -14,-47
- 2188: 6,-43
- 2189: 14,-35
+ 2183: 6,-43
+ 2184: 14,-35
- node:
color: '#DE3A3A96'
id: BrickTileWhiteCornerNw
@@ -1003,7 +1003,7 @@ entities:
color: '#EFB34196'
id: BrickTileWhiteCornerNw
decals:
- 3119: -7,43
+ 3114: -7,43
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteCornerNw
@@ -1014,8 +1014,8 @@ entities:
color: '#00BEBE7F'
id: BrickTileWhiteCornerSe
decals:
- 3176: -27,39
- 3188: -36,3
+ 3171: -27,39
+ 3183: -36,3
- node:
color: '#334E6DC8'
id: BrickTileWhiteCornerSe
@@ -1037,30 +1037,30 @@ entities:
491: -25,-30
503: -29,-30
555: -24,-42
- 2386: 34,-42
- 2387: 37,-38
+ 2381: 34,-42
+ 2382: 37,-38
- node:
color: '#765428FF'
id: BrickTileWhiteCornerSe
decals:
- 3340: -53,-24
+ 3335: -53,-24
- node:
color: '#9FED58B3'
id: BrickTileWhiteCornerSe
decals:
- 2537: -46,-31
+ 2532: -46,-31
- node:
color: '#BC863FFF'
id: BrickTileWhiteCornerSe
decals:
- 3235: -49,-5
+ 3230: -49,-5
- node:
color: '#D381C996'
id: BrickTileWhiteCornerSe
decals:
836: -11,-51
- 2190: 12,-45
- 2191: 16,-44
+ 2185: 12,-45
+ 2186: 16,-44
- node:
color: '#DE3A3A96'
id: BrickTileWhiteCornerSe
@@ -1070,9 +1070,9 @@ entities:
color: '#EFB34196'
id: BrickTileWhiteCornerSe
decals:
- 3109: -2,40
- 3124: 10,40
- 3129: 19,39
+ 3104: -2,40
+ 3119: 10,40
+ 3124: 19,39
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteCornerSe
@@ -1082,8 +1082,8 @@ entities:
color: '#00BEBE7F'
id: BrickTileWhiteCornerSw
decals:
- 3177: -34,39
- 3187: -44,3
+ 3172: -34,39
+ 3182: -44,3
- node:
color: '#334E6DC8'
id: BrickTileWhiteCornerSw
@@ -1092,7 +1092,7 @@ entities:
603: 20,5
607: 23,4
615: 23,5
- 3215: -44,-11
+ 3210: -44,-11
- node:
color: '#4B709CFF'
id: BrickTileWhiteCornerSw
@@ -1108,30 +1108,30 @@ entities:
506: -33,-30
556: -28,-42
726: -2,-34
- 2389: 27,-42
+ 2384: 27,-42
- node:
color: '#765428FF'
id: BrickTileWhiteCornerSw
decals:
- 3339: -58,-24
+ 3334: -58,-24
- node:
color: '#9FED58B3'
id: BrickTileWhiteCornerSw
decals:
- 2538: -48,-31
+ 2533: -48,-31
- node:
color: '#BC863FFF'
id: BrickTileWhiteCornerSw
decals:
- 3236: -51,-5
- 3362: -51,1
+ 3231: -51,-5
+ 3357: -51,1
- node:
color: '#D381C996'
id: BrickTileWhiteCornerSw
decals:
839: -14,-51
- 2192: 6,-45
- 2193: 14,-44
+ 2187: 6,-45
+ 2188: 14,-44
- node:
color: '#DE3A3A96'
id: BrickTileWhiteCornerSw
@@ -1141,8 +1141,8 @@ entities:
color: '#EFB34196'
id: BrickTileWhiteCornerSw
decals:
- 3117: -7,40
- 3128: 17,39
+ 3112: -7,40
+ 3123: 17,39
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteCornerSw
@@ -1167,12 +1167,12 @@ entities:
color: '#80C71F80'
id: BrickTileWhiteEndS
decals:
- 3456: 53,-20
+ 3451: 53,-20
- node:
color: '#8932B87F'
id: BrickTileWhiteEndS
decals:
- 3453: 49,-20
+ 3448: 49,-20
- node:
color: '#DE3A3A96'
id: BrickTileWhiteEndS
@@ -1182,7 +1182,7 @@ entities:
color: '#F9801D7F'
id: BrickTileWhiteEndS
decals:
- 3452: 45,-20
+ 3447: 45,-20
- node:
color: '#169C9CFF'
id: BrickTileWhiteEndW
@@ -1207,8 +1207,8 @@ entities:
color: '#00BEBE7F'
id: BrickTileWhiteInnerNe
decals:
- 3205: -44,1
- 3213: -42,4
+ 3200: -44,1
+ 3208: -42,4
- node:
color: '#334E6DC8'
id: BrickTileWhiteInnerNe
@@ -1223,93 +1223,93 @@ entities:
color: '#52B4E996'
id: BrickTileWhiteInnerNe
decals:
- 2392: 28,-37
+ 2387: 28,-37
- node:
color: '#9FED58B3'
id: BrickTileWhiteInnerNe
decals:
- 2547: -48,-31
+ 2542: -48,-31
- node:
color: '#BC863FFF'
id: BrickTileWhiteInnerNe
decals:
- 3244: -53,-2
- 3245: -53,3
- 3282: -53,1
- 3283: -53,2
- 3284: -53,3
- 3285: -53,-3
- 3286: -53,-4
- 3287: -53,-5
- 3288: -53,-6
- 3289: -53,-7
- 3290: -53,-8
- 3291: -53,-9
- 3292: -53,-10
- 3293: -53,-11
- 3294: -53,-12
- 3295: -53,-13
- 3296: -53,-15
- 3314: -58,3
- 3315: -57,3
- 3316: -56,3
- 3317: -55,3
+ 3239: -53,-2
+ 3240: -53,3
+ 3277: -53,1
+ 3278: -53,2
+ 3279: -53,3
+ 3280: -53,-3
+ 3281: -53,-4
+ 3282: -53,-5
+ 3283: -53,-6
+ 3284: -53,-7
+ 3285: -53,-8
+ 3286: -53,-9
+ 3287: -53,-10
+ 3288: -53,-11
+ 3289: -53,-12
+ 3290: -53,-13
+ 3291: -53,-15
+ 3309: -58,3
+ 3310: -57,3
+ 3311: -56,3
+ 3312: -55,3
- node:
color: '#D381C996'
id: BrickTileWhiteInnerNe
decals:
- 2079: 3,-48
- 2082: 3,-45
- 2109: 17,-37
- 2110: 17,-36
- 2111: 17,-35
- 2112: 17,-34
- 2113: 15,-34
- 2114: 14,-34
- 2115: 13,-34
- 2123: 12,-42
- 2124: 11,-42
- 2125: 10,-42
- 2126: 9,-42
- 2127: 8,-42
- 2128: 7,-42
- 2129: 6,-42
- 2130: 5,-42
- 2138: 4,-34
- 2139: 8,-34
- 2140: 11,-40
- 2172: 8,-47
- 2173: 21,-44
- 2178: 13,-46
- 2187: 18,-45
- 2239: 5,-39
- 2292: -9,-42
- 2293: -8,-42
- 2294: -7,-42
- 2295: -7,-43
- 2301: -7,-46
- 2302: -7,-45
- 2305: -7,-49
- 2306: -6,-49
- 2307: -5,-49
- 2308: -5,-49
- 2309: -4,-49
- 2310: -3,-49
- 2311: -3,-50
- 2312: -3,-51
- 2313: -3,-52
- 2314: -3,-53
- 2315: -3,-54
- 2316: -3,-55
- 2866: 17,-42
- 2868: 17,-38
- 2869: 17,-39
- 2870: 17,-40
- 2871: 17,-43
- 2876: 20,-43
- 2877: 19,-43
- 2878: 18,-43
- 2968: 14,-42
+ 2074: 3,-48
+ 2077: 3,-45
+ 2104: 17,-37
+ 2105: 17,-36
+ 2106: 17,-35
+ 2107: 17,-34
+ 2108: 15,-34
+ 2109: 14,-34
+ 2110: 13,-34
+ 2118: 12,-42
+ 2119: 11,-42
+ 2120: 10,-42
+ 2121: 9,-42
+ 2122: 8,-42
+ 2123: 7,-42
+ 2124: 6,-42
+ 2125: 5,-42
+ 2133: 4,-34
+ 2134: 8,-34
+ 2135: 11,-40
+ 2167: 8,-47
+ 2168: 21,-44
+ 2173: 13,-46
+ 2182: 18,-45
+ 2234: 5,-39
+ 2287: -9,-42
+ 2288: -8,-42
+ 2289: -7,-42
+ 2290: -7,-43
+ 2296: -7,-46
+ 2297: -7,-45
+ 2300: -7,-49
+ 2301: -6,-49
+ 2302: -5,-49
+ 2303: -5,-49
+ 2304: -4,-49
+ 2305: -3,-49
+ 2306: -3,-50
+ 2307: -3,-51
+ 2308: -3,-52
+ 2309: -3,-53
+ 2310: -3,-54
+ 2311: -3,-55
+ 2861: 17,-42
+ 2863: 17,-38
+ 2864: 17,-39
+ 2865: 17,-40
+ 2866: 17,-43
+ 2871: 20,-43
+ 2872: 19,-43
+ 2873: 18,-43
+ 2963: 14,-42
- node:
color: '#D4D4D428'
id: BrickTileWhiteInnerNe
@@ -1394,11 +1394,11 @@ entities:
1721: 40,-39
1724: 39,-39
1732: 37,-42
- 2731: 54,-10
- 2847: 40,-25
- 2853: 42,-23
- 2855: 42,-22
- 3463: 54,-19
+ 2726: 54,-10
+ 2842: 40,-25
+ 2848: 42,-23
+ 2850: 42,-22
+ 3458: 54,-19
- node:
color: '#EFB34196'
id: BrickTileWhiteInnerNe
@@ -1422,20 +1422,20 @@ entities:
1851: 25,40
1852: 23,40
1866: 22,31
- 2501: 3,49
- 2505: 19,43
- 2518: 9,46
- 3067: 11,31
+ 2496: 3,49
+ 2500: 19,43
+ 2513: 9,46
+ 3062: 11,31
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteInnerNe
decals:
- 3493: -6,-29
+ 3488: -6,-29
- node:
color: '#00BEBE7F'
id: BrickTileWhiteInnerNw
decals:
- 3204: -35,1
+ 3199: -35,1
- node:
color: '#4B709CFF'
id: BrickTileWhiteInnerNw
@@ -1450,7 +1450,7 @@ entities:
color: '#9FED58B3'
id: BrickTileWhiteInnerNw
decals:
- 2544: -46,-31
+ 2539: -46,-31
- node:
color: '#A4610696'
id: BrickTileWhiteInnerNw
@@ -1461,76 +1461,76 @@ entities:
color: '#BC863FFF'
id: BrickTileWhiteInnerNw
decals:
- 3246: -53,3
- 3247: -55,3
- 3248: -56,3
- 3249: -57,3
- 3250: -58,3
- 3251: -58,2
- 3252: -58,1
- 3253: -58,0
- 3254: -58,-1
- 3255: -58,-8
- 3256: -58,-9
- 3257: -58,-10
- 3258: -58,-11
- 3259: -58,-12
- 3260: -58,-13
- 3261: -58,-14
- 3262: -58,-15
- 3350: -47,-5
- 3358: -47,-2
- 3367: -50,-2
+ 3241: -53,3
+ 3242: -55,3
+ 3243: -56,3
+ 3244: -57,3
+ 3245: -58,3
+ 3246: -58,2
+ 3247: -58,1
+ 3248: -58,0
+ 3249: -58,-1
+ 3250: -58,-8
+ 3251: -58,-9
+ 3252: -58,-10
+ 3253: -58,-11
+ 3254: -58,-12
+ 3255: -58,-13
+ 3256: -58,-14
+ 3257: -58,-15
+ 3345: -47,-5
+ 3353: -47,-2
+ 3362: -50,-2
- node:
color: '#D381C996'
id: BrickTileWhiteInnerNw
decals:
- 2085: 5,-45
- 2090: 5,-42
- 2091: 6,-42
- 2092: 7,-42
- 2093: 8,-42
- 2094: 9,-42
- 2095: 10,-42
- 2096: 11,-42
- 2097: 12,-42
- 2098: 13,-42
- 2099: 13,-41
- 2100: 13,-40
- 2101: 13,-38
- 2102: 13,-37
- 2103: 13,-36
- 2104: 13,-35
- 2105: 13,-34
- 2106: 14,-34
- 2107: 15,-34
- 2108: 17,-34
- 2142: 6,-34
- 2143: 10,-34
- 2240: 9,-39
- 2279: -9,-55
- 2280: -9,-53
- 2281: -9,-52
- 2282: -9,-51
- 2283: -9,-50
- 2284: -9,-48
- 2285: -9,-47
- 2286: -9,-46
- 2287: -9,-44
- 2288: -9,-43
- 2289: -9,-42
- 2290: -8,-42
- 2291: -7,-42
- 2317: -3,-49
- 2318: -4,-49
- 2319: -5,-49
- 2320: -6,-49
- 2358: -1,-48
- 2872: 18,-43
- 2873: 19,-43
- 2874: 20,-43
- 2875: 21,-43
- 2969: 16,-42
+ 2080: 5,-45
+ 2085: 5,-42
+ 2086: 6,-42
+ 2087: 7,-42
+ 2088: 8,-42
+ 2089: 9,-42
+ 2090: 10,-42
+ 2091: 11,-42
+ 2092: 12,-42
+ 2093: 13,-42
+ 2094: 13,-41
+ 2095: 13,-40
+ 2096: 13,-38
+ 2097: 13,-37
+ 2098: 13,-36
+ 2099: 13,-35
+ 2100: 13,-34
+ 2101: 14,-34
+ 2102: 15,-34
+ 2103: 17,-34
+ 2137: 6,-34
+ 2138: 10,-34
+ 2235: 9,-39
+ 2274: -9,-55
+ 2275: -9,-53
+ 2276: -9,-52
+ 2277: -9,-51
+ 2278: -9,-50
+ 2279: -9,-48
+ 2280: -9,-47
+ 2281: -9,-46
+ 2282: -9,-44
+ 2283: -9,-43
+ 2284: -9,-42
+ 2285: -8,-42
+ 2286: -7,-42
+ 2312: -3,-49
+ 2313: -4,-49
+ 2314: -5,-49
+ 2315: -6,-49
+ 2353: -1,-48
+ 2867: 18,-43
+ 2868: 19,-43
+ 2869: 20,-43
+ 2870: 21,-43
+ 2964: 16,-42
- node:
color: '#D4D4D428'
id: BrickTileWhiteInnerNw
@@ -1615,10 +1615,10 @@ entities:
1713: 43,-39
1722: 40,-39
1723: 39,-39
- 2846: 42,-25
- 2851: 40,-23
- 2861: 40,-19
- 2862: 40,-20
+ 2841: 42,-25
+ 2846: 40,-23
+ 2856: 40,-19
+ 2857: 40,-20
- node:
color: '#EFB34196'
id: BrickTileWhiteInnerNw
@@ -1639,10 +1639,10 @@ entities:
1856: 25,28
1857: 25,34
1867: 28,31
- 2502: 5,49
- 2507: 20,43
- 2519: 17,46
- 3068: 18,31
+ 2497: 5,49
+ 2502: 20,43
+ 2514: 17,46
+ 3063: 18,31
- node:
color: '#334E6DC8'
id: BrickTileWhiteInnerSe
@@ -1658,102 +1658,102 @@ entities:
id: BrickTileWhiteInnerSe
decals:
416: -18,-29
- 2390: 34,-38
+ 2385: 34,-38
- node:
color: '#80C71F80'
id: BrickTileWhiteInnerSe
decals:
- 3457: 53,-19
+ 3452: 53,-19
- node:
color: '#8932B87F'
id: BrickTileWhiteInnerSe
decals:
- 3455: 49,-19
+ 3450: 49,-19
- node:
color: '#9FED58B3'
id: BrickTileWhiteInnerSe
decals:
- 2545: -48,-30
+ 2540: -48,-30
- node:
color: '#BC863FFF'
id: BrickTileWhiteInnerSe
decals:
- 3263: -58,-15
- 3264: -57,-15
- 3265: -54,-15
- 3266: -53,-15
- 3267: -53,-13
- 3268: -53,-12
- 3269: -53,-11
- 3270: -53,-10
- 3271: -53,-9
- 3272: -53,-8
- 3273: -53,-7
- 3274: -53,-6
- 3275: -53,-4
- 3276: -53,-5
- 3277: -53,-3
- 3278: -53,-2
- 3279: -53,1
- 3280: -53,2
- 3281: -53,3
- 3297: -53,-15
+ 3258: -58,-15
+ 3259: -57,-15
+ 3260: -54,-15
+ 3261: -53,-15
+ 3262: -53,-13
+ 3263: -53,-12
+ 3264: -53,-11
+ 3265: -53,-10
+ 3266: -53,-9
+ 3267: -53,-8
+ 3268: -53,-7
+ 3269: -53,-6
+ 3270: -53,-4
+ 3271: -53,-5
+ 3272: -53,-3
+ 3273: -53,-2
+ 3274: -53,1
+ 3275: -53,2
+ 3276: -53,3
+ 3292: -53,-15
- node:
color: '#D381C996'
id: BrickTileWhiteInnerSe
decals:
- 2080: 3,-45
- 2081: 3,-42
- 2141: 11,-38
- 2144: 21,-42
- 2145: 17,-36
- 2146: 17,-35
- 2147: 17,-34
- 2148: 21,-44
- 2149: 20,-44
- 2150: 19,-44
- 2151: 18,-44
- 2152: 18,-45
- 2153: 17,-45
- 2154: 16,-45
- 2155: 15,-45
- 2156: 14,-45
- 2157: 13,-45
- 2158: 13,-46
- 2159: 12,-46
- 2160: 11,-46
- 2161: 10,-46
- 2162: 9,-46
- 2163: 8,-46
- 2164: 8,-47
- 2165: 5,-47
- 2166: 6,-47
- 2167: 7,-47
- 2241: 5,-35
- 2266: -3,-55
- 2267: -3,-54
- 2268: -3,-53
- 2269: -3,-52
- 2270: -3,-51
- 2271: -3,-50
- 2272: -3,-49
- 2273: -4,-55
- 2274: -5,-55
- 2275: -6,-55
- 2276: -7,-55
- 2277: -8,-55
- 2278: -9,-55
- 2296: -7,-43
- 2297: -7,-42
- 2298: -7,-45
- 2299: -7,-46
- 2300: -7,-48
- 2867: 17,-40
- 2879: 17,-42
- 2880: 17,-39
- 2881: 17,-38
- 2882: 17,-37
- 2970: 14,-39
+ 2075: 3,-45
+ 2076: 3,-42
+ 2136: 11,-38
+ 2139: 21,-42
+ 2140: 17,-36
+ 2141: 17,-35
+ 2142: 17,-34
+ 2143: 21,-44
+ 2144: 20,-44
+ 2145: 19,-44
+ 2146: 18,-44
+ 2147: 18,-45
+ 2148: 17,-45
+ 2149: 16,-45
+ 2150: 15,-45
+ 2151: 14,-45
+ 2152: 13,-45
+ 2153: 13,-46
+ 2154: 12,-46
+ 2155: 11,-46
+ 2156: 10,-46
+ 2157: 9,-46
+ 2158: 8,-46
+ 2159: 8,-47
+ 2160: 5,-47
+ 2161: 6,-47
+ 2162: 7,-47
+ 2236: 5,-35
+ 2261: -3,-55
+ 2262: -3,-54
+ 2263: -3,-53
+ 2264: -3,-52
+ 2265: -3,-51
+ 2266: -3,-50
+ 2267: -3,-49
+ 2268: -4,-55
+ 2269: -5,-55
+ 2270: -6,-55
+ 2271: -7,-55
+ 2272: -8,-55
+ 2273: -9,-55
+ 2291: -7,-43
+ 2292: -7,-42
+ 2293: -7,-45
+ 2294: -7,-46
+ 2295: -7,-48
+ 2862: 17,-40
+ 2874: 17,-42
+ 2875: 17,-39
+ 2876: 17,-38
+ 2877: 17,-37
+ 2965: 14,-39
- node:
color: '#DE3A3A96'
id: BrickTileWhiteInnerSe
@@ -1827,13 +1827,13 @@ entities:
1709: 43,-40
1710: 43,-39
1733: 37,-40
- 2732: 54,-12
- 2849: 40,-23
- 2852: 42,-23
- 2854: 42,-22
- 2860: 39,-18
- 3461: 52,-7
- 3462: 52,-6
+ 2727: 54,-12
+ 2844: 40,-23
+ 2847: 42,-23
+ 2849: 42,-22
+ 2855: 39,-18
+ 3456: 52,-7
+ 3457: 52,-6
- node:
color: '#EFB34196'
id: BrickTileWhiteInnerSe
@@ -1856,23 +1856,23 @@ entities:
1860: 25,36
1861: 25,25
1869: 22,33
- 2503: 3,51
- 2506: 19,42
- 2517: 10,45
- 2531: 32,42
- 2532: 25,42
- 2534: 23,42
- 3069: 11,33
+ 2498: 3,51
+ 2501: 19,42
+ 2512: 10,45
+ 2526: 32,42
+ 2527: 25,42
+ 2529: 23,42
+ 3064: 11,33
- node:
color: '#F9801D7F'
id: BrickTileWhiteInnerSe
decals:
- 3460: 45,-19
+ 3455: 45,-19
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteInnerSe
decals:
- 3492: -6,-26
+ 3487: -6,-26
- node:
color: '#4B709CFF'
id: BrickTileWhiteInnerSw
@@ -1888,17 +1888,17 @@ entities:
color: '#80C71F80'
id: BrickTileWhiteInnerSw
decals:
- 3458: 53,-19
+ 3453: 53,-19
- node:
color: '#8932B87F'
id: BrickTileWhiteInnerSw
decals:
- 3454: 49,-19
+ 3449: 49,-19
- node:
color: '#9FED58B3'
id: BrickTileWhiteInnerSw
decals:
- 2546: -46,-30
+ 2541: -46,-30
- node:
color: '#A4610696'
id: BrickTileWhiteInnerSw
@@ -1909,75 +1909,75 @@ entities:
color: '#BC863FFF'
id: BrickTileWhiteInnerSw
decals:
- 3298: -53,-15
- 3299: -54,-15
- 3300: -57,-15
- 3301: -58,-15
- 3302: -58,-14
- 3303: -58,-13
- 3304: -58,-12
- 3305: -58,-11
- 3306: -58,-10
- 3307: -58,-9
- 3308: -58,-8
- 3309: -58,-7
- 3310: -58,0
- 3311: -58,1
- 3312: -58,2
- 3313: -58,3
- 3353: -47,2
- 3359: -47,-2
- 3366: -50,1
+ 3293: -53,-15
+ 3294: -54,-15
+ 3295: -57,-15
+ 3296: -58,-15
+ 3297: -58,-14
+ 3298: -58,-13
+ 3299: -58,-12
+ 3300: -58,-11
+ 3301: -58,-10
+ 3302: -58,-9
+ 3303: -58,-8
+ 3304: -58,-7
+ 3305: -58,0
+ 3306: -58,1
+ 3307: -58,2
+ 3308: -58,3
+ 3348: -47,2
+ 3354: -47,-2
+ 3361: -50,1
- node:
color: '#D381C996'
id: BrickTileWhiteInnerSw
decals:
- 2083: 5,-42
- 2084: 5,-45
- 2116: 13,-34
- 2117: 13,-35
- 2118: 13,-36
- 2119: 13,-37
- 2120: 13,-38
- 2121: 13,-40
- 2122: 13,-41
- 2168: 6,-47
- 2169: 7,-47
- 2170: 8,-47
- 2171: 9,-46
- 2174: 10,-46
- 2175: 11,-46
- 2176: 12,-46
- 2177: 13,-46
- 2179: 14,-45
- 2180: 16,-45
- 2181: 15,-45
- 2182: 17,-45
- 2183: 18,-45
- 2184: 19,-44
- 2185: 20,-44
- 2186: 21,-44
- 2238: 9,-35
- 2247: -9,-48
- 2248: -5,-46
- 2249: -9,-47
- 2250: -9,-46
- 2251: -9,-44
- 2252: -9,-43
- 2253: -9,-42
- 2254: -9,-50
- 2255: -9,-51
- 2256: -9,-52
- 2257: -9,-53
- 2259: -9,-55
- 2260: -8,-55
- 2261: -7,-55
- 2262: -6,-55
- 2263: -5,-55
- 2264: -4,-55
- 2265: -3,-55
- 2354: -1,-42
- 2971: 16,-39
+ 2078: 5,-42
+ 2079: 5,-45
+ 2111: 13,-34
+ 2112: 13,-35
+ 2113: 13,-36
+ 2114: 13,-37
+ 2115: 13,-38
+ 2116: 13,-40
+ 2117: 13,-41
+ 2163: 6,-47
+ 2164: 7,-47
+ 2165: 8,-47
+ 2166: 9,-46
+ 2169: 10,-46
+ 2170: 11,-46
+ 2171: 12,-46
+ 2172: 13,-46
+ 2174: 14,-45
+ 2175: 16,-45
+ 2176: 15,-45
+ 2177: 17,-45
+ 2178: 18,-45
+ 2179: 19,-44
+ 2180: 20,-44
+ 2181: 21,-44
+ 2233: 9,-35
+ 2242: -9,-48
+ 2243: -5,-46
+ 2244: -9,-47
+ 2245: -9,-46
+ 2246: -9,-44
+ 2247: -9,-43
+ 2248: -9,-42
+ 2249: -9,-50
+ 2250: -9,-51
+ 2251: -9,-52
+ 2252: -9,-53
+ 2254: -9,-55
+ 2255: -8,-55
+ 2256: -7,-55
+ 2257: -6,-55
+ 2258: -5,-55
+ 2259: -4,-55
+ 2260: -3,-55
+ 2349: -1,-42
+ 2966: 16,-39
- node:
color: '#DE3A3A96'
id: BrickTileWhiteInnerSw
@@ -2053,11 +2053,11 @@ entities:
1699: 39,-40
1719: 42,-41
1725: 39,-39
- 2848: 42,-23
- 2850: 40,-23
- 2857: 40,-20
- 2858: 40,-19
- 2859: 40,-18
+ 2843: 42,-23
+ 2845: 40,-23
+ 2852: 40,-20
+ 2853: 40,-19
+ 2854: 40,-18
- node:
color: '#EFB34196'
id: BrickTileWhiteInnerSw
@@ -2080,23 +2080,23 @@ entities:
1865: 27,42
1868: 28,33
1883: 35,42
- 2504: 5,51
- 2508: 20,42
- 2533: 25,42
- 3070: 18,33
- 3139: 17,45
+ 2499: 5,51
+ 2503: 20,42
+ 2528: 25,42
+ 3065: 18,33
+ 3134: 17,45
- node:
color: '#F9801D7F'
id: BrickTileWhiteInnerSw
decals:
- 3459: 45,-19
+ 3454: 45,-19
- node:
color: '#00BEBE7F'
id: BrickTileWhiteLineE
decals:
- 3162: -27,40
- 3163: -27,41
- 3164: -27,42
+ 3157: -27,40
+ 3158: -27,41
+ 3159: -27,42
- node:
color: '#334E6DC8'
id: BrickTileWhiteLineE
@@ -2126,40 +2126,40 @@ entities:
509: -29,-27
562: -24,-40
563: -24,-41
- 2377: 34,-39
- 2378: 34,-40
- 2379: 34,-41
- 2391: 28,-36
+ 2372: 34,-39
+ 2373: 34,-40
+ 2374: 34,-41
+ 2386: 28,-36
- node:
color: '#765428FF'
id: BrickTileWhiteLineE
decals:
- 3324: -53,-18
- 3325: -53,-19
- 3326: -53,-20
- 3327: -53,-21
- 3328: -53,-22
- 3329: -53,-23
+ 3319: -53,-18
+ 3320: -53,-19
+ 3321: -53,-20
+ 3322: -53,-21
+ 3323: -53,-22
+ 3324: -53,-23
- node:
color: '#9FED58B3'
id: BrickTileWhiteLineE
decals:
- 2548: -45,-31
- 2549: -45,-30
+ 2543: -45,-31
+ 2544: -45,-30
- node:
color: '#BC863FFF'
id: BrickTileWhiteLineE
decals:
- 3221: -53,-14
- 3222: -53,-1
- 3223: -53,0
- 3229: -49,2
- 3230: -49,1
- 3231: -49,0
- 3232: -49,-1
- 3233: -49,-2
- 3234: -49,-4
- 3361: -49,-3
+ 3216: -53,-14
+ 3217: -53,-1
+ 3218: -53,0
+ 3224: -49,2
+ 3225: -49,1
+ 3226: -49,0
+ 3227: -49,-1
+ 3228: -49,-2
+ 3229: -49,-4
+ 3356: -49,-3
- node:
color: '#D381C996'
id: BrickTileWhiteLineE
@@ -2167,32 +2167,32 @@ entities:
843: -11,-50
844: -11,-49
845: -11,-48
- 2075: 3,-43
- 2076: 3,-44
- 2077: 3,-46
- 2078: 3,-47
- 2132: 17,-41
- 2133: 21,-43
- 2134: 11,-39
- 2202: 12,-44
- 2203: 16,-43
- 2204: 16,-42
- 2205: 16,-41
- 2206: 16,-40
- 2207: 16,-39
- 2208: 16,-38
- 2209: 16,-37
- 2210: 16,-36
- 2232: 5,-38
- 2233: 5,-37
- 2234: 5,-36
- 2242: -7,-47
- 2244: -7,-44
- 2304: -11,-45
- 2348: -3,-47
- 2349: -3,-46
- 2964: 14,-41
- 2965: 14,-40
+ 2070: 3,-43
+ 2071: 3,-44
+ 2072: 3,-46
+ 2073: 3,-47
+ 2127: 17,-41
+ 2128: 21,-43
+ 2129: 11,-39
+ 2197: 12,-44
+ 2198: 16,-43
+ 2199: 16,-42
+ 2200: 16,-41
+ 2201: 16,-40
+ 2202: 16,-39
+ 2203: 16,-38
+ 2204: 16,-37
+ 2205: 16,-36
+ 2227: 5,-38
+ 2228: 5,-37
+ 2229: 5,-36
+ 2237: -7,-47
+ 2239: -7,-44
+ 2299: -11,-45
+ 2343: -3,-47
+ 2344: -3,-46
+ 2959: 14,-41
+ 2960: 14,-40
- node:
color: '#DE3A3A96'
id: BrickTileWhiteLineE
@@ -2221,51 +2221,51 @@ entities:
1826: 19,32
1827: 19,33
1880: 22,32
- 2514: 10,44
- 2515: 10,43
- 2516: 10,42
- 2520: 19,44
- 2521: 19,45
- 2522: 20,42
- 2523: 20,43
- 3058: 11,32
- 3085: 17,34
- 3110: -2,41
- 3111: -2,42
- 3125: 10,41
- 3130: 19,40
- 3131: 19,41
+ 2509: 10,44
+ 2510: 10,43
+ 2511: 10,42
+ 2515: 19,44
+ 2516: 19,45
+ 2517: 20,42
+ 2518: 20,43
+ 3053: 11,32
+ 3080: 17,34
+ 3105: -2,41
+ 3106: -2,42
+ 3120: 10,41
+ 3125: 19,40
+ 3126: 19,41
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteLineE
decals:
577: -30,-28
- 3494: -6,-28
- 3495: -6,-27
+ 3489: -6,-28
+ 3490: -6,-27
- node:
color: '#00BEBE7F'
id: BrickTileWhiteLineN
decals:
- 3165: -28,43
- 3166: -29,43
- 3167: -30,43
- 3168: -31,43
- 3169: -32,43
- 3170: -33,43
- 3196: -43,1
- 3197: -42,1
- 3198: -41,1
- 3199: -40,1
- 3200: -39,1
- 3201: -38,1
- 3202: -37,1
- 3203: -36,1
- 3207: -43,5
- 3208: -41,4
- 3209: -40,4
- 3210: -39,4
- 3211: -38,4
- 3212: -37,4
+ 3160: -28,43
+ 3161: -29,43
+ 3162: -30,43
+ 3163: -31,43
+ 3164: -32,43
+ 3165: -33,43
+ 3191: -43,1
+ 3192: -42,1
+ 3193: -41,1
+ 3194: -40,1
+ 3195: -39,1
+ 3196: -38,1
+ 3197: -37,1
+ 3198: -36,1
+ 3202: -43,5
+ 3203: -41,4
+ 3204: -40,4
+ 3205: -39,4
+ 3206: -38,4
+ 3207: -37,4
- node:
color: '#169C9CFF'
id: BrickTileWhiteLineN
@@ -2301,52 +2301,52 @@ entities:
559: -27,-39
560: -26,-39
561: -25,-39
- 2367: 29,-37
- 2368: 30,-37
- 2369: 31,-37
- 2370: 32,-37
- 2371: 33,-37
- 2372: 34,-37
- 2373: 35,-37
- 2374: 36,-37
+ 2362: 29,-37
+ 2363: 30,-37
+ 2364: 31,-37
+ 2365: 32,-37
+ 2366: 33,-37
+ 2367: 34,-37
+ 2368: 35,-37
+ 2369: 36,-37
- node:
color: '#765428FF'
id: BrickTileWhiteLineN
decals:
- 3318: -55,-17
- 3319: -56,-17
- 3320: -57,-17
- 3321: -54,-17
+ 3313: -55,-17
+ 3314: -56,-17
+ 3315: -57,-17
+ 3316: -54,-17
- node:
color: '#9FED58B3'
id: BrickTileWhiteLineN
decals:
- 2536: -47,-31
- 2542: -47,-30
+ 2531: -47,-31
+ 2537: -47,-30
- node:
color: '#BC863FFF'
id: BrickTileWhiteLineN
decals:
- 3218: -54,3
- 3228: -50,3
+ 3213: -54,3
+ 3223: -50,3
- node:
color: '#D381C996'
id: BrickTileWhiteLineN
decals:
834: -13,-47
835: -12,-47
- 2135: 16,-34
- 2136: 9,-34
- 2137: 5,-34
- 2196: 7,-43
- 2197: 8,-43
- 2198: 9,-43
- 2199: 10,-43
- 2200: 11,-43
- 2201: 15,-35
- 2229: 6,-39
- 2230: 7,-39
- 2231: 8,-39
+ 2130: 16,-34
+ 2131: 9,-34
+ 2132: 5,-34
+ 2191: 7,-43
+ 2192: 8,-43
+ 2193: 9,-43
+ 2194: 10,-43
+ 2195: 11,-43
+ 2196: 15,-35
+ 2224: 6,-39
+ 2225: 7,-39
+ 2226: 8,-39
- node:
color: '#D4D4D428'
id: BrickTileWhiteLineN
@@ -2368,7 +2368,7 @@ entities:
1717: 41,-41
1720: 41,-39
1731: 41,-40
- 2845: 41,-25
+ 2840: 41,-25
- node:
color: '#EFB34196'
id: BrickTileWhiteLineN
@@ -2387,22 +2387,22 @@ entities:
1872: 25,31
1873: 26,31
1874: 27,31
- 3046: 17,31
- 3047: 16,31
- 3048: 15,31
- 3049: 14,31
- 3050: 13,31
- 3051: 12,31
- 3061: 12,33
- 3062: 13,33
- 3063: 14,33
- 3064: 15,33
- 3065: 16,33
- 3066: 17,33
- 3120: -6,43
- 3121: -5,43
- 3122: -4,43
- 3123: -3,43
+ 3041: 17,31
+ 3042: 16,31
+ 3043: 15,31
+ 3044: 14,31
+ 3045: 13,31
+ 3046: 12,31
+ 3056: 12,33
+ 3057: 13,33
+ 3058: 14,33
+ 3059: 15,33
+ 3060: 16,33
+ 3061: 17,33
+ 3115: -6,43
+ 3116: -5,43
+ 3117: -4,43
+ 3118: -3,43
- node:
color: '#F38BAAFF'
id: BrickTileWhiteLineN
@@ -2413,26 +2413,26 @@ entities:
id: BrickTileWhiteLineN
decals:
576: -31,-27
- 3486: -5,-29
- 3487: -4,-29
- 3488: -3,-29
+ 3481: -5,-29
+ 3482: -4,-29
+ 3483: -3,-29
- node:
color: '#00BEBE7F'
id: BrickTileWhiteLineS
decals:
- 3156: -33,39
- 3157: -32,39
- 3158: -31,39
- 3159: -30,39
- 3160: -29,39
- 3161: -28,39
- 3189: -37,3
- 3190: -38,3
- 3191: -39,3
- 3192: -40,3
- 3193: -41,3
- 3194: -42,3
- 3195: -43,3
+ 3151: -33,39
+ 3152: -32,39
+ 3153: -31,39
+ 3154: -30,39
+ 3155: -29,39
+ 3156: -28,39
+ 3184: -37,3
+ 3185: -38,3
+ 3186: -39,3
+ 3187: -40,3
+ 3188: -41,3
+ 3189: -42,3
+ 3190: -43,3
- node:
color: '#169C9CFF'
id: BrickTileWhiteLineS
@@ -2474,64 +2474,64 @@ entities:
564: -25,-42
565: -26,-42
566: -27,-42
- 2375: 36,-38
- 2376: 35,-38
- 2380: 33,-42
- 2381: 32,-42
- 2382: 31,-42
- 2383: 30,-42
- 2384: 29,-42
- 2385: 28,-42
+ 2370: 36,-38
+ 2371: 35,-38
+ 2375: 33,-42
+ 2376: 32,-42
+ 2377: 31,-42
+ 2378: 30,-42
+ 2379: 29,-42
+ 2380: 28,-42
- node:
color: '#765428FF'
id: BrickTileWhiteLineS
decals:
- 3330: -54,-24
- 3331: -55,-24
- 3332: -56,-24
- 3333: -57,-24
+ 3325: -54,-24
+ 3326: -55,-24
+ 3327: -56,-24
+ 3328: -57,-24
- node:
color: '#80C71F7F'
id: BrickTileWhiteLineS
decals:
- 3443: 54,-19
- 3444: 52,-19
- 3445: 51,-19
+ 3438: 54,-19
+ 3439: 52,-19
+ 3440: 51,-19
- node:
color: '#8932B87F'
id: BrickTileWhiteLineS
decals:
- 3446: 50,-19
- 3447: 48,-19
- 3448: 47,-19
+ 3441: 50,-19
+ 3442: 48,-19
+ 3443: 47,-19
- node:
color: '#9FED58B3'
id: BrickTileWhiteLineS
decals:
- 2541: -47,-30
- 2543: -47,-31
+ 2536: -47,-30
+ 2538: -47,-31
- node:
color: '#BC863FFF'
id: BrickTileWhiteLineS
decals:
- 3219: -56,-15
- 3220: -55,-15
- 3237: -50,-5
+ 3214: -56,-15
+ 3215: -55,-15
+ 3232: -50,-5
- node:
color: '#D381C996'
id: BrickTileWhiteLineS
decals:
846: -12,-51
847: -13,-51
- 2220: 7,-45
- 2221: 8,-45
- 2222: 9,-45
- 2223: 10,-45
- 2224: 11,-45
- 2225: 15,-44
- 2226: 6,-35
- 2227: 7,-35
- 2228: 8,-35
+ 2215: 7,-45
+ 2216: 8,-45
+ 2217: 9,-45
+ 2218: 10,-45
+ 2219: 11,-45
+ 2220: 15,-44
+ 2221: 6,-35
+ 2222: 7,-35
+ 2223: 8,-35
- node:
color: '#DE3A3A96'
id: BrickTileWhiteLineS
@@ -2544,7 +2544,7 @@ entities:
1569: 41,-30
1606: 41,-37
1718: 41,-41
- 2844: 41,-23
+ 2839: 41,-23
- node:
color: '#EFB34196'
id: BrickTileWhiteLineS
@@ -2562,27 +2562,27 @@ entities:
1878: 26,33
1879: 27,33
1882: 34,42
- 2509: 15,45
- 2510: 14,45
- 2511: 13,45
- 2512: 12,45
- 2513: 11,45
- 2530: 33,42
- 2535: 24,42
- 3052: 12,33
- 3053: 13,33
- 3054: 14,33
- 3055: 15,33
- 3056: 16,33
- 3057: 17,33
- 3112: -3,40
- 3113: -4,40
- 3114: -5,40
- 3118: -6,40
- 3126: 9,40
- 3127: 8,40
- 3132: 18,39
- 3138: 16,45
+ 2504: 15,45
+ 2505: 14,45
+ 2506: 13,45
+ 2507: 12,45
+ 2508: 11,45
+ 2525: 33,42
+ 2530: 24,42
+ 3047: 12,33
+ 3048: 13,33
+ 3049: 14,33
+ 3050: 15,33
+ 3051: 16,33
+ 3052: 17,33
+ 3107: -3,40
+ 3108: -4,40
+ 3109: -5,40
+ 3113: -6,40
+ 3121: 9,40
+ 3122: 8,40
+ 3127: 18,39
+ 3133: 16,45
- node:
color: '#F38BAAFF'
id: BrickTileWhiteLineS
@@ -2592,25 +2592,25 @@ entities:
color: '#F9801D7F'
id: BrickTileWhiteLineS
decals:
- 3449: 46,-19
- 3450: 44,-19
- 3451: 43,-19
+ 3444: 46,-19
+ 3445: 44,-19
+ 3446: 43,-19
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteLineS
decals:
578: -31,-29
- 3489: -5,-26
- 3490: -4,-26
- 3491: -3,-26
+ 3484: -5,-26
+ 3485: -4,-26
+ 3486: -3,-26
- node:
color: '#00BEBE7F'
id: BrickTileWhiteLineW
decals:
- 3171: -34,42
- 3172: -34,41
- 3173: -34,40
- 3206: -44,4
+ 3166: -34,42
+ 3167: -34,41
+ 3168: -34,40
+ 3201: -44,4
- node:
color: '#334E6DC8'
id: BrickTileWhiteLineW
@@ -2619,7 +2619,7 @@ entities:
602: 21,7
605: 20,6
606: 20,7
- 3217: -44,-10
+ 3212: -44,-10
- node:
color: '#4B709CFF'
id: BrickTileWhiteLineW
@@ -2648,39 +2648,39 @@ entities:
730: -1,-36
731: -1,-37
732: -1,-38
- 2359: 27,-41
- 2360: 27,-40
- 2361: 27,-39
- 2362: 27,-38
- 2363: 27,-37
- 2364: 27,-36
+ 2354: 27,-41
+ 2355: 27,-40
+ 2356: 27,-39
+ 2357: 27,-38
+ 2358: 27,-37
+ 2359: 27,-36
- node:
color: '#765428FF'
id: BrickTileWhiteLineW
decals:
- 3334: -58,-23
- 3335: -58,-22
- 3336: -58,-21
+ 3329: -58,-23
+ 3330: -58,-22
+ 3331: -58,-21
- node:
color: '#9FED58B3'
id: BrickTileWhiteLineW
decals:
- 2550: -45,-31
- 2551: -45,-30
+ 2545: -45,-31
+ 2546: -45,-30
- node:
color: '#BC863FFF'
id: BrickTileWhiteLineW
decals:
- 3224: -51,-4
- 3225: -51,-3
- 3238: -47,-4
- 3239: -47,-3
- 3351: -47,0
- 3352: -47,1
- 3357: -47,-1
- 3360: -51,2
- 3364: -50,-1
- 3365: -50,0
+ 3219: -51,-4
+ 3220: -51,-3
+ 3233: -47,-4
+ 3234: -47,-3
+ 3346: -47,0
+ 3347: -47,1
+ 3352: -47,-1
+ 3355: -51,2
+ 3359: -50,-1
+ 3360: -50,0
- node:
color: '#D381C996'
id: BrickTileWhiteLineW
@@ -2688,34 +2688,34 @@ entities:
840: -14,-50
841: -14,-49
842: -14,-48
- 2086: 5,-43
- 2087: 5,-44
- 2088: 5,-46
- 2089: 5,-47
- 2131: 13,-39
- 2211: 6,-44
- 2212: 14,-43
- 2213: 14,-42
- 2214: 14,-41
- 2215: 14,-39
- 2216: 14,-40
- 2217: 14,-38
- 2218: 14,-37
- 2219: 14,-36
- 2235: 9,-38
- 2236: 9,-37
- 2237: 9,-36
- 2243: -5,-47
- 2246: -9,-49
- 2258: -9,-54
- 2303: -9,-45
- 2350: -1,-46
- 2351: -1,-45
- 2352: -1,-44
- 2353: -1,-43
- 2357: -1,-47
- 2966: 16,-41
- 2967: 16,-40
+ 2081: 5,-43
+ 2082: 5,-44
+ 2083: 5,-46
+ 2084: 5,-47
+ 2126: 13,-39
+ 2206: 6,-44
+ 2207: 14,-43
+ 2208: 14,-42
+ 2209: 14,-41
+ 2210: 14,-39
+ 2211: 14,-40
+ 2212: 14,-38
+ 2213: 14,-37
+ 2214: 14,-36
+ 2230: 9,-38
+ 2231: 9,-37
+ 2232: 9,-36
+ 2238: -5,-47
+ 2241: -9,-49
+ 2253: -9,-54
+ 2298: -9,-45
+ 2345: -1,-46
+ 2346: -1,-45
+ 2347: -1,-44
+ 2348: -1,-43
+ 2352: -1,-47
+ 2961: 16,-41
+ 2962: 16,-40
- node:
color: '#DE3A3A96'
id: BrickTileWhiteLineW
@@ -2726,8 +2726,8 @@ entities:
1614: 40,-32
1615: 30,-33
1616: 30,-32
- 2863: 40,-22
- 2864: 40,-21
+ 2858: 40,-22
+ 2859: 40,-21
- node:
color: '#EFB34196'
id: BrickTileWhiteLineW
@@ -2747,15 +2747,15 @@ entities:
1828: 21,32
1829: 21,33
1881: 28,32
- 3059: 18,32
- 3060: 12,34
- 3115: -7,41
- 3116: -7,42
- 3133: 17,40
- 3134: 17,41
- 3135: 17,42
- 3136: 17,43
- 3137: 17,44
+ 3054: 18,32
+ 3055: 12,34
+ 3110: -7,41
+ 3111: -7,42
+ 3128: 17,40
+ 3129: 17,41
+ 3130: 17,42
+ 3131: 17,43
+ 3132: 17,44
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteLineW
@@ -2766,117 +2766,117 @@ entities:
color: '#FFFFFFFF'
id: BushAOne
decals:
- 2652: -12.173578,-13.16537
+ 2647: -12.173578,-13.16537
- node:
color: '#FFFFFFFF'
id: BushAThree
decals:
- 2609: 7.063609,-17.083809
- 2653: -12.954828,-13.13412
- 2985: -13.009358,7.995878
- 2990: -15.09027,11.031727
+ 2604: 7.063609,-17.083809
+ 2648: -12.954828,-13.13412
+ 2980: -13.009358,7.995878
+ 2985: -15.09027,11.031727
- node:
color: '#FFFFFFFF'
id: BushATwo
decals:
- 2654: -12.996495,-12.238287
- 2655: -6.0969057,-13.717453
+ 2649: -12.996495,-12.238287
+ 2650: -6.0969057,-13.717453
- node:
color: '#FFFFFFFF'
id: BushCOne
decals:
- 2978: -11.007082,13.412277
+ 2973: -11.007082,13.412277
- node:
color: '#FFFFFFFF'
id: BushCThree
decals:
- 2603: 17.014423,-8.300894
- 2639: -4.785802,3.4705331
+ 2598: 17.014423,-8.300894
+ 2634: -4.785802,3.4705331
- node:
color: '#FFFFFFFF'
id: BushCTwo
decals:
- 2658: -5.148989,-12.144537
+ 2653: -5.148989,-12.144537
- node:
color: '#FFFFFFFF'
id: BushDTwo
decals:
- 2595: 17.163681,15.561111
- 2596: 3.516313,17.119299
+ 2590: 17.163681,15.561111
+ 2591: 3.516313,17.119299
- node:
color: '#FFFFFFFF'
id: Busha1
decals:
- 2597: 4.90173,16.900549
- 2982: -13.092692,9.881294
+ 2592: 4.90173,16.900549
+ 2977: -13.092692,9.881294
- node:
color: '#FFFFFFFF'
id: Busha2
decals:
- 2987: -13.96527,9.885894
- 2989: -14.642353,10.979644
+ 2982: -13.96527,9.885894
+ 2984: -14.642353,10.979644
- node:
color: '#FFFFFFFF'
id: Bushb1
decals:
- 2979: -10.975832,14.18311
- 2983: -13.092692,9.006294
+ 2974: -10.975832,14.18311
+ 2978: -13.092692,9.006294
- node:
color: '#FFFFFFFF'
id: Bushb2
decals:
- 2651: -12.183994,-14.061203
- 2980: -10.996666,15.02686
+ 2646: -12.183994,-14.061203
+ 2975: -10.996666,15.02686
- node:
color: '#FFFFFFFF'
id: Bushb3
decals:
- 2984: -13.009358,8.402128
- 2988: -14.017353,10.354644
+ 2979: -13.009358,8.402128
+ 2983: -14.017353,10.354644
- node:
color: '#FFFFFFFF'
id: Bushc1
decals:
- 2656: -5.1698227,-12.957037
- 2986: -14.02777,11.062977
+ 2651: -5.1698227,-12.957037
+ 2981: -14.02777,11.062977
- node:
color: '#FFFFFFFF'
id: Bushc3
decals:
- 2594: 17.194931,12.9986105
- 2657: -8.055239,-11.332037
- 2981: -11.044625,12.930744
+ 2589: 17.194931,12.9986105
+ 2652: -8.055239,-11.332037
+ 2976: -11.044625,12.930744
- node:
color: '#FFFFFFFF'
id: Bushe1
decals:
- 2585: 6.2998166,3.7755318
- 2600: 17.076923,-7.467561
- 2601: 16.566507,-7.988394
- 2607: 7.2406926,-16.500475
- 2622: 3.5204434,-9.447139
- 2623: 3.2912767,-9.686723
- 2659: -8.044823,-11.092453
+ 2580: 6.2998166,3.7755318
+ 2595: 17.076923,-7.467561
+ 2596: 16.566507,-7.988394
+ 2602: 7.2406926,-16.500475
+ 2617: 3.5204434,-9.447139
+ 2618: 3.2912767,-9.686723
+ 2654: -8.044823,-11.092453
- node:
color: '#FFFFFFFF'
id: Bushe2
decals:
- 2586: 6.6984973,3.4174294
- 2602: 17.014423,-8.030061
- 2616: 7.441076,6.766222
- 2976: -17.569584,14.99561
- 2999: -4.0134697,4.9046235
- 3481: 63.771957,-1.9947927
- 3485: 64.23029,-2.0052094
+ 2581: 6.6984973,3.4174294
+ 2597: 17.014423,-8.030061
+ 2611: 7.441076,6.766222
+ 2971: -17.569584,14.99561
+ 2994: -4.0134697,4.9046235
+ 3476: 63.771957,-1.9947927
+ 3480: 64.23029,-2.0052094
- node:
color: '#FFFFFFFF'
id: Bushe3
decals:
- 2608: 6.6990256,-16.510893
- 3380: 58.245747,-2.973395
- 3381: 57.818665,-3.0463119
- 3382: 58.308247,-2.1817284
- 3480: 64.15737,-0.19270933
+ 2603: 6.6990256,-16.510893
+ 3375: 58.245747,-2.973395
+ 3376: 57.818665,-3.0463119
+ 3377: 58.308247,-2.1817284
+ 3475: 64.15737,-0.19270933
- node:
color: '#FFFFFFFF'
id: Bushe4
@@ -2886,271 +2886,271 @@ entities:
1306: 57.885906,-2.0552526
1307: 58.15674,-1.5865024
1308: 57.90674,0.18433094
- 2633: 6.6556993,14.650438
- 2640: -4.7441354,3.6892834
- 2665: -12.329075,-5.2076516
- 2666: -11.683241,-5.540985
- 3000: -4.2530527,4.29004
- 3479: 63.792793,0.09895742
+ 2628: 6.6556993,14.650438
+ 2635: -4.7441354,3.6892834
+ 2660: -12.329075,-5.2076516
+ 2661: -11.683241,-5.540985
+ 2995: -4.2530527,4.29004
+ 3474: 63.792793,0.09895742
- node:
color: '#FFFFFFFF'
id: Bushf1
decals:
1311: 58.167156,-0.24275243
- 3013: -4.922404,-3.8768375
+ 3008: -4.922404,-3.8768375
- node:
color: '#FFFFFFFF'
id: Bushf2
decals:
1312: 57.833824,-0.37816906
- 3015: -4.4328203,-4.7726707
- 3016: -4.3255215,-5.3247385
+ 3010: -4.4328203,-4.7726707
+ 3011: -4.3255215,-5.3247385
- node:
color: '#FFFFFFFF'
id: Bushf3
decals:
- 2975: -17.132084,16.266443
- 3014: -4.3703203,-4.199754
- 3379: 57.943665,-2.723395
+ 2970: -17.132084,16.266443
+ 3009: -4.3703203,-4.199754
+ 3374: 57.943665,-2.723395
- node:
color: '#FFFFFFFF'
id: Bushg1
decals:
- 2604: 17.14984,-5.092561
- 2610: 8.53236,-17.187975
- 2644: 3.404969,-4.7533755
- 2991: -9.359586,2.9312673
+ 2599: 17.14984,-5.092561
+ 2605: 8.53236,-17.187975
+ 2639: 3.404969,-4.7533755
+ 2986: -9.359586,2.9312673
- node:
color: '#FFFFFFFF'
id: Bushg2
decals:
- 2645: 4.175802,-4.0346255
- 2977: -16.8925,15.828943
+ 2640: 4.175802,-4.0346255
+ 2972: -16.8925,15.828943
- node:
color: '#FFFFFFFF'
id: Bushg3
decals:
- 2564: -2.1416075,5.8916445
- 2565: -2.162441,14.072103
- 2566: 17.866562,15.155413
- 2567: 18.231146,11.999163
- 2568: 3.059716,-17.07088
- 2569: -4.1298733,-14.029394
- 2570: -2.3702574,-5.9809127
- 2571: -8.961391,-10.053829
- 2572: -17.146135,-6.1901164
+ 2559: -2.1416075,5.8916445
+ 2560: -2.162441,14.072103
+ 2561: 17.866562,15.155413
+ 2562: 18.231146,11.999163
+ 2563: 3.059716,-17.07088
+ 2564: -4.1298733,-14.029394
+ 2565: -2.3702574,-5.9809127
+ 2566: -8.961391,-10.053829
+ 2567: -17.146135,-6.1901164
- node:
color: '#FFFFFFFF'
id: Bushg4
decals:
- 2605: 17.160257,-5.6342273
- 2634: 7.2077823,13.712938
+ 2600: 17.160257,-5.6342273
+ 2629: 7.2077823,13.712938
- node:
color: '#FFFFFFFF'
id: Bushh1
decals:
- 2582: 5.9211392,3.1419072
- 2587: 8.507914,15.796663
- 2588: 9.528748,15.46333
- 2998: -3.4732609,5.2424126
+ 2577: 5.9211392,3.1419072
+ 2582: 8.507914,15.796663
+ 2583: 9.528748,15.46333
+ 2993: -3.4732609,5.2424126
- node:
color: '#FFFFFFFF'
id: Bushh2
decals:
- 2583: 5.087806,3.9127407
- 2589: 8.528747,14.473747
- 2667: -13.162408,-5.0826516
- 2668: -14.037408,-5.988902
+ 2578: 5.087806,3.9127407
+ 2584: 8.528747,14.473747
+ 2662: -13.162408,-5.0826516
+ 2663: -14.037408,-5.988902
- node:
color: '#FFFFFFFF'
id: Bushh3
decals:
- 2584: 7.181556,4.0273237
- 2593: 17.465765,12.071527
- 2669: -13.756159,-5.822237
- 2670: -13.901991,-8.228487
- 2995: -9.230458,4.9216795
+ 2579: 7.181556,4.0273237
+ 2588: 17.465765,12.071527
+ 2664: -13.756159,-5.822237
+ 2665: -13.901991,-8.228487
+ 2990: -9.230458,4.9216795
- node:
color: '#FFFFFFFF'
id: Bushi1
decals:
- 2573: -17.677385,-15.149096
- 2574: -6.0205603,-17.117607
- 2575: -9.970078,-14.052947
- 2576: -9.887934,2.4137444
- 2577: -18.05108,15.0529785
- 2606: 6.2927756,-17.073393
- 2617: 15.850491,-4.61609
- 2619: 9.772904,-4.483665
- 2631: 13.70388,8.66825
- 2632: 7.1036158,14.358771
- 2635: -5.465275,9.849015
- 2636: -6.746525,10.213598
- 2649: 3.4466357,-5.461709
- 2684: -20.130556,-17.838984
- 2685: -16.849306,-19.984818
- 2686: -17.307638,-19.6619
- 2687: -19.265972,-20.13065
- 3003: -14.051299,-2.1793242
- 3006: -17.143507,-2.1316965
- 3007: -14.734559,-9.289597
- 3009: -14.390809,-9.633347
- 3010: -10.377625,-9.233512
- 3018: -3.5338547,-5.210155
- 3019: -4.8467765,-14.670914
- 3375: -2.6337829,9.646117
+ 2568: -17.677385,-15.149096
+ 2569: -6.0205603,-17.117607
+ 2570: -9.970078,-14.052947
+ 2571: -9.887934,2.4137444
+ 2572: -18.05108,15.0529785
+ 2601: 6.2927756,-17.073393
+ 2612: 15.850491,-4.61609
+ 2614: 9.772904,-4.483665
+ 2626: 13.70388,8.66825
+ 2627: 7.1036158,14.358771
+ 2630: -5.465275,9.849015
+ 2631: -6.746525,10.213598
+ 2644: 3.4466357,-5.461709
+ 2679: -20.130556,-17.838984
+ 2680: -16.849306,-19.984818
+ 2681: -17.307638,-19.6619
+ 2682: -19.265972,-20.13065
+ 2998: -14.051299,-2.1793242
+ 3001: -17.143507,-2.1316965
+ 3002: -14.734559,-9.289597
+ 3004: -14.390809,-9.633347
+ 3005: -10.377625,-9.233512
+ 3013: -3.5338547,-5.210155
+ 3014: -4.8467765,-14.670914
+ 3370: -2.6337829,9.646117
- node:
color: '#FFFFFFFF'
id: Bushi2
decals:
- 2578: -17.025719,17.03245
- 2579: 18.117056,13.867498
- 2624: 3.580893,-8.535644
- 2625: 8.918044,-3.98356
- 2626: 15.266736,-5.8692675
- 2627: 16.209822,-5.8538113
- 2628: 7.318463,5.66825
- 2629: 6.4642963,5.85575
- 2630: 14.620547,8.230751
- 2641: 6.318049,2.225238
- 2660: -8.044823,-13.97787
- 2661: -8.878156,-13.144537
- 2662: -5.867739,-11.154953
- 2663: -13.026991,-9.009735
- 2664: -11.860325,-5.124318
- 2688: -16.859722,-18.94315
- 2992: -8.75542,2.9208503
- 2997: -13.95071,2.256745
- 3004: -14.165881,-2.439741
- 3008: -14.713725,-9.602097
- 3011: -9.76849,-14.395954
- 3020: -4.450943,-14.608414
- 3376: -2.8004496,9.333617
+ 2573: -17.025719,17.03245
+ 2574: 18.117056,13.867498
+ 2619: 3.580893,-8.535644
+ 2620: 8.918044,-3.98356
+ 2621: 15.266736,-5.8692675
+ 2622: 16.209822,-5.8538113
+ 2623: 7.318463,5.66825
+ 2624: 6.4642963,5.85575
+ 2625: 14.620547,8.230751
+ 2636: 6.318049,2.225238
+ 2655: -8.044823,-13.97787
+ 2656: -8.878156,-13.144537
+ 2657: -5.867739,-11.154953
+ 2658: -13.026991,-9.009735
+ 2659: -11.860325,-5.124318
+ 2683: -16.859722,-18.94315
+ 2987: -8.75542,2.9208503
+ 2992: -13.95071,2.256745
+ 2999: -14.165881,-2.439741
+ 3003: -14.713725,-9.602097
+ 3006: -9.76849,-14.395954
+ 3015: -4.450943,-14.608414
+ 3371: -2.8004496,9.333617
- node:
color: '#FFFFFFFF'
id: Bushi3
decals:
- 2580: 17.117056,10.211248
- 2581: 9.26489,2.9960737
- 2611: 14.499886,6.958212
- 2612: 13.541552,7.447795
- 2613: 6.0254874,14.498462
- 2618: 16.579659,-3.9598398
- 2642: 7.224299,2.3710713
- 2643: 4.0082765,6.5204124
- 2650: 5.713353,-3.1926599
- 2974: -14.413333,18.172693
- 2994: -9.557503,5.8271008
- 2996: -14.0402975,2.506745
- 3377: -2.8212829,8.989867
+ 2575: 17.117056,10.211248
+ 2576: 9.26489,2.9960737
+ 2606: 14.499886,6.958212
+ 2607: 13.541552,7.447795
+ 2608: 6.0254874,14.498462
+ 2613: 16.579659,-3.9598398
+ 2637: 7.224299,2.3710713
+ 2638: 4.0082765,6.5204124
+ 2645: 5.713353,-3.1926599
+ 2969: -14.413333,18.172693
+ 2989: -9.557503,5.8271008
+ 2991: -14.0402975,2.506745
+ 3372: -2.8212829,8.989867
- node:
color: '#FFFFFFFF'
id: Bushi4
decals:
- 2552: -15.13607,-18.199955
- 2553: -18.14605,-11.80234
- 2554: -13.963279,-4.177868
- 2555: -5.8667884,-5.4799514
- 2556: 8.061129,-4.427868
- 2557: 15.901968,-2.2820346
- 2558: 17.151968,2.9988291
- 2559: 9.610178,17.11985
- 2560: 4.0546904,17.078184
- 2561: 3.480264,5.210905
- 2562: -15.017622,18.057854
- 2563: -5.5270247,2.9853945
- 2598: 5.777904,17.049623
- 2599: 9.139725,14.0701685
- 2614: 6.567154,13.456795
- 2615: 6.441076,6.7870555
- 2620: 9.397904,-5.046165
- 2621: 4.3850265,-9.488806
- 2637: -6.2881913,9.494848
- 2638: -5.402775,10.869849
- 2646: 3.8528857,-4.5242085
- 2671: -11.037408,-8.100949
- 3001: -3.7009702,4.4983735
- 3002: -5.697132,-3.1168242
- 3012: -9.425084,-14.560988
- 3017: -3.5442712,-4.7830715
+ 2547: -15.13607,-18.199955
+ 2548: -18.14605,-11.80234
+ 2549: -13.963279,-4.177868
+ 2550: -5.8667884,-5.4799514
+ 2551: 8.061129,-4.427868
+ 2552: 15.901968,-2.2820346
+ 2553: 17.151968,2.9988291
+ 2554: 9.610178,17.11985
+ 2555: 4.0546904,17.078184
+ 2556: 3.480264,5.210905
+ 2557: -15.017622,18.057854
+ 2558: -5.5270247,2.9853945
+ 2593: 5.777904,17.049623
+ 2594: 9.139725,14.0701685
+ 2609: 6.567154,13.456795
+ 2610: 6.441076,6.7870555
+ 2615: 9.397904,-5.046165
+ 2616: 4.3850265,-9.488806
+ 2632: -6.2881913,9.494848
+ 2633: -5.402775,10.869849
+ 2641: 3.8528857,-4.5242085
+ 2666: -11.037408,-8.100949
+ 2996: -3.7009702,4.4983735
+ 2997: -5.697132,-3.1168242
+ 3007: -9.425084,-14.560988
+ 3012: -3.5442712,-4.7830715
- node:
color: '#FFFFFFFF'
id: Bushj1
decals:
- 2590: 8.789164,15.109163
- 2676: -19.824345,-10.10782
- 2677: -20.11601,-9.63907
- 2679: -20.011845,-8.243237
- 2680: -18.730595,-8.79532
- 2681: -18.873224,-10.013859
- 2682: -19.654474,-7.0659423
- 3393: -18.860361,-7.807997
+ 2585: 8.789164,15.109163
+ 2671: -19.824345,-10.10782
+ 2672: -20.11601,-9.63907
+ 2674: -20.011845,-8.243237
+ 2675: -18.730595,-8.79532
+ 2676: -18.873224,-10.013859
+ 2677: -19.654474,-7.0659423
+ 3388: -18.860361,-7.807997
- node:
color: '#FFFFFFFF'
id: Bushj2
decals:
- 2678: -18.793095,-6.868236
- 2683: -19.94614,-7.7117753
- 3391: -20.016611,-7.2975807
- 3392: -18.902029,-9.370498
- 3394: -19.318695,-8.485081
+ 2673: -18.793095,-6.868236
+ 2678: -19.94614,-7.7117753
+ 3386: -20.016611,-7.2975807
+ 3387: -18.902029,-9.370498
+ 3389: -19.318695,-8.485081
- node:
color: '#FFFFFFFF'
id: Bushj3
decals:
- 3378: -4.6337833,10.114867
+ 3373: -4.6337833,10.114867
- node:
color: '#FFFFFFFF'
id: Bushk1
decals:
- 2648: 3.0091357,-5.795042
- 2993: -10.00542,5.191684
+ 2643: 3.0091357,-5.795042
+ 2988: -10.00542,5.191684
- node:
color: '#FFFFFFFF'
id: Bushk3
decals:
- 2591: 15.903748,17.02583
- 2592: 18.067644,12.942497
- 2647: 4.8112187,-3.7846253
+ 2586: 15.903748,17.02583
+ 2587: 18.067644,12.942497
+ 2642: 4.8112187,-3.7846253
- node:
color: '#FFFFFFFF'
id: Bushm1
decals:
- 3482: 63.81363,-0.83854264
+ 3477: 63.81363,-0.83854264
- node:
color: '#FFFFFFFF'
id: Bushm3
decals:
- 3483: 64.29279,-0.73437595
+ 3478: 64.29279,-0.73437595
- node:
color: '#FFFFFFFF'
id: Bushm4
decals:
- 2672: -10.9586735,-6.0094166
- 2673: -11.224603,-5.736016
- 2674: -13.307937,-8.381849
- 2675: -14.067469,-7.593817
- 3484: 64.12612,-1.2864593
+ 2667: -10.9586735,-6.0094166
+ 2668: -11.224603,-5.736016
+ 2669: -13.307937,-8.381849
+ 2670: -14.067469,-7.593817
+ 3479: 64.12612,-1.2864593
- node:
color: '#FFFFFFFF'
id: Bushn1
decals:
1309: 58.021324,0.5489143
1310: 57.96924,-1.1594192
- 3383: 57.99387,-2.411529
+ 3378: 57.99387,-2.411529
- node:
angle: 1.5707963267948966 rad
color: '#FFFFFFFF'
id: Caution
decals:
- 3557: 56.20735,16.017925
+ 3546: 56.20735,16.017925
- node:
color: '#52B4E996'
id: CheckerNWSE
decals:
- 2956: -19,-27
- 2957: -16,-27
- 2958: -22,-27
+ 2951: -19,-27
+ 2952: -16,-27
+ 2953: -22,-27
- node:
color: '#FFFFFFFF'
id: ConcreteTrimCornerNe
@@ -3181,33 +3181,33 @@ entities:
decals:
30: -2,-2
31: -2,-2
- 3418: 2,4
- 3419: 3,3
- 3420: 4,2
+ 3413: 2,4
+ 3414: 3,3
+ 3415: 4,2
- node:
color: '#FFFFFFFF'
id: ConcreteTrimInnerNw
decals:
33: 2,-2
- 3415: -4,2
- 3416: -3,3
- 3417: -2,4
+ 3410: -4,2
+ 3411: -3,3
+ 3412: -2,4
- node:
color: '#FFFFFFFF'
id: ConcreteTrimInnerSe
decals:
29: -2,2
- 3412: 2,-4
- 3413: 3,-3
- 3414: 4,-2
+ 3407: 2,-4
+ 3408: 3,-3
+ 3409: 4,-2
- node:
color: '#FFFFFFFF'
id: ConcreteTrimInnerSw
decals:
32: 2,2
- 3409: -2,-4
- 3410: -3,-3
- 3411: -4,-2
+ 3404: -2,-4
+ 3405: -3,-3
+ 3406: -4,-2
- node:
color: '#FFFFFFFF'
id: ConcreteTrimLineE
@@ -3271,7 +3271,7 @@ entities:
95: -13,-2
96: -16,-2
97: -17,-2
- 3005: -14,-2
+ 3000: -14,-2
- node:
color: '#FFFFFFFF'
id: ConcreteTrimLineS
@@ -3302,8 +3302,8 @@ entities:
105: -8,2
106: -7,2
107: -6,2
- 3401: 11,2
- 3402: 14,2
+ 3396: 11,2
+ 3397: 14,2
- node:
color: '#FFFFFFFF'
id: ConcreteTrimLineW
@@ -3333,8 +3333,8 @@ entities:
76: 2,-14
77: 2,-16
78: 2,-17
- 3407: 2,10
- 3408: 2,13
+ 3402: 2,10
+ 3403: 2,13
- node:
color: '#FFFFFFFF'
id: Delivery
@@ -3347,52 +3347,52 @@ entities:
color: '#3EB38896'
id: DiagonalCheckerAOverlay
decals:
- 3528: 12,23
- 3529: 13,22
- 3530: 13,23
- 3531: 14,23
- 3532: 15,23
- 3533: 15,22
- 3534: 14,22
- 3535: 14,21
- 3536: 13,21
- 3537: 12,20
- 3538: 13,20
- 3539: 14,20
- 3540: 15,20
- 3541: 15,21
- 3543: 12,21
- 3544: 12,22
+ 3523: 12,23
+ 3524: 13,22
+ 3525: 13,23
+ 3526: 14,23
+ 3527: 15,23
+ 3528: 15,22
+ 3529: 14,22
+ 3530: 14,21
+ 3531: 13,21
+ 3532: 12,20
+ 3533: 13,20
+ 3534: 14,20
+ 3535: 15,20
+ 3536: 15,21
+ 3538: 12,21
+ 3539: 12,22
- node:
color: '#639137FF'
id: DiagonalCheckerBOverlay
decals:
- 3515: 12,20
- 3516: 13,20
- 3517: 13,21
- 3518: 13,22
- 3519: 13,23
- 3520: 14,23
- 3521: 14,22
- 3522: 14,21
- 3523: 14,20
- 3524: 15,20
- 3525: 15,21
- 3526: 15,22
- 3527: 15,23
- 3542: 12,23
- 3545: 12,21
- 3546: 12,22
+ 3510: 12,20
+ 3511: 13,20
+ 3512: 13,21
+ 3513: 13,22
+ 3514: 13,23
+ 3515: 14,23
+ 3516: 14,22
+ 3517: 14,21
+ 3518: 14,20
+ 3519: 15,20
+ 3520: 15,21
+ 3521: 15,22
+ 3522: 15,23
+ 3537: 12,23
+ 3540: 12,21
+ 3541: 12,22
- node:
color: '#D381C996'
id: DiagonalOverlay
decals:
- 2245: -10,-49
- 2321: -10,-45
- 3386: 4,-47
- 3387: 4,-46
- 3388: -2,-47
- 3389: -6,-47
+ 2240: -10,-49
+ 2316: -10,-45
+ 3381: 4,-47
+ 3382: 4,-46
+ 3383: -2,-47
+ 3384: -6,-47
- node:
color: '#DE3A3A96'
id: DiagonalOverlay
@@ -3409,7 +3409,7 @@ entities:
1565: 44,-37
1566: 41,-38
1567: 38,-41
- 2856: 41,-24
+ 2851: 41,-24
- node:
color: '#EFB34196'
id: DiagonalOverlay
@@ -3422,156 +3422,156 @@ entities:
color: '#FFFFFFFF'
id: FlowersBROne
decals:
- 2754: 16.070688,16.03927
- 2785: 9.361443,4.4135666
- 2786: 8.71561,5.3614836
+ 2749: 16.070688,16.03927
+ 2780: 9.361443,4.4135666
+ 2781: 8.71561,5.3614836
- node:
color: '#FFFFFFFF'
id: FlowersBRThree
decals:
- 2755: 17.062426,11.239492
- 2756: 10.321154,17.060677
- 2789: 7.6635256,6.1948166
- 2790: 8.538526,6.2989836
- 2825: 9.51524,6.327868
+ 2750: 17.062426,11.239492
+ 2751: 10.321154,17.060677
+ 2784: 7.6635256,6.1948166
+ 2785: 8.538526,6.2989836
+ 2820: 9.51524,6.327868
- node:
color: '#FFFFFFFF'
id: FlowersBRTwo
decals:
- 2782: 10.111443,4.4344
- 2783: 8.663526,4.5594
- 2784: 8.05936,5.5073166
- 2826: 9.79649,6.7862015
+ 2777: 10.111443,4.4344
+ 2778: 8.663526,4.5594
+ 2779: 8.05936,5.5073166
+ 2821: 9.79649,6.7862015
- node:
color: '#FFFFFFFF'
id: Flowersbr1
decals:
- 2751: 3.1090877,15.838451
- 2752: 15.10194,16.174686
+ 2746: 3.1090877,15.838451
+ 2747: 15.10194,16.174686
- node:
color: '#FFFFFFFF'
id: Flowersbr2
decals:
- 2753: 15.393607,16.737186
- 2787: 9.49686,5.1010666
- 2788: 9.080193,5.7260666
- 2791: 10.324566,5.2335067
- 2813: 16.988474,10.508276
- 2814: 16.363474,10.747859
- 2815: 11.000941,16.992361
- 2816: 11.6309395,17.170504
- 2832: 7.8013525,4.69695
- 2833: 9.145103,3.603201
- 2834: 9.15132,6.0905905
+ 2748: 15.393607,16.737186
+ 2782: 9.49686,5.1010666
+ 2783: 9.080193,5.7260666
+ 2786: 10.324566,5.2335067
+ 2808: 16.988474,10.508276
+ 2809: 16.363474,10.747859
+ 2810: 11.000941,16.992361
+ 2811: 11.6309395,17.170504
+ 2827: 7.8013525,4.69695
+ 2828: 9.145103,3.603201
+ 2829: 9.15132,6.0905905
- node:
color: '#FFFFFFFF'
id: Flowersbr3
decals:
- 2824: 8.806907,6.8799515
+ 2819: 8.806907,6.8799515
- node:
color: '#FFFFFFFF'
id: Flowerspv1
decals:
- 2792: 15.255633,6.9409747
- 2793: 14.661882,7.545141
+ 2787: 15.255633,6.9409747
+ 2788: 14.661882,7.545141
- node:
color: '#FFFFFFFF'
id: Flowerspv2
decals:
- 2794: 15.463966,7.690975
- 2796: 14.5844555,8.774308
- 2800: 14.978545,6.1768036
- 2801: 15.728544,6.3643036
- 2827: 14.814111,5.0989227
- 2828: 15.56411,4.4947557
- 2831: 12.9190645,9.799427
+ 2789: 15.463966,7.690975
+ 2791: 14.5844555,8.774308
+ 2795: 14.978545,6.1768036
+ 2796: 15.728544,6.3643036
+ 2822: 14.814111,5.0989227
+ 2823: 15.56411,4.4947557
+ 2826: 12.9190645,9.799427
- node:
color: '#FFFFFFFF'
id: Flowerspv3
decals:
- 2745: 8.013186,3.1140726
- 2746: 10.378889,-5.012858
- 2747: 10.274722,-4.383773
- 2795: 15.219872,8.347224
- 2797: 13.9177885,8.774308
- 2798: 13.252036,8.115639
- 2799: 13.134795,8.926804
- 2802: 16.103544,7.1143036
- 2803: 16.42646,6.1143036
- 2804: 15.748611,5.544657
- 2829: 14.501611,4.234339
- 2830: 13.6690645,9.570259
+ 2740: 8.013186,3.1140726
+ 2741: 10.378889,-5.012858
+ 2742: 10.274722,-4.383773
+ 2790: 15.219872,8.347224
+ 2792: 13.9177885,8.774308
+ 2793: 13.252036,8.115639
+ 2794: 13.134795,8.926804
+ 2797: 16.103544,7.1143036
+ 2798: 16.42646,6.1143036
+ 2799: 15.748611,5.544657
+ 2824: 14.501611,4.234339
+ 2825: 13.6690645,9.570259
- node:
color: '#FFFFFFFF'
id: Flowersy1
decals:
- 2743: 7.160172,13.449887
- 2744: 5.483089,13.918637
- 2757: 12.341987,18.164845
- 2764: 4.084557,12.876521
- 2765: 6.313724,11.689021
- 2766: 9.0012245,11.564021
- 2772: 8.3553915,12.168188
- 2773: 6.730391,12.855688
- 2774: 5.105391,14.376521
- 2775: 2.9283073,14.741104
- 2777: 4.719974,13.105688
- 2778: 4.355391,14.585857
- 2779: 3.473161,14.394393
- 2780: 4.3585773,13.821476
- 2806: 2.299132,6.662748
- 2811: 4.7337813,6.6002483
- 2812: 4.5150313,6.0064983
+ 2738: 7.160172,13.449887
+ 2739: 5.483089,13.918637
+ 2752: 12.341987,18.164845
+ 2759: 4.084557,12.876521
+ 2760: 6.313724,11.689021
+ 2761: 9.0012245,11.564021
+ 2767: 8.3553915,12.168188
+ 2768: 6.730391,12.855688
+ 2769: 5.105391,14.376521
+ 2770: 2.9283073,14.741104
+ 2772: 4.719974,13.105688
+ 2773: 4.355391,14.585857
+ 2774: 3.473161,14.394393
+ 2775: 4.3585773,13.821476
+ 2801: 2.299132,6.662748
+ 2806: 4.7337813,6.6002483
+ 2807: 4.5150313,6.0064983
- node:
color: '#FFFFFFFF'
id: Flowersy2
decals:
- 2758: 14.633654,18.154427
- 2767: 7.6991415,11.939021
- 2768: 7.0533075,11.282771
- 2769: 8.1783085,11.241104
- 2807: 3.0178826,5.8710814
+ 2753: 14.633654,18.154427
+ 2762: 7.6991415,11.939021
+ 2763: 7.0533075,11.282771
+ 2764: 8.1783085,11.241104
+ 2802: 3.0178826,5.8710814
- node:
color: '#FFFFFFFF'
id: Flowersy3
decals:
- 2759: 13.227404,18.091927
- 2761: 11.914904,18.11276
- 2762: 11.914904,18.11276
- 2770: 6.938724,12.168188
- 2771: 7.6158075,12.918188
- 2781: 3.4939945,13.592309
- 2808: 3.1637156,6.5481644
- 2809: 3.7887158,5.704415
- 2810: 3.9108648,7.0273314
+ 2754: 13.227404,18.091927
+ 2756: 11.914904,18.11276
+ 2757: 11.914904,18.11276
+ 2765: 6.938724,12.168188
+ 2766: 7.6158075,12.918188
+ 2776: 3.4939945,13.592309
+ 2803: 3.1637156,6.5481644
+ 2804: 3.7887158,5.704415
+ 2805: 3.9108648,7.0273314
- node:
color: '#FFFFFFFF'
id: Flowersy4
decals:
- 2748: 3.8501334,-9.470912
- 2749: 4.3709664,-9.908412
- 2750: 3.6209664,-9.960495
- 2760: 13.966987,18.133595
- 2763: 15.123237,18.071095
- 2776: 5.136641,13.511938
- 2805: 2.2574656,5.8294144
- 2817: 9.849766,11.338729
- 2818: 9.047683,10.619978
- 2819: 4.7809443,7.692894
- 2820: 5.676778,7.797061
- 2821: 5.4059443,8.505394
- 2822: 5.8902392,6.890369
- 2823: 6.223573,8.400785
+ 2743: 3.8501334,-9.470912
+ 2744: 4.3709664,-9.908412
+ 2745: 3.6209664,-9.960495
+ 2755: 13.966987,18.133595
+ 2758: 15.123237,18.071095
+ 2771: 5.136641,13.511938
+ 2800: 2.2574656,5.8294144
+ 2812: 9.849766,11.338729
+ 2813: 9.047683,10.619978
+ 2814: 4.7809443,7.692894
+ 2815: 5.676778,7.797061
+ 2816: 5.4059443,8.505394
+ 2817: 5.8902392,6.890369
+ 2818: 6.223573,8.400785
- node:
color: '#00BEBE7F'
id: FullTileOverlayGreyscale
decals:
- 3178: -26,40
- 3179: -26,42
- 3180: -43,2
- 3181: -42,2
- 3182: -37,2
- 3183: -36,2
+ 3173: -26,40
+ 3174: -26,42
+ 3175: -43,2
+ 3176: -42,2
+ 3177: -37,2
+ 3178: -36,2
- node:
color: '#334E6DC8'
id: FullTileOverlayGreyscale
@@ -3581,62 +3581,62 @@ entities:
708: 25,3
808: -33,-9
809: -29,-9
- 2865: -23,-36
+ 2860: -23,-36
- node:
color: '#373737FF'
id: FullTileOverlayGreyscale
decals:
- 3421: 21,-19
- 3422: 20,-19
- 3423: 19,-19
- 3424: 19,-18
- 3425: 18,-19
- 3426: 18,-20
- 3427: 19,-20
- 3428: 19,-21
- 3429: 18,-21
- 3430: 21,-18
- 3431: 20,-18
- 3439: 17,-18
- 3440: 18,-17
- 3441: 21,-22
- 3442: 22,-21
+ 3416: 21,-19
+ 3417: 20,-19
+ 3418: 19,-19
+ 3419: 19,-18
+ 3420: 18,-19
+ 3421: 18,-20
+ 3422: 19,-20
+ 3423: 19,-21
+ 3424: 18,-21
+ 3425: 21,-18
+ 3426: 20,-18
+ 3434: 17,-18
+ 3435: 18,-17
+ 3436: 21,-22
+ 3437: 22,-21
- node:
color: '#4A35194C'
id: FullTileOverlayGreyscale
decals:
- 2694: -22,3
- 2695: -21,3
- 2696: -20,3
- 2697: -19,3
- 2698: -19,4
- 2699: -19,5
- 2700: -19,6
- 2701: -19,7
- 2702: -19,8
- 2703: -19,9
- 2704: -19,10
- 2705: -20,10
- 2706: -20,9
- 2707: -20,8
- 2708: -20,7
- 2709: -20,6
- 2710: -20,5
- 2711: -20,4
- 2712: -21,4
- 2713: -22,4
- 2714: -22,5
- 2715: -21,5
- 2716: -21,6
- 2717: -22,6
- 2718: -22,7
- 2719: -21,7
- 2720: -21,8
- 2721: -22,8
- 2722: -22,9
- 2723: -21,9
- 2724: -21,10
- 2725: -22,10
+ 2689: -22,3
+ 2690: -21,3
+ 2691: -20,3
+ 2692: -19,3
+ 2693: -19,4
+ 2694: -19,5
+ 2695: -19,6
+ 2696: -19,7
+ 2697: -19,8
+ 2698: -19,9
+ 2699: -19,10
+ 2700: -20,10
+ 2701: -20,9
+ 2702: -20,8
+ 2703: -20,7
+ 2704: -20,6
+ 2705: -20,5
+ 2706: -20,4
+ 2707: -21,4
+ 2708: -22,4
+ 2709: -22,5
+ 2710: -21,5
+ 2711: -21,6
+ 2712: -22,6
+ 2713: -22,7
+ 2714: -21,7
+ 2715: -21,8
+ 2716: -22,8
+ 2717: -22,9
+ 2718: -21,9
+ 2719: -21,10
+ 2720: -22,10
- node:
color: '#52B4E996'
id: FullTileOverlayGreyscale
@@ -3662,19 +3662,19 @@ entities:
color: '#765428FF'
id: FullTileOverlayGreyscale
decals:
- 3322: -55,-16
- 3323: -56,-16
+ 3317: -55,-16
+ 3318: -56,-16
- node:
color: '#951710FF'
id: FullTileOverlayGreyscale
decals:
- 2403: 43,37
- 2404: 43,38
- 2405: 43,39
- 2406: 43,40
- 2407: 43,41
- 2408: 43,36
- 2409: 43,42
+ 2398: 43,37
+ 2399: 43,38
+ 2400: 43,39
+ 2401: 43,40
+ 2402: 43,41
+ 2403: 43,36
+ 2404: 43,42
- node:
color: '#9FED5896'
id: FullTileOverlayGreyscale
@@ -3699,23 +3699,23 @@ entities:
color: '#BC863FFF'
id: FullTileOverlayGreyscale
decals:
- 3240: -48,-3
- 3241: -48,-4
- 3242: -52,-1
- 3243: -52,0
- 3354: -48,0
- 3355: -48,1
- 3356: -48,-1
- 3368: -51,-1
- 3369: -51,0
+ 3235: -48,-3
+ 3236: -48,-4
+ 3237: -52,-1
+ 3238: -52,0
+ 3349: -48,0
+ 3350: -48,1
+ 3351: -48,-1
+ 3363: -51,-1
+ 3364: -51,0
- node:
color: '#C6FF91FF'
id: FullTileOverlayGreyscale
decals:
- 3023: -37,-35
- 3024: -37,-34
- 3025: -36,-34
- 3026: -35,-34
+ 3018: -37,-35
+ 3019: -37,-34
+ 3020: -36,-34
+ 3021: -35,-34
- node:
color: '#D381C996'
id: FullTileOverlayGreyscale
@@ -3734,44 +3734,44 @@ entities:
decals:
820: -29,-5
821: -33,-5
- 2740: 56,-10
- 2741: 56,-11
- 2742: 56,-12
- 3395: 32,-10
- 3396: 38,-10
- 3397: 40,-10
+ 2735: 56,-10
+ 2736: 56,-11
+ 2737: 56,-12
+ 3390: 32,-10
+ 3391: 38,-10
+ 3392: 40,-10
- node:
color: '#EFB34196'
id: FullTileOverlayGreyscale
decals:
810: -29,-8
811: -33,-8
- 2891: -11,-39
- 2892: -19,-40
- 2937: -16,-38
+ 2886: -11,-39
+ 2887: -19,-40
+ 2932: -16,-38
- node:
color: '#FFFFFFFF'
id: GrayConcreteTrimLineE
decals:
- 3398: 11,2
+ 3393: 11,2
- node:
color: '#FFFFFFFF'
id: GrayConcreteTrimLineN
decals:
- 3405: 2,10
+ 3400: 2,10
- node:
color: '#FFFFFFFF'
id: GrayConcreteTrimLineS
decals:
- 3400: 12.501469,3.9993005
- 3403: 2,13
- 3404: 2,13
+ 3395: 12.501469,3.9993005
+ 3398: 2,13
+ 3399: 2,13
- node:
color: '#FFFFFFFF'
id: GrayConcreteTrimLineW
decals:
- 3399: 14,2
- 3406: 4.001555,11.500919
+ 3394: 14,2
+ 3401: 4.001555,11.500919
- node:
color: '#334E6DC8'
id: HalfTileOverlayGreyscale
@@ -3825,16 +3825,16 @@ entities:
color: '#C6FF91FF'
id: HalfTileOverlayGreyscale
decals:
- 3027: -36,-31
- 3028: -37,-31
- 3029: -38,-31
+ 3022: -36,-31
+ 3023: -37,-31
+ 3024: -38,-31
- node:
color: '#D381C996'
id: HalfTileOverlayGreyscale
decals:
830: -13,-50
831: -12,-50
- 2962: 15,-42
+ 2957: 15,-42
- node:
color: '#DE3A3A96'
id: HalfTileOverlayGreyscale
@@ -3901,25 +3901,25 @@ entities:
color: '#C6FF91FF'
id: HalfTileOverlayGreyscale180
decals:
- 3022: -38,-35
+ 3017: -38,-35
- node:
color: '#D381C996'
id: HalfTileOverlayGreyscale180
decals:
824: -13,-48
825: -12,-48
- 2963: 15,-39
+ 2958: 15,-39
- node:
color: '#1E5026FF'
id: HalfTileOverlayGreyscale270
decals:
- 2417: 42,36
- 2418: 42,37
- 2419: 42,38
- 2420: 42,39
- 2421: 42,40
- 2422: 42,41
- 2423: 42,42
+ 2412: 42,36
+ 2413: 42,37
+ 2414: 42,38
+ 2415: 42,39
+ 2416: 42,40
+ 2417: 42,41
+ 2418: 42,42
- node:
color: '#334E6DC8'
id: HalfTileOverlayGreyscale270
@@ -3963,13 +3963,13 @@ entities:
color: '#951710FF'
id: HalfTileOverlayGreyscale270
decals:
- 2431: 44,36
- 2432: 44,37
- 2433: 44,38
- 2434: 44,39
- 2435: 44,40
- 2436: 44,41
- 2437: 44,42
+ 2426: 44,36
+ 2427: 44,37
+ 2428: 44,38
+ 2429: 44,39
+ 2430: 44,40
+ 2431: 44,41
+ 2432: 44,42
- node:
color: '#9FED5896'
id: HalfTileOverlayGreyscale270
@@ -3985,9 +3985,9 @@ entities:
color: '#C6FF91FF'
id: HalfTileOverlayGreyscale270
decals:
- 3031: -39,-32
- 3032: -39,-33
- 3033: -39,-34
+ 3026: -39,-32
+ 3027: -39,-33
+ 3028: -39,-34
- node:
color: '#D381C996'
id: HalfTileOverlayGreyscale270
@@ -3997,20 +3997,20 @@ entities:
color: '#DE3A3A96'
id: HalfTileOverlayGreyscale270
decals:
- 2735: 57,-12
- 2736: 57,-11
- 2737: 57,-10
+ 2730: 57,-12
+ 2731: 57,-11
+ 2732: 57,-10
- node:
color: '#1E5026FF'
id: HalfTileOverlayGreyscale90
decals:
- 2410: 44,36
- 2411: 44,37
- 2412: 44,38
- 2413: 44,39
- 2414: 44,40
- 2415: 44,41
- 2416: 44,42
+ 2405: 44,36
+ 2406: 44,37
+ 2407: 44,38
+ 2408: 44,39
+ 2409: 44,40
+ 2410: 44,41
+ 2411: 44,42
- node:
color: '#52B4E996'
id: HalfTileOverlayGreyscale90
@@ -4039,13 +4039,13 @@ entities:
color: '#951710FF'
id: HalfTileOverlayGreyscale90
decals:
- 2424: 42,36
- 2425: 42,37
- 2426: 42,38
- 2427: 42,39
- 2428: 42,40
- 2429: 42,41
- 2430: 42,42
+ 2419: 42,36
+ 2420: 42,37
+ 2421: 42,38
+ 2422: 42,39
+ 2423: 42,40
+ 2424: 42,41
+ 2425: 42,42
- node:
color: '#9FED5896'
id: HalfTileOverlayGreyscale90
@@ -4064,57 +4064,57 @@ entities:
color: '#EFB34196'
id: MiniTileCornerOverlayNE
decals:
- 2886: -14,-40
+ 2881: -14,-40
- node:
color: '#EFB34196'
id: MiniTileCornerOverlayNW
decals:
- 2883: -16,-40
+ 2878: -16,-40
- node:
color: '#EFB34196'
id: MiniTileCornerOverlaySE
decals:
- 2884: -14,-42
+ 2879: -14,-42
- node:
color: '#EFB34196'
id: MiniTileCornerOverlaySW
decals:
- 2885: -16,-42
+ 2880: -16,-42
- node:
color: '#DE3A3A96'
id: MiniTileInnerOverlaySE
decals:
- 2835: 36,-13
+ 2830: 36,-13
- node:
color: '#EFB34196'
id: MiniTileLineOverlayE
decals:
- 2888: -14,-41
+ 2883: -14,-41
- node:
color: '#DE3A3A96'
id: MiniTileLineOverlayN
decals:
- 2734: 55,-10
+ 2729: 55,-10
- node:
color: '#EFB34196'
id: MiniTileLineOverlayN
decals:
- 2887: -15,-40
+ 2882: -15,-40
- node:
color: '#DE3A3A96'
id: MiniTileLineOverlayS
decals:
- 2733: 55,-12
+ 2728: 55,-12
- node:
color: '#EFB34196'
id: MiniTileLineOverlayS
decals:
- 2890: -15,-42
+ 2885: -15,-42
- node:
color: '#EFB34196'
id: MiniTileLineOverlayW
decals:
- 2889: -16,-41
+ 2884: -16,-41
- node:
color: '#D4D4D496'
id: MiniTileOverlay
@@ -4185,15 +4185,15 @@ entities:
color: '#EFB34196'
id: MiniTileWhiteCornerNe
decals:
- 2928: -11,-42
- 2929: -12,-39
+ 2923: -11,-42
+ 2924: -12,-39
- node:
color: '#FFFFFFFF'
id: MiniTileWhiteCornerNe
decals:
441: -15,-34
- 2896: -12,-39
- 2897: -11,-42
+ 2891: -12,-39
+ 2892: -11,-42
- node:
color: '#A4610696'
id: MiniTileWhiteCornerNw
@@ -4209,13 +4209,13 @@ entities:
color: '#EFB34196'
id: MiniTileWhiteCornerNw
decals:
- 2930: -18,-39
+ 2925: -18,-39
- node:
color: '#FFFFFFFF'
id: MiniTileWhiteCornerNw
decals:
440: -20,-34
- 2895: -18,-39
+ 2890: -18,-39
- node:
color: '#334E6DC8'
id: MiniTileWhiteCornerSe
@@ -4236,13 +4236,13 @@ entities:
color: '#EFB34196'
id: MiniTileWhiteCornerSe
decals:
- 2927: -11,-43
+ 2922: -11,-43
- node:
color: '#FFFFFFFF'
id: MiniTileWhiteCornerSe
decals:
438: -15,-35
- 2893: -11,-43
+ 2888: -11,-43
- node:
color: '#A4610696'
id: MiniTileWhiteCornerSw
@@ -4258,39 +4258,39 @@ entities:
color: '#EFB34196'
id: MiniTileWhiteCornerSw
decals:
- 2926: -18,-43
+ 2921: -18,-43
- node:
color: '#FFFFFFFF'
id: MiniTileWhiteCornerSw
decals:
439: -20,-35
- 2894: -18,-43
+ 2889: -18,-43
- node:
color: '#D381C996'
id: MiniTileWhiteInnerNe
decals:
- 3390: -7,-48
+ 3385: -7,-48
- node:
color: '#DE3A3A96'
id: MiniTileWhiteInnerNe
decals:
- 3385: 42,-39
+ 3380: 42,-39
- node:
color: '#EFB34196'
id: MiniTileWhiteInnerNe
decals:
- 2936: -12,-42
+ 2931: -12,-42
- node:
color: '#FFFFFFFF'
id: MiniTileWhiteInnerNe
decals:
434: -21,-36
- 2914: -12,-42
+ 2909: -12,-42
- node:
color: '#DE3A3A96'
id: MiniTileWhiteInnerNw
decals:
- 3384: 42,-39
+ 3379: 42,-39
- node:
color: '#FFFFFFFF'
id: MiniTileWhiteInnerNw
@@ -4327,8 +4327,8 @@ entities:
color: '#EFB34196'
id: MiniTileWhiteLineE
decals:
- 2934: -12,-41
- 2935: -12,-40
+ 2929: -12,-41
+ 2930: -12,-40
- node:
color: '#FFFFFFFF'
id: MiniTileWhiteLineE
@@ -4336,17 +4336,17 @@ entities:
425: -21,-34
426: -21,-34
427: -21,-35
- 2903: -12,-40
- 2904: -12,-41
+ 2898: -12,-40
+ 2899: -12,-41
- node:
color: '#EFB34196'
id: MiniTileWhiteLineN
decals:
- 2915: -17,-39
- 2916: -16,-39
- 2917: -15,-39
- 2918: -14,-39
- 2919: -13,-39
+ 2910: -17,-39
+ 2911: -16,-39
+ 2912: -15,-39
+ 2913: -14,-39
+ 2914: -13,-39
- node:
color: '#FFFFFFFF'
id: MiniTileWhiteLineN
@@ -4361,21 +4361,21 @@ entities:
443: -18,-34
444: -17,-34
445: -16,-34
- 2898: -17,-39
- 2899: -16,-39
- 2900: -15,-39
- 2901: -14,-39
- 2902: -13,-39
+ 2893: -17,-39
+ 2894: -16,-39
+ 2895: -15,-39
+ 2896: -14,-39
+ 2897: -13,-39
- node:
color: '#EFB34196'
id: MiniTileWhiteLineS
decals:
- 2920: -12,-43
- 2921: -13,-43
- 2922: -14,-43
- 2923: -15,-43
- 2924: -16,-43
- 2925: -17,-43
+ 2915: -12,-43
+ 2916: -13,-43
+ 2917: -14,-43
+ 2918: -15,-43
+ 2919: -16,-43
+ 2920: -17,-43
- node:
color: '#FFFFFFFF'
id: MiniTileWhiteLineS
@@ -4390,12 +4390,12 @@ entities:
447: -17,-35
448: -18,-35
449: -19,-35
- 2905: -12,-43
- 2906: -13,-43
- 2907: -14,-43
- 2908: -15,-43
- 2909: -16,-43
- 2910: -17,-43
+ 2900: -12,-43
+ 2901: -13,-43
+ 2902: -14,-43
+ 2903: -15,-43
+ 2904: -16,-43
+ 2905: -17,-43
- node:
color: '#A4610696'
id: MiniTileWhiteLineW
@@ -4411,18 +4411,18 @@ entities:
color: '#EFB34196'
id: MiniTileWhiteLineW
decals:
- 2931: -18,-40
- 2932: -18,-41
- 2933: -18,-42
+ 2926: -18,-40
+ 2927: -18,-41
+ 2928: -18,-42
- node:
color: '#FFFFFFFF'
id: MiniTileWhiteLineW
decals:
417: -14,-35
418: -14,-34
- 2911: -18,-42
- 2912: -18,-41
- 2913: -18,-40
+ 2906: -18,-42
+ 2907: -18,-41
+ 2908: -18,-40
- node:
color: '#FFFFFFFF'
id: OldConcreteTrimInnerNe
@@ -4504,27 +4504,27 @@ entities:
1381: 54,-22
1382: 53,-22
1383: 52,-22
- 3464: 42,-12
- 3465: 44,-12
- 3466: 44,-13
- 3467: 43,-13
- 3468: 41,-12
- 3469: 41,-14
- 3470: 42,-13
- 3471: 41,-13
- 3472: 42,-14
- 3473: 43,-14
- 3474: 44,-14
- 3475: 45,-14
- 3476: 45,-13
- 3477: 45,-12
- 3478: 43,-12
+ 3459: 42,-12
+ 3460: 44,-12
+ 3461: 44,-13
+ 3462: 43,-13
+ 3463: 41,-12
+ 3464: 41,-14
+ 3465: 42,-13
+ 3466: 41,-13
+ 3467: 42,-14
+ 3468: 43,-14
+ 3469: 44,-14
+ 3470: 45,-14
+ 3471: 45,-13
+ 3472: 45,-12
+ 3473: 43,-12
- node:
color: '#1D1D21FF'
id: QuarterTileOverlayGreyscale
decals:
- 2438: 43,37
- 2441: 44,41
+ 2433: 43,37
+ 2436: 44,41
- node:
color: '#334E6DC8'
id: QuarterTileOverlayGreyscale
@@ -4595,10 +4595,10 @@ entities:
554: -25,-42
570: -12,-31
737: -2,-37
- 3034: -36,-33
- 3038: -37,-33
- 3042: -35,-33
- 3044: -34,-33
+ 3029: -36,-33
+ 3033: -37,-33
+ 3037: -35,-33
+ 3039: -34,-33
- node:
color: '#9FED5896'
id: QuarterTileOverlayGreyscale
@@ -4671,99 +4671,99 @@ entities:
1332: 60,5
1333: 61,5
1339: 62,0
- 1936: 3,-83
- 1937: 3,-82
- 1938: 3,-81
- 1939: 3,-80
- 1940: 3,-79
- 1941: 3,-78
- 1942: 3,-77
- 1943: 3,-76
- 1944: 3,-75
- 1945: 3,-74
- 1946: 3,-73
- 1947: 3,-72
- 1948: 3,-71
- 1949: 3,-70
- 1950: 3,-69
- 1951: 3,-68
- 1952: 3,-67
- 1953: 3,-66
- 1954: 3,-65
- 1955: 3,-64
- 1992: -10,-81
- 1993: -10,-80
- 1994: -10,-79
- 1995: -10,-78
- 1996: -11,-77
- 1997: -11,-76
- 1998: -11,-75
- 1999: -11,-75
- 2000: -10,-75
- 2001: -10,-74
- 2002: -10,-73
- 2003: -10,-72
- 2004: -10,-71
- 2005: -11,-70
- 2006: -11,-69
- 2007: -11,-68
- 2008: -10,-68
- 2009: -10,-67
- 2010: -10,-66
- 2011: -10,-65
- 2012: -10,-64
- 2013: -10,-63
- 2014: -10,-62
- 2015: -10,-61
- 2016: -10,-60
- 2017: -10,-59
- 2018: -10,-58
- 2019: -10,-57
- 2020: -9,-57
- 2021: -1,-57
- 2022: -1,-56
- 2023: -1,-55
- 2024: -1,-54
- 2025: -1,-53
- 2026: -1,-52
- 2027: -1,-51
- 2028: -1,-50
- 2029: -1,-49
- 2030: -1,-46
- 2031: -1,-45
- 2032: -1,-44
- 2033: -1,-43
- 2034: -1,-42
- 2035: -1,-41
- 2355: -1,-47
- 2356: -1,-48
+ 1933: 3,-83
+ 1934: 3,-82
+ 1935: 3,-81
+ 1936: 3,-80
+ 1937: 3,-79
+ 1938: 3,-78
+ 1939: 3,-77
+ 1940: 3,-76
+ 1941: 3,-75
+ 1942: 3,-74
+ 1943: 3,-73
+ 1944: 3,-72
+ 1945: 3,-71
+ 1946: 3,-70
+ 1947: 3,-69
+ 1948: 3,-68
+ 1949: 3,-67
+ 1950: 3,-66
+ 1951: 3,-65
+ 1952: 3,-64
+ 1987: -10,-81
+ 1988: -10,-80
+ 1989: -10,-79
+ 1990: -10,-78
+ 1991: -11,-77
+ 1992: -11,-76
+ 1993: -11,-75
+ 1994: -11,-75
+ 1995: -10,-75
+ 1996: -10,-74
+ 1997: -10,-73
+ 1998: -10,-72
+ 1999: -10,-71
+ 2000: -11,-70
+ 2001: -11,-69
+ 2002: -11,-68
+ 2003: -10,-68
+ 2004: -10,-67
+ 2005: -10,-66
+ 2006: -10,-65
+ 2007: -10,-64
+ 2008: -10,-63
+ 2009: -10,-62
+ 2010: -10,-61
+ 2011: -10,-60
+ 2012: -10,-59
+ 2013: -10,-58
+ 2014: -10,-57
+ 2015: -9,-57
+ 2016: -1,-57
+ 2017: -1,-56
+ 2018: -1,-55
+ 2019: -1,-54
+ 2020: -1,-53
+ 2021: -1,-52
+ 2022: -1,-51
+ 2023: -1,-50
+ 2024: -1,-49
+ 2025: -1,-46
+ 2026: -1,-45
+ 2027: -1,-44
+ 2028: -1,-43
+ 2029: -1,-42
+ 2030: -1,-41
+ 2350: -1,-47
+ 2351: -1,-48
- node:
color: '#D4D4D433'
id: QuarterTileOverlayGreyscale
decals:
- 3144: 0,48
- 3145: 0,47
- 3146: 0,46
- 3147: 0,45
- 3148: 0,44
- 3149: 0,43
- 3150: 0,42
- 3151: 0,41
- 3152: 0,40
- 3153: 0,38
- 3154: 0,39
- 3155: -1,38
+ 3139: 0,48
+ 3140: 0,47
+ 3141: 0,46
+ 3142: 0,45
+ 3143: 0,44
+ 3144: 0,43
+ 3145: 0,42
+ 3146: 0,41
+ 3147: 0,40
+ 3148: 0,38
+ 3149: 0,39
+ 3150: -1,38
- node:
color: '#DE3A3A96'
id: QuarterTileOverlayGreyscale
decals:
- 2739: 57,-13
+ 2734: 57,-13
- node:
color: '#1D1D21FF'
id: QuarterTileOverlayGreyscale180
decals:
- 2439: 43,39
- 2442: 43,36
+ 2434: 43,39
+ 2437: 43,36
- node:
color: '#334E6DC8'
id: QuarterTileOverlayGreyscale180
@@ -4829,11 +4829,11 @@ entities:
551: -27,-40
569: -12,-31
581: -12,-33
- 3035: -36,-32
- 3036: -37,-32
- 3037: -38,-32
- 3043: -35,-32
- 3045: -34,-32
+ 3030: -36,-32
+ 3031: -37,-32
+ 3032: -38,-32
+ 3038: -35,-32
+ 3040: -34,-32
- node:
color: '#639137FF'
id: QuarterTileOverlayGreyscale180
@@ -4958,23 +4958,23 @@ entities:
1893: 1,-30
1894: 1,-31
1895: 1,-32
- 1934: 4,-83
- 1935: 3,-83
- 1956: 2,-63
- 1957: 1,-63
- 1958: 0,-63
- 1959: -1,-63
- 1960: -2,-63
- 1967: -3,-63
- 2047: 1,-33
- 2048: 1,-34
- 2049: 1,-35
- 2050: 1,-36
- 2051: 1,-37
- 2052: 1,-38
- 2053: 1,-39
- 2054: 1,-40
- 2074: 1,-25
+ 1931: 4,-83
+ 1932: 3,-83
+ 1953: 2,-63
+ 1954: 1,-63
+ 1955: 0,-63
+ 1956: -1,-63
+ 1957: -2,-63
+ 1964: -3,-63
+ 2042: 1,-33
+ 2043: 1,-34
+ 2044: 1,-35
+ 2045: 1,-36
+ 2046: 1,-37
+ 2047: 1,-38
+ 2048: 1,-39
+ 2049: 1,-40
+ 2069: 1,-25
- node:
color: '#334E6DC8'
id: QuarterTileOverlayGreyscale270
@@ -4990,7 +4990,7 @@ entities:
249: -7,-38
553: -25,-40
738: -2,-36
- 3040: -37,-32
+ 3035: -37,-32
- node:
color: '#639137FF'
id: QuarterTileOverlayGreyscale270
@@ -5063,49 +5063,49 @@ entities:
1322: 59,1
1323: 61,-6
1340: 62,-1
- 1961: -8,-63
- 1962: -7,-63
- 1963: -6,-63
- 1964: -5,-63
- 1965: -4,-63
- 1966: -3,-63
- 1988: -9,-83
- 1989: -10,-83
- 2036: -1,-32
- 2037: -1,-31
- 2038: -1,-29
- 2039: -1,-30
- 2040: -1,-26
- 2041: -2,-23
- 2042: -2,-22
- 2043: -1,-21
- 2044: -1,-20
- 2045: -1,-19
- 2046: -1,-18
- 2067: 4,-51
- 2068: 3,-51
- 2069: 2,-51
- 2070: -1,-24
- 2071: -1,-25
- 2072: -1,-27
- 2073: -1,-28
+ 1958: -8,-63
+ 1959: -7,-63
+ 1960: -6,-63
+ 1961: -5,-63
+ 1962: -4,-63
+ 1963: -3,-63
+ 1985: -9,-83
+ 1986: -10,-83
+ 2031: -1,-32
+ 2032: -1,-31
+ 2033: -1,-29
+ 2034: -1,-30
+ 2035: -1,-26
+ 2036: -2,-23
+ 2037: -2,-22
+ 2038: -1,-21
+ 2039: -1,-20
+ 2040: -1,-19
+ 2041: -1,-18
+ 2062: 4,-51
+ 2063: 3,-51
+ 2064: 2,-51
+ 2065: -1,-24
+ 2066: -1,-25
+ 2067: -1,-27
+ 2068: -1,-28
- node:
color: '#D4D4D433'
id: QuarterTileOverlayGreyscale270
decals:
- 3140: -3,49
- 3141: -2,49
- 3142: -1,49
+ 3135: -3,49
+ 3136: -2,49
+ 3137: -1,49
- node:
color: '#DE3A3A96'
id: QuarterTileOverlayGreyscale270
decals:
- 2738: 57,-9
+ 2733: 57,-9
- node:
color: '#1D1D21FF'
id: QuarterTileOverlayGreyscale90
decals:
- 2440: 42,40
+ 2435: 42,40
- node:
color: '#334E6DC8'
id: QuarterTileOverlayGreyscale90
@@ -5118,7 +5118,7 @@ entities:
decals:
247: -8,-40
552: -27,-42
- 3039: -38,-33
+ 3034: -38,-33
- node:
color: '#9FED5896'
id: QuarterTileOverlayGreyscale90
@@ -5271,57 +5271,57 @@ entities:
1928: 4,-79
1929: 4,-80
1930: 4,-81
- 1968: -9,-64
- 1969: -9,-65
- 1970: -9,-66
- 1971: -9,-67
- 1972: -9,-68
- 1973: -9,-69
- 1974: -9,-70
- 1975: -9,-71
- 1976: -9,-72
- 1977: -9,-73
- 1978: -9,-74
- 1979: -9,-75
- 1980: -9,-76
- 1981: -9,-77
- 1982: -9,-78
- 1983: -9,-79
- 1984: -9,-80
- 1985: -9,-81
- 1986: -9,-82
- 1987: -9,-83
- 2055: 1,-41
- 2056: 2,-42
- 2057: 3,-42
- 2058: 3,-43
- 2059: 3,-44
- 2060: 3,-45
- 2061: 3,-46
- 2062: 3,-47
- 2063: 3,-48
- 2064: 4,-49
- 2065: 4,-50
- 2066: 4,-51
+ 1965: -9,-64
+ 1966: -9,-65
+ 1967: -9,-66
+ 1968: -9,-67
+ 1969: -9,-68
+ 1970: -9,-69
+ 1971: -9,-70
+ 1972: -9,-71
+ 1973: -9,-72
+ 1974: -9,-73
+ 1975: -9,-74
+ 1976: -9,-75
+ 1977: -9,-76
+ 1978: -9,-77
+ 1979: -9,-78
+ 1980: -9,-79
+ 1981: -9,-80
+ 1982: -9,-81
+ 1983: -9,-82
+ 1984: -9,-83
+ 2050: 1,-41
+ 2051: 2,-42
+ 2052: 3,-42
+ 2053: 3,-43
+ 2054: 3,-44
+ 2055: 3,-45
+ 2056: 3,-46
+ 2057: 3,-47
+ 2058: 3,-48
+ 2059: 4,-49
+ 2060: 4,-50
+ 2061: 4,-51
- node:
color: '#D4D4D433'
id: QuarterTileOverlayGreyscale90
decals:
- 3143: 1,49
- 3214: -35,1
+ 3138: 1,49
+ 3209: -35,1
- node:
color: '#FFFFFFFF'
id: Rock06
decals:
- 2689: -6.549043,-18.995234
+ 2684: -6.549043,-18.995234
- node:
color: '#FFFFFFFF'
id: Rock07
decals:
- 2690: -10.21571,-19.245234
- 2691: -19.922543,-12.716649
- 2692: -18.60001,-10.259648
- 2693: -18.846893,-8.106161
+ 2685: -10.21571,-19.245234
+ 2686: -19.922543,-12.716649
+ 2687: -18.60001,-10.259648
+ 2688: -18.846893,-8.106161
- node:
color: '#FFFFFFFF'
id: SpaceStationSign1
@@ -5362,7 +5362,7 @@ entities:
color: '#FFFFFFFF'
id: StandClearGreyscale
decals:
- 3374: -56,-4
+ 3369: -56,-4
- node:
color: '#334E6DC8'
id: ThreeQuarterTileOverlayGreyscale
@@ -5392,7 +5392,7 @@ entities:
color: '#C6FF91FF'
id: ThreeQuarterTileOverlayGreyscale
decals:
- 3030: -39,-31
+ 3025: -39,-31
- node:
color: '#334E6DC8'
id: ThreeQuarterTileOverlayGreyscale180
@@ -5452,7 +5452,7 @@ entities:
color: '#C6FF91FF'
id: ThreeQuarterTileOverlayGreyscale270
decals:
- 3021: -39,-35
+ 3016: -39,-35
- node:
color: '#334E6DC8'
id: ThreeQuarterTileOverlayGreyscale90
@@ -5478,22 +5478,22 @@ entities:
174: -29,-11
175: -32,-11
483: -29,-23
- 3041: -35,-31
+ 3036: -35,-31
- node:
color: '#FFFFFFFF'
id: WarnCornerGreyscaleNW
decals:
- 3497: -6,-26
+ 3492: -6,-26
- node:
color: '#FFFFFFFF'
id: WarnCornerSmallGreyscaleNW
decals:
- 3513: -6,-29
+ 3508: -6,-29
- node:
color: '#FFFFFFFF'
id: WarnCornerSmallNE
decals:
- 3347: -58,-13
+ 3342: -58,-13
- node:
color: '#FFFFFFFF'
id: WarnCornerSmallNW
@@ -5505,7 +5505,7 @@ entities:
color: '#FFFFFFFF'
id: WarnCornerSmallSE
decals:
- 3346: -58,-8
+ 3341: -58,-8
- node:
color: '#FFFFFFFF'
id: WarnCornerSmallSW
@@ -5518,51 +5518,51 @@ entities:
color: '#FFFFFFFF'
id: WarnFull
decals:
- 2486: 12,53
- 2487: 13,53
- 2488: 14,53
+ 2481: 12,53
+ 2482: 13,53
+ 2483: 14,53
- node:
color: '#BC863FFF'
id: WarnFullGreyscale
decals:
- 3370: -51,-1
- 3371: -51,0
- 3372: -52,-1
- 3373: -52,0
+ 3365: -51,-1
+ 3366: -51,0
+ 3367: -52,-1
+ 3368: -52,0
- node:
color: '#FFFFFFFF'
id: WarnLineE
decals:
- 2468: 9,49
- 2470: 19,49
- 2471: 19,48
- 2472: 19,47
- 2473: 19,46
- 3341: -58,-12
- 3342: -58,-11
- 3343: -58,-10
- 3344: -58,-9
+ 2463: 9,49
+ 2465: 19,49
+ 2466: 19,48
+ 2467: 19,47
+ 2468: 19,46
+ 3336: -58,-12
+ 3337: -58,-11
+ 3338: -58,-10
+ 3339: -58,-9
- node:
color: '#FFFFFFFF'
id: WarnLineGreyscaleN
decals:
- 3498: -5,-26
- 3499: -4,-26
- 3500: -3,-26
- 3510: -9,-29
- 3511: -8,-29
- 3512: -7,-29
+ 3493: -5,-26
+ 3494: -4,-26
+ 3495: -3,-26
+ 3505: -9,-29
+ 3506: -8,-29
+ 3507: -7,-29
- node:
color: '#FFFFFFFF'
id: WarnLineGreyscaleS
decals:
- 3503: -9,-30
- 3504: -8,-30
- 3505: -7,-30
- 3506: -6,-30
- 3507: -5,-30
- 3508: -4,-30
- 3509: -3,-30
+ 3498: -9,-30
+ 3499: -8,-30
+ 3500: -7,-30
+ 3501: -6,-30
+ 3502: -5,-30
+ 3503: -4,-30
+ 3504: -3,-30
- node:
color: '#FFFFFFFF'
id: WarnLineGreyscaleW
@@ -5570,8 +5570,8 @@ entities:
982: -56,-5
983: -56,-4
984: -56,-3
- 3501: -6,-27
- 3502: -6,-28
+ 3496: -6,-27
+ 3497: -6,-28
- node:
color: '#FFFFFFFF'
id: WarnLineN
@@ -5581,7 +5581,7 @@ entities:
991: -56,-8
992: -56,-8
993: -55,-8
- 3348: -58,-1
+ 3343: -58,-1
- node:
color: '#FFFFFFFF'
id: WarnLineS
@@ -5591,12 +5591,12 @@ entities:
994: -54,-10
995: -54,-11
996: -54,-12
- 2469: 17,49
- 3345: -54,-9
- 3547: 21,46
- 3548: 21,47
- 3549: 21,48
- 3550: 21,49
+ 2464: 17,49
+ 3340: -54,-9
+ 3542: 21,46
+ 3543: 21,47
+ 3544: 21,48
+ 3545: 21,49
- node:
color: '#FFFFFFFF'
id: WarnLineW
@@ -5605,18 +5605,18 @@ entities:
997: -55,-13
998: -56,-13
999: -57,-13
- 2465: 12,46
- 2466: 13,46
- 2467: 14,46
- 2478: 7,51
- 2479: 8,51
- 2480: 9,51
- 2481: 17,51
- 2482: 18,51
- 2483: 19,51
- 2484: 15,53
- 2485: 11,53
- 3349: -58,-7
+ 2460: 12,46
+ 2461: 13,46
+ 2462: 14,46
+ 2473: 7,51
+ 2474: 8,51
+ 2475: 9,51
+ 2476: 17,51
+ 2477: 18,51
+ 2478: 19,51
+ 2479: 15,53
+ 2480: 11,53
+ 3344: -58,-7
- node:
color: '#FFFFFFFF'
id: WoodTrimThinCornerNe
@@ -5637,8 +5637,8 @@ entities:
924: 44,-9
931: 17,-30
932: 20,-30
- 2836: 41,23
- 3071: 19,37
+ 2831: 41,23
+ 3066: 19,37
- node:
color: '#FFFFFFFF'
id: WoodTrimThinCornerNw
@@ -5662,8 +5662,8 @@ entities:
921: 42,-9
933: 13,-30
934: 19,-30
- 2837: 39,23
- 3072: 12,37
+ 2832: 39,23
+ 3067: 12,37
- node:
color: '#FFFFFFFF'
id: WoodTrimThinCornerSe
@@ -5684,7 +5684,7 @@ entities:
922: 44,-10
935: 17,-32
936: 20,-32
- 3082: 19,36
+ 3077: 19,36
- node:
color: '#FFFFFFFF'
id: WoodTrimThinCornerSw
@@ -5741,7 +5741,7 @@ entities:
id: WoodTrimThinInnerSe
decals:
690: 37,-3
- 3084: 17,36
+ 3079: 17,36
- node:
color: '#FFFFFFFF'
id: WoodTrimThinInnerSw
@@ -5790,8 +5790,8 @@ entities:
910: 40,13
939: 20,-31
940: 17,-31
- 2838: 41,22
- 3073: 17,35
+ 2833: 41,22
+ 3068: 17,35
- node:
color: '#FFFFFFFF'
id: WoodTrimThinLineN
@@ -5834,13 +5834,13 @@ entities:
947: 15,-30
948: 15,-30
949: 16,-30
- 2840: 40,23
- 3076: 13,37
- 3077: 14,37
- 3078: 15,37
- 3079: 16,37
- 3080: 17,37
- 3081: 18,37
+ 2835: 40,23
+ 3071: 13,37
+ 3072: 14,37
+ 3073: 15,37
+ 3074: 16,37
+ 3075: 17,37
+ 3076: 18,37
- node:
color: '#FFFFFFFF'
id: WoodTrimThinLineS
@@ -5884,7 +5884,7 @@ entities:
943: 14,-32
944: 15,-32
945: 16,-32
- 3083: 18,36
+ 3078: 18,36
- node:
color: '#FFFFFFFF'
id: WoodTrimThinLineW
@@ -5914,9 +5914,9 @@ entities:
912: 35,14
941: 19,-31
942: 13,-31
- 2839: 39,22
- 3074: 12,35
- 3075: 12,36
+ 2834: 39,22
+ 3069: 12,35
+ 3070: 12,36
- type: GridAtmosphere
version: 2
data:
@@ -8413,39 +8413,39 @@ entities:
color: '#DE3A3A96'
id: BrickTileWhiteInnerNe
decals:
- 95: 4,-3
+ 85: 4,-3
- node:
color: '#DE3A3A96'
id: BrickTileWhiteInnerSe
decals:
- 94: 4,1
+ 84: 4,1
- node:
color: '#DE3A3A96'
id: BrickTileWhiteLineE
decals:
- 81: 7,-2
- 82: 7,0
- 91: 4,-2
- 92: 4,0
- 93: 4,-1
+ 77: 7,-2
+ 78: 7,0
+ 81: 4,-2
+ 82: 4,0
+ 83: 4,-1
- node:
color: '#DE3A3A96'
id: BrickTileWhiteLineN
decals:
- 98: -2,1
- 99: -1,1
+ 88: -2,1
+ 89: -1,1
- node:
color: '#DE3A3A96'
id: BrickTileWhiteLineS
decals:
- 96: -1,-3
- 97: -2,-3
+ 86: -1,-3
+ 87: -2,-3
- node:
color: '#DE3A3A96'
id: BrickTileWhiteLineW
decals:
- 89: 6,0
- 90: 6,-2
+ 79: 6,0
+ 80: 6,-2
- node:
color: '#FFFFFFFF'
id: BushAThree
@@ -8614,10 +8614,10 @@ entities:
color: '#DE3A3A96'
id: DiagonalOverlay
decals:
- 77: 5,-2
- 78: 5,0
- 79: 8,0
- 80: 8,-2
+ 73: 5,-2
+ 74: 5,0
+ 75: 8,0
+ 76: 8,-2
- type: GridAtmosphere
version: 2
data:
@@ -13509,7 +13509,7 @@ entities:
pos: -3.5,-35.5
parent: 2
- type: Door
- secondsUntilStateChange: -571169.8
+ secondsUntilStateChange: -571256.56
state: Opening
- uid: 1496
components:
@@ -133603,7 +133603,7 @@ entities:
pos: 36.5,-35.5
parent: 2
- type: Door
- secondsUntilStateChange: -4097.083
+ secondsUntilStateChange: -4183.8545
state: Opening
- uid: 5211
components:
@@ -153891,10 +153891,10 @@ entities:
parent: 2
- proto: SpawnMobCatFloppa
entities:
- - uid: 20652
+ - uid: 20675
components:
- type: Transform
- pos: -7.5,34.5
+ pos: 38.5,-2.5
parent: 2
- proto: SpawnMobCatRuntime
entities:
@@ -154111,10 +154111,10 @@ entities:
parent: 2
- proto: SpawnMobSlothPaperwork
entities:
- - uid: 20675
+ - uid: 20652
components:
- type: Transform
- pos: 38.5,-2.5
+ pos: -7.5,34.5
parent: 2
- proto: SpawnMobSlug
entities:
@@ -180845,7 +180845,7 @@ entities:
pos: 24.5,2.5
parent: 21002
- type: Door
- secondsUntilStateChange: -349301.7
+ secondsUntilStateChange: -349388.47
state: Opening
- proto: WoodenBench
entities:
diff --git a/Resources/Prototypes/Entities/Objects/Materials/materials.yml b/Resources/Prototypes/Entities/Objects/Materials/materials.yml
index f4ac9e7ee14..c4de4bb18f2 100644
--- a/Resources/Prototypes/Entities/Objects/Materials/materials.yml
+++ b/Resources/Prototypes/Entities/Objects/Materials/materials.yml
@@ -493,8 +493,6 @@
layerStates:
- bananium
- bananium_1
- - type: RadiationSource
- intensity: 0.1
- type: FlavorProfile
flavors:
- banana
diff --git a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/miners.yml b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/miners.yml
index 2231fc4ddc1..6d10b1521e7 100644
--- a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/miners.yml
+++ b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/miners.yml
@@ -30,7 +30,7 @@
- type: AtmosDevice
- type: GasMiner
maxExternalPressure: 300
- spawnAmount: 200
+ spawnAmount: 400
- type: entity
name: O2 gas miner
diff --git a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/unary.yml b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/unary.yml
index 70716978670..a970ba88605 100644
--- a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/unary.yml
+++ b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/unary.yml
@@ -76,7 +76,6 @@
placement:
mode: SnapgridCenter
components:
- # TODO ATMOS: Find sprite for this.
- type: Sprite
drawdepth: FloorObjects
sprite: Structures/Piping/Atmospherics/vent.rsi
@@ -84,7 +83,7 @@
- sprite: Structures/Piping/Atmospherics/pipe.rsi
state: pipeHalf
map: [ "enum.PipeVisualLayers.Pipe" ]
- - state: vent_off
+ - state: vent_passive
map: [ "enum.SubfloorLayers.FirstLayer" ]
- type: Appearance
- type: PipeColorVisuals
diff --git a/Resources/Prototypes/Entities/Structures/Power/apc.yml b/Resources/Prototypes/Entities/Structures/Power/apc.yml
index 1621ac858cd..0948cdb4cc4 100644
--- a/Resources/Prototypes/Entities/Structures/Power/apc.yml
+++ b/Resources/Prototypes/Entities/Structures/Power/apc.yml
@@ -204,7 +204,7 @@
- type: entity
parent: BaseAPC
id: APCBasic
- suffix: Basic, 50kW
+ suffix: Basic, 50kJ
components:
- type: Battery
maxCharge: 50000
@@ -213,7 +213,7 @@
- type: entity
parent: BaseAPC
id: APCHighCapacity
- suffix: High Capacity, 100kW
+ suffix: High Capacity, 100kJ
components:
- type: Battery
maxCharge: 100000
@@ -222,7 +222,7 @@
- type: entity
parent: BaseAPC
id: APCSuperCapacity
- suffix: Super Capacity, 150kW
+ suffix: Super Capacity, 150kJ
components:
- type: Battery
maxCharge: 150000
@@ -231,7 +231,7 @@
- type: entity
parent: BaseAPC
id: APCHyperCapacity
- suffix: Hyper Capacity, 200kW
+ suffix: Hyper Capacity, 200kJ
components:
- type: Battery
maxCharge: 200000
diff --git a/Resources/Prototypes/Entities/Structures/Power/smes.yml b/Resources/Prototypes/Entities/Structures/Power/smes.yml
index 1e3559e5a95..15f28eb53ec 100644
--- a/Resources/Prototypes/Entities/Structures/Power/smes.yml
+++ b/Resources/Prototypes/Entities/Structures/Power/smes.yml
@@ -95,7 +95,7 @@
- type: entity
parent: BaseSMES
id: SMESBasic
- suffix: Basic, 8MW
+ suffix: Basic, 8MJ
components:
- type: Battery
maxCharge: 8000000
diff --git a/Resources/Textures/Structures/Piping/Atmospherics/vent.rsi/meta.json b/Resources/Textures/Structures/Piping/Atmospherics/vent.rsi/meta.json
index 0d11425210b..4e1733df55f 100644
--- a/Resources/Textures/Structures/Piping/Atmospherics/vent.rsi/meta.json
+++ b/Resources/Textures/Structures/Piping/Atmospherics/vent.rsi/meta.json
@@ -7,6 +7,10 @@
"license":"CC-BY-SA-3.0",
"copyright":"Taken from https://github.com/BeeStation/BeeStation-Hornet at commit 4ccd79de285e79e504308bcd6fa5908d6b7685f7",
"states":[
+ {
+ "name":"vent_passive",
+ "directions" : 4
+ },
{
"name":"vent_off",
"directions" : 4
diff --git a/Resources/Textures/Structures/Piping/Atmospherics/vent.rsi/vent_passive.png b/Resources/Textures/Structures/Piping/Atmospherics/vent.rsi/vent_passive.png
new file mode 100644
index 00000000000..5ff27ef7590
Binary files /dev/null and b/Resources/Textures/Structures/Piping/Atmospherics/vent.rsi/vent_passive.png differ