From 420f50f155b2ebc5bc73a18eb84447117d9f2b0c Mon Sep 17 00:00:00 2001 From: BongoCatGamer Date: Sun, 17 Nov 2024 09:14:47 +0500 Subject: [PATCH 01/22] AccessWeaponBlockerComponent --- .../AccessWeaponBlockerComponent.cs | 13 ++++ .../AccessWeaponBlockerSystem.cs | 64 ++++++++++++++++ .../AccessWeaponBlockerComponent.cs | 20 +++++ .../AccessWeaponBlockerSystem.cs | 74 +++++++++++++++++++ .../SharedAccessWeaponBlockerComponent.cs | 17 +++++ .../SharedFactionWeaponBlockerSystem.cs | 6 ++ 6 files changed, 194 insertions(+) create mode 100644 Content.Client/Backmen/AccessWeaponBlockerSystem/AccessWeaponBlockerComponent.cs create mode 100644 Content.Client/Backmen/AccessWeaponBlockerSystem/AccessWeaponBlockerSystem.cs create mode 100644 Content.Server/Backmen/AccessWeaponBlockerSystem/AccessWeaponBlockerComponent.cs create mode 100644 Content.Server/Backmen/AccessWeaponBlockerSystem/AccessWeaponBlockerSystem.cs create mode 100644 Content.Shared/Backmen/AccessWeaponBlockerSystem/SharedAccessWeaponBlockerComponent.cs create mode 100644 Content.Shared/Backmen/AccessWeaponBlockerSystem/SharedFactionWeaponBlockerSystem.cs diff --git a/Content.Client/Backmen/AccessWeaponBlockerSystem/AccessWeaponBlockerComponent.cs b/Content.Client/Backmen/AccessWeaponBlockerSystem/AccessWeaponBlockerComponent.cs new file mode 100644 index 00000000000..134b2f8f80d --- /dev/null +++ b/Content.Client/Backmen/AccessWeaponBlockerSystem/AccessWeaponBlockerComponent.cs @@ -0,0 +1,13 @@ +using Content.Shared.Backmen.AccessGunBlockerSystem; + +namespace Content.Client.Backmen.AccessWeaponBlockerSystem; + +[RegisterComponent] +public sealed partial class AccessWeaponBlockerComponent : SharedAccessWeaponBlockerComponent +{ + [ViewVariables(VVAccess.ReadWrite)] + public bool CanUse; + + [ViewVariables(VVAccess.ReadWrite)] + public string AlertText = ""; +} diff --git a/Content.Client/Backmen/AccessWeaponBlockerSystem/AccessWeaponBlockerSystem.cs b/Content.Client/Backmen/AccessWeaponBlockerSystem/AccessWeaponBlockerSystem.cs new file mode 100644 index 00000000000..c1ef008b1c3 --- /dev/null +++ b/Content.Client/Backmen/AccessWeaponBlockerSystem/AccessWeaponBlockerSystem.cs @@ -0,0 +1,64 @@ +using Content.Shared.Interaction.Events; +using Content.Shared.Backmen.AccessGunBlockerSystem; +using Content.Shared.Weapons.Melee.Events; +using Content.Shared.Weapons.Ranged.Systems; +using Robust.Shared.GameStates; + +namespace Content.Client.Backmen.AccessWeaponBlockerSystem; + +public sealed class AccessWeaponBlockerSystem : EntitySystem +{ + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnShootAttempt); + SubscribeLocalEvent(OnMeleeAttempt); + SubscribeLocalEvent(OnUseAttempt); + SubscribeLocalEvent(OnInteractAttempt); + SubscribeLocalEvent(OnFactionWeaponBlockerHandleState); + } + + private void OnUseAttempt(EntityUid uid, AccessWeaponBlockerComponent component, ref UseAttemptEvent args) + { + if (component.CanUse) + return; + + args.Cancel(); + } + + private void OnInteractAttempt(EntityUid uid, AccessWeaponBlockerComponent component, ref InteractionAttemptEvent args) + { + if (component.CanUse) + return; + + args.Cancelled = true; + } + + private void OnFactionWeaponBlockerHandleState(EntityUid uid, AccessWeaponBlockerComponent component, ref ComponentHandleState args) + { + if (args.Current is not AccessWeaponBlockerComponentState state) + return; + + component.CanUse = state.CanUse; + component.AlertText = state.AlertText; + } + + private void OnMeleeAttempt(EntityUid uid, AccessWeaponBlockerComponent component, ref AttemptMeleeEvent args) + { + if (component.CanUse) + return; + + args.Cancelled = true; + args.Message = component.AlertText; + } + + private void OnShootAttempt(EntityUid uid, AccessWeaponBlockerComponent component, ref AttemptShootEvent args) + { + if (component.CanUse) + return; + + args.Cancelled = true; + args.Message = component.AlertText; + } +} diff --git a/Content.Server/Backmen/AccessWeaponBlockerSystem/AccessWeaponBlockerComponent.cs b/Content.Server/Backmen/AccessWeaponBlockerSystem/AccessWeaponBlockerComponent.cs new file mode 100644 index 00000000000..821ad23dd01 --- /dev/null +++ b/Content.Server/Backmen/AccessWeaponBlockerSystem/AccessWeaponBlockerComponent.cs @@ -0,0 +1,20 @@ +using Content.Shared.Access; +using Content.Shared.Backmen.AccessGunBlockerSystem; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Set; + +namespace Content.Server.Backmen.AccessWeaponBlockerSystem; + +[RegisterComponent] +public sealed partial class AccessWeaponBlockerComponent : SharedAccessWeaponBlockerComponent +{ + [ViewVariables(VVAccess.ReadWrite)] + public bool CanUse; + + [ViewVariables(VVAccess.ReadWrite)] + [DataField("alertText")] + public string AlertText = ""; + + [ViewVariables(VVAccess.ReadWrite), + DataField("access", customTypeSerializer: typeof(PrototypeIdHashSetSerializer))] + public HashSet Access = new(); +} diff --git a/Content.Server/Backmen/AccessWeaponBlockerSystem/AccessWeaponBlockerSystem.cs b/Content.Server/Backmen/AccessWeaponBlockerSystem/AccessWeaponBlockerSystem.cs new file mode 100644 index 00000000000..0ad6ee95167 --- /dev/null +++ b/Content.Server/Backmen/AccessWeaponBlockerSystem/AccessWeaponBlockerSystem.cs @@ -0,0 +1,74 @@ +using Content.Shared.Hands; +using Content.Shared.Access.Components; +using Content.Shared.Backmen.AccessGunBlockerSystem; +using Content.Shared.Weapons.Melee.Events; +using Content.Shared.Weapons.Ranged.Systems; +using Robust.Shared.GameStates; +using Content.Shared.Inventory; +using Content.Shared.PDA; + +namespace Content.Server.Backmen.AccessWeaponBlockerSystem; + +public sealed class AccessWeaponBlockerSystem : EntitySystem +{ + [Dependency] private readonly InventorySystem _inventorySystem = default!; + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnShootAttempt); + SubscribeLocalEvent(OnMeleeAttempt); + SubscribeLocalEvent(OnGetState); + SubscribeLocalEvent(OnGotEquippedHand); + } + + + private void OnGotEquippedHand(Entity accessBlocker, ref GotEquippedHandEvent args) + { + if (!_inventorySystem.TryGetSlotEntity(args.User, "id", out var slotCardUid)) + return; + var accessEntity = TryComp(slotCardUid, out var pda) && pda.ContainedId is { } pdaSlot + ? pdaSlot + : slotCardUid.Value; + accessBlocker.Comp.CanUse = IsAnyAccess(accessEntity, accessBlocker); + Dirty(accessBlocker); + } + + private bool IsAnyAccess(EntityUid accessEntity, Entity accessBlocker) + { + if (!TryComp(accessEntity, out var access)) + return false; + foreach (var accessTag in access.Tags) + { + if (accessBlocker.Comp.Access.Contains(accessTag)) + return true; + } + return false; + } + private void OnGetState(EntityUid uid, AccessWeaponBlockerComponent component, ref ComponentGetState args) + { + args.State = new AccessWeaponBlockerComponentState() + { + CanUse = component.CanUse, + AlertText = component.AlertText + }; + } + + private void OnMeleeAttempt(EntityUid uid, AccessWeaponBlockerComponent component, ref AttemptMeleeEvent args) + { + if (component.CanUse) + return; + + args.Cancelled = true; + args.Message = component.AlertText; + } + + private void OnShootAttempt(EntityUid uid, AccessWeaponBlockerComponent component, ref AttemptShootEvent args) + { + if (component.CanUse) + return; + + args.Cancelled = true; + args.Message = component.AlertText; + } +} diff --git a/Content.Shared/Backmen/AccessWeaponBlockerSystem/SharedAccessWeaponBlockerComponent.cs b/Content.Shared/Backmen/AccessWeaponBlockerSystem/SharedAccessWeaponBlockerComponent.cs new file mode 100644 index 00000000000..55a8c772e3a --- /dev/null +++ b/Content.Shared/Backmen/AccessWeaponBlockerSystem/SharedAccessWeaponBlockerComponent.cs @@ -0,0 +1,17 @@ +using Robust.Shared.GameStates; +using Robust.Shared.Serialization; + +namespace Content.Shared.Backmen.AccessGunBlockerSystem; + +[NetworkedComponent] +public abstract partial class SharedAccessWeaponBlockerComponent : Component +{ + +} + +[Serializable, NetSerializable] +public sealed class AccessWeaponBlockerComponentState : ComponentState +{ + public bool CanUse; + public string AlertText = ""; +} diff --git a/Content.Shared/Backmen/AccessWeaponBlockerSystem/SharedFactionWeaponBlockerSystem.cs b/Content.Shared/Backmen/AccessWeaponBlockerSystem/SharedFactionWeaponBlockerSystem.cs new file mode 100644 index 00000000000..ea49d93ae10 --- /dev/null +++ b/Content.Shared/Backmen/AccessWeaponBlockerSystem/SharedFactionWeaponBlockerSystem.cs @@ -0,0 +1,6 @@ +namespace Content.Shared.Backmen.AccessWeaponBlockerSystem; + +public sealed class SharedFactionWeaponBlockerSystem : EntitySystem +{ + +} From a1c3a2c77c4f77c9ba68834c157f0547f2c209e6 Mon Sep 17 00:00:00 2001 From: Cat <115424457+CatBackGround@users.noreply.github.com> Date: Mon, 18 Nov 2024 17:06:30 +0500 Subject: [PATCH 02/22] Update AccessWeaponBlockerSystem.cs --- .../AccessWeaponBlockerSystem/AccessWeaponBlockerSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Client/Backmen/AccessWeaponBlockerSystem/AccessWeaponBlockerSystem.cs b/Content.Client/Backmen/AccessWeaponBlockerSystem/AccessWeaponBlockerSystem.cs index c1ef008b1c3..50d785b9b89 100644 --- a/Content.Client/Backmen/AccessWeaponBlockerSystem/AccessWeaponBlockerSystem.cs +++ b/Content.Client/Backmen/AccessWeaponBlockerSystem/AccessWeaponBlockerSystem.cs @@ -35,7 +35,7 @@ private void OnInteractAttempt(EntityUid uid, AccessWeaponBlockerComponent compo args.Cancelled = true; } - private void OnFactionWeaponBlockerHandleState(EntityUid uid, AccessWeaponBlockerComponent component, ref ComponentHandleState args) + private void OnAccessWeaponBlockerHandleState(EntityUid uid, AccessWeaponBlockerComponent component, ref ComponentHandleState args) { if (args.Current is not AccessWeaponBlockerComponentState state) return; From b4b94482c32ba06cac96476202fb521e823bb241 Mon Sep 17 00:00:00 2001 From: Cat <115424457+CatBackGround@users.noreply.github.com> Date: Mon, 18 Nov 2024 22:24:45 +0500 Subject: [PATCH 03/22] Update AccessWeaponBlockerSystem.cs --- .../AccessWeaponBlockerSystem/AccessWeaponBlockerSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Backmen/AccessWeaponBlockerSystem/AccessWeaponBlockerSystem.cs b/Content.Server/Backmen/AccessWeaponBlockerSystem/AccessWeaponBlockerSystem.cs index 0ad6ee95167..3fce4913a14 100644 --- a/Content.Server/Backmen/AccessWeaponBlockerSystem/AccessWeaponBlockerSystem.cs +++ b/Content.Server/Backmen/AccessWeaponBlockerSystem/AccessWeaponBlockerSystem.cs @@ -47,7 +47,7 @@ private bool IsAnyAccess(EntityUid accessEntity, Entity Date: Mon, 18 Nov 2024 22:30:35 +0500 Subject: [PATCH 04/22] FIX --- .../AccessWeaponBlockerSystem/AccessWeaponBlockerSystem.cs | 2 +- .../AccessWeaponBlockerSystem/AccessWeaponBlockerSystem.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Content.Client/Backmen/AccessWeaponBlockerSystem/AccessWeaponBlockerSystem.cs b/Content.Client/Backmen/AccessWeaponBlockerSystem/AccessWeaponBlockerSystem.cs index 50d785b9b89..0eb6b7123b7 100644 --- a/Content.Client/Backmen/AccessWeaponBlockerSystem/AccessWeaponBlockerSystem.cs +++ b/Content.Client/Backmen/AccessWeaponBlockerSystem/AccessWeaponBlockerSystem.cs @@ -16,7 +16,7 @@ public override void Initialize() SubscribeLocalEvent(OnMeleeAttempt); SubscribeLocalEvent(OnUseAttempt); SubscribeLocalEvent(OnInteractAttempt); - SubscribeLocalEvent(OnFactionWeaponBlockerHandleState); + SubscribeLocalEvent(OnAccessWeaponBlockerHandleState); } private void OnUseAttempt(EntityUid uid, AccessWeaponBlockerComponent component, ref UseAttemptEvent args) diff --git a/Content.Server/Backmen/AccessWeaponBlockerSystem/AccessWeaponBlockerSystem.cs b/Content.Server/Backmen/AccessWeaponBlockerSystem/AccessWeaponBlockerSystem.cs index 3fce4913a14..0ad6ee95167 100644 --- a/Content.Server/Backmen/AccessWeaponBlockerSystem/AccessWeaponBlockerSystem.cs +++ b/Content.Server/Backmen/AccessWeaponBlockerSystem/AccessWeaponBlockerSystem.cs @@ -47,7 +47,7 @@ private bool IsAnyAccess(EntityUid accessEntity, Entity Date: Sun, 24 Nov 2024 15:30:10 +0500 Subject: [PATCH 05/22] upd --- .../AccessWeaponBlockerSystem.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Content.Server/Backmen/AccessWeaponBlockerSystem/AccessWeaponBlockerSystem.cs b/Content.Server/Backmen/AccessWeaponBlockerSystem/AccessWeaponBlockerSystem.cs index 0ad6ee95167..bec5d587b6c 100644 --- a/Content.Server/Backmen/AccessWeaponBlockerSystem/AccessWeaponBlockerSystem.cs +++ b/Content.Server/Backmen/AccessWeaponBlockerSystem/AccessWeaponBlockerSystem.cs @@ -23,24 +23,24 @@ public override void Initialize() } - private void OnGotEquippedHand(Entity accessBlocker, ref GotEquippedHandEvent args) + private void OnGotEquippedHand(EntityUid uid, AccessWeaponBlockerComponent component, ref GotEquippedHandEvent args) { if (!_inventorySystem.TryGetSlotEntity(args.User, "id", out var slotCardUid)) return; var accessEntity = TryComp(slotCardUid, out var pda) && pda.ContainedId is { } pdaSlot ? pdaSlot : slotCardUid.Value; - accessBlocker.Comp.CanUse = IsAnyAccess(accessEntity, accessBlocker); - Dirty(accessBlocker); + component.CanUse = IsAnyAccess(accessEntity, component); + Dirty(uid, component); } - private bool IsAnyAccess(EntityUid accessEntity, Entity accessBlocker) + private bool IsAnyAccess(EntityUid accessEntity, AccessWeaponBlockerComponent component) { if (!TryComp(accessEntity, out var access)) return false; foreach (var accessTag in access.Tags) { - if (accessBlocker.Comp.Access.Contains(accessTag)) + if (component.Access.Contains(accessTag)) return true; } return false; From 85bfd8ed837b46ec4e624bec7d41b62720c0f325 Mon Sep 17 00:00:00 2001 From: BongoCatGamer Date: Sun, 24 Nov 2024 15:33:31 +0500 Subject: [PATCH 06/22] upd x2 --- .../SharedAccessWeaponBlockerComponent.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Shared/Backmen/AccessWeaponBlockerSystem/SharedAccessWeaponBlockerComponent.cs b/Content.Shared/Backmen/AccessWeaponBlockerSystem/SharedAccessWeaponBlockerComponent.cs index 55a8c772e3a..1e01ae7d30e 100644 --- a/Content.Shared/Backmen/AccessWeaponBlockerSystem/SharedAccessWeaponBlockerComponent.cs +++ b/Content.Shared/Backmen/AccessWeaponBlockerSystem/SharedAccessWeaponBlockerComponent.cs @@ -1,7 +1,7 @@ using Robust.Shared.GameStates; using Robust.Shared.Serialization; -namespace Content.Shared.Backmen.AccessGunBlockerSystem; +namespace Content.Shared.Backmen.AccessWeaponBlockerSystem;; [NetworkedComponent] public abstract partial class SharedAccessWeaponBlockerComponent : Component From 78e5a1bf993a9cba2cf552a8e365632c1a08bd5f Mon Sep 17 00:00:00 2001 From: BongoCatGamer Date: Sun, 24 Nov 2024 15:44:28 +0500 Subject: [PATCH 07/22] FIX --- .../AccessWeaponBlockerSystem/AccessWeaponBlockerSystem.cs | 2 +- .../SharedAccessWeaponBlockerComponent.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Content.Server/Backmen/AccessWeaponBlockerSystem/AccessWeaponBlockerSystem.cs b/Content.Server/Backmen/AccessWeaponBlockerSystem/AccessWeaponBlockerSystem.cs index bec5d587b6c..592a314394b 100644 --- a/Content.Server/Backmen/AccessWeaponBlockerSystem/AccessWeaponBlockerSystem.cs +++ b/Content.Server/Backmen/AccessWeaponBlockerSystem/AccessWeaponBlockerSystem.cs @@ -1,6 +1,6 @@ using Content.Shared.Hands; using Content.Shared.Access.Components; -using Content.Shared.Backmen.AccessGunBlockerSystem; +using Content.Shared.Backmen.AccessWeaponBlockerSystem; using Content.Shared.Weapons.Melee.Events; using Content.Shared.Weapons.Ranged.Systems; using Robust.Shared.GameStates; diff --git a/Content.Shared/Backmen/AccessWeaponBlockerSystem/SharedAccessWeaponBlockerComponent.cs b/Content.Shared/Backmen/AccessWeaponBlockerSystem/SharedAccessWeaponBlockerComponent.cs index 1e01ae7d30e..47a14ec401e 100644 --- a/Content.Shared/Backmen/AccessWeaponBlockerSystem/SharedAccessWeaponBlockerComponent.cs +++ b/Content.Shared/Backmen/AccessWeaponBlockerSystem/SharedAccessWeaponBlockerComponent.cs @@ -1,7 +1,7 @@ using Robust.Shared.GameStates; using Robust.Shared.Serialization; -namespace Content.Shared.Backmen.AccessWeaponBlockerSystem;; +namespace Content.Shared.Backmen.AccessWeaponBlockerSystem; [NetworkedComponent] public abstract partial class SharedAccessWeaponBlockerComponent : Component From 34af9b3b4df98a4d4d63a4f04590320345afcb95 Mon Sep 17 00:00:00 2001 From: BongoCatGamer Date: Sun, 24 Nov 2024 17:34:00 +0500 Subject: [PATCH 08/22] FIX x2 --- .../AccessWeaponBlockerSystem/AccessWeaponBlockerSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Client/Backmen/AccessWeaponBlockerSystem/AccessWeaponBlockerSystem.cs b/Content.Client/Backmen/AccessWeaponBlockerSystem/AccessWeaponBlockerSystem.cs index 0eb6b7123b7..823cf8b7df7 100644 --- a/Content.Client/Backmen/AccessWeaponBlockerSystem/AccessWeaponBlockerSystem.cs +++ b/Content.Client/Backmen/AccessWeaponBlockerSystem/AccessWeaponBlockerSystem.cs @@ -1,5 +1,5 @@ using Content.Shared.Interaction.Events; -using Content.Shared.Backmen.AccessGunBlockerSystem; +using Content.Shared.Backmen.AccessWeaponBlockerSystem; using Content.Shared.Weapons.Melee.Events; using Content.Shared.Weapons.Ranged.Systems; using Robust.Shared.GameStates; From b27c26b7c251d04ca1330c9edc3d9f5ec9dbf161 Mon Sep 17 00:00:00 2001 From: BongoCatGamer Date: Sun, 24 Nov 2024 17:37:14 +0500 Subject: [PATCH 09/22] Fix... --- .../AccessWeaponBlockerSystem/AccessWeaponBlockerComponent.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Backmen/AccessWeaponBlockerSystem/AccessWeaponBlockerComponent.cs b/Content.Server/Backmen/AccessWeaponBlockerSystem/AccessWeaponBlockerComponent.cs index 821ad23dd01..49bf7e87044 100644 --- a/Content.Server/Backmen/AccessWeaponBlockerSystem/AccessWeaponBlockerComponent.cs +++ b/Content.Server/Backmen/AccessWeaponBlockerSystem/AccessWeaponBlockerComponent.cs @@ -1,5 +1,5 @@ using Content.Shared.Access; -using Content.Shared.Backmen.AccessGunBlockerSystem; +using Content.Shared.Backmen.AccessWeaponBlockerSystem; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Set; namespace Content.Server.Backmen.AccessWeaponBlockerSystem; From 641e5ad0d3243538fb686de4c59dced75e3acbff Mon Sep 17 00:00:00 2001 From: BongoCatGamer Date: Sun, 24 Nov 2024 17:52:59 +0500 Subject: [PATCH 10/22] FIX x3 --- .../AccessWeaponBlockerSystem/AccessWeaponBlockerComponent.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Client/Backmen/AccessWeaponBlockerSystem/AccessWeaponBlockerComponent.cs b/Content.Client/Backmen/AccessWeaponBlockerSystem/AccessWeaponBlockerComponent.cs index 134b2f8f80d..83e96b0450a 100644 --- a/Content.Client/Backmen/AccessWeaponBlockerSystem/AccessWeaponBlockerComponent.cs +++ b/Content.Client/Backmen/AccessWeaponBlockerSystem/AccessWeaponBlockerComponent.cs @@ -1,4 +1,4 @@ -using Content.Shared.Backmen.AccessGunBlockerSystem; +using Content.Shared.Backmen.AccessWeaponBlockerSystem; namespace Content.Client.Backmen.AccessWeaponBlockerSystem; From 6c93971a852aa3ae4456ca4fd829d42524da870b Mon Sep 17 00:00:00 2001 From: no_mad Date: Sat, 30 Nov 2024 23:51:11 +0900 Subject: [PATCH 11/22] faction access --- .../SharedAccessWeaponBlockerSystem.cs | 6 ++++++ .../SharedFactionWeaponBlockerSystem.cs | 6 ------ 2 files changed, 6 insertions(+), 6 deletions(-) create mode 100644 Content.Shared/Backmen/AccessWeaponBlockerSystem/SharedAccessWeaponBlockerSystem.cs delete mode 100644 Content.Shared/Backmen/AccessWeaponBlockerSystem/SharedFactionWeaponBlockerSystem.cs diff --git a/Content.Shared/Backmen/AccessWeaponBlockerSystem/SharedAccessWeaponBlockerSystem.cs b/Content.Shared/Backmen/AccessWeaponBlockerSystem/SharedAccessWeaponBlockerSystem.cs new file mode 100644 index 00000000000..43a1a9c1f80 --- /dev/null +++ b/Content.Shared/Backmen/AccessWeaponBlockerSystem/SharedAccessWeaponBlockerSystem.cs @@ -0,0 +1,6 @@ +namespace Content.Shared.Backmen.AccessWeaponBlockerSystem; + +public sealed class SharedAccessWeaponBlockerSystem : EntitySystem +{ + +} diff --git a/Content.Shared/Backmen/AccessWeaponBlockerSystem/SharedFactionWeaponBlockerSystem.cs b/Content.Shared/Backmen/AccessWeaponBlockerSystem/SharedFactionWeaponBlockerSystem.cs deleted file mode 100644 index ea49d93ae10..00000000000 --- a/Content.Shared/Backmen/AccessWeaponBlockerSystem/SharedFactionWeaponBlockerSystem.cs +++ /dev/null @@ -1,6 +0,0 @@ -namespace Content.Shared.Backmen.AccessWeaponBlockerSystem; - -public sealed class SharedFactionWeaponBlockerSystem : EntitySystem -{ - -} From a4b241ab188ab1718d47f4d6587d382710879dbe Mon Sep 17 00:00:00 2001 From: BongoCatGamer Date: Mon, 2 Dec 2024 17:06:04 +0500 Subject: [PATCH 12/22] Modsuits --- Resources/Audio/Backmen/Modsuits/ballin.ogg | Bin 0 -> 5608 bytes Resources/Audio/Backmen/Modsuits/ballout.ogg | Bin 0 -> 5712 bytes .../_Backmen/Modsuits/Clothing/boots.yml | 534 ++++++++++++++ .../_Backmen/Modsuits/Clothing/chestplate.yml | 685 ++++++++++++++++++ .../_Backmen/Modsuits/Clothing/control.yml | 527 ++++++++++++++ .../_Backmen/Modsuits/Clothing/gauntlets.yml | 467 ++++++++++++ .../_Backmen/Modsuits/Clothing/helmet.yml | 472 ++++++++++++ .../Construction/modsuitconstruction.yml | 335 +++++++++ .../Modsuits/Construction/modsuitgraphs.yml | 334 +++++++++ .../Modsuits/Construction/modsuitrecipe.yml | 120 +++ .../_Backmen/Modsuits/Construction/tags.yml | 68 ++ .../_Backmen/Modsuits/Modfab/modsuit.yml | 143 ++++ .../Modsuits/Modfab/modsuit_fabricator.yml | 51 ++ .../_Backmen/Modsuits/cargo_modsuits.yml | 27 + .../Prototypes/_Backmen/Modsuits/misc.yml | 79 ++ .../_Backmen/Modsuits/modsuit_storage.yml | 234 ++++++ .../_Backmen/Modsuits/modsuitstech.yml | 41 ++ .../syndicate.rsi/off-equipped-HELMET.png | Bin 488 -> 421 bytes .../syndicate.rsi/equipped-OUTERCLOTHING.png | Bin 906 -> 824 bytes .../Back/advanced.rsi/equipped-BACKPACK.png | Bin 0 -> 749 bytes .../Clothing/Back/advanced.rsi/icon.png | Bin 0 -> 814 bytes .../Clothing/Back/advanced.rsi/meta.json | 26 + .../advancedsyndie.rsi/ce_rig_South_0.png | Bin 0 -> 331 bytes .../Back/apocryphal.rsi/equipped-BACKPACK.png | Bin 0 -> 633 bytes .../Clothing/Back/apocryphal.rsi/icon.png | Bin 0 -> 655 bytes .../Clothing/Back/apocryphal.rsi/meta.json | 26 + .../atmospheric.rsi/equipped-BACKPACK.png | Bin 0 -> 756 bytes .../Clothing/Back/atmospheric.rsi/icon.png | Bin 0 -> 854 bytes .../Clothing/Back/atmospheric.rsi/meta.json | 26 + .../Back/brigmedic.rsi/equipped-BACKPACK.png | Bin 0 -> 568 bytes .../Clothing/Back/brigmedic.rsi/icon.png | Bin 0 -> 800 bytes .../Clothing/Back/brigmedic.rsi/meta.json | 26 + .../Back/civillian.rsi/equipped-BACKPACK.png | Bin 0 -> 637 bytes .../Clothing/Back/civillian.rsi/icon.png | Bin 0 -> 618 bytes .../Clothing/Back/civillian.rsi/meta.json | 26 + .../Back/cmo.rsi/equipped-BACKPACK.png | Bin 0 -> 713 bytes .../Modsuits/Clothing/Back/cmo.rsi/icon.png | Bin 0 -> 771 bytes .../Modsuits/Clothing/Back/cmo.rsi/meta.json | 26 + .../Back/corporate.rsi/equipped-BACKPACK.png | Bin 0 -> 772 bytes .../Clothing/Back/corporate.rsi/icon.png | Bin 0 -> 721 bytes .../Clothing/Back/corporate.rsi/meta.json | 26 + .../Back/engineer.rsi/equipped-BACKPACK.png | Bin 0 -> 738 bytes .../Clothing/Back/engineer.rsi/icon.png | Bin 0 -> 841 bytes .../Clothing/Back/engineer.rsi/meta.json | 26 + .../Back/engineer2.rsi/equipped-BACKPACK.png | Bin 0 -> 549 bytes .../Clothing/Back/engineer2.rsi/icon.png | Bin 0 -> 555 bytes .../Clothing/Back/engineer2.rsi/meta.json | 26 + .../Back/hos.rsi/equipped-BACKPACK.png | Bin 0 -> 657 bytes .../Modsuits/Clothing/Back/hos.rsi/icon.png | Bin 0 -> 668 bytes .../Modsuits/Clothing/Back/hos.rsi/meta.json | 26 + .../Back/magnate.rsi/equipped-BACKPACK.png | Bin 0 -> 768 bytes .../Clothing/Back/magnate.rsi/icon.png | Bin 0 -> 708 bytes .../Clothing/Back/magnate.rsi/meta.json | 26 + .../Back/medical.rsi/equipped-BACKPACK.png | Bin 0 -> 705 bytes .../Clothing/Back/medical.rsi/icon.png | Bin 0 -> 775 bytes .../Clothing/Back/medical.rsi/meta.json | 26 + .../Back/medical2.rsi/equipped-BACKPACK.png | Bin 0 -> 513 bytes .../Clothing/Back/medical2.rsi/icon.png | Bin 0 -> 680 bytes .../Clothing/Back/medical2.rsi/meta.json | 26 + .../Back/miner.rsi/equipped-BACKPACK.png | Bin 0 -> 714 bytes .../Modsuits/Clothing/Back/miner.rsi/icon.png | Bin 0 -> 661 bytes .../Clothing/Back/miner.rsi/meta.json | 26 + .../equipped-BACKPACK.png | Bin 0 -> 569 bytes .../Back/nakamuraengineer.rsi/icon.png | Bin 0 -> 689 bytes .../Back/nakamuraengineer.rsi/meta.json | 26 + .../Back/nukeops.rsi/equipped-BACKPACK.png | Bin 0 -> 645 bytes .../Clothing/Back/nukeops.rsi/icon.png | Bin 0 -> 707 bytes .../Clothing/Back/nukeops.rsi/meta.json | 26 + .../nukeopsclown.rsi/equipped-BACKPACK.png | Bin 0 -> 733 bytes .../Clothing/Back/nukeopsclown.rsi/icon.png | Bin 0 -> 688 bytes .../Clothing/Back/nukeopsclown.rsi/meta.json | 26 + .../Back/nukeopscmd.rsi/equipped-BACKPACK.png | Bin 0 -> 635 bytes .../Clothing/Back/nukeopscmd.rsi/icon.png | Bin 0 -> 777 bytes .../Clothing/Back/nukeopscmd.rsi/meta.json | 26 + .../Back/pmc.rsi/equipped-BACKPACK.png | Bin 0 -> 604 bytes .../Modsuits/Clothing/Back/pmc.rsi/icon.png | Bin 0 -> 709 bytes .../Modsuits/Clothing/Back/pmc.rsi/meta.json | 26 + .../Back/rnd.rsi/equipped-BACKPACK.png | Bin 0 -> 706 bytes .../Modsuits/Clothing/Back/rnd.rsi/icon.png | Bin 0 -> 747 bytes .../Modsuits/Clothing/Back/rnd.rsi/meta.json | 26 + .../Back/rnd2.rsi/equipped-BACKPACK.png | Bin 0 -> 618 bytes .../Modsuits/Clothing/Back/rnd2.rsi/icon.png | Bin 0 -> 696 bytes .../Modsuits/Clothing/Back/rnd2.rsi/meta.json | 26 + .../Back/salvage.rsi/equipped-BACKPACK.png | Bin 0 -> 717 bytes .../Clothing/Back/salvage.rsi/icon.png | Bin 0 -> 748 bytes .../Clothing/Back/salvage.rsi/meta.json | 26 + .../Back/security.rsi/equipped-BACKPACK.png | Bin 0 -> 752 bytes .../Clothing/Back/security.rsi/icon.png | Bin 0 -> 724 bytes .../Clothing/Back/security.rsi/meta.json | 26 + .../Back/sstcmd.rsi/equipped-BACKPACK.png | Bin 0 -> 778 bytes .../Clothing/Back/sstcmd.rsi/icon.png | Bin 0 -> 950 bytes .../Clothing/Back/sstcmd.rsi/meta.json | 26 + .../Back/sstsupport.rsi/equipped-BACKPACK.png | Bin 0 -> 592 bytes .../Clothing/Back/sstsupport.rsi/icon.png | Bin 0 -> 713 bytes .../Clothing/Back/sstsupport.rsi/meta.json | 26 + .../Hands/advanced.rsi/equipped-HAND.png | Bin 0 -> 663 bytes .../Clothing/Hands/advanced.rsi/icon.png | Bin 0 -> 711 bytes .../Clothing/Hands/advanced.rsi/meta.json | 18 + .../Hands/apocryphal.rsi/equipped-HAND.png | Bin 0 -> 676 bytes .../Clothing/Hands/apocryphal.rsi/icon.png | Bin 0 -> 516 bytes .../Clothing/Hands/apocryphal.rsi/meta.json | 18 + .../Hands/atmospheric.rsi/equipped-HAND.png | Bin 0 -> 770 bytes .../Clothing/Hands/atmospheric.rsi/icon.png | Bin 0 -> 768 bytes .../Clothing/Hands/atmospheric.rsi/meta.json | 18 + .../Hands/civillian.rsi/equipped-HAND.png | Bin 0 -> 401 bytes .../Clothing/Hands/civillian.rsi/icon.png | Bin 0 -> 495 bytes .../Clothing/Hands/civillian.rsi/meta.json | 18 + .../Clothing/Hands/cmo.rsi/equipped-HAND.png | Bin 0 -> 696 bytes .../Modsuits/Clothing/Hands/cmo.rsi/icon.png | Bin 0 -> 661 bytes .../Modsuits/Clothing/Hands/cmo.rsi/meta.json | 18 + .../Hands/corporate.rsi/equipped-HAND.png | Bin 0 -> 498 bytes .../Clothing/Hands/corporate.rsi/icon.png | Bin 0 -> 601 bytes .../Clothing/Hands/corporate.rsi/meta.json | 18 + .../Hands/engineer.rsi/equipped-HAND.png | Bin 0 -> 762 bytes .../Clothing/Hands/engineer.rsi/icon.png | Bin 0 -> 789 bytes .../Clothing/Hands/engineer.rsi/meta.json | 18 + .../Clothing/Hands/hos.rsi/equipped-HAND.png | Bin 0 -> 700 bytes .../Modsuits/Clothing/Hands/hos.rsi/icon.png | Bin 0 -> 621 bytes .../Modsuits/Clothing/Hands/hos.rsi/meta.json | 18 + .../Hands/magnate.rsi/equipped-HAND.png | Bin 0 -> 495 bytes .../Clothing/Hands/magnate.rsi/icon.png | Bin 0 -> 596 bytes .../Clothing/Hands/magnate.rsi/meta.json | 18 + .../Hands/medical.rsi/equipped-HAND.png | Bin 0 -> 661 bytes .../Clothing/Hands/medical.rsi/icon.png | Bin 0 -> 635 bytes .../Clothing/Hands/medical.rsi/meta.json | 18 + .../Hands/miner.rsi/equipped-HAND.png | Bin 0 -> 464 bytes .../Clothing/Hands/miner.rsi/icon.png | Bin 0 -> 637 bytes .../Clothing/Hands/miner.rsi/meta.json | 18 + .../Hands/nukeops.rsi/equipped-HAND.png | Bin 0 -> 473 bytes .../Clothing/Hands/nukeops.rsi/icon.png | Bin 0 -> 513 bytes .../Clothing/Hands/nukeops.rsi/meta.json | 18 + .../Hands/nukeopsclown.rsi/equipped-HAND.png | Bin 0 -> 473 bytes .../Clothing/Hands/nukeopsclown.rsi/icon.png | Bin 0 -> 513 bytes .../Clothing/Hands/nukeopsclown.rsi/meta.json | 18 + .../Hands/nukeopscmd.rsi/equipped-HAND.png | Bin 0 -> 573 bytes .../Clothing/Hands/nukeopscmd.rsi/icon.png | Bin 0 -> 507 bytes .../Clothing/Hands/nukeopscmd.rsi/meta.json | 18 + .../Clothing/Hands/rnd.rsi/equipped-HAND.png | Bin 0 -> 515 bytes .../Modsuits/Clothing/Hands/rnd.rsi/icon.png | Bin 0 -> 465 bytes .../Modsuits/Clothing/Hands/rnd.rsi/meta.json | 18 + .../Hands/salvage.rsi/equipped-HAND.png | Bin 0 -> 574 bytes .../Clothing/Hands/salvage.rsi/icon.png | Bin 0 -> 679 bytes .../Clothing/Hands/salvage.rsi/meta.json | 18 + .../Hands/security.rsi/equipped-HAND.png | Bin 0 -> 670 bytes .../Clothing/Hands/security.rsi/icon.png | Bin 0 -> 621 bytes .../Clothing/Hands/security.rsi/meta.json | 18 + .../Head/advanced.rsi/equipped-HELMET.png | Bin 0 -> 993 bytes .../Clothing/Head/advanced.rsi/icon.png | Bin 0 -> 575 bytes .../Clothing/Head/advanced.rsi/meta.json | 18 + .../Head/apocryphal.rsi/equipped-HELMET.png | Bin 0 -> 867 bytes .../Clothing/Head/apocryphal.rsi/icon.png | Bin 0 -> 425 bytes .../Clothing/Head/apocryphal.rsi/meta.json | 18 + .../Head/atmospheric.rsi/equipped-HELMET.png | Bin 0 -> 998 bytes .../Clothing/Head/atmospheric.rsi/icon.png | Bin 0 -> 635 bytes .../Clothing/Head/atmospheric.rsi/meta.json | 18 + .../Head/civillian.rsi/equipped-HELMET.png | Bin 0 -> 785 bytes .../Clothing/Head/civillian.rsi/icon.png | Bin 0 -> 415 bytes .../Clothing/Head/civillian.rsi/meta.json | 18 + .../Clothing/Head/cmo.rsi/equipped-HELMET.png | Bin 0 -> 961 bytes .../Modsuits/Clothing/Head/cmo.rsi/icon.png | Bin 0 -> 462 bytes .../Modsuits/Clothing/Head/cmo.rsi/meta.json | 18 + .../Head/corporate.rsi/equipped-HELMET.png | Bin 0 -> 956 bytes .../Clothing/Head/corporate.rsi/icon.png | Bin 0 -> 456 bytes .../Clothing/Head/corporate.rsi/meta.json | 18 + .../Head/engineer.rsi/equipped-HELMET.png | Bin 0 -> 1108 bytes .../Clothing/Head/engineer.rsi/icon.png | Bin 0 -> 610 bytes .../Clothing/Head/engineer.rsi/meta.json | 18 + .../Head/engineer2.rsi/equipped-HELMET.png | Bin 0 -> 875 bytes .../Clothing/Head/engineer2.rsi/icon.png | Bin 0 -> 460 bytes .../Clothing/Head/engineer2.rsi/meta.json | 18 + .../Clothing/Head/hos.rsi/equipped-HELMET.png | Bin 0 -> 912 bytes .../Modsuits/Clothing/Head/hos.rsi/icon.png | Bin 0 -> 473 bytes .../Modsuits/Clothing/Head/hos.rsi/meta.json | 18 + .../Head/magnate.rsi/equipped-HELMET.png | Bin 0 -> 970 bytes .../Clothing/Head/magnate.rsi/icon.png | Bin 0 -> 454 bytes .../Clothing/Head/magnate.rsi/meta.json | 18 + .../Head/medical.rsi/equipped-HELMET.png | Bin 0 -> 960 bytes .../Clothing/Head/medical.rsi/icon.png | Bin 0 -> 457 bytes .../Clothing/Head/medical.rsi/meta.json | 18 + .../Head/medical2.rsi/equipped-HELMET.png | Bin 0 -> 1294 bytes .../Clothing/Head/medical2.rsi/icon.png | Bin 0 -> 645 bytes .../Clothing/Head/medical2.rsi/meta.json | 18 + .../Head/miner.rsi/equipped-HELMET.png | Bin 0 -> 789 bytes .../Modsuits/Clothing/Head/miner.rsi/icon.png | Bin 0 -> 435 bytes .../Clothing/Head/miner.rsi/meta.json | 18 + .../nakamuraengineer.rsi/equipped-HELMET.png | Bin 0 -> 825 bytes .../Head/nakamuraengineer.rsi/icon.png | Bin 0 -> 461 bytes .../Head/nakamuraengineer.rsi/meta.json | 18 + .../Head/nukeops.rsi/equipped-HELMET.png | Bin 0 -> 888 bytes .../Clothing/Head/nukeops.rsi/icon.png | Bin 0 -> 455 bytes .../Clothing/Head/nukeops.rsi/meta.json | 18 + .../Head/nukeopsclown.rsi/equipped-HELMET.png | Bin 0 -> 971 bytes .../Clothing/Head/nukeopsclown.rsi/icon.png | Bin 0 -> 615 bytes .../Clothing/Head/nukeopsclown.rsi/meta.json | 18 + .../Head/nukeopscmd.rsi/equipped-HELMET.png | Bin 0 -> 831 bytes .../Clothing/Head/nukeopscmd.rsi/icon.png | Bin 0 -> 399 bytes .../Clothing/Head/nukeopscmd.rsi/meta.json | 18 + .../Clothing/Head/pmc.rsi/equipped-HELMET.png | Bin 0 -> 978 bytes .../Modsuits/Clothing/Head/pmc.rsi/icon.png | Bin 0 -> 413 bytes .../Modsuits/Clothing/Head/pmc.rsi/meta.json | 18 + .../Clothing/Head/rnd.rsi/equipped-HELMET.png | Bin 0 -> 846 bytes .../Modsuits/Clothing/Head/rnd.rsi/icon.png | Bin 0 -> 546 bytes .../Modsuits/Clothing/Head/rnd.rsi/meta.json | 18 + .../Head/rnd2.rsi/equipped-HELMET.png | Bin 0 -> 983 bytes .../Modsuits/Clothing/Head/rnd2.rsi/icon.png | Bin 0 -> 491 bytes .../Modsuits/Clothing/Head/rnd2.rsi/meta.json | 18 + .../Head/salvage.rsi/equipped-HELMET.png | Bin 0 -> 996 bytes .../Clothing/Head/salvage.rsi/icon.png | Bin 0 -> 445 bytes .../Clothing/Head/salvage.rsi/meta.json | 18 + .../Head/security.rsi/equipped-HELMET.png | Bin 0 -> 821 bytes .../Clothing/Head/security.rsi/icon.png | Bin 0 -> 487 bytes .../Clothing/Head/security.rsi/meta.json | 18 + .../Head/sstcmd.rsi/equipped-HELMET.png | Bin 0 -> 838 bytes .../Clothing/Head/sstcmd.rsi/icon.png | Bin 0 -> 519 bytes .../Clothing/Head/sstcmd.rsi/meta.json | 18 + .../Head/sstsupport.rsi/equipped-HELMET.png | Bin 0 -> 638 bytes .../Clothing/Head/sstsupport.rsi/icon.png | Bin 0 -> 452 bytes .../Clothing/Head/sstsupport.rsi/meta.json | 18 + .../advanced.rsi/equipped-OUTERCLOTHING.png | Bin 0 -> 1216 bytes .../OuterClothing/advanced.rsi/icon.png | Bin 0 -> 514 bytes .../OuterClothing/advanced.rsi/meta.json | 18 + .../apocryphal.rsi/equipped-OUTERCLOTHING.png | Bin 0 -> 1052 bytes .../OuterClothing/apocryphal.rsi/icon.png | Bin 0 -> 480 bytes .../OuterClothing/apocryphal.rsi/meta.json | 18 + .../equipped-OUTERCLOTHING.png | Bin 0 -> 1581 bytes .../OuterClothing/atmospheric.rsi/icon.png | Bin 0 -> 629 bytes .../OuterClothing/atmospheric.rsi/meta.json | 18 + .../civillian.rsi/equipped-OUTERCLOTHING.png | Bin 0 -> 1238 bytes .../OuterClothing/civillian.rsi/icon.png | Bin 0 -> 526 bytes .../OuterClothing/civillian.rsi/meta.json | 18 + .../cmo.rsi/equipped-OUTERCLOTHING.png | Bin 0 -> 1402 bytes .../Obsolete/OuterClothing/cmo.rsi/icon.png | Bin 0 -> 564 bytes .../Obsolete/OuterClothing/cmo.rsi/meta.json | 18 + .../corporate.rsi/equipped-OUTERCLOTHING.png | Bin 0 -> 1643 bytes .../OuterClothing/corporate.rsi/icon.png | Bin 0 -> 656 bytes .../OuterClothing/corporate.rsi/meta.json | 18 + .../engineer.rsi/equipped-OUTERCLOTHING.png | Bin 0 -> 1317 bytes .../OuterClothing/engineer.rsi/icon.png | Bin 0 -> 550 bytes .../OuterClothing/engineer.rsi/meta.json | 18 + .../hos.rsi/equipped-OUTERCLOTHING.png | Bin 0 -> 1412 bytes .../Obsolete/OuterClothing/hos.rsi/icon.png | Bin 0 -> 594 bytes .../Obsolete/OuterClothing/hos.rsi/meta.json | 18 + .../magnate.rsi/equipped-OUTERCLOTHING.png | Bin 0 -> 1629 bytes .../OuterClothing/magnate.rsi/icon.png | Bin 0 -> 663 bytes .../OuterClothing/magnate.rsi/meta.json | 18 + .../medical.rsi/equipped-OUTERCLOTHING.png | Bin 0 -> 1355 bytes .../OuterClothing/medical.rsi/icon.png | Bin 0 -> 554 bytes .../OuterClothing/medical.rsi/meta.json | 18 + .../miner.rsi/equipped-OUTERCLOTHING.png | Bin 0 -> 1403 bytes .../Obsolete/OuterClothing/miner.rsi/icon.png | Bin 0 -> 620 bytes .../OuterClothing/miner.rsi/meta.json | 18 + .../nukeops.rsi/equipped-OUTERCLOTHING.png | Bin 0 -> 1257 bytes .../OuterClothing/nukeops.rsi/icon.png | Bin 0 -> 558 bytes .../OuterClothing/nukeops.rsi/meta.json | 18 + .../equipped-OUTERCLOTHING.png | Bin 0 -> 1456 bytes .../OuterClothing/nukeopsclown.rsi/icon.png | Bin 0 -> 633 bytes .../OuterClothing/nukeopsclown.rsi/meta.json | 18 + .../nukeopscmd.rsi/equipped-OUTERCLOTHING.png | Bin 0 -> 1159 bytes .../OuterClothing/nukeopscmd.rsi/icon.png | Bin 0 -> 496 bytes .../OuterClothing/nukeopscmd.rsi/meta.json | 18 + .../rnd.rsi/equipped-OUTERCLOTHING.png | Bin 0 -> 1569 bytes .../Obsolete/OuterClothing/rnd.rsi/icon.png | Bin 0 -> 572 bytes .../Obsolete/OuterClothing/rnd.rsi/meta.json | 18 + .../salvage.rsi/equipped-OUTERCLOTHING.png | Bin 0 -> 1237 bytes .../OuterClothing/salvage.rsi/icon.png | Bin 0 -> 552 bytes .../OuterClothing/salvage.rsi/meta.json | 18 + .../security.rsi/equipped-OUTERCLOTHING.png | Bin 0 -> 1398 bytes .../OuterClothing/security.rsi/icon.png | Bin 0 -> 552 bytes .../OuterClothing/security.rsi/meta.json | 18 + .../advanced.rsi/equipped-OUTERCLOTHING.png | Bin 0 -> 2009 bytes .../OuterClothing/advanced.rsi/icon.png | Bin 0 -> 856 bytes .../OuterClothing/advanced.rsi/meta.json | 18 + .../apocryphal.rsi/equipped-OUTERCLOTHING.png | Bin 0 -> 1475 bytes .../OuterClothing/apocryphal.rsi/icon.png | Bin 0 -> 683 bytes .../OuterClothing/apocryphal.rsi/meta.json | 18 + .../equipped-OUTERCLOTHING.png | Bin 0 -> 2284 bytes .../OuterClothing/atmospheric.rsi/icon.png | Bin 0 -> 909 bytes .../OuterClothing/atmospheric.rsi/meta.json | 18 + .../civillian.rsi/equipped-OUTERCLOTHING.png | Bin 0 -> 1658 bytes .../OuterClothing/civillian.rsi/icon.png | Bin 0 -> 731 bytes .../OuterClothing/civillian.rsi/meta.json | 18 + .../cmo.rsi/equipped-OUTERCLOTHING.png | Bin 0 -> 1892 bytes .../Clothing/OuterClothing/cmo.rsi/icon.png | Bin 0 -> 734 bytes .../Clothing/OuterClothing/cmo.rsi/meta.json | 18 + .../corporate.rsi/equipped-OUTERCLOTHING.png | Bin 0 -> 1875 bytes .../OuterClothing/corporate.rsi/icon.png | Bin 0 -> 792 bytes .../OuterClothing/corporate.rsi/meta.json | 18 + .../engineer.rsi/equipped-OUTERCLOTHING.png | Bin 0 -> 1743 bytes .../OuterClothing/engineer.rsi/icon.png | Bin 0 -> 763 bytes .../OuterClothing/engineer.rsi/meta.json | 18 + .../engineer2.rsi/equipped-OUTERCLOTHING.png | Bin 0 -> 1663 bytes .../OuterClothing/engineer2.rsi/icon.png | Bin 0 -> 695 bytes .../OuterClothing/engineer2.rsi/meta.json | 18 + .../hos.rsi/equipped-OUTERCLOTHING.png | Bin 0 -> 1856 bytes .../Clothing/OuterClothing/hos.rsi/icon.png | Bin 0 -> 796 bytes .../Clothing/OuterClothing/hos.rsi/meta.json | 18 + .../magnate.rsi/equipped-OUTERCLOTHING.png | Bin 0 -> 1835 bytes .../OuterClothing/magnate.rsi/icon.png | Bin 0 -> 779 bytes .../OuterClothing/magnate.rsi/meta.json | 18 + .../medical.rsi/equipped-OUTERCLOTHING.png | Bin 0 -> 1811 bytes .../OuterClothing/medical.rsi/icon.png | Bin 0 -> 719 bytes .../OuterClothing/medical.rsi/meta.json | 18 + .../medical2.rsi/equipped-OUTERCLOTHING.png | Bin 0 -> 2014 bytes .../OuterClothing/medical2.rsi/icon.png | Bin 0 -> 739 bytes .../OuterClothing/medical2.rsi/meta.json | 18 + .../miner.rsi/equipped-OUTERCLOTHING.png | Bin 0 -> 1630 bytes .../Clothing/OuterClothing/miner.rsi/icon.png | Bin 0 -> 704 bytes .../OuterClothing/miner.rsi/meta.json | 18 + .../equipped-OUTERCLOTHING.png | Bin 0 -> 1716 bytes .../nakamuraengineer.rsi/icon.png | Bin 0 -> 761 bytes .../nakamuraengineer.rsi/meta.json | 18 + .../nukeops.rsi/equipped-OUTERCLOTHING.png | Bin 0 -> 1490 bytes .../OuterClothing/nukeops.rsi/icon.png | Bin 0 -> 652 bytes .../OuterClothing/nukeops.rsi/meta.json | 18 + .../equipped-OUTERCLOTHING.png | Bin 0 -> 1878 bytes .../OuterClothing/nukeopsclown.rsi/icon.png | Bin 0 -> 907 bytes .../OuterClothing/nukeopsclown.rsi/meta.json | 18 + .../nukeopscmd.rsi/equipped-OUTERCLOTHING.png | Bin 0 -> 1566 bytes .../OuterClothing/nukeopscmd.rsi/icon.png | Bin 0 -> 674 bytes .../OuterClothing/nukeopscmd.rsi/meta.json | 18 + .../pmc.rsi/equipped-OUTERCLOTHING.png | Bin 0 -> 1470 bytes .../Clothing/OuterClothing/pmc.rsi/icon.png | Bin 0 -> 626 bytes .../Clothing/OuterClothing/pmc.rsi/meta.json | 18 + .../rnd.rsi/equipped-OUTERCLOTHING.png | Bin 0 -> 1767 bytes .../Clothing/OuterClothing/rnd.rsi/icon.png | Bin 0 -> 699 bytes .../Clothing/OuterClothing/rnd.rsi/meta.json | 18 + .../rnd2.rsi/equipped-OUTERCLOTHING.png | Bin 0 -> 1819 bytes .../Clothing/OuterClothing/rnd2.rsi/icon.png | Bin 0 -> 806 bytes .../Clothing/OuterClothing/rnd2.rsi/meta.json | 18 + .../salvage.rsi/equipped-OUTERCLOTHING.png | Bin 0 -> 1613 bytes .../OuterClothing/salvage.rsi/icon.png | Bin 0 -> 722 bytes .../OuterClothing/salvage.rsi/meta.json | 18 + .../security.rsi/equipped-OUTERCLOTHING.png | Bin 0 -> 1806 bytes .../OuterClothing/security.rsi/icon.png | Bin 0 -> 726 bytes .../OuterClothing/security.rsi/meta.json | 18 + .../sstcmd.rsi/equipped-OUTERCLOTHING.png | Bin 0 -> 1698 bytes .../OuterClothing/sstcmd.rsi/icon.png | Bin 0 -> 707 bytes .../OuterClothing/sstcmd.rsi/meta.json | 18 + .../sstsupport.rsi/equipped-OUTERCLOTHING.png | Bin 0 -> 1881 bytes .../OuterClothing/sstsupport.rsi/icon.png | Bin 0 -> 803 bytes .../OuterClothing/sstsupport.rsi/meta.json | 18 + .../Shoes/advanced.rsi/equipped-FEET.png | Bin 0 -> 872 bytes .../Clothing/Shoes/advanced.rsi/icon-on.png | Bin 0 -> 493 bytes .../Clothing/Shoes/advanced.rsi/icon.png | Bin 0 -> 480 bytes .../Clothing/Shoes/advanced.rsi/meta.json | 25 + .../Shoes/advanced.rsi/on-equipped-FEET.png | Bin 0 -> 810 bytes .../Shoes/apocryphal.rsi/equipped-FEET.png | Bin 0 -> 419 bytes .../Clothing/Shoes/apocryphal.rsi/icon.png | Bin 0 -> 377 bytes .../Clothing/Shoes/apocryphal.rsi/meta.json | 18 + .../Shoes/atmospheric.rsi/equipped-FEET.png | Bin 0 -> 893 bytes .../Clothing/Shoes/atmospheric.rsi/icon.png | Bin 0 -> 488 bytes .../Clothing/Shoes/atmospheric.rsi/meta.json | 18 + .../Shoes/civillian.rsi/equipped-FEET.png | Bin 0 -> 534 bytes .../Clothing/Shoes/civillian.rsi/icon.png | Bin 0 -> 353 bytes .../Clothing/Shoes/civillian.rsi/meta.json | 18 + .../Clothing/Shoes/cmo.rsi/equipped-FEET.png | Bin 0 -> 497 bytes .../Modsuits/Clothing/Shoes/cmo.rsi/icon.png | Bin 0 -> 370 bytes .../Modsuits/Clothing/Shoes/cmo.rsi/meta.json | 18 + .../Shoes/corporate.rsi/equipped-FEET.png | Bin 0 -> 514 bytes .../Clothing/Shoes/corporate.rsi/icon.png | Bin 0 -> 331 bytes .../Clothing/Shoes/corporate.rsi/meta.json | 18 + .../Shoes/engineer.rsi/equipped-FEET.png | Bin 0 -> 893 bytes .../Clothing/Shoes/engineer.rsi/icon.png | Bin 0 -> 483 bytes .../Clothing/Shoes/engineer.rsi/meta.json | 18 + .../Clothing/Shoes/hos.rsi/equipped-FEET.png | Bin 0 -> 596 bytes .../Modsuits/Clothing/Shoes/hos.rsi/icon.png | Bin 0 -> 354 bytes .../Modsuits/Clothing/Shoes/hos.rsi/meta.json | 18 + .../Shoes/magnate.rsi/equipped-FEET.png | Bin 0 -> 503 bytes .../Clothing/Shoes/magnate.rsi/icon.png | Bin 0 -> 323 bytes .../Clothing/Shoes/magnate.rsi/meta.json | 18 + .../Shoes/medical.rsi/equipped-FEET.png | Bin 0 -> 469 bytes .../Clothing/Shoes/medical.rsi/icon.png | Bin 0 -> 360 bytes .../Clothing/Shoes/medical.rsi/meta.json | 18 + .../Shoes/miner.rsi/equipped-FEET.png | Bin 0 -> 488 bytes .../Clothing/Shoes/miner.rsi/icon.png | Bin 0 -> 356 bytes .../Clothing/Shoes/miner.rsi/meta.json | 18 + .../Shoes/nukeops.rsi/equipped-FEET.png | Bin 0 -> 490 bytes .../Clothing/Shoes/nukeops.rsi/icon.png | Bin 0 -> 355 bytes .../Clothing/Shoes/nukeops.rsi/meta.json | 18 + .../Shoes/nukeopsclown.rsi/equipped-FEET.png | Bin 0 -> 615 bytes .../Clothing/Shoes/nukeopsclown.rsi/icon.png | Bin 0 -> 403 bytes .../Clothing/Shoes/nukeopsclown.rsi/meta.json | 18 + .../Shoes/nukeopscmd.rsi/equipped-FEET.png | Bin 0 -> 488 bytes .../Clothing/Shoes/nukeopscmd.rsi/icon.png | Bin 0 -> 353 bytes .../Clothing/Shoes/nukeopscmd.rsi/meta.json | 18 + .../Clothing/Shoes/rnd.rsi/equipped-FEET.png | Bin 0 -> 527 bytes .../Modsuits/Clothing/Shoes/rnd.rsi/icon.png | Bin 0 -> 335 bytes .../Modsuits/Clothing/Shoes/rnd.rsi/meta.json | 18 + .../Shoes/salvage.rsi/equipped-FEET.png | Bin 0 -> 609 bytes .../Clothing/Shoes/salvage.rsi/icon.png | Bin 0 -> 414 bytes .../Clothing/Shoes/salvage.rsi/meta.json | 18 + .../Shoes/security.rsi/equipped-FEET.png | Bin 0 -> 580 bytes .../Clothing/Shoes/security.rsi/icon.png | Bin 0 -> 406 bytes .../Clothing/Shoes/security.rsi/meta.json | 18 + .../Modsuits/Modules/carry.rsi/icon.png | Bin 0 -> 800 bytes .../Modsuits/Modules/carry.rsi/meta.json | 14 + .../Modsuits/Modules/engivisor.rsi/icon.png | Bin 0 -> 602 bytes .../Modsuits/Modules/engivisor.rsi/meta.json | 14 + .../Modsuits/Modules/flashlight.rsi/icon.png | Bin 0 -> 369 bytes .../Modsuits/Modules/flashlight.rsi/meta.json | 14 + .../Backmen/Modsuits/Modules/gps.rsi/icon.png | Bin 0 -> 590 bytes .../Modsuits/Modules/gps.rsi/meta.json | 14 + .../Modsuits/Modules/medhud.rsi/icon.png | Bin 0 -> 631 bytes .../Modsuits/Modules/medhud.rsi/meta.json | 14 + .../Modsuits/Modules/modstorage.rsi/meta.json | 23 + .../Modules/modstorage.rsi/storage.png | Bin 0 -> 555 bytes .../Modules/modstorage.rsi/storagesmall.png | Bin 0 -> 557 bytes .../Modules/modstorage.rsi/storagesyndie.png | Bin 0 -> 634 bytes .../modstorage.rsi/storagesyndiesmall.png | Bin 0 -> 627 bytes .../Modsuits/Modules/radiator.rsi/icon.png | Bin 0 -> 824 bytes .../Modsuits/Modules/radiator.rsi/meta.json | 14 + .../Modules/reactiveboots.rsi/icon.png | Bin 0 -> 867 bytes .../Modules/reactiveboots.rsi/meta.json | 14 + .../Modsuits/Modules/sciencehud.rsi/icon.png | Bin 0 -> 647 bytes .../Modsuits/Modules/sciencehud.rsi/meta.json | 14 + .../Modsuits/Modules/sechud.rsi/icon.png | Bin 0 -> 637 bytes .../Modsuits/Modules/sechud.rsi/meta.json | 14 + .../Modsuits/Modules/trayscanner.rsi/icon.png | Bin 0 -> 616 bytes .../Modules/trayscanner.rsi/meta.json | 14 + .../Modsuits/constructing_modsuit.rsi/CAP.png | Bin 0 -> 429 bytes .../Modsuits/constructing_modsuit.rsi/CE.png | Bin 0 -> 523 bytes .../Modsuits/constructing_modsuit.rsi/CMO.png | Bin 0 -> 476 bytes .../constructing_modsuit.rsi/CORE-equip0.png | Bin 0 -> 481 bytes .../constructing_modsuit.rsi/CORE-equip1.png | Bin 0 -> 708 bytes .../constructing_modsuit.rsi/CORE-equip2.png | Bin 0 -> 687 bytes .../constructing_modsuit.rsi/CORE-equip3.png | Bin 0 -> 462 bytes .../constructing_modsuit.rsi/CORE-equip4.png | Bin 0 -> 448 bytes .../constructing_modsuit.rsi/CORE-equip5.png | Bin 0 -> 470 bytes .../constructing_modsuit.rsi/CORE-equip6.png | Bin 0 -> 474 bytes .../constructing_modsuit.rsi/CORE-equip7.png | Bin 0 -> 504 bytes .../constructing_modsuit.rsi/CORE-equip8.png | Bin 0 -> 448 bytes .../Modsuits/constructing_modsuit.rsi/HOS.png | Bin 0 -> 337 bytes .../constructing_modsuit.rsi/boots.png | Bin 0 -> 613 bytes .../constructing_modsuit.rsi/chestplate.png | Bin 0 -> 1032 bytes .../constructing_modsuit.rsi/gauntlets.png | Bin 0 -> 577 bytes .../constructing_modsuit.rsi/helmet.png | Bin 0 -> 881 bytes .../constructing_modsuit.rsi/meta.json | 103 +++ .../mod-core-plasma.png | Bin 0 -> 1036 bytes .../constructing_modsuit.rsi/mod-core.png | Bin 0 -> 950 bytes .../constructing_modsuit.rsi/paintkit.png | Bin 0 -> 609 bytes .../modsuit_fabricator.rsi/building.png | Bin 0 -> 1893 bytes .../Modsuits/modsuit_fabricator.rsi/icon.png | Bin 0 -> 763 bytes .../modsuit_fabricator.rsi/inserting.png | Bin 0 -> 727 bytes .../Modsuits/modsuit_fabricator.rsi/meta.json | 48 ++ .../Modsuits/modsuit_fabricator.rsi/panel.png | Bin 0 -> 182 bytes .../Modsuits/modsuit_fabricator.rsi/unlit.png | Bin 0 -> 271 bytes .../plating.rsi/atmospheric-plating.png | Bin 0 -> 389 bytes .../Modsuits/plating.rsi/ce-plating.png | Bin 0 -> 404 bytes .../plating.rsi/civillian-plating.png | Bin 0 -> 378 bytes .../Modsuits/plating.rsi/cmo-plating.png | Bin 0 -> 400 bytes .../plating.rsi/engineering-plating.png | Bin 0 -> 416 bytes .../Modsuits/plating.rsi/magnate-plating.png | Bin 0 -> 398 bytes .../Modsuits/plating.rsi/medical-plating.png | Bin 0 -> 383 bytes .../Backmen/Modsuits/plating.rsi/meta.json | 38 + .../Modsuits/plating.rsi/rnd-plating.png | Bin 0 -> 389 bytes .../Modsuits/plating.rsi/security-plating.png | Bin 0 -> 408 bytes .../Modsuits/suit_storage.rsi/base.png | Bin 0 -> 811 bytes .../Modsuits/suit_storage.rsi/door.png | Bin 0 -> 485 bytes .../Modsuits/suit_storage.rsi/locked.png | Bin 0 -> 88 bytes .../Modsuits/suit_storage.rsi/meta.json | 23 + .../Modsuits/suit_storage.rsi/welded.png | Bin 0 -> 415 bytes .../Modsuits/suit_storage_syndie.rsi/base.png | Bin 0 -> 791 bytes .../Modsuits/suit_storage_syndie.rsi/door.png | Bin 0 -> 427 bytes .../suit_storage_syndie.rsi/locked.png | Bin 0 -> 88 bytes .../suit_storage_syndie.rsi/meta.json | 23 + .../suit_storage_syndie.rsi/welded.png | Bin 0 -> 415 bytes 466 files changed, 6954 insertions(+) create mode 100644 Resources/Audio/Backmen/Modsuits/ballin.ogg create mode 100644 Resources/Audio/Backmen/Modsuits/ballout.ogg create mode 100644 Resources/Prototypes/_Backmen/Modsuits/Clothing/boots.yml create mode 100644 Resources/Prototypes/_Backmen/Modsuits/Clothing/chestplate.yml create mode 100644 Resources/Prototypes/_Backmen/Modsuits/Clothing/control.yml create mode 100644 Resources/Prototypes/_Backmen/Modsuits/Clothing/gauntlets.yml create mode 100644 Resources/Prototypes/_Backmen/Modsuits/Clothing/helmet.yml create mode 100644 Resources/Prototypes/_Backmen/Modsuits/Construction/modsuitconstruction.yml create mode 100644 Resources/Prototypes/_Backmen/Modsuits/Construction/modsuitgraphs.yml create mode 100644 Resources/Prototypes/_Backmen/Modsuits/Construction/modsuitrecipe.yml create mode 100644 Resources/Prototypes/_Backmen/Modsuits/Construction/tags.yml create mode 100644 Resources/Prototypes/_Backmen/Modsuits/Modfab/modsuit.yml create mode 100644 Resources/Prototypes/_Backmen/Modsuits/Modfab/modsuit_fabricator.yml create mode 100644 Resources/Prototypes/_Backmen/Modsuits/cargo_modsuits.yml create mode 100644 Resources/Prototypes/_Backmen/Modsuits/misc.yml create mode 100644 Resources/Prototypes/_Backmen/Modsuits/modsuit_storage.yml create mode 100644 Resources/Prototypes/_Backmen/Modsuits/modsuitstech.yml create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/advanced.rsi/equipped-BACKPACK.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/advanced.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/advanced.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/advancedsyndie.rsi/ce_rig_South_0.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/apocryphal.rsi/equipped-BACKPACK.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/apocryphal.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/apocryphal.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/atmospheric.rsi/equipped-BACKPACK.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/atmospheric.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/atmospheric.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/brigmedic.rsi/equipped-BACKPACK.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/brigmedic.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/brigmedic.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/civillian.rsi/equipped-BACKPACK.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/civillian.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/civillian.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/cmo.rsi/equipped-BACKPACK.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/cmo.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/cmo.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/corporate.rsi/equipped-BACKPACK.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/corporate.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/corporate.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/engineer.rsi/equipped-BACKPACK.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/engineer.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/engineer.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/engineer2.rsi/equipped-BACKPACK.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/engineer2.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/engineer2.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/hos.rsi/equipped-BACKPACK.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/hos.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/hos.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/magnate.rsi/equipped-BACKPACK.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/magnate.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/magnate.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/medical.rsi/equipped-BACKPACK.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/medical.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/medical.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/medical2.rsi/equipped-BACKPACK.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/medical2.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/medical2.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/miner.rsi/equipped-BACKPACK.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/miner.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/miner.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/nakamuraengineer.rsi/equipped-BACKPACK.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/nakamuraengineer.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/nakamuraengineer.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/nukeops.rsi/equipped-BACKPACK.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/nukeops.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/nukeops.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/nukeopsclown.rsi/equipped-BACKPACK.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/nukeopsclown.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/nukeopsclown.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/nukeopscmd.rsi/equipped-BACKPACK.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/nukeopscmd.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/nukeopscmd.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/pmc.rsi/equipped-BACKPACK.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/pmc.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/pmc.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/rnd.rsi/equipped-BACKPACK.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/rnd.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/rnd.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/rnd2.rsi/equipped-BACKPACK.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/rnd2.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/rnd2.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/salvage.rsi/equipped-BACKPACK.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/salvage.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/salvage.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/security.rsi/equipped-BACKPACK.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/security.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/security.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/sstcmd.rsi/equipped-BACKPACK.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/sstcmd.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/sstcmd.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/sstsupport.rsi/equipped-BACKPACK.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/sstsupport.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Back/sstsupport.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Hands/advanced.rsi/equipped-HAND.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Hands/advanced.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Hands/advanced.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Hands/apocryphal.rsi/equipped-HAND.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Hands/apocryphal.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Hands/apocryphal.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Hands/atmospheric.rsi/equipped-HAND.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Hands/atmospheric.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Hands/atmospheric.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Hands/civillian.rsi/equipped-HAND.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Hands/civillian.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Hands/civillian.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Hands/cmo.rsi/equipped-HAND.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Hands/cmo.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Hands/cmo.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Hands/corporate.rsi/equipped-HAND.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Hands/corporate.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Hands/corporate.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Hands/engineer.rsi/equipped-HAND.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Hands/engineer.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Hands/engineer.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Hands/hos.rsi/equipped-HAND.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Hands/hos.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Hands/hos.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Hands/magnate.rsi/equipped-HAND.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Hands/magnate.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Hands/magnate.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Hands/medical.rsi/equipped-HAND.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Hands/medical.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Hands/medical.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Hands/miner.rsi/equipped-HAND.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Hands/miner.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Hands/miner.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Hands/nukeops.rsi/equipped-HAND.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Hands/nukeops.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Hands/nukeops.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Hands/nukeopsclown.rsi/equipped-HAND.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Hands/nukeopsclown.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Hands/nukeopsclown.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Hands/nukeopscmd.rsi/equipped-HAND.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Hands/nukeopscmd.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Hands/nukeopscmd.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Hands/rnd.rsi/equipped-HAND.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Hands/rnd.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Hands/rnd.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Hands/salvage.rsi/equipped-HAND.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Hands/salvage.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Hands/salvage.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Hands/security.rsi/equipped-HAND.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Hands/security.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Hands/security.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/advanced.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/advanced.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/advanced.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/apocryphal.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/apocryphal.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/apocryphal.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/atmospheric.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/atmospheric.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/atmospheric.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/civillian.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/civillian.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/civillian.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/cmo.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/cmo.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/cmo.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/corporate.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/corporate.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/corporate.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/engineer.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/engineer.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/engineer.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/engineer2.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/engineer2.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/engineer2.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/hos.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/hos.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/hos.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/magnate.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/magnate.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/magnate.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/medical.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/medical.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/medical.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/medical2.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/medical2.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/medical2.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/miner.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/miner.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/miner.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/nakamuraengineer.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/nakamuraengineer.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/nakamuraengineer.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/nukeops.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/nukeops.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/nukeops.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/nukeopsclown.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/nukeopsclown.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/nukeopsclown.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/nukeopscmd.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/nukeopscmd.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/nukeopscmd.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/pmc.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/pmc.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/pmc.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/rnd.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/rnd.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/rnd.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/rnd2.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/rnd2.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/rnd2.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/salvage.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/salvage.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/salvage.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/security.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/security.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/security.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/sstcmd.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/sstcmd.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/sstcmd.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/sstsupport.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/sstsupport.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Head/sstsupport.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/advanced.rsi/equipped-OUTERCLOTHING.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/advanced.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/advanced.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/apocryphal.rsi/equipped-OUTERCLOTHING.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/apocryphal.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/apocryphal.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/atmospheric.rsi/equipped-OUTERCLOTHING.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/atmospheric.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/atmospheric.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/civillian.rsi/equipped-OUTERCLOTHING.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/civillian.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/civillian.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/cmo.rsi/equipped-OUTERCLOTHING.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/cmo.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/cmo.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/corporate.rsi/equipped-OUTERCLOTHING.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/corporate.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/corporate.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/engineer.rsi/equipped-OUTERCLOTHING.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/engineer.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/engineer.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/hos.rsi/equipped-OUTERCLOTHING.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/hos.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/hos.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/magnate.rsi/equipped-OUTERCLOTHING.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/magnate.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/magnate.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/medical.rsi/equipped-OUTERCLOTHING.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/medical.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/medical.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/miner.rsi/equipped-OUTERCLOTHING.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/miner.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/miner.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/nukeops.rsi/equipped-OUTERCLOTHING.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/nukeops.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/nukeops.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/nukeopsclown.rsi/equipped-OUTERCLOTHING.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/nukeopsclown.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/nukeopsclown.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/nukeopscmd.rsi/equipped-OUTERCLOTHING.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/nukeopscmd.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/nukeopscmd.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/rnd.rsi/equipped-OUTERCLOTHING.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/rnd.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/rnd.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/salvage.rsi/equipped-OUTERCLOTHING.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/salvage.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/salvage.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/security.rsi/equipped-OUTERCLOTHING.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/security.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/security.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/advanced.rsi/equipped-OUTERCLOTHING.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/advanced.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/advanced.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/apocryphal.rsi/equipped-OUTERCLOTHING.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/apocryphal.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/apocryphal.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/atmospheric.rsi/equipped-OUTERCLOTHING.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/atmospheric.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/atmospheric.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/civillian.rsi/equipped-OUTERCLOTHING.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/civillian.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/civillian.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/cmo.rsi/equipped-OUTERCLOTHING.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/cmo.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/cmo.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/corporate.rsi/equipped-OUTERCLOTHING.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/corporate.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/corporate.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/engineer.rsi/equipped-OUTERCLOTHING.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/engineer.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/engineer.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/engineer2.rsi/equipped-OUTERCLOTHING.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/engineer2.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/engineer2.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/hos.rsi/equipped-OUTERCLOTHING.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/hos.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/hos.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/magnate.rsi/equipped-OUTERCLOTHING.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/magnate.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/magnate.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/medical.rsi/equipped-OUTERCLOTHING.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/medical.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/medical.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/medical2.rsi/equipped-OUTERCLOTHING.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/medical2.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/medical2.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/miner.rsi/equipped-OUTERCLOTHING.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/miner.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/miner.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/nakamuraengineer.rsi/equipped-OUTERCLOTHING.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/nakamuraengineer.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/nakamuraengineer.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/nukeops.rsi/equipped-OUTERCLOTHING.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/nukeops.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/nukeops.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/nukeopsclown.rsi/equipped-OUTERCLOTHING.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/nukeopsclown.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/nukeopsclown.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/nukeopscmd.rsi/equipped-OUTERCLOTHING.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/nukeopscmd.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/nukeopscmd.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/pmc.rsi/equipped-OUTERCLOTHING.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/pmc.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/pmc.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/rnd.rsi/equipped-OUTERCLOTHING.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/rnd.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/rnd.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/rnd2.rsi/equipped-OUTERCLOTHING.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/rnd2.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/rnd2.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/salvage.rsi/equipped-OUTERCLOTHING.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/salvage.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/salvage.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/security.rsi/equipped-OUTERCLOTHING.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/security.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/security.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/sstcmd.rsi/equipped-OUTERCLOTHING.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/sstcmd.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/sstcmd.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/sstsupport.rsi/equipped-OUTERCLOTHING.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/sstsupport.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/sstsupport.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Shoes/advanced.rsi/equipped-FEET.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Shoes/advanced.rsi/icon-on.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Shoes/advanced.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Shoes/advanced.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Shoes/advanced.rsi/on-equipped-FEET.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Shoes/apocryphal.rsi/equipped-FEET.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Shoes/apocryphal.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Shoes/apocryphal.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Shoes/atmospheric.rsi/equipped-FEET.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Shoes/atmospheric.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Shoes/atmospheric.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Shoes/civillian.rsi/equipped-FEET.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Shoes/civillian.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Shoes/civillian.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Shoes/cmo.rsi/equipped-FEET.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Shoes/cmo.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Shoes/cmo.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Shoes/corporate.rsi/equipped-FEET.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Shoes/corporate.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Shoes/corporate.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Shoes/engineer.rsi/equipped-FEET.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Shoes/engineer.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Shoes/engineer.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Shoes/hos.rsi/equipped-FEET.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Shoes/hos.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Shoes/hos.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Shoes/magnate.rsi/equipped-FEET.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Shoes/magnate.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Shoes/magnate.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Shoes/medical.rsi/equipped-FEET.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Shoes/medical.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Shoes/medical.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Shoes/miner.rsi/equipped-FEET.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Shoes/miner.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Shoes/miner.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Shoes/nukeops.rsi/equipped-FEET.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Shoes/nukeops.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Shoes/nukeops.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Shoes/nukeopsclown.rsi/equipped-FEET.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Shoes/nukeopsclown.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Shoes/nukeopsclown.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Shoes/nukeopscmd.rsi/equipped-FEET.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Shoes/nukeopscmd.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Shoes/nukeopscmd.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Shoes/rnd.rsi/equipped-FEET.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Shoes/rnd.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Shoes/rnd.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Shoes/salvage.rsi/equipped-FEET.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Shoes/salvage.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Shoes/salvage.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Shoes/security.rsi/equipped-FEET.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Shoes/security.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Clothing/Shoes/security.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Modules/carry.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Modules/carry.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Modules/engivisor.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Modules/engivisor.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Modules/flashlight.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Modules/flashlight.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Modules/gps.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Modules/gps.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Modules/medhud.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Modules/medhud.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Modules/modstorage.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Modules/modstorage.rsi/storage.png create mode 100644 Resources/Textures/Backmen/Modsuits/Modules/modstorage.rsi/storagesmall.png create mode 100644 Resources/Textures/Backmen/Modsuits/Modules/modstorage.rsi/storagesyndie.png create mode 100644 Resources/Textures/Backmen/Modsuits/Modules/modstorage.rsi/storagesyndiesmall.png create mode 100644 Resources/Textures/Backmen/Modsuits/Modules/radiator.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Modules/radiator.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Modules/reactiveboots.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Modules/reactiveboots.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Modules/sciencehud.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Modules/sciencehud.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Modules/sechud.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Modules/sechud.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/Modules/trayscanner.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/Modules/trayscanner.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/constructing_modsuit.rsi/CAP.png create mode 100644 Resources/Textures/Backmen/Modsuits/constructing_modsuit.rsi/CE.png create mode 100644 Resources/Textures/Backmen/Modsuits/constructing_modsuit.rsi/CMO.png create mode 100644 Resources/Textures/Backmen/Modsuits/constructing_modsuit.rsi/CORE-equip0.png create mode 100644 Resources/Textures/Backmen/Modsuits/constructing_modsuit.rsi/CORE-equip1.png create mode 100644 Resources/Textures/Backmen/Modsuits/constructing_modsuit.rsi/CORE-equip2.png create mode 100644 Resources/Textures/Backmen/Modsuits/constructing_modsuit.rsi/CORE-equip3.png create mode 100644 Resources/Textures/Backmen/Modsuits/constructing_modsuit.rsi/CORE-equip4.png create mode 100644 Resources/Textures/Backmen/Modsuits/constructing_modsuit.rsi/CORE-equip5.png create mode 100644 Resources/Textures/Backmen/Modsuits/constructing_modsuit.rsi/CORE-equip6.png create mode 100644 Resources/Textures/Backmen/Modsuits/constructing_modsuit.rsi/CORE-equip7.png create mode 100644 Resources/Textures/Backmen/Modsuits/constructing_modsuit.rsi/CORE-equip8.png create mode 100644 Resources/Textures/Backmen/Modsuits/constructing_modsuit.rsi/HOS.png create mode 100644 Resources/Textures/Backmen/Modsuits/constructing_modsuit.rsi/boots.png create mode 100644 Resources/Textures/Backmen/Modsuits/constructing_modsuit.rsi/chestplate.png create mode 100644 Resources/Textures/Backmen/Modsuits/constructing_modsuit.rsi/gauntlets.png create mode 100644 Resources/Textures/Backmen/Modsuits/constructing_modsuit.rsi/helmet.png create mode 100644 Resources/Textures/Backmen/Modsuits/constructing_modsuit.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/constructing_modsuit.rsi/mod-core-plasma.png create mode 100644 Resources/Textures/Backmen/Modsuits/constructing_modsuit.rsi/mod-core.png create mode 100644 Resources/Textures/Backmen/Modsuits/constructing_modsuit.rsi/paintkit.png create mode 100644 Resources/Textures/Backmen/Modsuits/modsuit_fabricator.rsi/building.png create mode 100644 Resources/Textures/Backmen/Modsuits/modsuit_fabricator.rsi/icon.png create mode 100644 Resources/Textures/Backmen/Modsuits/modsuit_fabricator.rsi/inserting.png create mode 100644 Resources/Textures/Backmen/Modsuits/modsuit_fabricator.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/modsuit_fabricator.rsi/panel.png create mode 100644 Resources/Textures/Backmen/Modsuits/modsuit_fabricator.rsi/unlit.png create mode 100644 Resources/Textures/Backmen/Modsuits/plating.rsi/atmospheric-plating.png create mode 100644 Resources/Textures/Backmen/Modsuits/plating.rsi/ce-plating.png create mode 100644 Resources/Textures/Backmen/Modsuits/plating.rsi/civillian-plating.png create mode 100644 Resources/Textures/Backmen/Modsuits/plating.rsi/cmo-plating.png create mode 100644 Resources/Textures/Backmen/Modsuits/plating.rsi/engineering-plating.png create mode 100644 Resources/Textures/Backmen/Modsuits/plating.rsi/magnate-plating.png create mode 100644 Resources/Textures/Backmen/Modsuits/plating.rsi/medical-plating.png create mode 100644 Resources/Textures/Backmen/Modsuits/plating.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/plating.rsi/rnd-plating.png create mode 100644 Resources/Textures/Backmen/Modsuits/plating.rsi/security-plating.png create mode 100644 Resources/Textures/Backmen/Modsuits/suit_storage.rsi/base.png create mode 100644 Resources/Textures/Backmen/Modsuits/suit_storage.rsi/door.png create mode 100644 Resources/Textures/Backmen/Modsuits/suit_storage.rsi/locked.png create mode 100644 Resources/Textures/Backmen/Modsuits/suit_storage.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/suit_storage.rsi/welded.png create mode 100644 Resources/Textures/Backmen/Modsuits/suit_storage_syndie.rsi/base.png create mode 100644 Resources/Textures/Backmen/Modsuits/suit_storage_syndie.rsi/door.png create mode 100644 Resources/Textures/Backmen/Modsuits/suit_storage_syndie.rsi/locked.png create mode 100644 Resources/Textures/Backmen/Modsuits/suit_storage_syndie.rsi/meta.json create mode 100644 Resources/Textures/Backmen/Modsuits/suit_storage_syndie.rsi/welded.png diff --git a/Resources/Audio/Backmen/Modsuits/ballin.ogg b/Resources/Audio/Backmen/Modsuits/ballin.ogg new file mode 100644 index 0000000000000000000000000000000000000000..1f848817234e01e1e741c7218988702135f35b93 GIT binary patch literal 5608 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 literal 0 HcmV?d00001 diff --git a/Resources/Audio/Backmen/Modsuits/ballout.ogg b/Resources/Audio/Backmen/Modsuits/ballout.ogg new file mode 100644 index 0000000000000000000000000000000000000000..da6e6acd175a86772352969839b44ad67a40d348 GIT binary patch literal 5712 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 literal 0 HcmV?d00001 diff --git a/Resources/Prototypes/_Backmen/Modsuits/Clothing/boots.yml b/Resources/Prototypes/_Backmen/Modsuits/Clothing/boots.yml new file mode 100644 index 00000000000..b7102c1d8c5 --- /dev/null +++ b/Resources/Prototypes/_Backmen/Modsuits/Clothing/boots.yml @@ -0,0 +1,534 @@ + - type: entity + parent: ClothingShoesBase + id: ClothingBootsModsuitCESealed + noSpawn: true + name: salvage modsuit helmet + description: Special hardsuit helmet, made for the captain of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Shoes/advanced.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Shoes/advanced.rsi + equipSound: /Audio/Backmen/Modsuits/ballin.ogg + unequipSound: /Audio/Backmen/Modsuits/ballout.ogg + - type: Armor + modifiers: + coefficients: + Shock: 0.8 + Heat: 0.8 + - type: PressureProtection + highPressureMultiplier: 0.05 + lowPressureMultiplier: 200 + - type: ToggleableClothing + clothingPrototype: ClothingHeadHelmetModsuitCESealed + slot: head + requiredSlot: feet + - type: Magboots + toggleAction: ActionToggleMagbootsModsuitAdvanced + - type: ClothingSpeedModifier + walkModifier: 0.9 + sprintModifier: 0.9 + enabled: false + - type: NoSlip + - type: Tag + tags: + - WhitelistChameleon + + - type: entity + id: ActionToggleMagbootsModsuitAdvanced + parent: ActionToggleMagboots + noSpawn: true + components: + - type: InstantAction + icon: { sprite: Backmen/Modsuits/Clothing/Shoes/advanced.rsi, state: icon } + iconOn: Backmen/Modsuits/Clothing/Shoes/advanced.rsi/icon-on.png + + - type: entity + parent: ClothingShoesBase + id: ClothingBootsModsuitEngineerSealed + noSpawn: true + name: salvage modsuit helmet + description: Special hardsuit helmet, made for the captain of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Shoes/engineer.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Shoes/engineer.rsi + equipSound: /Audio/Backmen/Modsuits/ballin.ogg + unequipSound: /Audio/Backmen/Modsuits/ballout.ogg + - type: Armor + modifiers: + coefficients: + Blunt: 0.95 + Slash: 0.95 + Piercing: 0.95 + Shock: 0.8 + - type: PressureProtection + highPressureMultiplier: 0.05 + lowPressureMultiplier: 200 + - type: ToggleableClothing + clothingPrototype: ClothingHeadHelmetModsuitEngineerSealed + slot: head + requiredSlot: feet + + - type: entity + parent: ClothingShoesBase + id: ClothingBootsModsuitRNDSealed + noSpawn: true + name: salvage modsuit helmet + description: Special hardsuit helmet, made for the captain of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Shoes/rnd.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Shoes/rnd.rsi + equipSound: /Audio/Backmen/Modsuits/ballin.ogg + unequipSound: /Audio/Backmen/Modsuits/ballout.ogg + - type: Armor + modifiers: + coefficients: + Blunt: 0.9 + Slash: 0.9 + Shock: 0.8 + - type: PressureProtection + highPressureMultiplier: 0.05 + lowPressureMultiplier: 200 + - type: ToggleableClothing + clothingPrototype: ClothingHeadHelmetModsuitRNDSealed + slot: head + requiredSlot: feet + + - type: entity + parent: ClothingShoesBase + id: ClothingBootsModsuitAtmosphericsSealed + noSpawn: true + name: salvage modsuit helmet + description: Special hardsuit helmet, made for the captain of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Shoes/atmospheric.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Shoes/atmospheric.rsi + equipSound: /Audio/Backmen/Modsuits/ballin.ogg + unequipSound: /Audio/Backmen/Modsuits/ballout.ogg + - type: Armor + modifiers: + coefficients: + Blunt: 0.9 + Slash: 0.9 + Shock: 0.8 + Heat: 0.85 + - type: PressureProtection + highPressureMultiplier: 0.05 + lowPressureMultiplier: 200 + - type: ToggleableClothing + clothingPrototype: ClothingHeadHelmetModsuitAtmosphericsSealed + slot: head + requiredSlot: feet + + - type: entity + parent: ClothingShoesBase + id: ClothingBootsModsuitMedicalSealed + noSpawn: true + name: salvage modsuit helmet + description: Special hardsuit helmet, made for the captain of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Shoes/medical.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Shoes/medical.rsi + equipSound: /Audio/Backmen/Modsuits/ballin.ogg + unequipSound: /Audio/Backmen/Modsuits/ballout.ogg + - type: Armor + modifiers: + coefficients: + Blunt: 0.95 + Slash: 0.95 + Piercing: 0.95 + Shock: 0.8 + Heat: 0.85 + - type: PressureProtection + highPressureMultiplier: 0.05 + lowPressureMultiplier: 200 + - type: ToggleableClothing + clothingPrototype: ClothingHeadHelmetModsuitMedicalSealed + slot: head + requiredSlot: feet + + - type: entity + parent: ClothingShoesBase + id: ClothingBootsModsuitParamedicSealed + noSpawn: true + name: salvage modsuit helmet + description: Special hardsuit helmet, made for the captain of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Shoes/cmo.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Shoes/cmo.rsi + equipSound: /Audio/Backmen/Modsuits/ballin.ogg + unequipSound: /Audio/Backmen/Modsuits/ballout.ogg + - type: Armor + modifiers: + coefficients: + Blunt: 0.9 + Slash: 0.9 + Piercing: 0.9 + Shock: 0.8 + Heat: 0.8 + - type: PressureProtection + highPressureMultiplier: 0.05 + lowPressureMultiplier: 200 + - type: ToggleableClothing + clothingPrototype: ClothingHeadHelmetModsuitParamedicSealed + slot: head + requiredSlot: feet + + - type: entity + parent: ClothingShoesBase + id: ClothingBootsModsuitCivillianSealed + noSpawn: true + name: salvage modsuit helmet + description: Special hardsuit helmet, made for the captain of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Shoes/civillian.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Shoes/civillian.rsi + equipSound: /Audio/Backmen/Modsuits/ballin.ogg + unequipSound: /Audio/Backmen/Modsuits/ballout.ogg + - type: PressureProtection + highPressureMultiplier: 0.05 + lowPressureMultiplier: 200 + - type: ToggleableClothing + clothingPrototype: ClothingHeadHelmetModsuitCivillianSealed + slot: head + requiredSlot: feet + + - type: entity + parent: ClothingShoesBase + id: ClothingBootsModsuitMagnateSealed + noSpawn: true + name: salvage modsuit helmet + description: Special hardsuit helmet, made for the captain of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Shoes/magnate.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Shoes/magnate.rsi + equipSound: /Audio/Backmen/Modsuits/ballin.ogg + unequipSound: /Audio/Backmen/Modsuits/ballout.ogg + - type: Armor + modifiers: + coefficients: + Blunt: 0.95 + Slash: 0.95 + Piercing: 0.95 + Shock: 0.8 + Heat: 0.8 + - type: PressureProtection + highPressureMultiplier: 0.05 + lowPressureMultiplier: 200 + - type: ToggleableClothing + clothingPrototype: ClothingHeadHelmetModsuitMagnateSealed + slot: head + requiredSlot: feet + - type: NoSlip + - type: Tag + tags: + - WhitelistChameleon + + - type: entity + parent: ClothingShoesBase + id: ClothingBootsModsuitSecuritySealed + noSpawn: true + name: salvage modsuit helmet + description: Special hardsuit helmet, made for the captain of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Shoes/security.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Shoes/security.rsi + equipSound: /Audio/Backmen/Modsuits/ballin.ogg + unequipSound: /Audio/Backmen/Modsuits/ballout.ogg + - type: Armor + modifiers: + coefficients: + Blunt: 0.95 + Slash: 0.95 + Piercing: 0.95 + Shock: 0.8 + - type: PressureProtection + highPressureMultiplier: 0.05 + lowPressureMultiplier: 200 + - type: ToggleableClothing + clothingPrototype: ClothingHeadHelmetModsuitSecuritySealed + slot: head + requiredSlot: feet + - type: Tag + tags: + - WhitelistChameleon + + - type: entity + parent: ClothingShoesBase + id: ClothingBootsModsuitHOSSealed + noSpawn: true + name: salvage modsuit helmet + description: Special hardsuit helmet, made for the captain of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Shoes/hos.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Shoes/hos.rsi + equipSound: /Audio/Backmen/Modsuits/ballin.ogg + unequipSound: /Audio/Backmen/Modsuits/ballout.ogg + - type: Armor + modifiers: + coefficients: + Blunt: 0.95 + Slash: 0.95 + Piercing: 0.95 + Shock: 0.8 + - type: PressureProtection + highPressureMultiplier: 0.05 + lowPressureMultiplier: 200 + - type: ToggleableClothing + clothingPrototype: ClothingHeadHelmetModsuitHOSSealed + slot: head + requiredSlot: feet + - type: Tag + tags: + - WhitelistChameleon + + - type: entity + parent: ClothingShoesBase + id: ClothingBootsModsuitSalvageSealed + noSpawn: true + name: salvage modsuit helmet + description: Special hardsuit helmet, made for the captain of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Shoes/salvage.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Shoes/salvage.rsi + equipSound: /Audio/Backmen/Modsuits/ballin.ogg + unequipSound: /Audio/Backmen/Modsuits/ballout.ogg + - type: Armor + modifiers: + coefficients: + Blunt: 0.95 + Slash: 0.95 + Piercing: 0.95 + Shock: 0.8 + - type: PressureProtection + highPressureMultiplier: 0.05 + lowPressureMultiplier: 200 + - type: ToggleableClothing + clothingPrototype: ClothingHeadHelmetModsuitSalvageSealed + slot: head + requiredSlot: feet + - type: Tag + tags: + - WhitelistChameleon + + - type: entity + parent: ClothingShoesBase + id: ClothingBootsModsuitMinerSealed + noSpawn: true + name: salvage modsuit helmet + description: Special hardsuit helmet, made for the captain of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Shoes/miner.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Shoes/miner.rsi + equipSound: /Audio/Backmen/Modsuits/ballin.ogg + unequipSound: /Audio/Backmen/Modsuits/ballout.ogg + - type: Armor + modifiers: + coefficients: + Blunt: 0.9 + Slash: 0.9 + Piercing: 0.9 + Shock: 0.8 + - type: PressureProtection + highPressureMultiplier: 0.05 + lowPressureMultiplier: 200 + - type: ToggleableClothing + clothingPrototype: ClothingHeadHelmetModsuitMinerSealed + slot: head + requiredSlot: feet + - type: Tag + tags: + - WhitelistChameleon + + - type: entity + parent: ClothingShoesBase + id: ClothingBootsModsuitOperativeSealed + noSpawn: true + name: salvage modsuit helmet + description: Special hardsuit helmet, made for the captain of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Shoes/nukeops.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Shoes/nukeops.rsi + equipSound: /Audio/Backmen/Modsuits/ballin.ogg + unequipSound: /Audio/Backmen/Modsuits/ballout.ogg + - type: Armor + modifiers: + coefficients: + Blunt: 0.95 + Slash: 0.95 + Piercing: 0.95 + Shock: 0.8 + - type: PressureProtection + highPressureMultiplier: 0.05 + lowPressureMultiplier: 200 + - type: ToggleableClothing + clothingPrototype: ClothingHeadHelmetModsuitOperativeSealed + slot: head + requiredSlot: feet + - type: GasTank + outputPressure: 42.6 + air: + # 2 minutes of thrust + volume: 0.75 + temperature: 293.15 + moles: + - 0.153853429 # oxygen + - 0.153853429 # nitrogen + - type: ActivatableUI + key: enum.SharedGasTankUiKey.Key + - type: UserInterface + interfaces: + enum.SharedGasTankUiKey.Key: + type: GasTankBoundUserInterface + - type: Explosive + explosionType: Default + maxIntensity: 20 + - type: Jetpack + moleUsage: 0.00085 + - type: CanMoveInAir + - type: InputMover + toParent: true + - type: MovementSpeedModifier + weightlessAcceleration: 1 + weightlessFriction: 0.3 + weightlessModifier: 1.2 + - type: Tag + tags: + - WhitelistChameleon + + - type: entity + parent: ClothingBootsModsuitOperativeSealed + id: ClothingBootsModsuitOperativeCMDSealed + noSpawn: true + name: salvage modsuit helmet + description: Special hardsuit helmet, made for the captain of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Shoes/nukeopscmd.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Shoes/nukeopscmd.rsi + equipSound: /Audio/Backmen/Modsuits/ballin.ogg + unequipSound: /Audio/Backmen/Modsuits/ballout.ogg + - type: Armor + modifiers: + coefficients: + Blunt: 0.9 + Slash: 0.9 + Piercing: 0.9 + Shock: 0.8 + - type: ToggleableClothing + clothingPrototype: ClothingHeadHelmetModsuitOperativeCMDSealed + slot: head + requiredSlot: feet + - type: InputMover + toParent: true + - type: MovementSpeedModifier + weightlessAcceleration: 1.5 + weightlessFriction: 0.3 + weightlessModifier: 1.5 + + - type: entity + parent: ClothingBootsModsuitOperativeSealed + id: ClothingBootsModsuitCCSealed + noSpawn: true + name: salvage modsuit helmet + description: Special hardsuit helmet, made for the captain of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Shoes/corporate.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Shoes/corporate.rsi + equipSound: /Audio/Backmen/Modsuits/ballin.ogg + unequipSound: /Audio/Backmen/Modsuits/ballout.ogg + - type: ToggleableClothing + clothingPrototype: ClothingHeadHelmetModsuitCCSealed + slot: head + requiredSlot: feet + - type: Tag + tags: + - WhitelistChameleon + + - type: entity + parent: ClothingShoesBase + id: ClothingBootsModsuitHonkOperativeSealed + noSpawn: true + name: salvage modsuit helmet + description: Special hardsuit helmet, made for the captain of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Shoes/nukeopsclown.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Shoes/nukeopsclown.rsi + equipSound: /Audio/Backmen/Modsuits/ballin.ogg + unequipSound: /Audio/Backmen/Modsuits/ballout.ogg + - type: Armor + modifiers: + coefficients: + Blunt: 0.95 + Slash: 0.95 + Piercing: 0.95 + Shock: 0.8 + - type: PressureProtection + highPressureMultiplier: 0.05 + lowPressureMultiplier: 200 + - type: ToggleableClothing + clothingPrototype: ClothingHeadHelmetModsuitHonkOperativeSealed + slot: head + requiredSlot: feet + - type: Tag + tags: + - WhitelistChameleon + + - type: entity + parent: ClothingShoesBase + id: ClothingBootsModsuitApocryphalSealed + noSpawn: true + name: salvage modsuit helmet + description: Special hardsuit helmet, made for the captain of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Shoes/apocryphal.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Shoes/apocryphal.rsi + equipSound: /Audio/Backmen/Modsuits/ballin.ogg + unequipSound: /Audio/Backmen/Modsuits/ballout.ogg + - type: Armor + modifiers: + coefficients: + Shock: 0.1 + Heat: 0.1 + - type: PressureProtection + highPressureMultiplier: 0.05 + lowPressureMultiplier: 200 + - type: ToggleableClothing + clothingPrototype: ClothingHeadHelmetModsuitApocryphalSealed + slot: head + requiredSlot: feet + - type: NoSlip + - type: Tag + tags: + - WhitelistChameleon diff --git a/Resources/Prototypes/_Backmen/Modsuits/Clothing/chestplate.yml b/Resources/Prototypes/_Backmen/Modsuits/Clothing/chestplate.yml new file mode 100644 index 00000000000..6a2951262b2 --- /dev/null +++ b/Resources/Prototypes/_Backmen/Modsuits/Clothing/chestplate.yml @@ -0,0 +1,685 @@ +- type: entity #мосьюты + parent: ClothingOuterHardsuitBase + id: ClothingOuterChestplateModsuitSealedBase + name: marine modsuit + abstract: true + description: A special suit that protects against hazardous, low pressure environments. Has radiation shielding. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Obsolete/OuterClothing/advanced.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Obsolete/OuterClothing/advanced.rsi + equipSound: /Audio/Backmen/Modsuits/ballin.ogg + unequipSound: /Audio/Backmen/Modsuits/ballout.ogg + - type: PressureProtection + highPressureMultiplier: 0.00002 + lowPressureMultiplier: 1000 + - type: ToggleableClothing + clothingPrototype: ClothingGauntletsModsuitCESealed + requiredSlot: outerClothing + slot: gloves + - type: TemperatureProtection + coefficient: 0.00001 + - type: ClothingSpeedModifier + walkModifier: 1 + sprintModifier: 1 + # - type: QualityOfItem + # qualityWeights: + # 0: 0 + # 1: 0 + # 2: 0 + # 3: 80 + # 4: 20 + # 5: 0 + # 6: 0 + # СВЕРХУ ЭТО РАЗКОММЕНТИТь!!! + +- type: entity #мосьюты + parent: ClothingOuterChestplateModsuitSealedBase + id: ClothingOuterChestplateModsuitCESealed + name: marine modsuit + description: A special suit that protects against hazardous, low pressure environments. Has radiation shielding. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Obsolete/OuterClothing/advanced.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Obsolete/OuterClothing/advanced.rsi + - type: PressureProtection + highPressureMultiplier: 0.000002 + lowPressureMultiplier: 1000 + - type: ExplosionResistance + damageCoefficient: 0.15 + - type: Armor + modifiers: + coefficients: + Blunt: 0.65 + Slash: 0.75 + Piercing: 0.75 + Shock: 0.2 + Caustic: 0.2 + Heat: 0.35 + Radiation: 0 + Stamina: 0.85 ## Stamina resistance + Cold: 0.35 + - type: ClothingSpeedModifier + walkModifier: 0.9 + sprintModifier: 0.9 + - type: ToggleableClothing + clothingPrototype: ClothingGauntletsModsuitCESealed + requiredSlot: outerClothing + slot: gloves + - type: Insulated + - type: TemperatureProtection + coefficient: 0.00000001 + +- type: entity + parent: ClothingOuterChestplateModsuitSealedBase + id: ClothingOuterChestplateModsuitEngineerSealed + name: marine modsuit + description: A special suit that protects against hazardous, low pressure environments. Has radiation shielding. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Obsolete/OuterClothing/engineer.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Obsolete/OuterClothing/engineer.rsi + - type: PressureProtection + highPressureMultiplier: 0.000001 + lowPressureMultiplier: 1000 + - type: ExplosionResistance + damageCoefficient: 0.25 + - type: Armor + modifiers: + coefficients: + Blunt: 0.8 + Slash: 0.8 + Piercing: 0.85 + Shock: 0.4 + Heat: 0.8 + Cold: 0.8 + Caustic: 0.4 + Radiation: 0.2 + Stamina: 0.85 ## Stamina resistance + - type: ClothingSpeedModifier + walkModifier: 0.85 + sprintModifier: 0.85 + - type: ToggleableClothing + clothingPrototype: ClothingGauntletsModsuitEngineerSealed + requiredSlot: outerClothing + slot: gloves + - type: Insulated + - type: TemperatureProtection + coefficient: 0.00001 + +- type: entity + parent: ClothingOuterChestplateModsuitSealedBase + id: ClothingOuterChestplateModsuitRNDSealed + name: marine modsuit + description: A special suit that protects against hazardous, low pressure environments. Has radiation shielding. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Obsolete/OuterClothing/rnd.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Obsolete/OuterClothing/rnd.rsi + - type: PressureProtection + highPressureMultiplier: 0.00003 + lowPressureMultiplier: 1000 + - type: ExplosionResistance + damageCoefficient: 0.1 + - type: Armor + modifiers: + coefficients: + Blunt: 0.55 + Slash: 0.55 + Piercing: 0.95 + Caustic: 0.1 + Heat: 0.3 + Cold: 0.45 + Radiation: 0.3 + Shock: 0.5 + Stamina: 0.85 ## slow & fat + - type: ClothingSpeedModifier + walkModifier: 0.75 + sprintModifier: 0.75 + - type: ToggleableClothing + clothingPrototype: ClothingGauntletsModsuitRNDSealed + requiredSlot: outerClothing + slot: gloves + +- type: entity + parent: ClothingOuterChestplateModsuitSealedBase + id: ClothingOuterChestplateModsuitAtmosphericsSealed + name: marine modsuit + description: A special suit that protects against hazardous, low pressure environments. Has radiation shielding. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Obsolete/OuterClothing/atmospheric.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Obsolete/OuterClothing/atmospheric.rsi + - type: PressureProtection + highPressureMultiplier: 0.0000041 + lowPressureMultiplier: 1000 + - type: ExplosionResistance + damageCoefficient: 0.5 + - type: Armor + modifiers: + coefficients: + Blunt: 0.8 + Slash: 0.9 + Piercing: 0.9 + Caustic: 0.2 + Heat: 0.1 + Cold: 0.1 + Shock: 0.35 + Stamina: 0.85 ## Stamina resistance + - type: ClothingSpeedModifier + walkModifier: 0.85 + sprintModifier: 0.85 + - type: ToggleableClothing + clothingPrototype: ClothingGauntletsModsuitAtmosphericsSealed + requiredSlot: outerClothing + slot: gloves + - type: TemperatureProtection + coefficient: 0.0000001 + +- type: entity + parent: ClothingOuterChestplateModsuitSealedBase + id: ClothingOuterChestplateModsuitMedicalSealed + name: marine modsuit + description: A special suit that protects against hazardous, low pressure environments. Has radiation shielding. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Obsolete/OuterClothing/medical.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Obsolete/OuterClothing/medical.rsi + - type: TemperatureProtection + coefficient: 0.00001 + - type: ExplosionResistance + damageCoefficient: 0.9 + - type: Armor + modifiers: + coefficients: + Caustic: 0.3 + Heat: 0.9 + Cold: 0.9 + Shock: 0.9 + Stamina: 0.85 ## Stamina resistance + - type: ClothingSpeedModifier + walkModifier: 0.95 + sprintModifier: 0.95 + - type: ToggleableClothing + clothingPrototype: ClothingGauntletsModsuitMedicalSealed + requiredSlot: outerClothing + slot: gloves + +- type: entity + parent: ClothingOuterChestplateModsuitSealedBase + id: ClothingOuterChestplateModsuitParamedicSealed + name: marine modsuit + description: A special suit that protects against hazardous, low pressure environments. Has radiation shielding. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Obsolete/OuterClothing/cmo.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Obsolete/OuterClothing/cmo.rsi + - type: PressureProtection + highPressureMultiplier: 0.00001 + lowPressureMultiplier: 1000 + - type: ExplosionResistance + damageCoefficient: 0.6 + - type: Armor + modifiers: + coefficients: + Shock: 0.2 + Caustic: 0.1 + Blunt: 0.8 + Slash: 0.8 + Heat: 0.6 + Cold: 0.7 + Stamina: 0.85 ## Stamina resistance + - type: ToggleableClothing + clothingPrototype: ClothingGauntletsModsuitParamedicSealed + requiredSlot: outerClothing + slot: gloves + - type: ClothingSpeedModifier + walkModifier: 0.95 + sprintModifier: 0.95 + - type: TemperatureProtection + coefficient: 0.00001 + +- type: entity + parent: ClothingOuterChestplateModsuitSealedBase + id: ClothingOuterChestplateModsuitCivillianSealed + name: marine modsuit + description: A special suit that protects against hazardous, low pressure environments. Has radiation shielding. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Obsolete/OuterClothing/civillian.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Obsolete/OuterClothing/civillian.rsi + - type: PressureProtection + highPressureMultiplier: 0.00001 + lowPressureMultiplier: 1000 + - type: ExplosionResistance + damageCoefficient: 0.9 + - type: Armor + modifiers: + coefficients: + Blunt: 0.95 + Slash: 0.95 + Piercing: 0.95 + Heat: 0.95 + Cold: 0.8 + Shock: 0.5 + Caustic: 0.9 + Stamina: 0.85 ## Stamina resistance + - type: ClothingSpeedModifier + walkModifier: 0.9 + sprintModifier: 0.9 + - type: ToggleableClothing + clothingPrototype: ClothingGauntletsModsuitCivillianSealed + requiredSlot: outerClothing + slot: gloves + +- type: entity + parent: ClothingOuterChestplateModsuitSealedBase + id: ClothingOuterChestplateModsuitMagnateSealed + name: marine modsuit + description: A special suit that protects against hazardous, low pressure environments. Has radiation shielding. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Obsolete/OuterClothing/magnate.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Obsolete/OuterClothing/magnate.rsi + - type: PressureProtection + highPressureMultiplier: 0.000001 + lowPressureMultiplier: 1000 + - type: ExplosionResistance + damageCoefficient: 0.3 + - type: Armor + modifiers: + coefficients: + Blunt: 0.5 + Slash: 0.5 + Piercing: 0.5 + Caustic: 0.25 + Shock: 0.25 + Cold: 0.6 + Radiation: 0.25 + Heat: 0.6 + Stamina: 0.85 ## Stamina resistance + - type: ClothingSpeedModifier + walkModifier: 0.9 + sprintModifier: 0.9 + - type: ToggleableClothing + clothingPrototype: ClothingGauntletsModsuitMagnateSealed + requiredSlot: outerClothing + slot: gloves + +- type: entity + parent: ClothingOuterChestplateModsuitSealedBase + id: ClothingOuterChestplateModsuitSecuritySealed + name: marine modsuit + description: A special suit that protects against hazardous, low pressure environments. Has radiation shielding. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Obsolete/OuterClothing/security.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Obsolete/OuterClothing/security.rsi + - type: PressureProtection + highPressureMultiplier: 0.000035 + lowPressureMultiplier: 1000 + - type: ExplosionResistance + damageCoefficient: 0.3 + - type: Armor + modifiers: + coefficients: + Blunt: 0.75 + Slash: 0.75 + Cold: 0.8 + Piercing: 0.5 + Shock: 0.5 + Caustic: 0.7 + Stamina: 0.8 ## Stamina resistance + - type: ClothingSpeedModifier + walkModifier: 0.8 + sprintModifier: 0.8 + - type: ToggleableClothing + clothingPrototype: ClothingGauntletsModsuitSecuritySealed + requiredSlot: outerClothing + slot: gloves + + +- type: entity + parent: ClothingOuterChestplateModsuitSealedBase + id: ClothingOuterChestplateModsuitHOSSealed + name: marine modsuit + description: A special suit that protects against hazardous, low pressure environments. Has radiation shielding. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Obsolete/OuterClothing/hos.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Obsolete/OuterClothing/hos.rsi + - type: PressureProtection + highPressureMultiplier: 0.000035 + lowPressureMultiplier: 1000 + - type: ExplosionResistance + damageCoefficient: 0.3 + - type: Armor + modifiers: + coefficients: + Blunt: 0.45 + Slash: 0.45 + Piercing: 0.45 + Caustic: 0.45 + Cold: 0.7 + Shock: 0.5 + Heat: 0.7 + Stamina: 0.7 ## Stamina resistance + - type: ClothingSpeedModifier + walkModifier: 0.85 + sprintModifier: 0.85 + - type: ToggleableClothing + clothingPrototype: ClothingGauntletsModsuitHOSSealed + requiredSlot: outerClothing + slot: gloves + +- type: entity + parent: ClothingOuterChestplateModsuitSealedBase + id: ClothingOuterChestplateModsuitSalvageSealed + name: marine modsuit + description: A special suit that protects against hazardous, low pressure environments. Has radiation shielding. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Obsolete/OuterClothing/salvage.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Obsolete/OuterClothing/salvage.rsi + - type: PressureProtection + highPressureMultiplier: 0.000041 + lowPressureMultiplier: 1000 + - type: ExplosionResistance + damageCoefficient: 0.5 + - type: Armor + modifiers: + coefficients: + Blunt: 0.65 + Slash: 0.65 + Piercing: 0.8 + Caustic: 0.7 + Shock: 0.25 + Cold: 0.8 + Stamina: 0.85 ## Stamina resistance + Heat: 0.8 + - type: ClothingSpeedModifier + walkModifier: 0.85 + sprintModifier: 0.85 + - type: ToggleableClothing + clothingPrototype: ClothingGauntletsModsuitSalvageSealed + requiredSlot: outerClothing + slot: gloves + +- type: entity + parent: ClothingOuterChestplateModsuitSealedBase + id: ClothingOuterChestplateModsuitMinerSealed + name: marine modsuit + description: A special suit that protects against hazardous, low pressure environments. Has radiation shielding. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Obsolete/OuterClothing/miner.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Obsolete/OuterClothing/miner.rsi + - type: PressureProtection + highPressureMultiplier: 0.00005 + lowPressureMultiplier: 1000 + - type: ExplosionResistance + damageCoefficient: 0.25 + - type: Armor + modifiers: + coefficients: + Blunt: 0.5 + Slash: 0.5 + Piercing: 0.8 + Caustic: 0.65 + Heat: 0.5 + Radiation: 0.4 + Stamina: 0.85 ## Stamina resistance + - type: ClothingSpeedModifier + walkModifier: 0.85 + sprintModifier: 0.85 + - type: ToggleableClothing + clothingPrototype: ClothingGauntletsModsuitMinerSealed + requiredSlot: outerClothing + slot: gloves + +- type: entity + parent: ClothingOuterChestplateModsuitSealedBase + id: ClothingOuterChestplateModsuitOperativeSealed + name: marine modsuit + description: A special suit that protects against hazardous, low pressure environments. Has radiation shielding. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Obsolete/OuterClothing/nukeops.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Obsolete/OuterClothing/nukeops.rsi + - type: PressureProtection + highPressureMultiplier: 0.000000025 + lowPressureMultiplier: 1000 + - type: ExplosionResistance + damageCoefficient: 0.3 + - type: Armor + modifiers: + coefficients: + Blunt: 0.5 + Slash: 0.5 + Piercing: 0.45 + Caustic: 0.3 + Shock: 0.3 + Cold: 0.5 + Heat: 0.5 + Radiation: 0.25 + Stamina: 0.45 # Stamina resistance + - type: ClothingSpeedModifier + walkModifier: 0.9 + sprintModifier: 0.9 + - type: ToggleableClothing + clothingPrototype: ClothingGauntletsModsuitOperativeSealed + requiredSlot: outerClothing + slot: gloves + - type: GasTank + outputPressure: 42.6 + air: + # 2 minutes of thrust + volume: 0.75 + temperature: 293.15 + moles: + - 0.153853429 # oxygen + - 0.153853429 # nitrogen + - type: ActivatableUI + key: enum.SharedGasTankUiKey.Key + - type: UserInterface + interfaces: + enum.SharedGasTankUiKey.Key: + type: GasTankBoundUserInterface + - type: Explosive + explosionType: Default + maxIntensity: 20 + - type: Jetpack + moleUsage: 0.00085 + - type: CanMoveInAir + - type: InputMover + toParent: true + - type: MovementSpeedModifier + weightlessAcceleration: 1.1 + weightlessFriction: 0.3 + weightlessModifier: 1.1 + - type: Tag + tags: + - WhitelistChameleon + +- type: entity + parent: ClothingOuterChestplateModsuitOperativeSealed + id: ClothingOuterChestplateModsuitHonkOperativeSealed + name: marine modsuit + description: A special suit that protects against hazardous, low pressure environments. Has radiation shielding. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Obsolete/OuterClothing/nukeopsclown.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Obsolete/OuterClothing/nukeopsclown.rsi + - type: ToggleableClothing + clothingPrototype: ClothingGauntletsModsuitHonkOperativeSealed + requiredSlot: outerClothing + slot: gloves + +- type: entity + parent: ClothingOuterChestplateModsuitOperativeSealed + id: ClothingOuterChestplateModsuitCCSealed + name: marine modsuit + description: A special suit that protects against hazardous, low pressure environments. Has radiation shielding. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Obsolete/OuterClothing/corporate.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Obsolete/OuterClothing/corporate.rsi + - type: ToggleableClothing + clothingPrototype: ClothingGauntletsModsuitCCSealed + requiredSlot: outerClothing + slot: gloves + - type: Armor + modifiers: + coefficients: + Blunt: 0.5 + Slash: 0.5 + Piercing: 0.5 + Caustic: 0.2 + Heat: 0.5 + Radiation: 0.5 + Stamina: 0.85 ## Stamina resistance + +- type: entity + parent: ClothingOuterChestplateModsuitSealedBase + id: ClothingOuterChestplateModsuitApocryphalSealed + name: marine modsuit + description: A special suit that protects against hazardous, low pressure environments. Has radiation shielding. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Obsolete/OuterClothing/apocryphal.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Obsolete/OuterClothing/apocryphal.rsi + - type: PressureProtection + highPressureMultiplier: 0.0000000000001 + lowPressureMultiplier: 1000 + - type: TemperatureProtection + coefficient: 0.000000000005 + - type: ExplosionResistance + damageCoefficient: 0.01 + - type: Armor + modifiers: + coefficients: + Blunt: 0.1 + Slash: 0.1 + Cold: 0.1 + Piercing: 0.1 + Shock: 0.2 + Caustic: 0.05 + Heat: 0.1 + Radiation: 0.1 + Stamina: 0.5 ## Stamina resistance + - type: ToggleableClothing + clothingPrototype: ClothingGauntletsModsuitApocryphalSealed + requiredSlot: outerClothing + slot: gloves + - type: GasTank + outputPressure: 42.6 + air: + # 2 minutes of thrust + volume: 0.75 + temperature: 293.15 + moles: + - 0.153853429 # oxygen + - 0.153853429 # nitrogen + - type: ActivatableUI + key: enum.SharedGasTankUiKey.Key + - type: UserInterface + interfaces: + enum.SharedGasTankUiKey.Key: + type: GasTankBoundUserInterface + - type: Explosive + explosionType: Default + maxIntensity: 20 + - type: Jetpack + moleUsage: 0.00085 + - type: CanMoveInAir + - type: InputMover + toParent: true + - type: MovementSpeedModifier + weightlessAcceleration: 1.5 + weightlessFriction: 0.3 + weightlessModifier: 1.5 + - type: Tag + tags: + - WhitelistChameleon + +- type: entity + parent: ClothingOuterChestplateModsuitSealedBase + id: ClothingOuterChestplateModsuitOperativeCMDSealed + name: marine modsuit + description: A special suit that protects against hazardous, low pressure environments. Has radiation shielding. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Obsolete/OuterClothing/nukeopscmd.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Obsolete/OuterClothing/nukeopscmd.rsi + - type: PressureProtection + highPressureMultiplier: 0.00000000001 + lowPressureMultiplier: 1000 + - type: ExplosionResistance + damageCoefficient: 0.3 + - type: Armor + modifiers: + coefficients: + Blunt: 0.2 + Slash: 0.2 + Piercing: 0.2 + Caustic: 0 + Cold: 0.2 + Shock: 0 + Heat: 0.25 + Radiation: 0.15 + Stamina: 0.45 # Stamina resistance + - type: ClothingSpeedModifier + walkModifier: 0.9 + sprintModifier: 0.9 + - type: ToggleableClothing + clothingPrototype: ClothingGauntletsModsuitOperativeCMDSealed + requiredSlot: outerClothing + slot: gloves + - type: GasTank + outputPressure: 42.6 + air: + # 2 minutes of thrust + volume: 0.75 + temperature: 293.15 + moles: + - 0.153853429 # oxygen + - 0.153853429 # nitrogen + - type: ActivatableUI + key: enum.SharedGasTankUiKey.Key + - type: UserInterface + interfaces: + enum.SharedGasTankUiKey.Key: + type: GasTankBoundUserInterface + - type: Explosive + explosionType: Default + maxIntensity: 20 + - type: Jetpack + moleUsage: 0.00085 + - type: CanMoveInAir + - type: InputMover + toParent: true + - type: MovementSpeedModifier + weightlessAcceleration: 1.5 + weightlessFriction: 0.3 + weightlessModifier: 1.5 + - type: Tag + tags: + - WhitelistChameleon diff --git a/Resources/Prototypes/_Backmen/Modsuits/Clothing/control.yml b/Resources/Prototypes/_Backmen/Modsuits/Clothing/control.yml new file mode 100644 index 00000000000..2b02b4a5f0a --- /dev/null +++ b/Resources/Prototypes/_Backmen/Modsuits/Clothing/control.yml @@ -0,0 +1,527 @@ +- type: entity #Commented value in armor = overall defence + parent: ClothingBackpack + id: ClothingControlModsuitBase + abstract: true + components: + - type: Sprite + sprite: Backmen/Clothing/Back/Modsuits/advanced.rsi + - type: Clothing + sprite: Backmen/Clothing/Back/Modsuits/advanced.rsi + equipSound: /Audio/Backmen/Modsuits/ballin.ogg + unequipSound: /Audio/Backmen/Modsuits/ballout.ogg + - type: Armor + modifiers: + coefficients: + Shock: 0.7 + Caustic: 0.7 + - type: ToggleableClothing + clothingPrototype: ClothingOuterChestplateModsuitCESealed + requiredSlot: back + slot: outerClothing + - type: Storage + maxItemSize: Huge + grid: + - 0,0,6,3 + - type: PointLight + color: "#a0f1e8" + enabled: false + mask: /Textures/Effects/LightMasks/cone.png + radius: 12 + softness: 20 + autoRot: true + - type: UnpoweredFlashlight + - type: PowerCellSlot + cellSlotId: cell_slot + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + - type: ItemSlots + slots: + cell_slot: + name: power-cell-slot-component-slot-name-default + - type: LightBehaviour + behaviours: + - !type:FadeBehaviour + id: radiating + maxDuration: 2.0 + startValue: 3.0 + endValue: 2.0 + isLooped: true + reverseWhenFinished: true + - !type:PulseBehaviour + id: blinking + interpolate: Nearest + maxDuration: 1.0 + minValue: 0.1 + maxValue: 2.0 + isLooped: true + # - type: QualityOfItem + # qualityWeights: + # 0: 0 + # 1: 0 + # 2: 0 + # 3: 80 + # 4: 20 + # 5: 0 + # 6: 0 + # СВЕРХУ ЭТО РАЗКОММЕНТИТь!!! + +- type: entity + parent: ClothingControlModsuitBase + id: ClothingControlModsuitCESealed + name: Продвинутый Р.И.Г. + description: Усовершенствованная версия классического костюма Nakamura Engineering, сияющая белым, нержавеющим и огнестойким лаком. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Back/advanced.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Back/advanced.rsi + - type: ToggleableClothing + clothingPrototype: ClothingOuterChestplateModsuitCESealed + - type: Storage + grid: + - 0,0,8,4 + - type: PointLight + color: "#a0f1e8" + enabled: false + mask: /Textures/Effects/LightMasks/cone.png + radius: 12 + softness: 20 + autoRot: true + - type: Construction + graph: ModsuitAdvanced + node: modsuitadvanced + - type: StaticPrice + price: 67000 + +- type: entity + parent: ClothingControlModsuitBase + id: ClothingControlModsuitEngineerSealed + name: Инженерный Р.И.Г. + description: Инженерный костюм с высокой термостойкостью и устойчивостью к ударам тока. Классика Nakamura Engineering. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Back/engineer.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Back/engineer.rsi + - type: ToggleableClothing + clothingPrototype: ClothingOuterChestplateModsuitEngineerSealed + - type: Storage + grid: + - 0,0,8,4 + - type: PointLight + color: "#a0f1e8" + enabled: false + mask: /Textures/Effects/LightMasks/cone.png + radius: 12 + softness: 20 + autoRot: true + - type: Construction + graph: ModsuitEngineer + node: modsuitengineer + - type: StaticPrice + price: 5000 + +- type: entity + parent: ClothingControlModsuitBase + id: ClothingControlModsuitAtmosphericsSealed + name: Атмосферный Р.И.Г. + description: Атмосферостойкий костюм от Nakamura Engineering, обеспечивающий наивысшую термостойкость по сравнению с инженерным костюмом. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Back/atmospheric.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Back/atmospheric.rsi + - type: ToggleableClothing + clothingPrototype: ClothingOuterChestplateModsuitAtmosphericsSealed + - type: Storage + grid: + - 0,0,8,4 + - type: PointLight + color: "#a0f1e8" + enabled: false + mask: /Textures/Effects/LightMasks/cone.png + radius: 12 + softness: 20 + autoRot: true + - type: Construction + graph: ModsuitAtmospheric + node: modsuitatmospheric + - type: StaticPrice + price: 5500 + +- type: entity + parent: ClothingControlModsuitBase + id: ClothingControlModsuitRNDSealed + name: Исследовательский Р.И.Г. + description: Частный военный костюм EOD от Aussec Armory, предназначенный для исследования взрывных устройств. Громоздкий. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Back/rnd.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Back/rnd.rsi + - type: ToggleableClothing + clothingPrototype: ClothingOuterChestplateModsuitRNDSealed + requiredSlot: back + slot: outerClothing + - type: Storage + grid: + - 0,0,9,6 + - type: PointLight + color: "#a0f1e8" + enabled: false + mask: /Textures/Effects/LightMasks/cone.png + radius: 12 + softness: 20 + autoRot: true + - type: Construction + graph: ModsuitRND + node: modsuitrnd + - type: StaticPrice + price: 6500 + +- type: entity + parent: ClothingControlModsuitBase + id: ClothingControlModsuitMedicalSealed + name: Медицинский Р.И.Г. + description: Легкий костюм от DeForest Medical Corporation, упрощает передвижение. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Back/medical.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Back/medical.rsi + - type: ToggleableClothing + clothingPrototype: ClothingOuterChestplateModsuitMedicalSealed + - type: PointLight + color: "#a0f1e8" + enabled: false + mask: /Textures/Effects/LightMasks/cone.png + radius: 12 + softness: 20 + autoRot: true + - type: Construction + graph: ModsuitMedical + node: modsuitmedical + - type: StaticPrice + price: 4000 + +- type: entity + parent: ClothingControlModsuitBase + id: ClothingControlModsuitParamedicSealed + name: Спасательный Р.И.Г. + description: Усовершенствованная версия медицинского костюма DeForest Medical Corporation, разработанная для быстрого спасения тел из самых опасных сред. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Back/cmo.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Back/cmo.rsi + - type: ToggleableClothing + clothingPrototype: ClothingOuterChestplateModsuitParamedicSealed + - type: Storage + grid: + - 0,0,8,4 + - type: PointLight + color: "#a0f1e8" + enabled: false + mask: /Textures/Effects/LightMasks/cone.png + radius: 12 + softness: 20 + autoRot: true + - type: Construction + graph: ModsuitRescue + node: modsuitrescue + - type: StaticPrice + price: 8000 + +- type: entity + parent: ClothingControlModsuitBase + id: ClothingControlModsuitCivillianSealed + name: Гражданский Р.И.Г. + description: Костюм гражданского класса от Nakamura Engineering не предлагает ничего, кроме немного более быстрого передвижения чем другие костюмы. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Back/civillian.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Back/civillian.rsi + - type: ToggleableClothing + clothingPrototype: ClothingOuterChestplateModsuitCivillianSealed + - type: PointLight + color: "#a0f1e8" + enabled: false + mask: /Textures/Effects/LightMasks/cone.png + radius: 12 + softness: 20 + autoRot: true + - type: Construction + graph: ModsuitCivillian + node: modsuitcivillian + - type: StaticPrice + price: 2900 + +- type: entity + parent: ClothingControlModsuitBase + id: ClothingControlModsuitMagnateSealed + name: Роскошный Р.И.Г. + description: Необычный, очень защищенный костюм для капитанов Nanotrasen. Высокая защита от ударов тока, огня и кислоты, при этом обладая большой емкостью и высокой скоростью. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Back/magnate.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Back/magnate.rsi + - type: ToggleableClothing + clothingPrototype: ClothingOuterChestplateModsuitMagnateSealed + - type: Storage + grid: + - 0,0,8,4 + - type: PointLight + color: "#a0f1e8" + enabled: false + mask: /Textures/Effects/LightMasks/cone.png + radius: 12 + softness: 20 + autoRot: true + - type: Construction + graph: ModsuitMagnate + node: modsuitmagnates + - type: StaticPrice + price: 35000 # magnate = роскошный + +- type: entity + parent: ClothingControlModsuitBase + id: ClothingControlModsuitSecuritySealed + name: Охранный Р.И.Г. + description: Защитный костюм Apadyne Technologies, обеспечивающий защиту от ударов и пуль за счет вместимости. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Back/security.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Back/security.rsi + - type: ToggleableClothing + clothingPrototype: ClothingOuterChestplateModsuitSecuritySealed + - type: Storage + grid: + - 0,0,6,4 + - type: PointLight + color: "#a0f1e8" + enabled: false + mask: /Textures/Effects/LightMasks/cone.png + radius: 12 + softness: 20 + autoRot: true + - type: Construction + graph: ModsuitSecurity + node: modsuitsecurity + - type: StaticPrice + price: 5000 + +- type: entity + parent: ClothingControlModsuitBase + id: ClothingControlModsuitHOSSealed + name: Гвардейский Р.И.Г. + description: Усовершенствованный защитный костюм Apadyne Technologies, обеспечивающий большую скорость и защиту от огня, чем стандартная модель безопасности. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Back/hos.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Back/hos.rsi + - type: ToggleableClothing + clothingPrototype: ClothingOuterChestplateModsuitHOSSealed + - type: Storage + grid: + - 0,0,8,4 + - type: PointLight + color: "#a0f1e8" + enabled: false + mask: /Textures/Effects/LightMasks/cone.png + radius: 12 + softness: 20 + autoRot: true + - type: Construction + graph: ModsuitHOS + node: modsuithos + - type: StaticPrice + price: 10000 + +- type: entity + parent: ClothingControlModsuitBase + id: ClothingControlModsuitSalvageSealed + name: Утилизаторский Р.И.Г. + description: Стандартный Р.И.Г, необходимый утилизаторам в борьбе с местной фауной. Произведено "Накамура Инжениринг". + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Back/salvage.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Back/salvage.rsi + - type: ToggleableClothing + clothingPrototype: ClothingOuterChestplateModsuitSalvageSealed + - type: Storage + grid: + - 0,0,8,4 + - type: PointLight + color: "#a0f1e8" + enabled: false + mask: /Textures/Effects/LightMasks/cone.png + radius: 12 + softness: 20 + autoRot: true + - type: Construction + graph: ModsuitSalvage + node: modsuitsalvage + - type: StaticPrice + price: 4500 + +- type: entity + parent: ClothingControlModsuitBase + id: ClothingControlModsuitMinerSealed + name: Шахтёрский Р.И.Г. + description: Мощный шахтерский костюм Nanotrasen, используемый на планете Лаваленд. Редкость на космических станциях. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Back/miner.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Back/miner.rsi + - type: ToggleableClothing + clothingPrototype: ClothingOuterChestplateModsuitMinerSealed + - type: Storage + grid: + - 0,0,8,4 + - type: PointLight + color: "#a0f1e8" + enabled: false + mask: /Textures/Effects/LightMasks/cone.png + radius: 12 + softness: 20 + autoRot: true + - type: StaticPrice + price: 9000 + +- type: entity + parent: ClothingControlModsuitBase + id: ClothingControlModsuitOperativeSealed + name: Кроваво-красный Р.И.Г. + description: Р.И.Г., разработанный Мародёрами, предлагающий броню, признанную незаконной в болльшей части обозримого космоса. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Back/nukeops.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Back/nukeops.rsi + - type: ToggleableClothing + clothingPrototype: ClothingOuterChestplateModsuitOperativeSealed + - type: Storage + grid: + - 0,0,8,4 + - type: PointLight + color: "#a0f1e8" + enabled: false + mask: /Textures/Effects/LightMasks/cone.png + radius: 12 + softness: 20 + autoRot: true + - type: Tag + tags: + - WhitelistChameleon + - type: StaticPrice + price: 50000 + +- type: entity + parent: ClothingControlModsuitOperativeSealed + id: ClothingControlModsuitHonkOperativeSealed #same as nukeops + name: Кроваво-красный-забавный Р.И.Г. + description: Упоси вас господь, если вы найдёте этот Р.И.Г. на станции. Только смешным и одновременно опасным персонам разрешено надеть его. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Back/nukeopsclown.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Back/nukeopsclown.rsi + - type: ToggleableClothing + clothingPrototype: ClothingOuterChestplateModsuitHonkOperativeSealed + requiredSlot: back + slot: outerClothing + - type: Storage + grid: + - 0,0,8,4 + - type: PointLight + color: "#a0f1e8" + enabled: false + mask: /Textures/Effects/LightMasks/cone.png + radius: 12 + softness: 20 + autoRot: true + - type: StaticPrice + price: 65000 + +- type: entity + parent: ClothingControlModsuitBase + id: ClothingControlModsuitOperativeCMDSealed #20 tc dead squad almost + name: Кроваво-красно-серый Р.И.Г. + description: Р.И.Г., являющейся чуть улучшенным экземпляром обычного кроваво-красного Р.И.Г.а. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Back/nukeopscmd.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Back/nukeopscmd.rsi + - type: ToggleableClothing + clothingPrototype: ClothingOuterChestplateModsuitOperativeCMDSealed + - type: Storage + grid: + - 0,0,9,6 + - type: PointLight + color: "#a0f1e8" + enabled: false + mask: /Textures/Effects/LightMasks/cone.png + radius: 12 + softness: 20 + autoRot: true + - type: StaticPrice + price: 150000 + +- type: entity + parent: ClothingControlModsuitOperativeSealed #same as oper, only GM-s can spawn + id: ClothingControlModsuitCCSealed + name: Корпоративный Р.И.Г. + description: Продвинутый Р.И.Г, выдающийся особо отличившимся офицерам Nanotrasen. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Back/corporate.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Back/corporate.rsi + equipSound: /Audio/Items/Modsuits/ballin.ogg + unequipSound: /Audio/Items/Modsuits/ballout.ogg + - type: ToggleableClothing + clothingPrototype: ClothingOuterChestplateModsuitCCSealed + requiredSlot: back + slot: outerClothing + - type: PointLight + color: "#a0f1e8" + enabled: false + mask: /Textures/Effects/LightMasks/cone.png + radius: 12 + softness: 20 + autoRot: true + - type: StaticPrice + price: 80000 + +- type: entity + parent: ClothingControlModsuitBase + id: ClothingControlModsuitApocryphalSealed + name: Апокрифический Р.И.Г. + description: Р.И.Г. печально известного отряда. Способен выдержать почти прямой удар БСА. Само то, что бы пережить апокалипсис или устроить его. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Back/apocryphal.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Back/apocryphal.rsi + - type: ToggleableClothing + clothingPrototype: ClothingOuterChestplateModsuitApocryphalSealed + - type: Storage + grid: + - 0,0,9,6 + - type: PointLight + color: "#a0f1e8" + enabled: false + mask: /Textures/Effects/LightMasks/cone.png + radius: 12 + softness: 20 + autoRot: true + - type: StaticPrice + price: 150000 diff --git a/Resources/Prototypes/_Backmen/Modsuits/Clothing/gauntlets.yml b/Resources/Prototypes/_Backmen/Modsuits/Clothing/gauntlets.yml new file mode 100644 index 00000000000..748d5c806f4 --- /dev/null +++ b/Resources/Prototypes/_Backmen/Modsuits/Clothing/gauntlets.yml @@ -0,0 +1,467 @@ + - type: entity + parent: ClothingHandsBase + id: ClothingGauntletsModsuitCESealed + noSpawn: true + name: salvage modsuit helmet + description: Special hardsuit helmet, made for the captain of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Hands/advanced.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Hands/advanced.rsi + equipSound: /Audio/Backmen/Modsuits/ballin.ogg + unequipSound: /Audio/Backmen/Modsuits/ballout.ogg + - type: Armor + modifiers: + coefficients: + Blunt: 0.9 + Slash: 0.9 + Shock: 0.8 + Heat: 0.8 + - type: PressureProtection + highPressureMultiplier: 0.05 + lowPressureMultiplier: 200 + - type: ToggleableClothing + clothingPrototype: ClothingBootsModsuitCESealed + slot: shoes + requiredSlot: gloves + - type: Insulated + + - type: entity + parent: ClothingHandsBase + id: ClothingGauntletsModsuitEngineerSealed + noSpawn: true + name: salvage modsuit helmet + description: Special hardsuit helmet, made for the captain of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Hands/engineer.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Hands/engineer.rsi + equipSound: /Audio/Backmen/Modsuits/ballin.ogg + unequipSound: /Audio/Backmen/Modsuits/ballout.ogg + - type: Armor + modifiers: + coefficients: + Blunt: 0.95 + Slash: 0.95 + Piercing: 0.95 + Shock: 0.85 + - type: PressureProtection + highPressureMultiplier: 0.05 + lowPressureMultiplier: 200 + - type: ToggleableClothing + clothingPrototype: ClothingBootsModsuitEngineerSealed + slot: shoes + requiredSlot: gloves + - type: Insulated + + - type: entity + parent: ClothingHandsBase + id: ClothingGauntletsModsuitRNDSealed + noSpawn: true + name: salvage modsuit helmet + description: Special hardsuit helmet, made for the captain of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Hands/rnd.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Hands/rnd.rsi + equipSound: /Audio/Backmen/Modsuits/ballin.ogg + unequipSound: /Audio/Backmen/Modsuits/ballout.ogg + - type: Armor + modifiers: + coefficients: + Blunt: 0.9 + Slash: 0.9 + Piercing: 0.9 + Shock: 0.2 + Caustic: 0.2 + - type: PressureProtection + highPressureMultiplier: 0.05 + lowPressureMultiplier: 200 + - type: ToggleableClothing + clothingPrototype: ClothingBootsModsuitRNDSealed + slot: shoes + requiredSlot: gloves + + - type: entity + parent: ClothingHandsBase + id: ClothingGauntletsModsuitAtmosphericsSealed + noSpawn: true + name: salvage modsuit helmet + description: Special hardsuit helmet, made for the captain of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Hands/atmospheric.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Hands/atmospheric.rsi + equipSound: /Audio/Backmen/Modsuits/ballin.ogg + unequipSound: /Audio/Backmen/Modsuits/ballout.ogg + - type: Armor + modifiers: + coefficients: + Blunt: 0.9 + Slash: 0.9 + Shock: 0.85 + Heat: 0.85 + - type: PressureProtection + highPressureMultiplier: 0.05 + lowPressureMultiplier: 200 + - type: ToggleableClothing + clothingPrototype: ClothingBootsModsuitAtmosphericsSealed + slot: shoes + requiredSlot: gloves + - type: Insulated + + - type: entity + parent: ClothingHandsBase + id: ClothingGauntletsModsuitMedicalSealed + noSpawn: true + name: salvage modsuit helmet + description: Special hardsuit helmet, made for the captain of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Hands/medical.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Hands/medical.rsi + equipSound: /Audio/Backmen/Modsuits/ballin.ogg + unequipSound: /Audio/Backmen/Modsuits/ballout.ogg + - type: Armor + modifiers: + coefficients: + Blunt: 0.95 + Slash: 0.95 + Piercing: 0.95 + Shock: 0.85 + Heat: 0.9 + - type: PressureProtection + highPressureMultiplier: 0.05 + lowPressureMultiplier: 200 + - type: ToggleableClothing + clothingPrototype: ClothingBootsModsuitMedicalSealed + slot: shoes + requiredSlot: gloves + + - type: entity + parent: ClothingHandsBase + id: ClothingGauntletsModsuitParamedicSealed + noSpawn: true + name: salvage modsuit helmet + description: Special hardsuit helmet, made for the captain of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Hands/cmo.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Hands/cmo.rsi + equipSound: /Audio/Backmen/Modsuits/ballin.ogg + unequipSound: /Audio/Backmen/Modsuits/ballout.ogg + - type: Armor + modifiers: + coefficients: + Blunt: 0.9 + Slash: 0.9 + Piercing: 0.9 + Shock: 0.85 + Heat: 0.8 + - type: PressureProtection + highPressureMultiplier: 0.05 + lowPressureMultiplier: 200 + - type: ToggleableClothing + clothingPrototype: ClothingBootsModsuitParamedicSealed + slot: shoes + requiredSlot: gloves + + - type: entity + parent: ClothingHandsBase + id: ClothingGauntletsModsuitCivillianSealed + noSpawn: true + name: salvage modsuit helmet + description: Special hardsuit helmet, made for the captain of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Hands/civillian.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Hands/civillian.rsi + equipSound: /Audio/Backmen/Modsuits/ballin.ogg + unequipSound: /Audio/Backmen/Modsuits/ballout.ogg + - type: Armor + modifiers: + coefficients: + Heat: 0.9 + - type: PressureProtection + highPressureMultiplier: 0.05 + lowPressureMultiplier: 200 + - type: ToggleableClothing + clothingPrototype: ClothingBootsModsuitCivillianSealed + slot: shoes + requiredSlot: gloves + + - type: entity + parent: ClothingHandsBase + id: ClothingGauntletsModsuitMagnateSealed + noSpawn: true + name: salvage modsuit helmet + description: Special hardsuit helmet, made for the captain of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Hands/magnate.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Hands/magnate.rsi + equipSound: /Audio/Backmen/Modsuits/ballin.ogg + unequipSound: /Audio/Backmen/Modsuits/ballout.ogg + - type: Armor + modifiers: + coefficients: + Blunt: 0.9 + Slash: 0.9 + Piercing: 0.9 + Shock: 0.8 + Heat: 0.8 + - type: PressureProtection + highPressureMultiplier: 0.05 + lowPressureMultiplier: 200 + - type: ToggleableClothing + clothingPrototype: ClothingBootsModsuitMagnateSealed + slot: shoes + requiredSlot: gloves + - type: Insulated + + - type: entity + parent: ClothingHandsBase + id: ClothingGauntletsModsuitSecuritySealed + noSpawn: true + name: salvage modsuit helmet + description: Special hardsuit helmet, made for the captain of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Hands/security.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Hands/security.rsi + equipSound: /Audio/Backmen/Modsuits/ballin.ogg + unequipSound: /Audio/Backmen/Modsuits/ballout.ogg + - type: Armor + modifiers: + coefficients: + Blunt: 0.95 + Slash: 0.95 + Piercing: 0.95 + Shock: 0.8 + Heat: 0.8 + - type: PressureProtection + highPressureMultiplier: 0.05 + lowPressureMultiplier: 200 + - type: ToggleableClothing + clothingPrototype: ClothingBootsModsuitSecuritySealed + slot: shoes + requiredSlot: gloves + + - type: entity + parent: ClothingHandsBase + id: ClothingGauntletsModsuitHOSSealed + noSpawn: true + name: salvage modsuit helmet + description: Special hardsuit helmet, made for the captain of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Hands/hos.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Hands/hos.rsi + equipSound: /Audio/Backmen/Modsuits/ballin.ogg + unequipSound: /Audio/Backmen/Modsuits/ballout.ogg + - type: Armor + modifiers: + coefficients: + Blunt: 0.95 + Slash: 0.95 + Piercing: 0.95 + Shock: 0.8 + Heat: 0.8 + - type: PressureProtection + highPressureMultiplier: 0.05 + lowPressureMultiplier: 200 + - type: ToggleableClothing + clothingPrototype: ClothingBootsModsuitHOSSealed + slot: shoes + requiredSlot: gloves + - type: Insulated + + - type: entity + parent: ClothingHandsBase + id: ClothingGauntletsModsuitSalvageSealed + noSpawn: true + name: salvage modsuit helmet + description: Special hardsuit helmet, made for the captain of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Hands/salvage.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Hands/salvage.rsi + equipSound: /Audio/Backmen/Modsuits/ballin.ogg + unequipSound: /Audio/Backmen/Modsuits/ballout.ogg + - type: Armor + modifiers: + coefficients: + Blunt: 0.95 + Slash: 0.95 + Piercing: 0.95 + Shock: 0.8 + - type: PressureProtection + highPressureMultiplier: 0.05 + lowPressureMultiplier: 200 + - type: ToggleableClothing + clothingPrototype: ClothingBootsModsuitSalvageSealed + slot: shoes + requiredSlot: gloves + + - type: entity + parent: ClothingHandsBase + id: ClothingGauntletsModsuitMinerSealed + noSpawn: true + name: salvage modsuit helmet + description: Special hardsuit helmet, made for the captain of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Hands/miner.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Hands/miner.rsi + equipSound: /Audio/Backmen/Modsuits/ballin.ogg + unequipSound: /Audio/Backmen/Modsuits/ballout.ogg + - type: Armor + modifiers: + coefficients: + Blunt: 0.9 + Slash: 0.9 + Piercing: 0.9 + Shock: 0.8 + - type: PressureProtection + highPressureMultiplier: 0.05 + lowPressureMultiplier: 200 + - type: ToggleableClothing + clothingPrototype: ClothingBootsModsuitMinerSealed + slot: shoes + requiredSlot: gloves + - type: Insulated + + - type: entity + parent: ClothingHandsBase + id: ClothingGauntletsModsuitOperativeSealed + noSpawn: true + name: salvage modsuit helmet + description: Special hardsuit helmet, made for the captain of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Hands/nukeops.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Hands/nukeops.rsi + equipSound: /Audio/Backmen/Modsuits/ballin.ogg + unequipSound: /Audio/Backmen/Modsuits/ballout.ogg + - type: Armor + modifiers: + coefficients: + Blunt: 0.95 + Slash: 0.95 + Piercing: 0.95 + Shock: 0.8 + - type: PressureProtection + highPressureMultiplier: 0.05 + lowPressureMultiplier: 200 + - type: ToggleableClothing + clothingPrototype: ClothingBootsModsuitOperativeSealed + slot: shoes + requiredSlot: gloves + - type: Insulated + + - type: entity + parent: ClothingGauntletsModsuitOperativeSealed + id: ClothingGauntletsModsuitHonkOperativeSealed + noSpawn: true + name: salvage modsuit helmet + description: Special hardsuit helmet, made for the captain of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Hands/nukeopsclown.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Hands/nukeopsclown.rsi + equipSound: /Audio/Backmen/Modsuits/ballin.ogg + unequipSound: /Audio/Backmen/Modsuits/ballout.ogg + - type: ToggleableClothing + clothingPrototype: ClothingBootsModsuitHonkOperativeSealed + slot: shoes + requiredSlot: gloves + + - type: entity + parent: ClothingHandsBase + id: ClothingGauntletsModsuitOperativeCMDSealed + noSpawn: true + name: salvage modsuit helmet + description: Special hardsuit helmet, made for the captain of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Hands/nukeopscmd.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Hands/nukeopscmd.rsi + equipSound: /Audio/Backmen/Modsuits/ballin.ogg + unequipSound: /Audio/Backmen/Modsuits/ballout.ogg + - type: Armor + modifiers: + coefficients: + Blunt: 0.9 + Slash: 0.9 + Piercing: 0.9 + Shock: 0.8 + - type: PressureProtection + highPressureMultiplier: 0.05 + lowPressureMultiplier: 200 + - type: ToggleableClothing + clothingPrototype: ClothingBootsModsuitOperativeCMDSealed + slot: shoes + requiredSlot: gloves + - type: Insulated + + - type: entity + parent: ClothingGauntletsModsuitOperativeSealed + id: ClothingGauntletsModsuitCCSealed + noSpawn: true + name: salvage modsuit helmet + description: Special hardsuit helmet, made for the captain of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Hands/corporate.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Hands/corporate.rsi + equipSound: /Audio/Backmen/Modsuits/ballin.ogg + unequipSound: /Audio/Backmen/Modsuits/ballout.ogg + - type: ToggleableClothing + clothingPrototype: ClothingBootsModsuitCCSealed + slot: shoes + requiredSlot: gloves + + - type: entity + parent: ClothingHandsBase + id: ClothingGauntletsModsuitApocryphalSealed + noSpawn: true + name: salvage modsuit helmet + description: Special hardsuit helmet, made for the captain of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Hands/apocryphal.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Hands/apocryphal.rsi + equipSound: /Audio/Backmen/Modsuits/ballin.ogg + unequipSound: /Audio/Backmen/Modsuits/ballout.ogg + - type: Armor + modifiers: + coefficients: + Blunt: 0.6 + Slash: 0.6 + Shock: 0.6 + Heat: 0.6 + - type: PressureProtection + highPressureMultiplier: 0.05 + lowPressureMultiplier: 200 + - type: ToggleableClothing + clothingPrototype: ClothingBootsModsuitApocryphalSealed + slot: shoes + requiredSlot: gloves + - type: Insulated diff --git a/Resources/Prototypes/_Backmen/Modsuits/Clothing/helmet.yml b/Resources/Prototypes/_Backmen/Modsuits/Clothing/helmet.yml new file mode 100644 index 00000000000..bf568091946 --- /dev/null +++ b/Resources/Prototypes/_Backmen/Modsuits/Clothing/helmet.yml @@ -0,0 +1,472 @@ +- type: entity + parent: ClothingHeadHardsuitBase + id: ClothingHeadHelmetModsuitCEBase + noSpawn: true + abstract: true + name: salvage modsuit helmet + description: Special hardsuit helmet, made for the captain of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Head/advanced.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Head/advanced.rsi + equipSound: /Audio/Backmen/Modsuits/ballin.ogg + unequipSound: /Audio/Backmen/Modsuits/ballout.ogg + - type: Armor + modifiers: + coefficients: + Blunt: 0.85 + Slash: 0.85 + Heat: 0.85 + Piercing: 0.9 + antihypo: true + - type: PressureProtection + highPressureMultiplier: 0.05 + lowPressureMultiplier: 1000 + - type: FlashImmunity + - type: EyeProtection + - type: IdentityBlocker + # - type: QualityOfItem + # qualityWeights: + # 0: 0 + # 1: 0 + # 2: 0 + # 3: 80 + # 4: 20 + # 5: 0 + # 6: 0 + # ЭТО РАЗКОММЕНТИТь!!! + +- type: entity + parent: ClothingHeadHelmetModsuitCEBase + id: ClothingHeadHelmetModsuitCESealed + noSpawn: true + name: salvage modsuit helmet + description: Special hardsuit helmet, made for the captain of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Head/advanced.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Head/advanced.rsi + equipSound: /Audio/Backmen/Modsuits/ballin.ogg + unequipSound: /Audio/Backmen/Modsuits/ballout.ogg + - type: Armor + modifiers: + coefficients: + Blunt: 0.85 + Slash: 0.85 + Heat: 0.85 + Piercing: 0.9 + - type: PressureProtection + highPressureMultiplier: 0.005 + lowPressureMultiplier: 1000 + - type: FlashImmunity + - type: EyeProtection + - type: IdentityBlocker + +- type: entity + parent: ClothingHeadHelmetModsuitCEBase + id: ClothingHeadHelmetModsuitEngineerSealed + noSpawn: true + name: salvage modsuit helmet + description: Special hardsuit helmet, made for the captain of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Head/engineer.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Head/engineer.rsi + equipSound: /Audio/Backmen/Modsuits/ballin.ogg + unequipSound: /Audio/Backmen/Modsuits/ballout.ogg + - type: Armor + modifiers: + coefficients: + Blunt: 0.85 + Slash: 0.85 + Piercing: 0.9 + Shock: 0.9 + Heat: 0.8 + Radiation: 0.25 + - type: PressureProtection + highPressureMultiplier: 0.05 + lowPressureMultiplier: 1000 + - type: IdentityBlocker + +- type: entity + parent: ClothingHeadHelmetModsuitCEBase + id: ClothingHeadHelmetModsuitRNDSealed + noSpawn: true + name: salvage modsuit helmet + description: Special hardsuit helmet, made for the captain of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Head/rnd.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Head/rnd.rsi + equipSound: /Audio/Backmen/Modsuits/ballin.ogg + unequipSound: /Audio/Backmen/Modsuits/ballout.ogg + - type: Armor + modifiers: + coefficients: + Blunt: 0.85 + Slash: 0.85 + Piercing: 0.9 + Shock: 0.3 + Caustic: 0.2 + Radiation: 0.3 + Heat: 0.6 + - type: PressureProtection + highPressureMultiplier: 0.005 + lowPressureMultiplier: 1000 + - type: IdentityBlocker + +- type: entity + parent: ClothingHeadHelmetModsuitCEBase + id: ClothingHeadHelmetModsuitAtmosphericsSealed + noSpawn: true + name: salvage modsuit helmet + description: Special hardsuit helmet, made for the captain of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Head/atmospheric.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Head/atmospheric.rsi + equipSound: /Audio/Backmen/Modsuits/ballin.ogg + unequipSound: /Audio/Backmen/Modsuits/ballout.ogg + - type: Armor + modifiers: + coefficients: + Blunt: 0.8 + Slash: 0.9 + Radiation: 0.25 + Heat: 0.5 + Piercing: 0.85 + - type: PressureProtection + highPressureMultiplier: 0.001 + lowPressureMultiplier: 1000 + - type: IdentityBlocker + +- type: entity + parent: ClothingHeadHelmetModsuitCEBase + id: ClothingHeadHelmetModsuitMedicalSealed + noSpawn: true + name: salvage modsuit helmet + description: Special hardsuit helmet, made for the captain of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Head/medical.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Head/medical.rsi + equipSound: /Audio/Backmen/Modsuits/ballin.ogg + unequipSound: /Audio/Backmen/Modsuits/ballout.ogg + - type: Armor + modifiers: + coefficients: + Blunt: 0.95 + Slash: 0.95 + Piercing: 0.95 + Radiation: 0.9 + Heat: 0.85 + - type: PressureProtection + highPressureMultiplier: 0.05 + lowPressureMultiplier: 1000 + +- type: entity + parent: ClothingHeadHelmetModsuitCEBase + id: ClothingHeadHelmetModsuitParamedicSealed + noSpawn: true + name: salvage modsuit helmet + description: Special hardsuit helmet, made for the captain of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Head/cmo.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Head/cmo.rsi + equipSound: /Audio/Backmen/Modsuits/ballin.ogg + unequipSound: /Audio/Backmen/Modsuits/ballout.ogg + - type: Armor + modifiers: + coefficients: + Blunt: 0.8 + Slash: 0.8 + Piercing: 0.8 + Radiation: 0.25 + Heat: 0.8 + - type: PressureProtection + highPressureMultiplier: 0.05 + lowPressureMultiplier: 1000 + +- type: entity + parent: ClothingHeadHelmetModsuitCEBase + id: ClothingHeadHelmetModsuitCivillianSealed + noSpawn: true + name: salvage modsuit helmet + description: Special hardsuit helmet, made for the captain of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Head/civillian.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Head/civillian.rsi + equipSound: /Audio/Backmen/Modsuits/ballin.ogg + unequipSound: /Audio/Backmen/Modsuits/ballout.ogg + - type: Armor + modifiers: + coefficients: + Piercing: 0.95 + Radiation: 0.85 + - type: PressureProtection + highPressureMultiplier: 0.05 + lowPressureMultiplier: 1000 + - type: IdentityBlocker + +- type: entity + parent: ClothingHeadHelmetModsuitCEBase + id: ClothingHeadHelmetModsuitMagnateSealed + noSpawn: true + name: salvage modsuit helmet + description: Special hardsuit helmet, made for the captain of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Head/magnate.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Head/magnate.rsi + equipSound: /Audio/Backmen/Modsuits/ballin.ogg + unequipSound: /Audio/Backmen/Modsuits/ballout.ogg + - type: Armor + modifiers: + coefficients: + Blunt: 0.7 + Slash: 0.7 + Piercing: 0.7 + Radiation: 0.35 + Heat: 0.65 + - type: PressureProtection + highPressureMultiplier: 0.05 + lowPressureMultiplier: 1000 + - type: FlashImmunity + - type: EyeProtection + +- type: entity + parent: ClothingHeadHelmetModsuitCEBase + id: ClothingHeadHelmetModsuitSecuritySealed + noSpawn: true + name: salvage modsuit helmet + description: Special hardsuit helmet, made for the captain of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Head/security.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Head/security.rsi + equipSound: /Audio/Backmen/Modsuits/ballin.ogg + unequipSound: /Audio/Backmen/Modsuits/ballout.ogg + - type: Armor + modifiers: + coefficients: + Blunt: 0.8 + Slash: 0.8 + Piercing: 0.8 + Radiation: 0.7 + Heat: 0.8 + - type: PressureProtection + highPressureMultiplier: 0.05 + lowPressureMultiplier: 1000 + - type: FlashImmunity + - type: EyeProtection + +- type: entity + parent: ClothingHeadHelmetModsuitCEBase + id: ClothingHeadHelmetModsuitHOSSealed + noSpawn: true + name: salvage modsuit helmet + description: Special hardsuit helmet, made for the captain of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Head/hos.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Head/hos.rsi + equipSound: /Audio/Backmen/Modsuits/ballin.ogg + unequipSound: /Audio/Backmen/Modsuits/ballout.ogg + - type: Armor + modifiers: + coefficients: + Heat: 0.75 + Blunt: 0.8 + Slash: 0.8 + Piercing: 0.85 + Radiation: 0.7 + - type: PressureProtection + highPressureMultiplier: 0.05 + lowPressureMultiplier: 1000 + - type: FlashImmunity + - type: EyeProtection + +- type: entity + parent: ClothingHeadHelmetModsuitCEBase + id: ClothingHeadHelmetModsuitSalvageSealed + noSpawn: true + name: salvage modsuit helmet + description: Special hardsuit helmet, made for the captain of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Head/salvage.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Head/salvage.rsi + equipSound: /Audio/Backmen/Modsuits/ballin.ogg + unequipSound: /Audio/Backmen/Modsuits/ballout.ogg + - type: Armor + modifiers: + coefficients: + Blunt: 0.85 + Slash: 0.85 + Piercing: 0.9 + Radiation: 0.65 + Heat: 0.8 + - type: PressureProtection + highPressureMultiplier: 0.05 + lowPressureMultiplier: 1000 + +- type: entity + parent: ClothingHeadHelmetModsuitCEBase + id: ClothingHeadHelmetModsuitMinerSealed + noSpawn: true + name: salvage modsuit helmet + description: Special hardsuit helmet, made for the captain of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Head/miner.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Head/miner.rsi + equipSound: /Audio/Backmen/Modsuits/ballin.ogg + unequipSound: /Audio/Backmen/Modsuits/ballout.ogg + - type: Armor + modifiers: + coefficients: + Blunt: 0.85 + Heat: 0.8 + Piercing: 0.9 + Radiation: 0.25 + Slash: 0.85 + - type: PressureProtection + highPressureMultiplier: 0.05 + lowPressureMultiplier: 1000 + - type: FlashImmunity #some kind of lava bursts protection + - type: IdentityBlocker + +- type: entity + parent: ClothingHeadHelmetModsuitCEBase + id: ClothingHeadHelmetModsuitOperativeSealed + noSpawn: true + name: salvage modsuit helmet + description: Special hardsuit helmet, made for the captain of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Head/nukeops.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Head/nukeops.rsi + equipSound: /Audio/Backmen/Modsuits/ballin.ogg + unequipSound: /Audio/Backmen/Modsuits/ballout.ogg + - type: Armor + modifiers: + coefficients: + Blunt: 0.75 + Slash: 0.75 + Piercing: 0.85 + Heat: 0.75 + - type: PressureProtection + highPressureMultiplier: 0.05 + lowPressureMultiplier: 1000 + - type: FlashImmunity + - type: EyeProtection + - type: IdentityBlocker + +- type: entity + parent: ClothingHeadHelmetModsuitCEBase + id: ClothingHeadHelmetModsuitOperativeCMDSealed + noSpawn: true + name: salvage modsuit helmet + description: Special hardsuit helmet, made for the captain of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Head/nukeopscmd.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Head/nukeopscmd.rsi + equipSound: /Audio/Backmen/Modsuits/ballin.ogg + unequipSound: /Audio/Backmen/Modsuits/ballout.ogg + - type: Armor + modifiers: + coefficients: + Blunt: 0.85 + Slash: 0.85 + Piercing: 0.85 + Caustic: 0.65 + - type: PressureProtection + highPressureMultiplier: 0.05 + lowPressureMultiplier: 1000 + - type: FlashImmunity + - type: EyeProtection + - type: IdentityBlocker + +- type: entity + parent: ClothingHeadHelmetModsuitOperativeSealed + id: ClothingHeadHelmetModsuitCCSealed + noSpawn: true + name: salvage modsuit helmet + description: Special hardsuit helmet, made for the captain of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Head/corporate.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Head/corporate.rsi + equipSound: /Audio/Backmen/Modsuits/ballin.ogg + unequipSound: /Audio/Backmen/Modsuits/ballout.ogg + - type: Armor + modifiers: + coefficients: + Blunt: 0.9 + Slash: 0.9 + Piercing: 0.9 + Caustic: 0.9 + Heat: 0.85 + +- type: entity + parent: ClothingHeadHelmetModsuitOperativeSealed + id: ClothingHeadHelmetModsuitHonkOperativeSealed + noSpawn: true + name: salvage modsuit helmet + description: Special hardsuit helmet, made for the captain of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Head/nukeopsclown.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Head/nukeopsclown.rsi + equipSound: /Audio/Backmen/Modsuits/ballin.ogg + unequipSound: /Audio/Backmen/Modsuits/ballout.ogg + +- type: entity + parent: ClothingHeadHelmetModsuitCEBase + id: ClothingHeadHelmetModsuitApocryphalSealed + noSpawn: true + name: salvage modsuit helmet + description: Special hardsuit helmet, made for the captain of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Head/apocryphal.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Head/apocryphal.rsi + equipSound: /Audio/Backmen/Modsuits/ballin.ogg + unequipSound: /Audio/Backmen/Modsuits/ballout.ogg + - type: Armor + modifiers: + coefficients: + Blunt: 0.8 + Slash: 0.8 + Shock: 0.95 + Caustic: 0.95 + Radiation: 0.0 + Heat: 0.8 + Piercing: 0.8 + - type: PressureProtection + highPressureMultiplier: 0.05 + lowPressureMultiplier: 1000 + - type: FlashImmunity + - type: EyeProtection + - type: IdentityBlocker diff --git a/Resources/Prototypes/_Backmen/Modsuits/Construction/modsuitconstruction.yml b/Resources/Prototypes/_Backmen/Modsuits/Construction/modsuitconstruction.yml new file mode 100644 index 00000000000..548d4f6cd76 --- /dev/null +++ b/Resources/Prototypes/_Backmen/Modsuits/Construction/modsuitconstruction.yml @@ -0,0 +1,335 @@ +- type: entity + parent: ClothingBackpack + id: ClothingControlModsuitBaseUnsealed #Nonsealed only + abstract: true + name: CE modsuit helmet + description: Special hardsuit helmet, made for the CE of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/Clothing/Back/advanced.rsi + - type: Clothing + sprite: Backmen/Modsuits/Clothing/Back/advanced.rsi + equipSound: /Audio/Items/Modsuits/ballin.ogg + unequipSound: /Audio/Items/Modsuits/ballout.ogg + - type: Storage + capacity: 30 +#Modsuit Parts start + +- type: entity + parent: BaseItem + id: BootsModsuitConstructing + name: CE modsuit helmet + description: Special hardsuit helmet, made for the CE of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/constructing_modsuit.rsi + state: boots + - type: Tag + tags: + - ModsuitBoots + +- type: entity + parent: BaseItem + id: ChestplateModsuitConstructing + name: CE modsuit helmet + description: Special hardsuit helmet, made for the CE of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/constructing_modsuit.rsi + state: chestplate + - type: Tag + tags: + - ModsuitChestplate + +- type: entity + parent: BaseItem + id: ControlModsuitConstructingStart + name: CE modsuit helmet + description: Special hardsuit helmet, made for the CE of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/constructing_modsuit.rsi + state: CORE-equip0 + noRot: true + - type: Tag + tags: + - ModsuitControlStart + - type: Appearance + - type: MechAssemblyVisuals + statePrefix: CORE-equip + - type: Construction + graph: ModsuitConstructed + node: start + defaultTarget: modsuitconstructed + - type: Item + size: Huge + +- type: entity + parent: BaseItem + id: ControlModsuitAdvanced + name: CE modsuit helmet + description: Special hardsuit helmet, made for the CE of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/constructing_modsuit.rsi + state: CE + - type: Tag + tags: + - ModsuitControlAdvanced + - type: Item + size: Huge + +- type: entity + parent: BaseItem + id: ControlModsuitSafeguard + name: CE modsuit helmet + description: Special hardsuit helmet, made for the CE of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/constructing_modsuit.rsi + state: HOS + - type: Tag + tags: + - ModsuitControlSafeguard + - type: Item + size: Huge + +- type: entity + parent: BaseItem + id: ControlModsuitRescue + name: CE modsuit helmet + description: Special hardsuit helmet, made for the CE of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/constructing_modsuit.rsi + state: CMO + - type: Tag + tags: + - ModsuitControlRescue + - type: Item + size: Huge + +- type: entity + parent: BaseItem + id: ControlModsuitMagnate + name: CE modsuit helmet + description: Special hardsuit helmet, made for the CE of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/constructing_modsuit.rsi + state: CAP + - type: Tag + tags: + - ModsuitControlMagnate + - type: Item + size: Huge + +- type: entity + parent: BaseItem + id: ControlModsuitConstructingEnd + name: CE modsuit helmet + description: Special hardsuit helmet, made for the CE of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/constructing_modsuit.rsi + state: CORE-equip8 + - type: Tag + tags: + - ModsuitControlEnd + - type: Item + size: Huge + +- type: entity + parent: BaseItem + id: GauntletsModsuitConstructing + name: CE modsuit helmet + description: Special hardsuit helmet, made for the CE of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/constructing_modsuit.rsi + state: gauntlets + - type: Tag + tags: + - ModsuitGauntlets + +- type: entity + parent: BaseItem + id: HelmetModsuitConstructing + name: CE modsuit helmet + description: Special hardsuit helmet, made for the CE of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/constructing_modsuit.rsi + state: helmet + - type: Tag + tags: + - ModsuitHelmet + +- type: entity + parent: BaseItem + id: PaintKitModsuitConstructing + name: CE modsuit helmet + description: Special hardsuit helmet, made for the CE of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/constructing_modsuit.rsi + state: paintkit + - type: Tag + tags: + - ModsuitPaintKit #Modsuit Cores + +- type: entity #cores end + parent: BaseItem + id: CoreModsuitConstructing + name: CoreModsuitConstructing + description: Special hardsuit helmet, made for the CE of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/constructing_modsuit.rsi + state: mod-core + - type: Tag + tags: + - CoreModsuit #plating start + +- type: entity + parent: BaseItem + id: PlatingCivillianModsuitConstructing + name: civillian-plating + description: Special hardsuit helmet, made for the CE of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/plating.rsi + state: civillian-plating + - type: Tag + tags: + - PlatingCivillianModsuit + +- type: entity + parent: BaseItem + id: PlatingMedicalModsuitConstructing + name: medical-plating + description: Special hardsuit helmet, made for the CE of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/plating.rsi + state: medical-plating + - type: Tag + tags: + - PlatingMedicalModsuit + +- type: entity + parent: BaseItem + id: PlatingCMOModsuitConstructing + name: cmo-plating + description: Special hardsuit helmet, made for the CE of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/plating.rsi + state: cmo-plating + - type: Tag + tags: + - PlatingCMOModsuit + +- type: entity + parent: BaseItem + id: PlatingSecurityModsuitConstructing + name: CE modsuit helmet + description: Special hardsuit helmet, made for the CE of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/plating.rsi + state: security-plating + - type: Tag + tags: + - PlatingSecurityModsuit + +- type: entity + parent: BaseItem #not parented bcs of tags + id: PlatingHOSModsuitConstructing + name: CE modsuit helmet + description: Special hardsuit helmet, made for the CE of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/plating.rsi + state: security-plating + - type: Tag + tags: + - PlatingHOSModsuit + +- type: entity + parent: BaseItem + id: PlatingMagnateModsuitConstructing + name: magnate-plating + description: Special hardsuit helmet, made for the CE of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/plating.rsi + state: magnate-plating + - type: Tag + tags: + - PlatingMagnateModsuit + +- type: entity + parent: BaseItem + id: PlatingEngineeringModsuitConstructing + name: CE modsuit helmet + description: Special hardsuit helmet, made for the CE of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/plating.rsi + state: engineering-plating + - type: Tag + tags: + - PlatingEngineerModsuit + +- type: entity + parent: BaseItem + id: PlatingAsteroidModsuitConstructing + name: CE modsuit helmet + description: Special hardsuit helmet, made for the CE of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/plating.rsi + state: engineering-plating + - type: Tag + tags: + - PlatingAsteroidModsuit #same color pallete + +- type: entity + parent: BaseItem + id: PlatingAtmosphericModsuitConstructing + name: CE modsuit helmet + description: Special hardsuit helmet, made for the CE of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/plating.rsi + state: atmospheric-plating + - type: Tag + tags: + - PlatingAtmosphericModsuit + +- type: entity + parent: BaseItem + id: PlatingCEModsuitConstructing + name: CE modsuit helmet + description: Special hardsuit helmet, made for the CE of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/plating.rsi + state: ce-plating + - type: Tag + tags: + - PlatingCEModsuit + +- type: entity + parent: BaseItem + id: PlatingRNDModsuitConstructing + name: CE modsuit helmet + description: Special hardsuit helmet, made for the CE of the station. + components: + - type: Sprite + sprite: Backmen/Modsuits/plating.rsi + state: rnd-plating + - type: Tag + tags: + - PlatingRNDModsuit diff --git a/Resources/Prototypes/_Backmen/Modsuits/Construction/modsuitgraphs.yml b/Resources/Prototypes/_Backmen/Modsuits/Construction/modsuitgraphs.yml new file mode 100644 index 00000000000..e313e9d0b3e --- /dev/null +++ b/Resources/Prototypes/_Backmen/Modsuits/Construction/modsuitgraphs.yml @@ -0,0 +1,334 @@ +- type: constructionGraph #START + id: ModsuitConstructed + start: start + graph: + - node: start + edges: + - to: modsuitconstructed + steps: + - component: PowerCell + name: батарейку + doAfter: 1 + store: battery-container + icon: + sprite: Objects/Power/power_cells.rsi + state: small + + - tag: CoreModsuit + name: Ядро Р.И.Г-а + doAfter: 1 + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 1 + + - tool: Screwing + doAfter: 2 + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 2 + + - tag: ModsuitHelmet + name: шлем РИГ-а + doAfter: 1 + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 3 + + - tag: ModsuitChestplate + name: нагрудник РИГ-а + doAfter: 2 + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 4 + + - tag: ModsuitGauntlets + name: рукавицы РИГ-а + doAfter: 2 + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 5 + + - tag: ModsuitBoots + name: ботинки РИГ-а + doAfter: 2 + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 6 + + - tool: Anchoring + doAfter: 2 + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 7 + + - tool: Screwing + doAfter: 2 + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 8 + + - node: modsuitconstructed + actions: + - !type:BuildMech + mechPrototype: ControlModsuitConstructingEnd + +- type: constructionGraph + id: ModsuitEngineer + start: start + graph: + - node: start + edges: + - to: modsuitengineer + steps: + - tag: PlatingEngineerModsuit + name: покрытие инженерного РИГ-а + icon: + sprite: Backmen/Modsuits/plating.rsi + state: engineering-plating + doAfter: 2 + - tag: ModsuitControlEnd + name: собранный каркас РИГ-а + icon: + sprite: Backmen/Modsuits/constructing_modsuit.rsi + state: CORE-equip8 + doAfter: 2 + - node: modsuitengineer + entity: ClothingControlModsuitEngineerSealed + +- type: constructionGraph + id: ModsuitMedical + start: start + graph: + - node: start + edges: + - to: modsuitmedical + steps: + - tag: PlatingMedicalModsuit + name: покрытие медицинского РИГ-а + icon: + sprite: Backmen/Modsuits/plating.rsi + state: medical-plating + doAfter: 2 + - tag: ModsuitControlEnd + name: собранный каркас РИГ-а + icon: + sprite: Backmen/Modsuits/constructing_modsuit.rsi + state: CORE-equip8 + doAfter: 2 + - node: modsuitmedical + entity: ClothingControlModsuitMedicalSealed + +- type: constructionGraph + id: ModsuitRND + start: start + graph: + - node: start + edges: + - to: modsuitrnd + steps: + - tag: PlatingRNDModsuit + name: покрытие научного РИГ-а + icon: + sprite: Backmen/Modsuits/plating.rsi + state: rnd-plating + doAfter: 2 + - tag: ModsuitControlEnd + name: собранный каркас РИГ-а + icon: + sprite: Backmen/Modsuits/constructing_modsuit.rsi + state: CORE-equip8 + doAfter: 2 + - node: modsuitrnd + entity: ClothingControlModsuitRNDSealed + +- type: constructionGraph + id: ModsuitSalvage + start: start + graph: + - node: start + edges: + - to: modsuitsalvage + steps: + - tag: PlatingAsteroidModsuit + name: покрытие РИГ-а утилизатора + icon: + sprite: Backmen/Modsuits/plating.rsi + state: engineering-plating #same coлor paлette + doAfter: 2 + - tag: ModsuitControlEnd + name: собранный каркас РИГ-а + icon: + sprite: Backmen/Modsuits/constructing_modsuit.rsi + state: CORE-equip8 + doAfter: 2 + - node: modsuitsalvage + entity: ClothingControlModsuitSalvageSealed + +- type: constructionGraph + id: ModsuitCivillian + start: start + graph: + - node: start + edges: + - to: modsuitcivillian + steps: + - tag: PlatingCivillianModsuit + name: покрытие гражданского РИГ-а + icon: + sprite: Backmen/Modsuits/plating.rsi + state: civillian-plating + doAfter: 2 + - tag: ModsuitControlEnd + name: собранный каркас РИГ-а + icon: + sprite: Backmen/Modsuits/constructing_modsuit.rsi + state: CORE-equip8 + doAfter: 2 + - node: modsuitcivillian + entity: ClothingControlModsuitCivillianSealed + +- type: constructionGraph + id: ModsuitSecurity + start: start + graph: + - node: start + edges: + - to: modsuitsecurity + steps: + - tag: PlatingSecurityModsuit + name: покрытие охранного РИГ-а + icon: + sprite: Backmen/Modsuits/plating.rsi + state: security-plating + doAfter: 2 + - tag: ModsuitControlEnd + name: собранный каркас РИГ-а + icon: + sprite: Backmen/Modsuits/constructing_modsuit.rsi + state: CORE-equip8 + doAfter: 2 + - node: modsuitsecurity + entity: ClothingControlModsuitSecuritySealed + +- type: constructionGraph + id: ModsuitAtmospheric + start: start + graph: + - node: start + edges: + - to: modsuitatmospheric + steps: + - tag: PlatingAtmosphericModsuit + name: покрытие РИГ-а атмосферного техника + icon: + sprite: Backmen/Modsuits/plating.rsi + state: atmospheric-plating + doAfter: 2 + - tag: ModsuitControlEnd + name: собранный каркас РИГ-а + icon: + sprite: Backmen/Modsuits/constructing_modsuit.rsi + state: CORE-equip8 + doAfter: 2 + - node: modsuitatmospheric + entity: ClothingControlModsuitAtmosphericsSealed + +- type: constructionGraph + id: ModsuitAdvanced + start: start + graph: + - node: start + edges: + - to: modsuitadvanced + steps: + - tag: PlatingCEModsuit + name: покрытие продвинутого РИГ-а + icon: + sprite: Backmen/Modsuits/plating.rsi + state: ce-plating + doAfter: 2 + - tag: ModsuitControlEnd + name: собранный каркас РИГ-а + icon: + sprite: Backmen/Modsuits/constructing_modsuit.rsi + state: CORE-equip8 + doAfter: 2 + - node: modsuitadvanced + entity: ClothingControlModsuitCESealed + +- type: constructionGraph + id: ModsuitRescue + start: start + graph: + - node: start + edges: + - to: modsuitrescue + steps: + - tag: PlatingParamedicModsuit + name: покрытие Спасательного Р.И.Г-а + icon: + sprite: Backmen/Modsuits/plating.rsi + state: cmo-plating + doAfter: 2 + - tag: ModsuitControlEnd + name: собранный каркас РИГ-а + icon: + sprite: Backmen/Modsuits/constructing_modsuit.rsi + state: CORE-equip8 + doAfter: 2 + - node: modsuitrescue + entity: ClothingControlModsuitParamedicSealed + +- type: constructionGraph + id: ModsuitMagnate + start: start + graph: + - node: start + edges: + - to: modsuitmagnate + steps: + - tag: PlatingMagnateModsuit + name: покрытие РИГ-а капитана + icon: + sprite: Backmen/Modsuits/plating.rsi + state: magnate-plating + doAfter: 2 + - tag: ModsuitControlEnd + name: собранный каркас РИГ-а + icon: + sprite: Backmen/Modsuits/constructing_modsuit.rsi + state: CORE-equip8 + doAfter: 2 + - node: modsuitmagnate + entity: ClothingControlModsuitMagnateSealed + +- type: constructionGraph + id: ModsuitHOS + start: start + graph: + - node: start + edges: + - to: modsuithos + steps: + - tag: PlatingHOSModsuit + name: покрытие РИГ-а главы службы безопасности + icon: + sprite: Backmen/Modsuits/plating.rsi + state: security-plating + doAfter: 2 + - tag: ModsuitControlSafeguard + name: собранный каркас РИГ-а + icon: + sprite: Backmen/Modsuits/constructing_modsuit.rsi + state: CORE-equip8 + doAfter: 2 + - node: modsuithos + entity: ClothingControlModsuitHOSSealed diff --git a/Resources/Prototypes/_Backmen/Modsuits/Construction/modsuitrecipe.yml b/Resources/Prototypes/_Backmen/Modsuits/Construction/modsuitrecipe.yml new file mode 100644 index 00000000000..e2014b44de2 --- /dev/null +++ b/Resources/Prototypes/_Backmen/Modsuits/Construction/modsuitrecipe.yml @@ -0,0 +1,120 @@ +- type: construction + name: Атмосферный Р.И.Г + id: ModsuitAtmospheric + graph: ModsuitAtmospheric + startNode: start + targetNode: modsuitatmospheric + category: construction-category-clothing + description: Р.И.Г, созданный специально под нужды профессии. + icon: { sprite: Backmen/Modsuits/Clothing/Back/atmospheric.rsi, state: icon } + objectType: Item + +- type: construction + name: Инженерный Р.И.Г + id: ModsuitEngineer + graph: ModsuitEngineer + startNode: start + targetNode: modsuitengineer + category: construction-category-clothing + description: Р.И.Г, созданный специально под нужды профессии. + icon: { sprite: Backmen/Modsuits/Clothing/Back/engineer.rsi, state: icon } + objectType: Item + +- type: construction + name: Медицинский Р.И.Г + id: ModsuitMedical + graph: ModsuitMedical + startNode: start + targetNode: modsuitmedical + category: construction-category-clothing + description: Р.И.Г, созданный специально под нужды профессии. + icon: { sprite: Backmen/Modsuits/Clothing/Back/medical.rsi, state: icon } + objectType: Item + +- type: construction + name: Научный Р.И.Г + id: ModsuitRND + graph: ModsuitRND + startNode: start + targetNode: modsuitrnd + category: construction-category-clothing + description: Р.И.Г, созданный специально под нужды профессии. + icon: { sprite: Backmen/Modsuits/Clothing/Back/rnd.rsi, state: icon } + objectType: Item + +- type: construction + name: Утилизаторский Р.И.Г + id: ModsuitSalvage + graph: ModsuitSalvage + startNode: start + targetNode: modsuitsalvage + category: construction-category-clothing + description: Р.И.Г, созданный специально под нужды профессии. + icon: { sprite: Backmen/Modsuits/Clothing/Back/salvage.rsi, state: icon } + objectType: Item + +- type: construction + name: Гражданский Р.И.Г + id: ModsuitCivillian + graph: ModsuitCivillian + startNode: start + targetNode: modsuitcivillian + category: construction-category-clothing + description: Р.И.Г, созданный специально под нужды безработного. + icon: { sprite: Backmen/Modsuits/Clothing/Back/civillian.rsi, state: icon } + objectType: Item + +- type: construction + name: Охранный Р.И.Г + id: ModsuitSecurity + graph: ModsuitSecurity + startNode: start + targetNode: modsuitsecurity + category: construction-category-clothing + description: Р.И.Г, созданный специально под нужды профессии. + icon: { sprite: Backmen/Modsuits/Clothing/Back/security.rsi, state: icon } + objectType: Item + +- type: construction + name: Продвинутый Р.И.Г + id: ModsuitAdvanced + graph: ModsuitAdvanced + startNode: start + targetNode: modsuitadvanced + category: construction-category-clothing + description: Р.И.Г, созданный специально под нужды профессии. + icon: { sprite: Backmen/Modsuits/Clothing/Back/advanced.rsi, state: icon } + objectType: Item + +- type: construction + name: Спасательный Р.И.Г + id: ModsuitRescue + graph: ModsuitRescue + startNode: start + targetNode: modsuitrescue + category: construction-category-clothing + description: Р.И.Г, созданный специально под нужды профессии. + icon: { sprite: Backmen/Modsuits/Clothing/Back/cmo.rsi, state: icon } + objectType: Item + +- type: construction + name: Роскошный Р.И.Г + id: ModsuitMagnate + graph: ModsuitMagnate + startNode: start + targetNode: modsuitmagnate + category: construction-category-clothing + description: Р.И.Г, созданный специально под нужды профессии. + icon: { sprite: Backmen/Modsuits/Clothing/Back/magnate.rsi, state: icon } + objectType: Item + +- type: construction + name: Гвардейский Р.И.Г + id: ModsuitHOS + graph: ModsuitHOS + startNode: start + targetNode: modsuithos + category: construction-category-clothing + description: Р.И.Г, созданный специально под нужды профессии. + icon: { sprite: Backmen/Modsuits/Clothing/Back/hos.rsi, state: icon } + objectType: Item diff --git a/Resources/Prototypes/_Backmen/Modsuits/Construction/tags.yml b/Resources/Prototypes/_Backmen/Modsuits/Construction/tags.yml new file mode 100644 index 00000000000..2a0d58fac2e --- /dev/null +++ b/Resources/Prototypes/_Backmen/Modsuits/Construction/tags.yml @@ -0,0 +1,68 @@ +- type: Tag + id: ModsuitHelmet + +- type: Tag + id: ModsuitBoots + +- type: Tag + id: ModsuitChestplate + +- type: Tag + id: ModsuitControlStart + +- type: Tag + id: ModsuitControlAdvanced + +- type: Tag + id: ModsuitControlSafeguard + +- type: Tag + id: ModsuitControlRescue + +- type: Tag + id: ModsuitControlMagnate + +- type: Tag + id: ModsuitControlEnd + +- type: Tag + id: ModsuitGauntlets + +- type: Tag + id: ModsuitPaintKit + +- type: Tag + id: CoreModsuit + +- type: Tag + id: PlatingCivillianModsuit + +- type: Tag + id: PlatingMedicalModsuit + +- type: Tag + id: PlatingParamedicModsuit + +- type: Tag + id: PlatingSecurityModsuit + +- type: Tag + id: PlatingHOSModsuit + +- type: Tag + id: PlatingMagnateModsuit + +- type: Tag + id: PlatingEngineerModsuit + +- type: Tag + id: PlatingAtmosphericModsuit + +- type: Tag + id: PlatingCEModsuit + +- type: Tag + id: PlatingRNDModsuit + +- type: Tag + id: PlatingAsteroidModsuit diff --git a/Resources/Prototypes/_Backmen/Modsuits/Modfab/modsuit.yml b/Resources/Prototypes/_Backmen/Modsuits/Modfab/modsuit.yml new file mode 100644 index 00000000000..ada24f927bc --- /dev/null +++ b/Resources/Prototypes/_Backmen/Modsuits/Modfab/modsuit.yml @@ -0,0 +1,143 @@ +- type: latheRecipe + id: ControlModsuitConstructingStart + result: ControlModsuitConstructingStart + completetime: 10 + materials: + Steel: 100 + Plasma: 200 + +- type: latheRecipe + id: HelmetModsuitConstructing + result: HelmetModsuitConstructing + completetime: 10 + materials: + Steel: 200 + Glass: 200 + +- type: latheRecipe + id: ChestplateModsuitConstructing + result: ChestplateModsuitConstructing + completetime: 10 + materials: + Steel: 300 + +- type: latheRecipe + id: GauntletsModsuitConstructing + result: GauntletsModsuitConstructing + completetime: 10 + materials: + Steel: 100 + +- type: latheRecipe + id: BootsModsuitConstructing + result: BootsModsuitConstructing + completetime: 10 + materials: + Steel: 100 + +- type: latheRecipe + id: PlatingCivillianModsuitConstructing + result: PlatingCivillianModsuitConstructing + completetime: 20 + materials: + Steel: 1000 + +- type: latheRecipe + id: PlatingMedicalModsuitConstructing + result: PlatingMedicalModsuitConstructing + completetime: 20 + materials: + Plastic: 500 + +- type: latheRecipe + id: PlatingEngineeringModsuitConstructing + result: PlatingEngineeringModsuitConstructing + completetime: 60 + materials: + Steel: 1000 + Plasma: 1000 + +- type: latheRecipe + id: PlatingAtmosphericModsuitConstructing + result: PlatingAtmosphericModsuitConstructing + completetime: 36 + materials: + Steel: 1000 + Plasma: 1000 + +- type: latheRecipe + id: PlatingAsteroidModsuitConstructing + result: PlatingAsteroidModsuitConstructing + completetime: 60 + materials: + Steel: 1200 + Plasma: 1200 + Gold: 500 + +- type: latheRecipe + id: PlatingRNDModsuitConstructing + result: PlatingRNDModsuitConstructing + completetime: 90 + materials: + Plasteel: 1000 + Plasma: 500 + +- type: latheRecipe + id: PlatingSecurityModsuitConstructing + result: PlatingSecurityModsuitConstructing + completetime: 60 + materials: + Plasteel: 1500 + Plasma: 1000 + +- type: latheRecipe + id: PlatingParamedicModsuitConstructing + result: PlatingParamedicModsuitConstructing + completetime: 60 + materials: + Plasteel: 500 + Plasma: 1000 + +- type: latheRecipe + id: PlatingHOSModsuitConstructing + result: PlatingHOSModsuitConstructing + completetime: 90 + materials: + Plasteel: 1500 + Plasma: 1500 + +- type: latheRecipe + id: PlatingCEModsuitConstructing + result: PlatingCEModsuitConstructing + completetime: 120 + materials: + Plasteel: 1000 + Plasma: 1000 + +- type: latheRecipe + id: PlatingMagnateModsuitConstructing + result: PlatingMagnateModsuitConstructing + completetime: 90 + materials: + Plasteel: 1000 + Plasma: 1000 + Uranium: 1000 + Gold: 1000 + +- type: entity + id: ModsuitFabricatorMachineCircuitboard + parent: BaseMachineCircuitboard + name: mod fabricator machine board + components: + - type: Sprite + state: science + - type: MachineBoard + prototype: ModsuitFab + requirements: + MatterBin: 1 + Manipulator: 1 + materialRequirements: + Glass: 2 + - type: GuideHelp + guides: + - Robotics diff --git a/Resources/Prototypes/_Backmen/Modsuits/Modfab/modsuit_fabricator.yml b/Resources/Prototypes/_Backmen/Modsuits/Modfab/modsuit_fabricator.yml new file mode 100644 index 00000000000..bec9edb8a43 --- /dev/null +++ b/Resources/Prototypes/_Backmen/Modsuits/Modfab/modsuit_fabricator.yml @@ -0,0 +1,51 @@ +- type: entity + parent: Protolathe + id: ModsuitFab + name: modsuits fab + description: Creates parts for robotics and other mechanical needs + components: + - type: Sprite + netsync: false + sprite: Backmen/Modsuits/modsuit_fabricator.rsi + layers: + - state: icon + map: ["enum.LatheVisualLayers.IsRunning"] + - state: unlit + shader: unshaded + map: ["enum.PowerDeviceVisualLayers.Powered"] + - state: inserting + map: ["enum.MaterialStorageVisualLayers.Inserting"] + - state: panel + map: ["enum.WiresVisualLayers.MaintenancePanel"] + - type: Machine + board: ModsuitFabricatorMachineCircuitboard + - type: Lathe + idleState: icon + runningState: building + staticRecipes: + - ControlModsuitConstructingStart + - HelmetModsuitConstructing + - ChestplateModsuitConstructing + - GauntletsModsuitConstructing + - BootsModsuitConstructing + - PlatingCivillianModsuitConstructing + - PlatingMedicalModsuitConstructing + dynamicRecipes: + - PlatingMagnateModsuitConstructing + - PlatingSecurityModsuitConstructing + - PlatingHOSModsuitConstructing + - PlatingParamedicModsuitConstructing + - PlatingCEModsuitConstructing + - PlatingAsteroidModsuitConstructing + - PlatingRNDModsuitConstructing + - PlatingEngineeringModsuitConstructing + - PlatingAtmosphericModsuitConstructing + - type: MaterialStorage + whitelist: + tags: + - Sheet + - RawMaterial + - Ingot + - type: GuideHelp + guides: + - Robotics diff --git a/Resources/Prototypes/_Backmen/Modsuits/cargo_modsuits.yml b/Resources/Prototypes/_Backmen/Modsuits/cargo_modsuits.yml new file mode 100644 index 00000000000..ae645e737c7 --- /dev/null +++ b/Resources/Prototypes/_Backmen/Modsuits/cargo_modsuits.yml @@ -0,0 +1,27 @@ +- type: entity + id: CrateModsuitsBasic + parent: CrateEngineeringSecure + components: + - type: StorageFill + contents: + - id: CoreModsuitConstructing + - id: CoreModsuitConstructing + - id: CoreModsuitConstructing + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 2500 #no tiding only teamwork + behaviors: + - !type:DoActsBehavior + acts: ["Destruction"] + +- type: cargoProduct + id: CargoModsuitsBasic + icon: + sprite: Backmen/Modsuits/constructing_modsuit.rsi + state: mod-core + product: CrateModsuitsBasic + cost: 1500 + category: Инженерное дело + group: market diff --git a/Resources/Prototypes/_Backmen/Modsuits/misc.yml b/Resources/Prototypes/_Backmen/Modsuits/misc.yml new file mode 100644 index 00000000000..52f14c5717d --- /dev/null +++ b/Resources/Prototypes/_Backmen/Modsuits/misc.yml @@ -0,0 +1,79 @@ +- type: listing + id: ModsuitOperativeSealed + name: uplink-modsuitoperative-name + description: uplink-modsuitoperative-desc + productEntity: ClothingControlModsuitOperativeSealed + cost: + Telecrystal: 8 + categories: + - UplinkWearables + conditions: + - !type:StoreWhitelistCondition + blacklist: + tags: + - NukeOpsUplink + +- type: listing + id: ModsuitOperativeCMDSealed + name: uplink-modsuitoperativecmd-name + description: uplink-modsuitoperativecmd-desc + productEntity: ClothingControlModsuitPMCSealed + cost: + Telecrystal: 30 + categories: + - UplinkWearables + conditions: + - !type:StoreWhitelistCondition + blacklist: + tags: + - NukeOpsUplink + +- type: listing + id: ModsuitNukeOperativeSealed + name: uplink-modsuitoperative-name + description: uplink-modsuitoperative-desc + productEntity: ClothingControlModsuitOperativeSealedFractionBoom + cost: + Telecrystal: 14 + categories: + - UplinkWearables + conditions: + - !type:StoreWhitelistCondition + whitelist: + tags: + - NukeOpsUplink + +# - type: listing +# id: ModsuitNukeOperativeCMDSealed +# name: uplink-modsuitoperativecmd-name +# description: uplink-modsuitoperativecmd-desc +# productEntity: ClothingControlModsuitPMCSealed +# cost: +# Telecrystal: 70 +# categories: +# - UplinkArmor +# conditions: +# - !type:StoreWhitelistCondition +# whitelist: +# tags: +# - NukeOpsUplink + +- type: entity + id: RandomModsuitCrate + name: random crate spawner + parent: MarkerBase + components: + - type: Sprite + layers: + - state: red + - sprite: Backmen/Modsuits/Clothing/Back/engineer.rsi + state: icon + - type: RandomSpawner + prototypes: + - ClothingControlModsuitEngineerSealed + - ClothingControlModsuitMedicalSealed + - ClothingControlModsuitCivillianSealed + chance: 0.7 + rarePrototypes: + - ClothingControlModsuitMinerSealed + rareChance: 0.3 diff --git a/Resources/Prototypes/_Backmen/Modsuits/modsuit_storage.yml b/Resources/Prototypes/_Backmen/Modsuits/modsuit_storage.yml new file mode 100644 index 00000000000..a43c3e8f5ba --- /dev/null +++ b/Resources/Prototypes/_Backmen/Modsuits/modsuit_storage.yml @@ -0,0 +1,234 @@ +- type: entity + name: ModSuit Storage Base + abstract: true + description: ModSuit Storage + id: ModSuitStorageBase + parent: SuitStorageBase + suffix: Chief Engineer + components: + - type: Sprite + sprite: Backmen/Modsuits/suit_storage.rsi + +- type: entity + name: ModSuit Storage CE + description: ModSuit Storage + id: ModSuitStorageCE + parent: ModSuitStorageBase + suffix: Chief Engineer + components: + - type: StorageFill + contents: + - id: NitrogenTankFilled + - id: OxygenTankFilled + - id: JetpackVoidFilled + - id: ClothingShoesBootsMagAdv + - id: ClothingControlModsuitCESealed + - id: ClothingMaskGasAtmos + +- type: entity + name: ModSuit Storage Captain + description: ModSuit Storage + id: ModSuitStorageCapSpace + parent: ModSuitStorageBase + suffix: Cap Space + components: + - type: StorageFill + contents: + - id: NitrogenTankFilled + - id: OxygenTankFilled + - id: ClothingControlModsuitMagnateSealed + - id: ClothingMaskGasCaptain + +- type: entity + name: ModSuit storage Civillian + description: ModSuit storage + id: ModSuitStorageCivillian + parent: ModSuitStorageBase + suffix: Civ suit + components: + - type: StorageFill + contents: + - id: NitrogenTankFilled + - id: OxygenTankFilled + - id: ClothingControlModsuitCivillianSealed + - id: ClothingMaskBreath + +- type: entity + name: ModSuit Storage Paramedic + description: ModSuit Storage + id: ModSuitStorageParamedic + parent: ModSuitStorageBase + suffix: СMO + components: + - type: StorageFill + contents: + - id: NitrogenTankFilled + - id: OxygenTankFilled + - id: ClothingControlModsuitParamedicSealed + - id: ClothingMaskBreath + +- type: entity + name: ModSuit Storage RND + description: ModSuit Storage + id: ModSuitStorageRND + parent: ModSuitStorageBase + suffix: RND + components: + - type: StorageFill + contents: + - id: NitrogenTankFilled + - id: OxygenTankFilled + - id: ClothingControlModsuitRNDSealed + - id: ClothingMaskBreath + +- type: entity + name: ModSuit Storage Medical + description: ModSuit Storage + id: ModSuitStorageMedical + parent: ModSuitStorageBase + suffix: Medical + components: + - type: StorageFill + contents: + - id: NitrogenTankFilled + - id: OxygenTankFilled + - id: ClothingControlModsuitMedicalSealed + - id: ClothingMaskBreath + +- type: entity + name: ModSuit Storage Security + description: ModSuit Storage + id: ModSuitStorageSecurity + parent: ModSuitStorageBase + suffix: Security + components: + - type: StorageFill + contents: + - id: NitrogenTankFilled + - id: OxygenTankFilled + - id: ClothingControlModsuitSecuritySealed + - id: ClothingMaskGasSecurity + +- type: entity + name: ModSuit Storage Salvage + description: ModSuit Storage + id: ModSuitStorageSalvage + parent: ModSuitStorageBase + suffix: Salvage + components: + - type: StorageFill + contents: + - id: NitrogenTankFilled + - id: OxygenTankFilled + - id: ClothingControlModsuitSalvageSealed + - id: ClothingMaskGasExplorer + - id: ClothingShoesBootsMag + +- type: entity + name: ModSuit Storage Salvage + description: ModSuit Storage + id: ModSuitStorageMiner + parent: ModSuitStorageBase + suffix: Miner + components: + - type: StorageFill + contents: + - id: NitrogenTankFilled + - id: OxygenTankFilled + - id: ClothingControlModsuitMinerSealed + - id: ClothingMaskGasExplorer + - id: ClothingShoesBootsMag + +- type: entity + name: ModSuit Storage Engineer + description: ModSuit Storage + id: ModSuitStorageEngineer + parent: ModSuitStorageBase + suffix: Engineer + components: + - type: StorageFill + contents: + - id: NitrogenTankFilled + - id: OxygenTankFilled + - id: ClothingControlModsuitEngineerSealed + - id: ClothingMaskGas + - id: ClothingShoesBootsMag + +- type: entity + name: ModSuit Storage Atmos + description: ModSuit Storage + id: ModSuitStorageAtmos + parent: ModSuitStorageBase + suffix: Atmos + components: + - type: StorageFill + contents: + - id: NitrogenTankFilled + - id: OxygenTankFilled + - id: ClothingControlModsuitAtmosphericsSealed + - id: ClothingMaskGasAtmos + - id: ClothingShoesBootsMag + +- type: entity + name: ModSuit Storage HOS + description: ModSuit Storage + id: ModSuitStorageHOS + parent: ModSuitStorageBase + suffix: HOS + components: + - type: StorageFill + contents: + - id: NitrogenTankFilled + - id: OxygenTankFilled + - id: ClothingControlModsuitHOSSealed + - id: ClothingMaskGasSwat + - id: JetpackSecurityFilled + +- type: entity + name: ModSuit Storage Centcom + description: ModSuit Storage + id: ModSuitStorageCentcom + parent: ModSuitStorageBase + suffix: HOS + components: + - type: StorageFill + contents: + - id: NitrogenTankFilled + - id: OxygenTankFilled + - id: ClothingControlModsuitCCSealed + - id: ClothingMaskGasCentcom + - id: JetpackSecurityFilled + +- type: entity + name: ModSuit Storage Centcom + description: ModSuit Storage + id: ModSuitStorageSyndicate + parent: ModSuitStorageBase + suffix: HOS + components: + - type: StorageFill + contents: + - id: NitrogenTankFilled + - id: OxygenTankFilled + - id: ClothingControlModsuitOperativeSealedFractionBoom + - id: ClothingMaskGasSyndicate + - id: JetpackBlackFilled + - type: Sprite + sprite: Backmen/Modsuits/suit_storage_syndie.rsi + +- type: entity + name: ModSuit Storage Centcom + description: ModSuit Storage + id: ModSuitStorageSyndicateCMD + parent: ModSuitStorageBase + suffix: HOS + components: + - type: StorageFill + contents: + - id: NitrogenTankFilled + - id: OxygenTankFilled + - id: ClothingControlModsuitOperativeCMDSealedFractionBoom + - id: ClothingMaskGasSyndicate + - id: JetpackBlackFilled + - type: Sprite + sprite: Backmen/Modsuits/suit_storage_syndie.rsi diff --git a/Resources/Prototypes/_Backmen/Modsuits/modsuitstech.yml b/Resources/Prototypes/_Backmen/Modsuits/modsuitstech.yml new file mode 100644 index 00000000000..ea0cc2b0331 --- /dev/null +++ b/Resources/Prototypes/_Backmen/Modsuits/modsuitstech.yml @@ -0,0 +1,41 @@ +- type: technology + id: СombatModsuits + name: research-technology-operative-modsuits + icon: + sprite: Backmen/Modsuits/Clothing/Head/salvage.rsi + state: icon + discipline: Industrial + tier: 1 + cost: 5000 + recipeUnlocks: + - PlatingSecurityModsuitConstructing + - PlatingAsteroidModsuitConstructing + - PlatingRNDModsuitConstructing + +- type: technology + id: WorkModsuits + name: research-technology-work-modsuits + icon: + sprite: Backmen/Modsuits/Clothing/Head/engineer.rsi + state: icon + discipline: Industrial + tier: 1 + cost: 2500 + recipeUnlocks: + - PlatingEngineeringModsuitConstructing + - PlatingAtmosphericModsuitConstructing + - PlatingParamedicModsuitConstructing + +- type: technology + id: Advanced Modsuits + name: research-advanced-modsuits + icon: + sprite: Backmen/Modsuits/Clothing/Head/magnate.rsi + state: icon + discipline: Industrial + tier: 2 + cost: 7500 + recipeUnlocks: + - PlatingCEModsuitConstructing + - PlatingMagnateModsuitConstructing + - PlatingHOSModsuitConstructing diff --git a/Resources/Textures/Backmen/Clothing/Head/Hardsuits/syndicate.rsi/off-equipped-HELMET.png b/Resources/Textures/Backmen/Clothing/Head/Hardsuits/syndicate.rsi/off-equipped-HELMET.png index 9274110d59125319e3a555fe5a46f44185a4b7db..f9a86511b6661a57e0459c891cca81a6810d6cd5 100644 GIT binary patch delta 313 zcmV-90mlC51Em9yF_A$>e*qUsL_t(oh3%HXj>9krLv(14ixiK=ctEg zZXp%(J3V`8K3)fK00(dY2ap2tYR(M)7FY*>V*Y0EU2n}rtstP$EVm2*5>^C5_yH)3 zGq`q^-iM$y+RsyKkkPwb>)F@)7=3iB=sm!i+hp^kfVl(X=Q}V*wF9V#s8&1BWyvyF zA-xY`+qI+^a(Jj#FWjCh$lgbhId<>x-X&205#0APp5 znXNtt(4o|#r^gx7OV;NA37`NFdYn<+45B_85M!+snLN&H^-}D)qqus!lH55GLjT3ZdAF;PHY= zAV?u$z6&uof?A6|BucG7jhW{091OTMZmeP>+8+`+xmDJjqk&bR{^trb*xU^MBoh;12CZgR{89p4Wdf@zxI(TDZVo;HMycBuC6T!U+1T!U+1T!Y@f Y0T30YdWMfoEdT%j07*qoM6N<$f}LHX{{R30 diff --git a/Resources/Textures/Backmen/Clothing/OuterClothing/Hardsuits/syndicate.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Backmen/Clothing/OuterClothing/Hardsuits/syndicate.rsi/equipped-OUTERCLOTHING.png index 08c39ae55d22729bea94671043af4aa3f8858cda..b470cc823e83020888da90c0fbb8f94c35fc57dc 100644 GIT binary patch delta 711 zcmV;&0yzDO2e<~1F_A$}e*&UOL_t(oh3!_|)}t^8q!8@-Ex!Nj?m)EWhj_8yZPRmV zbYQ>)!_e`|L0^I|!9YN-xV%=R#D|C++~Lg)QE`S>p`3x3L{)`4hI_shf-45DTjCE~ z^!?`zh8DjGN?{-y?6{PKpcK;m=kL$1)Z!lk&kUZ$d64Vm@3`*Be*gq6eiMiRfIt3C z5&|(c-S=H_m6-sU8$$aaws{pQelB8*Uj&GJFoyy2LDMP(eyvf9Uj&55$Sj7zblgeD zg$oiaEG>Rb;D!+y#AI9q$3++!aGj0>swV!E_&3#oAYk=vVhw|tzzsaO#cU$*#IO+s zTM(&^1P9*SYWSEPf8#Jbbq4qMn~5M6%1vzXDFp5jX!$X18yL(lxqphc1lVh2=a-xy z#XADR77NN{MUdg`994n{_)q;8cuNrV;bpQQNb!~c#pF9Q)xZa@J18CA5QrDk;YBo8 zLB(r{NQd79vhQaEOfr9m9fyIW1p0}Prhq~}anqFGKgXBge@ieBpvH0fufFATpmCAp zl_^JPXx8^qctzj#5feAgS$|eGuV}V z3An7zL_ZY0Il>A;VIsh{%*fs&tQv!>AGmL5uSsWu?%;R@PSnLY5F=gzSd}S>@hUJ${!4< zqM=UvJ6?YXp9s`{@FM}yg`vA&=3y@L8>1Y4|002ovPDHLkV1mDBN|FEo delta 791 zcmV+y1L*v?28sueF%1M~K}|sb0I`n?{9y%=E>eF032;bRa{vGi!~g&e!~vBn4jTXf z0?$cAK~z{r?Ur5FoFEK@dHHZ_tN;J+_L&%$ptu+9?arRFU~wBYlYS=Lhmm%F%{4*Zi|2~?e*)0Lgc$Ztr=!v zT&{oBZ4tGmw*LO}du=K5ZvjQdOhB88TRX(Jl?V`sd>1Gi1oQddSgI@F^VZgNZM1^qk}Cn$tW)iwt7#mU9 z0`+bJJ8zDE`LUi`J2tFR(0o0dcng4(G-P}D6pWXLkq-}PSy0&2xMjqgj{@v9(W!CE zh&ew9B(}JaE>8k8KK98HJn-+&S4{aRVELgm@#ib1d=wy=v_rQXIH6pS%D@K!vd4c? zfW|E&N;^`7)-6I8DC_DT=(sJSh!)R)zy|?5yN78AB)an?yW2oqgMY$T;42^m0dkzv z|LI$HP`Id152?I1PAf*ZVFIzs!oaTZ9{p;RZ3OsxR7lh{1gP`v<)$uh)O||x}-HMa1D7n6Ln}ZS6=%4qYH4o&>Gm$`v9HDS_9odPJ{@m*LM84=>lRq zs&5H5pf13hX|5u8cn6)CI`s*l-+;OR3g$v^%LPWsNtho6cJ3aU&(Zq;C<}iuelJmg zO9nUH&jL2U9}Ro;F{>;lO?+Mrw~7W@K*s+!TVF(2aEzL{vY08HeeL6 zUGV-CwhP`raEU;f;Qc8q)x3Y;BB09rX&3JNH3GXO_|pvs`$>Q`_!NTW@vsK_{uhR4 Vu>{$0Q(N) zum1kuf%kj|iy|0w+F1|4s2;I`Ck5@hxBfN0awb26d%^6W-|u^~_im4m**mF3{QlX; z@Ahi?_}w{p=8W?6Tc4k|efV^B&9}c>S+96q>OaEi_3e#={-(SqM|AsHFzrXhgeW==}aXaLd z)SpA5aV8_dww1gpw&3|rRr{x1>ndR~O@l;=bhG~bH5-f33C06C7Ur%nja_g3Q{HlYyOoZld zVz6R8UhX(pA87`Q;h2XStsbMqBHA9DGn#m)n!Uj|QC KKbLh*2~7at-c=L; literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Back/advanced.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/Back/advanced.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..948266a7bd0f0c547a29fcf0c86b42382cb8aac9 GIT binary patch literal 814 zcmV+}1JV46P){z=VO<1Q{8$12o*%kQ;K~;2@9q6m$LR0lc$*@)b`(uP}SOJ(T8=}_EPAQAA1?ZhekhQEw0vDeN)%Y&|(|zV&XpdiEe~sMTY8F zb1UD!Qnm40RNr>LlY0P{{KU7yvdT_9i*7-4t&{^C{WdGVFMc8cWMxGq#`QRGcAs*M z9#w&DReqoRL;~m)8Oje_>8Hllwu0NL{66`KF9CfJl{X)w-`!p&?}~5qI4of=cUn(h z(QEP$pj8KS_01)#u#1)#u#1u#94{Q>L`V1EGn17xs2fCBXgV0ZYzRy|yQ0Jf&H@(0MR zdH4kKS@{EWhlp=~fXslj{8avcyoLSwG<^04us?wP0qhT8e*pUf*dM_D0QLv4KfpYA sci8mA;CF{P0}j|9!2W>$A%Yj+4`daB4>ae~#sB~S07*qoM6N<$g7lA%xBvhE literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Back/advanced.rsi/meta.json b/Resources/Textures/Backmen/Modsuits/Clothing/Back/advanced.rsi/meta.json new file mode 100644 index 00000000000..374f08a1c37 --- /dev/null +++ b/Resources/Textures/Backmen/Modsuits/Clothing/Back/advanced.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "taken from tgstation at https://github.com/tgstation/tgstation/blob/master/icons/obj/clothing/modsuit/mod_clothing.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "delays": [ + [ + 0.18625, + 0.18625, + 0.18625, + 0.18625 + ] + ] + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Back/advancedsyndie.rsi/ce_rig_South_0.png b/Resources/Textures/Backmen/Modsuits/Clothing/Back/advancedsyndie.rsi/ce_rig_South_0.png new file mode 100644 index 0000000000000000000000000000000000000000..3470de4a8d2c36d2cacad1c16840c07ca3ecf126 GIT binary patch literal 331 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5DEQaY z#WAE}PO@de1BSy6Ok!<}Y>W9MN)N1Hc9V73#Jucl`9J&GUlwgUR<2Za4okFDJ}b+x z=}t)e%!gl&?p|Rc=6>-Aqr!)0cf~g>RbW`;SX0D!Gm{}@Wk-w9;o0KfB{UdQEFb)P zJe{X&(<6Wm+6G}61 zT^ecxc!lLH6%QO>;A)LfsGa)o>urCY)z|gdPG3}IaS%HkWOJfOfZ?ay6ys<5w;ih4 z8$Q|Zuy8w7reIgJ(;=AsO6j>2ozuO}D<`zE5#5c}mT53o!gXuw#?+jis ZFu12@O)&ob$`cq644$rjF6*2UngFLafIa{K literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Back/apocryphal.rsi/equipped-BACKPACK.png b/Resources/Textures/Backmen/Modsuits/Clothing/Back/apocryphal.rsi/equipped-BACKPACK.png new file mode 100644 index 0000000000000000000000000000000000000000..704556f3e373ab858e0943bbf6cb8394b9b738de GIT binary patch literal 633 zcmV-<0*3vGP)Px%Gf6~2RCt{2+A(X}Ko|z#_mYw!mO;s2FeEnwiWBIhrBf;N2XrkoUHe!13re?+ znX+Z;*mlYyyd|dK79$XNNL-|72#Cv|o+>-Z$tUbYir)u}?6W1`eL8&teFqQ`5fRa9 z61F?Eovs3aC=P|GZCRxB)T`0(R{Kx6htbHl{{J=G9iliCvje@WZ5gEW)Tci`006zs z4ZM5dqPMvL0O)jFNa-otV_FB`Fc+P z^CUUjJ3*t8AdqEyz16Q`yRAm$06p#Xw$pK^vj3CM0s1arVw(pV6#(FW5}Z{v2@(+z z5fKp)5fKrsl+vfDhj8;p(Sb0K zfL@FCRP>q<0Kl%_#@gWT-RF7Had3VH#L+@JxNPG$@6r1ED|o@rPx>p z!RZNf`K)XV#sK_Fc-9M#>Oc>?ENL5)pp>5K?H^!kyF0ZcrS6J-E?ZP#j83riEoaDBiiu6JIT_uAJ=&!&`~DjuvUGXThfQDyZg5fKp)(F(W$!a?NF T*F4~e00000NkvXXu0mjfk8T~Y literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Back/apocryphal.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/Back/apocryphal.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..c1d8c4f68bdce86a6a0fb9eeaf7f9bf2894b2dd5 GIT binary patch literal 655 zcmV;A0&x9_P)Px%Nl8RORCt{2nm=pXP!z?F+tR_7sgpq5>jkZU2$*J#^(pdPfy~V$K}1NKlcEH5JE_4 z+K!jB9WN={|F7#eBp0u(Z6^Q_g#orFapBycE0XlF-xz2 zC=76TaEvGnFlx-O31Dlz2>|&1Yl=~0hA0fOYqg2O0B1)h>iVKB@a@xwtUa7wWB4Pt z>`c;Lk;%`m>iVJpH_fHWvD#0IaNfh{6DamXjS9&ga^fv3?*d^hHUqwef0B zIK4I9{I|eDUlf44>7DMYk15&$`6L8jF6&y}1pwfE_qDpdD0h~9*1n7blY4@Ne(4p^ zcDy9rdr=t7C7>I9iFOdI^hI01bvx*GpQGOgc6MGA&ZT|6|J!T}Sm=x21yTXuFJ{|C zeHLizivlnnUo33j)~AVu{?aGGN|U%xUxfav2O&ZTA%qY@2&s+x_BKd=fJB`BfE-Kd z512gJs3f9=g?{M({zDSW#ut~SkX(c^0^ zDg4Z@R4QO}ZJ~t3^)@nzrjFF)5kuRGm(`}+5D zKa2h!-07UqC&=(jf)P$#V_GzE$=$c6&hC}%*^FNTv;O}p*uU@bBQLeA>uWjQJ#YW8 z<`;Ldx!>(8X~DK@@=9Xs?{96W^ZYf@!trF>eyQVsKCjnU-=9?TO6t`6aF|`cDfWNw>PB%|%y?|3TCH~JAfM5q+>R&TQ$Fom!}wpy-RWBnkG)&a z3Af~VlhwBfKM07k@BH$b=~Q|6lZ+2t)0i@(Wvt~VXCL^mL4t9%;Kkctzv$_*Uf8yK zE2s6m7YW(>E0^R(crzYxy!3BAOY;#0zJw@l2^Keo8ObaSmbj@Ml@?QX>70Hr?d!?u zSsSAF99gc@@QxusP-%M3f)vFGcXsV)k17^t~@hw=%R9X2eE&<+)vU@@I3YC?H&6W>t}`)NIu zUq3vb%F?o&dxd?)tDizm^DV?R4)Jq09CBK*hi!|_d((>j3x6{!H^(q1?T!88qq0(p zTXsQru*haEFQ#kPv=pCDS;{T4`Bd?#-3|f$`~O-@Tm0dF7iuyA^8T>B2>mF!>yO$= QU@~U#boFyt=akR{0M`>x761SM literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Back/atmospheric.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/Back/atmospheric.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..7226bfb9a65542236ef7c30f95a016a58657c441 GIT binary patch literal 854 zcmV-c1F8IpP)gsxHnfC96w3=X&-_ZaC zCtW#JM(S}KFYnYbIt9{#JAN0j-NT% ze3us+uS=MOi-V_{N~Psa5nL^s&3%F{ZO13`iGSki4e{A>&F^Ty!ty$%9&K$beeb-0 z$cHoM(= zp0y)i^gOS8Tc-eRjHVbGZKalf$g=<9bpd}R-7eOWvW@0t-BY1SzU^s{HY#3nE-oS| zcVhS5K`e|vk#G|S?g!t|g^(JNv$?XEa+26J`2rgPPNVPe0Chz(*8nE@jxU8bN7+1{ zek@_%kv{1>!Kq#6$nO{5kpXH%rja-rDLTx<-CK`Hl=wBQn7%YjqsH zHi*h}M!?Gwu50A?lkfNx*qWBQ@mrjOBtH(`6yMeD@FuJZeEA^nzUB+?RXX{u{|{)J zmyO;6o94SVpa~7+;C1pn^#E0a>H#|Vo_at~2d|UQJ;3dXq3;1|ClH`?@cGFQLM}D{ zAr~8fkc$m)yCUZUI3K|I0L}*}aXtVc%?Hra;ic(Ji1Psg9#lR+J({PSK;Cuk*1N;={1HkzJ&Ij<*;Tq=yxCd}P gfb#*~6?y~y0$SIea3D2$4gdfE07*qoM6N<$f~n1nR{#J2 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Back/atmospheric.rsi/meta.json b/Resources/Textures/Backmen/Modsuits/Clothing/Back/atmospheric.rsi/meta.json new file mode 100644 index 00000000000..374f08a1c37 --- /dev/null +++ b/Resources/Textures/Backmen/Modsuits/Clothing/Back/atmospheric.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "taken from tgstation at https://github.com/tgstation/tgstation/blob/master/icons/obj/clothing/modsuit/mod_clothing.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "delays": [ + [ + 0.18625, + 0.18625, + 0.18625, + 0.18625 + ] + ] + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Back/brigmedic.rsi/equipped-BACKPACK.png b/Resources/Textures/Backmen/Modsuits/Clothing/Back/brigmedic.rsi/equipped-BACKPACK.png new file mode 100644 index 0000000000000000000000000000000000000000..d4338a72b56a195fb9bb2f9530107a948a078c40 GIT binary patch literal 568 zcmV-80>}M{P)Px$@<~KNRCt{2+OcZeKpe;MZ_^SQAq82413@{07q{TS2(4c70ABk79lQDkvUbhb z7wGC&=w3P$5-%P^!BC1ES`$OTz79o>Ln%GUs;r~`&mw`1`00P=yTf-Ngb+gfw;mlj zKvjVso8tcaa$fm8oGXCVi2+#Tb2?GHy#i#}htltJRCB(6O6$ZZ6#_6?uDCkQ87)@; zC>3stQ-)Io*wyonA6%<)>L(ERvFSuHSEu=JpS}JTvB>A8$Ac%erEAc;PqzTP?1$TX zbX4hCPW1q|?*#zEY{q-t1*p{e;NTcgjQmQ4Ow$CV!Ur=!Sx)uMslAc3PE49!w7T^RfghVRy)d?i zC9HbDtFNE;OLYLYnXL*i=z2_VuJ;Pmr0LBygRW=wU8@2VhY(yD1K>XM-;_EZu-Ic4 zwkc&ZS`}d8p8(K%{-S)Mh7}o$%(a>H&&{Q$T0aY1ddf`t=k@0d{MdSGIV7!Px%+DSw~RCt{2nm=pXKp4iKv_U08Hnu4SK`^lw_ir#+GIdV6bj{$7`5gTe9Xqyz z*Dh`6OkRqyoi?JN6fXi1WI>FQiW+sWPnKeba+f=+qVI39bcgSG{p!`7xqASDAP9mW z{#Q0czgVm7Malco=&SHpS?Y6ti3yKA2jz;n)UP@bvh_E4#jDj4wEMsDVswS09S;D| z8TvTi-$gjx1h5yWN`eagd%Quot`7ic>RQ~!u34W-Wb1P!VC*>)k$D4LxpeHFVUweW5YAUV(DO#MpCU(PRKUI}i#$M8BzPOL|RR!->F{TnS)UK?rLY z;^1y7eOci=li<=fZn|9**%4ak^tmg5U4Phlkm_sy{1sncP8?+wAX}fi0$2%lhJJby zGPY8ygeqj~b3ZBe6v`DdE<@M#V_{WKUzNU4um!`6R+XUYAFo1RcoJMyg6l++Q$p`t}qM0 z3PQl1wXxG#)dmT+_kVmb1$1q3L~jGl!5Q8?+~yur$RM%Gj38=I;34_S-Sj7j!j%9P zKvUP2EGo%+)mTB8@+5SIzOY9?*dPHQGlPUoe?qPd5^Uueoc=($VlLi!XL9SR^f$N? zpdtWKWcdSfXOLjyzqz(k?QKDA?gYpVfEU^RfLs|Q<_Dk=0G!ksuoC_N%$I28{(!6v z5-f(y`~jB}XQN=4(c7X2T+jXrqX@LU^&U}Y>JKOwX7p-ul?vdav9;C&$npo|)*wL; e1VIqQo%sVPs{sA#n8&yP0000@!3hMUL%fmR5WyC3q>~h(L#!W>AdQ;kS-18?GJ7-r|{>=)||hBQY^S zH)x6XLo?5XOX~%=m7`>)A3CHY=%n|yajny-v$coMD!QLI+c&$o{d?WnduR1_zyF(- zUUsu`x`K=-!^0H}9PX?R7FrC4ID;Hy_It74mg;p^onM?PW?*NQsQ2%;|MHT!+pY(n z?60|Z^m2Ot@7&k=X1=@oTh1_@^C}YQ6jrm0-Y3#Z*<0_)Rv#!T|NZ&Fjn&^h3xJ}(_xz9K2x@5UyzO~$`U93P z$14BZ9`LKPdpw^-y@AK;gYP^R&4xeTm+FPrH0%jr6zJn>CWXOYsZQVQ5_1o1 zUtg^m-p!Z({8HJUl#DfgOlpf(r}6GPaWYy$S#?9*0$G0hd!7#I-={}5^Rq_VKWLiV z@KXN%M3vMQr%8K^4Y$koT|K_wwBwxET5W@W>^)b%W9+ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Back/civillian.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/Back/civillian.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..ed65ae2176a29d98fc70cce6a783dbfcaac17afd GIT binary patch literal 618 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=oCO|{#S9F5M?jcysy3fA0|S$c zr;B4q#hkaZ3_X|vWscb^b{v~_;HYAZR)(*VVy?!-FzJ$w-=-bVlu^pcTDj68CTGLW z6%$MhoUSiu>X_DcVCC9bZ|)ry-rVtSZ~6L%|NraW+gtv;{Qd6#*8ca*86It5Q~=t7 zptRIgpBcZs5%b48`t72w%b$Z7#0*xxzsV48V`Ta*SB9`xSg?MDwoU9FO5?s!b zJ5yn~!@iy`hYQQOR=uh=I-t8Tr%dqZy}lHQH@ zua&WXU*zz(|J?MqreP(B$HnClJN1dv%BwXDYV5mzHf$*tm)f1a!FB(>2qpP_KLdX0 zy{&P`=e%`>ea0#E7tfiGNbObrr~i{d{2Y6MUBhR_Rlnx&f2d-5&V1k}gRWz6f!zTC fghQO~HTbLb&no|6 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Back/civillian.rsi/meta.json b/Resources/Textures/Backmen/Modsuits/Clothing/Back/civillian.rsi/meta.json new file mode 100644 index 00000000000..374f08a1c37 --- /dev/null +++ b/Resources/Textures/Backmen/Modsuits/Clothing/Back/civillian.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "taken from tgstation at https://github.com/tgstation/tgstation/blob/master/icons/obj/clothing/modsuit/mod_clothing.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "delays": [ + [ + 0.18625, + 0.18625, + 0.18625, + 0.18625 + ] + ] + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Back/cmo.rsi/equipped-BACKPACK.png b/Resources/Textures/Backmen/Modsuits/Clothing/Back/cmo.rsi/equipped-BACKPACK.png new file mode 100644 index 0000000000000000000000000000000000000000..d70639d36d23368a2a5dae2b5ab758fc2b21fe61 GIT binary patch literal 713 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=oCO|{#S9F5M?jcysy3fA0|QgF zr;B4q#hkaZ>@$P|WsdJ>4-(h*o2s|*#soe`rmgMWAsj1mORqLfdSrM~=XLI3^t%!)gwKfe3^ z`_B7&zdyJu$KlTEV4=luD3DR0kE@|zjp&5ErrA>a_da4(&$3_0y5;?A9=$z3i|_sn zzWrZm;tSK07hnI__E+}#d!ENn--ktCz)m|6tCy>Uz%Ua z)bUUF_?&(F)+~IolId4>+-otX!i6#4ChJx2es?^I@jsU+!^0H}Xh9Of(6X3GK?WkF zzNO*dW%0AOTVGCl!`80qm6OAGx7Bmw-nr)kM^YnZzxs_gk( zFV|yYgl8QQuf&|PJ2Q4vt34+HFK*DSj|^$5EGxWhd0#0@YZgl;}D?WPwKR_Q*{II^(u+DW}f50pw)@tI|_ zTZ=idmtI(!P--Z&ns=$Ifbxw=O0t_c)Q>iGzbJV2eOCATr1m?%pMR*kuloL;^}EmS zs^8z+d%Cvz!Oj~D6?$e2^SXH(o+mLs*g1tqVqclMP1P@_HF@7JTV`OgtH zmk*NnUhOnoW4fN{?d6P` z4M|Sw`|EX-UzPrdm3Cl1m(us3Ap6C|lhcdMU3TubVEx0eBr)?&i=W-xKj&voGTWcc z%<=E{jR_jpv*&+&9nhh0Raji6%fBeBm;d*KA-}c%4UO)bArz`d-P`;BxkHnFo2fZQ|8d#QAiLwek6zEV#epAE)1x`(g_!;5eBN+< zY4r{xQ|)=XH@)5>uy9*Rm7H1Xtob(@jvh^A)Uwgp-mX~M@@mD|Z9bo;&SQ$6ZGGrt zRrc&t(X*KgR6&8}~GzT{jNRiCqmW9GB$ zy?pN8=VMnY>!miW&uQ56V8hlQg$J)oG5&vi#P{=5-VHk+6rOy({|H80!J_Un=M81)}NN&X`^K~#p*o!3=mI$am&Y7$!~P)i)ZsY@V%`$kn&k8M7=;`mJ;t|Ah7hr)wHk)-=`GEjYO+c86-$xzCIfE#wdUWJtAp&OE8C;WOid8iwc0 y7V;N_o-^}l>;{rR$#d*81f&_xA7wjG{FgCpe({1oI%c5c&fw|l=d#Wzp$PyD1#S%h literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Back/cmo.rsi/meta.json b/Resources/Textures/Backmen/Modsuits/Clothing/Back/cmo.rsi/meta.json new file mode 100644 index 00000000000..374f08a1c37 --- /dev/null +++ b/Resources/Textures/Backmen/Modsuits/Clothing/Back/cmo.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "taken from tgstation at https://github.com/tgstation/tgstation/blob/master/icons/obj/clothing/modsuit/mod_clothing.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "delays": [ + [ + 0.18625, + 0.18625, + 0.18625, + 0.18625 + ] + ] + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Back/corporate.rsi/equipped-BACKPACK.png b/Resources/Textures/Backmen/Modsuits/Clothing/Back/corporate.rsi/equipped-BACKPACK.png new file mode 100644 index 0000000000000000000000000000000000000000..8486cd455c4f686dba8ee87819dbad9f79a1772a GIT binary patch literal 772 zcmV+f1N;1mP)8#gU6US|M_b*qT5br0ixsW zo$ge&n^1r8^wHqDk^|H2JG6kEI%?IxiD2-b`!V_E0j4kAMm(L@mSEf?K!f)>V>r+? zh&#tqI6X0mKflXB8YpE~L$_y~0Kwvm*SPoXgFgejA^moY6L9l;6_5GR8!F>T_KH9F z<&~;mp3!K}I01KO{^I#q6lW7hg0fGwbqw=z9gGt|jBfmcx3nHyFY{|%j1v&;+2ij1y2>sL)o&`bQE$8Ohix4~=mG1hnuq10w~9SwK^NWv;4y_X#5f z5JEyDgC~p?Kr}jd!e{}_zzKlmI03L6Cjge?1i*5f09cL_0LyU#U^z|zEXN5@tthgx zmE4b(W`o0^6Qhy<(J*CYb+fRoV0(2j%n-ix;wPUZdcSDE*1dFKVCY%x;e$KLUi zTmKMTWu@6ibz_za=)OMa=ii%^h-ek!9|A6*Zat|0%ELF3f8R?eb{X4 zVKD_-1Rst?F-ni_Z2h`Y0rROYV}`wU?30_s=uTlwlHY z&m@rHvCHZyZG#`D%G&w&y?|n+m{m{`aBix{-vv%Yx>=#{uC2GiWby*rNUgyeiScb) z{=T9lfCf)#XrTSK!Y^zQnByk{YW0-_&+q!v$U09KzxC*uI4;jG= zGq13Dx}O<>YJBM)u<$Fy$M`pmIqG&0#|fP3)?rs!{&xMTHebqstKc#Q6wr7ujH$`H zxw^xC4|73sjxE{XE6o8bzpqeg_Ht#dxXhJI@}&(B4p;wEXIZBCO6vfcXvFjOhG=yr zCLzn~0F!(v1LEf^t+1l$7n8TvAAD}6=U9;qzS0n&8TVgxwq=?xZ2+ya>BS@MjwI@K z1b6X9XqvC|6d(}2bfn|Z)y3Q3D=&r9Mx@7ZEK_`~FG7R3aMOJLBnHpL2EcQ%0q|UG z06Z5P0MEq+z;m$y@LZe^Pz7^7fb#)n_UCo^v`b7IrOxvKruOG``CIW%?dYr6D0P|- zAf@?$m+@WLuD^wArF_~VSCw`?;JORC%?FsuCurvb=*|x+A7CP%!1(}`hHyTB^8uU> zxV4`10h|xue1H>iJ^-8#FvjOkV(?sS06Z5P0MGRozOITCI_AVN00000NkvXXu0mjf Do{UN& literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Back/corporate.rsi/meta.json b/Resources/Textures/Backmen/Modsuits/Clothing/Back/corporate.rsi/meta.json new file mode 100644 index 00000000000..374f08a1c37 --- /dev/null +++ b/Resources/Textures/Backmen/Modsuits/Clothing/Back/corporate.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "taken from tgstation at https://github.com/tgstation/tgstation/blob/master/icons/obj/clothing/modsuit/mod_clothing.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "delays": [ + [ + 0.18625, + 0.18625, + 0.18625, + 0.18625 + ] + ] + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Back/engineer.rsi/equipped-BACKPACK.png b/Resources/Textures/Backmen/Modsuits/Clothing/Back/engineer.rsi/equipped-BACKPACK.png new file mode 100644 index 0000000000000000000000000000000000000000..f99ed7d6ef26d15509277e41b56a7735f3e34db6 GIT binary patch literal 738 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=oCO|{#S9F5M?jcysy3fA0|V0( zPZ!6KiaBp*o%a?=lsLYh+qGHLw0gpn0?oTId$(lBI%#rzp0IuGzZO2HgV)yDD=g{e zxVX}Jxq`>%EwNgP&Ndb&=LI!)O)L2J#6n`y^2~XW>Q*{G&h7B~{LNxmppR+li z{_HQ~`D%_cf{Y1$91O)S3^SCO4#=!!m9f9}F!%2kQh()bn7li zxd+Vm*X+IV%Hq}WUv-bVF4a$A5z&5q@4*$1fN64?=a+o?tp3g>`rMwmyB;ny;=A6z z)9TvJ^fg{gEBNBqnrD5^RM(jrd`3%ypHa(w`OnY%oXLL{L>Pn#T`)7@ir8GS^?}mc zfSxa#nr1wge|Iz9v%z|fd#Tz##TFG#{(v1%_XO2HwQR`xw98?mSd=Au#qI8ci7NHE zt$YD%L^gAIG3jLM3BTJ^(wG$Xa`_&vC8fV__b}h&`oA8-=XK27DX+dePhFM=OtcK1 Lu6{1-oD!M<3LQmG literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Back/engineer.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/Back/engineer.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..12f76c65dc967b3cfa22c57c398863d43840a26c GIT binary patch literal 841 zcmV-P1GfB$P)QPbf z?4bumJp}R>6m#goQoVT-6stG2A{KfOFIsYHOsV;RLZFAnVh`~Y=bg>0E7WE`W@Zoj zK2YAW+0AeE>AN$#-RBSzE;axO7aM?tE3^UAh1JgL+;pF+uq<8t&<50=KlrEGmM(s1 z16n&x96y%nP>n;n_<;-{;IF-AAJxkKw^N<}xUSsa({dKr@N2$bJ}002`2eH4RGN?*H5%j z{FFle0#JBW#=Z429#4#8?nXvzcRmMFT1_~JKl<_;DmTwY;`{1=lc$Eeztxb>Lc$16 zCr`CFdrc0C;A-FMRvEgqA77b&=I#p=#YzyC-_w9n<2Ug3@0VSehMs))1d$IyXHsb_cUN-V%3j)>{|9*1WuuS4rum@_=t5&T zd7b=79iVDl9iW3BsRQCVd7XUjfUpN9z5~=C5TkVP`OOd#E;axO7aM?tiwy{SAm;-( zAHewl&Ic%QJ^%^L2gtX>3%8P+51?1mapeQlt9i-^6sOL|lMnDFM6BlnMCYlHMtu1I z;XLO9I3K|I0L}++K7jK9oDbl9fK72e0Gtotd;q^4-s5}#cL3)DI3EyQi8tU69MFrC T@r-I<00000NkvXXu0mjfd+&k$ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Back/engineer.rsi/meta.json b/Resources/Textures/Backmen/Modsuits/Clothing/Back/engineer.rsi/meta.json new file mode 100644 index 00000000000..374f08a1c37 --- /dev/null +++ b/Resources/Textures/Backmen/Modsuits/Clothing/Back/engineer.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "taken from tgstation at https://github.com/tgstation/tgstation/blob/master/icons/obj/clothing/modsuit/mod_clothing.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "delays": [ + [ + 0.18625, + 0.18625, + 0.18625, + 0.18625 + ] + ] + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Back/engineer2.rsi/equipped-BACKPACK.png b/Resources/Textures/Backmen/Modsuits/Clothing/Back/engineer2.rsi/equipped-BACKPACK.png new file mode 100644 index 0000000000000000000000000000000000000000..e8f551944bc0384343eab7aad318fadd152db749 GIT binary patch literal 549 zcmV+=0^0qFP)Px$-$_J4RCt{2+P_M}KmZ2tuVM=wiV%Wrk%G1mhfbCt;-pI& z{veml3jla{>?i&z`%k5!A?D`tqvKw$k5=0bb?rz3%Ve3lIM|-W#og)YWD~LaMMjr&Me@uOkH^U zVMc$Cay`IfI~qDOTd*B%ta_B423>am+&4eBV^FpS0KiX!;Y9Hs!HI~7h=_=Yh=_=! z%VqPzGIdcZ8nJy5St=UBGIb&SWvL1`?+MxnzSaen3h(I5Y=vHbi&Cp?C)O$%EEV46 zRoWQ7h>gS3*#G+;%hW|<_#&?d0Ki*)FMOgH^VI;y%k%%8Lpr~ieKml$4zCjFnN^zw z{GK0ZbvU)K9z0RRf@bvneSqy~fYS^dC~9x_P1w)?Jo`G|cMovgffDQShUSd@(ZsKE n*}VM6Oo`&2kBEqfh~ne}0Px$nF1i@Vpn|kRDS{p1AQ7cixXWE*^?kPH$30)}OTv}B03n1BLdZX5 zK<1?Ng$b|Q_Vep!sqw<}4~ZOXnYNcov~jRCiSq5smwijK!vNq_-3T6^9<)q^4!_U@ zbPu$;IpNORocbahRy^OLxpNZEtLD0|3ydo%XEzs{MiPfJROK zqDQx1Y8~K{O0uYOpj?OCSX^`F^)@DoA^A%qY@2qA>@CCmqi9L#(`r!X{r zRX)J~KIe>?GEZN2~i002ovPDHLkV1hJp0Mq~g literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Back/engineer2.rsi/meta.json b/Resources/Textures/Backmen/Modsuits/Clothing/Back/engineer2.rsi/meta.json new file mode 100644 index 00000000000..374f08a1c37 --- /dev/null +++ b/Resources/Textures/Backmen/Modsuits/Clothing/Back/engineer2.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "taken from tgstation at https://github.com/tgstation/tgstation/blob/master/icons/obj/clothing/modsuit/mod_clothing.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "delays": [ + [ + 0.18625, + 0.18625, + 0.18625, + 0.18625 + ] + ] + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Back/hos.rsi/equipped-BACKPACK.png b/Resources/Textures/Backmen/Modsuits/Clothing/Back/hos.rsi/equipped-BACKPACK.png new file mode 100644 index 0000000000000000000000000000000000000000..8aef32f0bc41f7c6f2858fccc4cabef0ba5ed3fb GIT binary patch literal 657 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=oCO|{#S9F5M?jcysy3fA0|S$@ zr;B4q#hkaZto;r<2(;BN={V(~sN`YN!t`;)ghdYS&Ic7Om{i$44sx!rV3O5kW#v`n zP~nPOWMJaKqB^m_HQ9zQTe5r2W`09L__5i~@aJ4Fw?#EsL2H zWJDkQVh_F-Gdl%QT0LfI!?_s+g~OYzLfGm{#2tzlP^9+FG*Fwx8UB$4qS|)}`iM<9CU;&J)3U!TjCtRI!J=B|R58IL;bA7xgXjZ_JUM z$E?S#wuWg1+x}V;;s0lRk9<0nb!XnYJ&QM8k8cTW*e=QYzgf>B$&c|=!eOn3tPgX` zxMd6v+gq%U`o5WK#hbfFHf!;!8%b?_`1I+`2>+JeV__L#y%#gRC3AlBmnf&adVhGz zLig6!F;le__Ug4aGaQn6tuXyNjf8|4Az?7iuDF?)@B`eO z_!0a8HWnra6ImRb91I)A!~{i6zz&jNq9!_;)LzTA6dTfO?>mS4-hnH3B~N+V?|PIs z0h)^p0L?`PfaW3tKywKju%61Ato{0)u7&BBE!lh_1M>Nbx$t&z8#XqxyfqEu2E_yn zerN+2Jd;VoZ1(8`E{p90P?2r|7C-VF;D9{w15+hg{Llt`yieVhyI&}5+3jTV@@F5} z!s1810+{2f&pHNQ$bc{oW1M|VerN-hC!Ny+1In$sy?xj0!Qpw{H*VdIK&FED)kewQ z9(0G1`9fC!pM_alZKPm#Z*2GX+a<{K6YdyRX)N-~tsR$td6e^wiST2s1U*m+{zFRV zfaUrdbPc#Y$<4Qi*1_bJ-36Ff**%|mB`}*MaPI>1C8o)1alezaUf<@UNvlSkI%RN- zlAZRW!05lgF0Gf*o z0L?`PfaW3tKy#4+q934qfG5fa1c~wiibVMUpnL%317z@H?zL&u(EUW0WtXT@&TQT`6%TBC?7!i z0Llk=`v8(C9{`jOkj|%k0B9~U05lgF0GdmC1AYNU<7g4-*t`?~0000t6~szQ(jJubTGxFWC-zXXvy(LK zW9Dl<`@Cc93udlV+25R*b3-6chME^Yx_G9)i|LAh=C6e zdQ{tSLgOVyGXEP&1y^$7>iCI z_cVjsBQ{<~SG;dBs1@zd@z@Cvy!pHWd%93R0!G#2uoH0qd=U%IIAWs~W`EWvzw2!K z?K2AT*a?_@b%3RZYZxB5+-UpI^Bt3q50v7u6F^LT97623)%d*Y#J$&oQY?M~qJ93R zyu8|IN~EsT+xK@uhhrz8_G6WnIyaR~H`++XzxL3u6Cj`yUprtaKpX{h=vT^{%6p$+ zDS!|XTA4h-RshlJ#G1!e!i$&e?JktT>YFSkP?u(bEY_4T)>dMO+nyy53abR*mWuGf&sFVCqmr~ ywxb?@+=R{1+zvx?i~wkk5dh6G0-!nC3-}8WobITi@R4T#0000ak?nwUdd59c4uP9xX}n*4%#9(W|IzQk3OSZWq3yV6U}D zI-fKYEwEi+>#=F0>Z5(nejD9hWA^pmox{It`EH-tv$^&e5Z*U^Cad6 zJ8v*l=$Scu?f+W(F{$MLXYF|AcB7-y%@kO+^QfKX_A_>!%e_)8{uBda{woLXaO;?ccZW|C^FSJAdtd ze8cAIb8kt9+8!6b;LWq;V#I%M=}lZPp;~WlvUA|SPv6+CJvUyex8l_FJjTtv>=CDX zyX@T0`n?eMOU+bC2o9|Km8mQt{^dsz+n&3MwbvT&uJq>lvTds9TyvX*ByGiW8`ZdL zmKr9!TgAVz|I_gR#p^PEZe{=5_Tv*9NBiynnwxbF*DS4M;5C`bCOvCz=i_P58P$FU zv9X*FpOq-O`&hfywDj+OhlpK6U%S@OfPA;(~dHH~M_sx{o7t@uOuw|9JACMgs$!YazdY>sbxM zbLKN^&cFVYIdz7Z*WBmKK5Ky-BW%^0|D+|lj7Jg=Ckqk6j4 zo_Fu;Tu)x+SaDS-hGS`K)Y?}s7e6eUBl=;z0AoTQ2Sc$716p_}F`N;ENGWljn5(^_ zb@^16vgXA?>So!DYmaJPjjQi9PXE0izsbaDW9F4AcX7KZZfjg3IA6rh2^PO!=l<=N z=p3uNlTY1K&nW+K^io$;T;$O`eLtW6T)6*OmTJSdN1Oku2hXkHIO-v^Z2q22tMXM7 zemr2@Ec}{F_kX2ap2SeMqOZxdXcvQ{X{8hhwRSG=82()mFkX}MnI z1fiSVLe~yDcXsZSme?5A#3JhAW2SL~qlxdT;-AN7x6BTj*iT~YJaSV>mUCWIP5Z&$*Ef7q>(-yibcy-7tNsPkpMR>g)j~ec z-u?K|9=`o~%rCkhe^j2}+@DwX^w0(k^ZxrH?yG+PdRrV|l<#CZKkwi5y^^_gci9B? zyu48ucy4We(%a{HT&?ey9-Df8;uF)KHa)9m-LG6NU)m## zVXinzk5^t1eR9k1?`ofEeEe!^8+Yzym0or7 zKjR(0Z&@E-n>EbSwB%fRS)cFBp~UaGK26(xOq65%_2}ERZHxZgiIQWz9bN79Va29{ z{Wk0|vt}H7y<2&aOxfHx#}M&7?TNw5eoo|#h>1Ah!0>DHuPsJAD-~ImTirG~8(ziz z=H1%_`+}IRJNAV}oZ&_%`*R%9{#31b`m>$+^u_+CRuR)O_g&(cv8zhWE&Ef>3h`;v z@-2QUrp#LZwKzi0`!H{zrf^Lv^C51&=x%xOnze!j66Sfc*5@>wW$pL2`>)D|9976M zH-|rYtsA7xaub&LJ7Vi)4I%RR5-J{U1;WOi@nse+f zxeU*l5By{}$6jE!K<6C$6^-3OP=Of&&?NMiHDP9j1zUyXZeYr0@O1TaS?83{1OSyC BXd(ar literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Back/medical.rsi/meta.json b/Resources/Textures/Backmen/Modsuits/Clothing/Back/medical.rsi/meta.json new file mode 100644 index 00000000000..374f08a1c37 --- /dev/null +++ b/Resources/Textures/Backmen/Modsuits/Clothing/Back/medical.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "taken from tgstation at https://github.com/tgstation/tgstation/blob/master/icons/obj/clothing/modsuit/mod_clothing.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "delays": [ + [ + 0.18625, + 0.18625, + 0.18625, + 0.18625 + ] + ] + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Back/medical2.rsi/equipped-BACKPACK.png b/Resources/Textures/Backmen/Modsuits/Clothing/Back/medical2.rsi/equipped-BACKPACK.png new file mode 100644 index 0000000000000000000000000000000000000000..a0d77a93a38c758be99390c9d1cc89f1ea8718f4 GIT binary patch literal 513 zcmV+c0{;DpP)Px$yGcYrRCt{2+P_M}P!tC6ui~F(sMwSWO$vnsvIG|qN2!DF(Ai1oBRGg_pTNl% z>7Y1@xK%~a$yjJwB74Rc@3{g$fbiWR&f+TKHbe;4PcXRrY=#uA<$JJQczklheP z!`#P2XU+YFs^yAt*aHBRHrH@*aD>w48USD%_E5E4@zwrWqzjN0gXo|s8Or?x^13m(o_-Ui=Vd5YfYGv! z^_q(y^x=731fh@hnv2o0p6Y(e^#A~Hx9Vave4dQ+x`EEsd8%BLEC2wM%Vn`zC?W`b z^!t5f^B^K3A|fIpA|fK9Oq)KJ&zdx`B|aH48cmVq^ClCk za>wI8jRlZdtjfQD%=$zHP@(&Oq+-lOL_|bHM04{7G$D#oT6L5900000NkvXXu0mjf DsFLpn literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Back/medical2.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/Back/medical2.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..b39803071fb2c69205325842bd8e893067b10b70 GIT binary patch literal 680 zcmV;Z0$2TsP)Px%Vo5|nRCt{2n!Rq?P#A_^s!kxw@y`+zb?b- z`B3}tD70rAuVv+ip{4B(%PxXyf35=Px*h_6VQBc#euu$ih|PKh zcX@}m_zodl=(-;IzF$fa_Wf4>000X4GZ#SD^{~~{5VhW5GQ?th0syc+j)7b3_6Y!h z@*?c}t^NVr)3d_0($`~vU4e15tFCHC zl0v0FcLzA%zBYi}O-FPFqMMUwUzw=(OHa6ccoZhLtNJ0N+Ml}vlGwI|{aRCt{2nmun5K@f&tB)Sj@s>DhM$`wG9Doub2%19LH_!rP2 zN;>Fh_!S^Z5Q_L{sN5hTElQ{?+i6mmG&G0bJ5Sgcv-iQq@@D2~?zBETJJ0RyO?LJo zlw$&*91{TLm;flp1VA|^py?NuFLiPrM?d=)LTzWo>PjbHT3Y_A{rGr`w&N8 z-xTd_q$DRmg3RvU!=uhRHlMt}m$87hBO*BgeD<9i!M%EmXZ`QR2$1%3KLR)b_Il;{ zjmty4-gz)S0-sTi44ELCkdy$Q!^5K}zmuE*xy#eTz0KVx$qA4o=yV=X9?$(Fz)Wv- z1x41$iE!5EO@A{f0i=|0IvsAC29x9j2yLJFX_6Gs_HNH2NdYl20Z@(!fO1R#lw$&* z91{TLm;flp1VA|^0Ln1|RTr@2%%i^s7jsD}CR{9)b6GU4DwhWZFnC#i=Q8x43T&Lx zbZi)OSvz!o-5|JUASi%$-Cuua@J%-$%#%sqCUpZ>>pMXKtiiMPE@nS|`mnIU3zTsC z)}366rHo-PeEHAog92ECXYHND+L192{Jt`Vz4t8zum&%11dQz>1^m4Nehjk+3i$P7 z7h7AK#d){;4XME3H#V*p=iTmZ@Y>4PV5~a)ys6vo%C~@&o(bQxi<$!nk_*TqP*p>$ z90Bq^O=%J&e*O|7C}488b0mhJzf_Ib$`LSKkLL!3!2+kk($Bhk25SE^6ssP8)->&B wEdhfCpZEk7TV!Hm0-zid0OgnfC`Y}3-{vM9jOUO;dH?_b07*qoM6N<$f{2nkPXGV_ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Back/miner.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/Back/miner.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..0c75e9df21d485d62d28348bcc89ec5d0186d017 GIT binary patch literal 661 zcmV;G0&4weES`iYhfY3qQMti?N?My7_`~qVqov|`@ z+8KYq(n4aV7B)8YR%^7|AT$(&8o9fUuDsmYnY$#+Jqg(fbD1-H_RfQyvkb=}0>E*I z0B{^4033&w0L4OSK-bT9Ybi~=DLD8O3s9|iVdL)~{?x{anBuCH{9smG8gTK;5J(!> z@AtwhrCBbQpBkg$Y=etmD+7pF5tPfNKXpOS8jGVJv z`{v{Pbo0%#BV>0ch;`elL9Tlj^udQ2e#S-Jt;H{Hd2gN;^_sm9xhA_AxG6Z$CpY zEwlun*)<5F^2TZ#c)s~A122fulWPT-#NVhLV8xJMYbO|QywmBX4~zgSoTC%^V8 z5OrdFKTgVX{SD^iPrVFs&h}aIrxIZFDP;BZIrvj&Kt#yD_2uT57b0*RA^;qR2mr?+ z0>E*I0B{^4033%1pc5?q0Ej=G`P)Px$^GQTORCt{2+C57nK^O<{e-5!3x6s05v2qs{d}#udqLsw3xw+r z(gs_xNpW2Yw@VRDFICidtQ^S}cSRnnSws$;UDsq+|33&MlkDc1$;@Qnc>p3JBBD>K zFzEo2C>3o{%8Fix;Q)8{w~6}lCGG{*j4jrTEw8n`7v1^Q!!w-xyu$Qi1xi^c702`a z6ScCoC9dPi#`>nzM?-NPPpY+sY^-mJ>v*!VwiSC2V$Xm{`V%}v&%f>*VfF9~o%758 zzHcgbdw}bBQZ6r}-+zqS=I3YO`)yp`bYk~sD%I%5APfia{Wi+w<*3c~+X%x!qWk4) z2>`&=_rCyue*ZCgJa7N-PAib!#hjFiwz!TbrJ^mpi#a*1Akn`-?qU=**>68QJ4`L>8A zz%*u~0nj=5yoggTV7v+b`1U(-K;srC*4(AX(`GyX-BtkC@iM;=x{fE^R$%;jqrAH7 zc%s)-)^qXtFr<`aR5WEY1Fmm6g)AR{UNY@G5fKp)5q(}yI`z109zRuY00000NkvXX Hu0mjf4zUgM literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Back/nakamuraengineer.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/Back/nakamuraengineer.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..99d703a055d95678ac268b143ac776cd251d12c8 GIT binary patch literal 689 zcmV;i0#5yjP)Px%Ye_^wRCt{2n!iumKp2J}sz?lO6va}UxQ7^!SjyI=V(An_#lRLZvM~h20&BZ5 zurYLG$=E*tsRL34OC^SEl^{cfO5M;P9HG=hCU=M&k%qzNA9168&t~8G-p`*u-`Tns z1VIo4K@k2^W};kFDcinbO~&B4lEBKn~d@ZjE& zGfX_s#j;*P=aTNnO8`oMWff_)TI39q2lq}pkgW7WC*a4ouQS2q(&==utl~&}r_&wj z8#;oF^|b>H*5L7Fs6CNyfu!}dgZ=r*^j~ex^3;b&v(e|pTQ}7NB(1Nt3<4YkAjpo5gVk$DY^Y`Xc?CPeWh30^WZfyf(pmsFXb{ z$Dl1ulGcw@0WipVtJRBod2Eu>*RFua7)E|r*M)ex+x(}?HxTg$h(AF50pbq;@dt=M0J7ho&ssn8{rRl*1wjx5VaoXf Xl==niOB0Rz00000NkvXXu0mjfz8gs4 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Back/nakamuraengineer.rsi/meta.json b/Resources/Textures/Backmen/Modsuits/Clothing/Back/nakamuraengineer.rsi/meta.json new file mode 100644 index 00000000000..374f08a1c37 --- /dev/null +++ b/Resources/Textures/Backmen/Modsuits/Clothing/Back/nakamuraengineer.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "taken from tgstation at https://github.com/tgstation/tgstation/blob/master/icons/obj/clothing/modsuit/mod_clothing.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "delays": [ + [ + 0.18625, + 0.18625, + 0.18625, + 0.18625 + ] + ] + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Back/nukeops.rsi/equipped-BACKPACK.png b/Resources/Textures/Backmen/Modsuits/Clothing/Back/nukeops.rsi/equipped-BACKPACK.png new file mode 100644 index 0000000000000000000000000000000000000000..7c7f6c28a897e8084836b7c6670713a0e285bfbf GIT binary patch literal 645 zcmV;00($+4P)Px%KS@MERCt{2+EGi}P!tF7|Lp|HFhe6t2#w5#!I*Wh^#d468Tb(f;^RJn-@tc2 z!5+unhfji(;^SUiVbn1gg4hxoFojiG1Jk<)xuy2OBsWRZ%gzt_kV|rU?rFFUITs*= z5JCtc@#sr7PcojD4a4H%lP1nW(hCOH9@Cd>KDhRn7@I!M+lFEBvTaTd@w1>O_5CH8 zi>4=A#N?Y*16yD3(5xCL+a_f11gQcPscf5YECXxXeSE4fVr{z*$GR_q4CM+STpq39 zVH!R`1=RX+hdOqB+ zgf9~Dlq&!Le7NCw%Le1))(yum$ymx2pu=wQ3cx}8YCKlgG<4W4An`w-+!_D?F4Os5 zWp#Xf(7wV6A4ttbxjR5;oezsnp;#`{`TkRryG)#YJGzk2?!`Dbmc(WR8frXCU%~g{XjTpU{e1Fh&XMhL(SKKs*h3H{vH)rO??sA}d*m8WI}Pw{svSM=x}J}&=cCp$ zaU5}OtVQr$5Z-rR74f`3gu|b}w=)WOxVg@Eu&hiQY6r{waC1God|jq1)r3rvZ>&vH zdzDqxH7#9MGgQ|!Ozt0eOsoR5&WC7>MoM&JU8eKKXq5f_0abeOV&6b+!E*_mAr*2Y fgb+dqA@krL>Vv)8)*TpB00000NkvXXu0mjfe-SDL literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Back/nukeops.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/Back/nukeops.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..0503bfcb984405c8747a3b4b8cafcecb889a3b39 GIT binary patch literal 707 zcmV;!0zCbRP)p ziY|_R0I7?JIJ&twxH>tAB1l23NQ-ExShY~jzOiZRzu_)TF5)$bp2NCJw>1P*;I0~*Em27vXoN9>+8;qEw&MN}J9X#_qB;NYkJ;LJ0Y zCd=5^Oc?8H8PMoFb^d6+4?VQA`Us@rwc6!V792F{Q|EiO6F8!_9AuGRNf_xHFM@RC z%elO}-Gpe!RrRSY(}w?{WdO}Ff}EydKe+Ym?$b7r$v)N2;ebP5%Ye$zatg0+?rQ7K zxm3JXBk`-7Th_Y(hrad{7%r(lU8ZAH%Yc`l^^Mkmxp##L=jGe6^UARkghP<}S_Vux zohqsRU-GC%=bWk+mTADDulFES5g2W6!F92O>xr zvwnDych3P69QxX8K*lNKJYD>^1_f4v*4H+`onLQI-f$#nNRl|$+~?Fcx(kpHEjHeK z3#;=S`o@pKwMJC85i&vP`+6f3MaP5Imseu295DcvBL={7!~j^17y!!=17JB~04zuH z0j9!|50HGo*C%Qs%6x!dedBz9_kG?a!hC>VeP4G0@B94nWEtrcLWPncI|1YqeCGq| z5tVTB0i?NpQjh2W5#0RPw~S$k8oOise8EWf83h7*T=6dTh?SDBBbo+ z;8|+(Wx=*->%JvV5j?^xpsw&}!8O^FHcG56yBnha$F5J`^UGxkgOI03u#KR0!xG(j z9byJta~LA}gc;EMFQd*d?J>)NqB#tA8w10q#m+GK`=c;v(&A|i8A)ZSou1;~>J4Tn zo7{f7k!hRU(<|+_ati*us(l%=uI9+?teeiF6&p&dBQ~^u*I)f8FFE7fMkcP=y$k-I z<6EP$D4nBg_u=D5xf0~#v=ZO-E=*2hE%+^OYVRzxhvSo|o%@s^hMl+Vcz3UN+VO2~ zH*2Zj+MGW(A{h5=_{(d_f(CEBJj ze0y}WPp{N^0>kcO+CMX=Xnp*d#hLIi$9a8~ah3@0$-+Z2Gqtm-9&cr_dAn^-`sL3L zk1##pOE_nhy!Ab+h2mQ$hFwP|yOcLSul+rFiRG@_i70_n#kimG$-}=Vcoa5z0@Evl Mr>mdKI;Vst0GcRCdjJ3c literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Back/nukeopsclown.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/Back/nukeopsclown.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..6b21c048dbac4e6cffa0804912bbc2a5b2de6a2b GIT binary patch literal 688 zcmV;h0#E&kP)9gt~MJ2^IHXsDgOpUh|?tB&JK(gW+89?xXz8;K@ z3?rW#YO6m!m5~P&mkAtvBLkY@Lw)zyJ$?XAfUScuAUE;TNFM|~tKd)@e?#+^G=JHi zZ)8BT^VIo5VIkPQ*gnJh-b7Tpet8CmTKKy2g&ob`(fkX|U$o=fuLAnam&+Aosfd4K z{~tyM&>SO?(=_b;{mbBcFa@+q&o5CM4sq~}4A4W%tG>PeEI)eA(XbCi@S8iIbrs;? z8&84By86>)+DEk#c$GBY>Kd^6p)lvYw(Pso`%aOLlH?m1Fz@xNyz2P3PBm(Cu3lND z0SDjgMo0sud%JL3tK+sv)cwK}-O!8bDC5EXB&HmFu+2mh=e6)Qm-Fo}b2d<`gh zU%0xj{ab?qtCHp$8xYK|cc^eUl4wX0oNMlL@~u_@0@1}LoNsA$o`Y|FD;ym}V;dJ~N5{ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Back/nukeopsclown.rsi/meta.json b/Resources/Textures/Backmen/Modsuits/Clothing/Back/nukeopsclown.rsi/meta.json new file mode 100644 index 00000000000..374f08a1c37 --- /dev/null +++ b/Resources/Textures/Backmen/Modsuits/Clothing/Back/nukeopsclown.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "taken from tgstation at https://github.com/tgstation/tgstation/blob/master/icons/obj/clothing/modsuit/mod_clothing.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "delays": [ + [ + 0.18625, + 0.18625, + 0.18625, + 0.18625 + ] + ] + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Back/nukeopscmd.rsi/equipped-BACKPACK.png b/Resources/Textures/Backmen/Modsuits/Clothing/Back/nukeopscmd.rsi/equipped-BACKPACK.png new file mode 100644 index 0000000000000000000000000000000000000000..fef5dd9c12c5c8baf671492d19e1bd9e5b44738d GIT binary patch literal 635 zcmV->0)+jEP)Px%HAzH4RCt{2+P`btKoke?ue;dQ5u;dzrq*P-M5cpj9Vi_loVCp#pg+J{XohCW zh@D@sq z0H<0fv#8;D?FXE_?OFTD+mE>T`4q!2z{%*FRG*X^0RZ6aZNuxic(i^9ujkGsLzYqr z7=?tRt1$rJ)q8L5_2_DhQ7AtPluE$)^-br!o{RlPfa%o7ej|X_bLT#nq0|}x+^qhG zFAI3_x-o0}^7$*;rB3WvrFOtnF;#qfZlD{u)a6N2w_Q0Mn@t0BCP5 z;lrmlXm2gewaZd&1PD#1=EEnb77H+o8irwjQAjwy9xt>ZQi{-YI^I~OLAOQ68_V?f zu27b;8B1#`%ot;gF~%5Uj4{R-W498TzR(HmT}u*Q?81o9bc*Wnc~&Y3$Rr`wadK3b zKb!b)FTdyd2--F*S}Tj#cLidNfX=(ei$|8RRAZ)ohw?uEBT<~x@1z%NRDO!?=H!`C zF)1pY#reKebvS7SHcNLBqtJA+4U2Ya&D@WGom!J@!%Ba;QolokZY%c*7<60d&i{yQ zSc&iAWyz`5$u_LmamHQ)4t7_txhj7NDQlanV;tPx%!%0LzRCt{2nz2t4Q5?rVHIkM)AzcVi76sCQI23CPalws*8utDHj#B>t5)l~KnP-=XNBpW*Qv$+fa>6PVB`pOw# zc@FtvfqJ>Z{MsJ#YkSno74pRbmglI3Q^xWfvbhY02Q^lAtkC*5RlfYD*=WCh_@WL# zGHJ59WAS+f-u?QaJOCa2=S=dnW&n0*eWeUYBuoJ6RoSb~4UakPN_hb|V z`aq9>zsFBTOsOGxcAfY`FUH#5O zP)A>B=}aT(ClV%iW8IuX5z+`0bK0KR_k0hO znp8a2PD9IcXm~y!&X2L3W~7&de(P%u)-;m-+52Z*ZMPo0iu}h%p|5=i_NL%q>6gCt zikU{T>&a_StN*X)3xXgBf*=TjAP9o+|04bX)ehnhxKf`FI6SBg)E^M|6M~|wuD{m>8NPtYoil-9S&7Ym$Su6ocmD1Shwe&-=5 z{s8d@h(AC%p7;Y)2O$0c#2)~NKVazf`C;n|f*=Tj@c;7%4m~LGPx%7D+@wRCt{2+P`YsP#6X9BTWTWw3+-z&vVDV${6=0KELzo7;}M7dRhJjn}lQfSH^D06MKU_QDaQ6xa(#=(O5%znieCfWffu zNGWize~3!Gg#Nd8sMJe1*gu4nBG%i$s)yjUY%Wkwo@Vgrm5;Yy1%7q=`2DjN>sqY3 z18x%&fqbnBF%b)`V{HMz)$8xx%H{%f^8SU&<^uKqqlt)!h=_=Yh=_>DTsoCex99SA zO`Lq%bAfa!qdd{kfsha8%00Cb3B{ z&8SsCrCx&Txd@9vtWZe`ive8EMWtR^?!xM5*NRDOHWw&$w7dMA&CLy^`)XOIs9aFZ q&5hOMwB-(1cLpLNA|fKX`~CtKr@D*pYC%B&0000Px%e@R3^RCt{2nlXzSK^TS~Ly8MVb3sIn#f2Qm!KD!V0asih#9tr>X;TEWyDnAw z1BDc64}x7f0~RU#0fI$HAzVmfydy~N+zheX6v>#`I}2xa*Ms;y)jB&n@9gZivon4# z2!bF8g0QJ1TrbS$3cmUK{9@wV)@|xrU$pzAV<)H3@14-654)nSL!;23yV@an&~`K^J|ii7KBf_?cpw>3DV{)Rgkj z=i*uu#G&sL0RY*Zbg%=T)H@SsqZ`qE(^hR z5|#eOZ-)gz5ClOG1VIo4LD)Pt{tprH2iS^V&(CWH-QimO0otFSld`V*D-VDUIq%A& za#RlF=U+emPNi1Hd-rWoHx7S*)~}y71O9|C`p*6UGe577*Xa*1{Rv_8o%{i%>cNft zyw1{Yj6a}%ycbD+J_`LX{sgDQNT<=F-flAa`_y&Wx{@QNzBvhsKS2Be_J}{gwgci1 r5PyL90|4;{{5RWSK@bE%5H^?JRZKDf>%?MA00000NkvXXu0mjf?6gd5 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Back/pmc.rsi/meta.json b/Resources/Textures/Backmen/Modsuits/Clothing/Back/pmc.rsi/meta.json new file mode 100644 index 00000000000..374f08a1c37 --- /dev/null +++ b/Resources/Textures/Backmen/Modsuits/Clothing/Back/pmc.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "taken from tgstation at https://github.com/tgstation/tgstation/blob/master/icons/obj/clothing/modsuit/mod_clothing.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "delays": [ + [ + 0.18625, + 0.18625, + 0.18625, + 0.18625 + ] + ] + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Back/rnd.rsi/equipped-BACKPACK.png b/Resources/Textures/Backmen/Modsuits/Clothing/Back/rnd.rsi/equipped-BACKPACK.png new file mode 100644 index 0000000000000000000000000000000000000000..b6662a97cfe9a6be6f7131e363601a5016379559 GIT binary patch literal 706 zcmV;z0zLhSP)_kXuAy}A3Ynv27h^c}Ii3lNevII=wOXTDX!i6iMpj8qWea4$(IgZTB#mx@S^K0&Q zSZ1H+x4ZMQGZ(-d5dh|h05C@cfH@)n%!yXO_{EAc|9}1NltSzA7GN%%z38yA|3$Sr zt$rMKFmbt(Emm~AzrW*seQyE7lFTDf7)&-ac_KOiH0a6>gR|u!^+hLu=p}nTbAh68R>SXT1)LQk0L&2qV2%g?b3_1` zBLcu25dh|h05C@cfH@+-^+fs*X}-zlxf<+4NQ_PbOvUC~e8>Vs9t^A(C>IG<0axaq zspI7({ht;fLN+1f#lP65_19u8hE>3g=Le{bHSxBzj#!{Zu(tLDC&!y;S#xcGTQBLNRJjr?*)j@pFScsTw`_;aP``C-39*rRcX3W=$@cnZzzhD z#sg_;AFntGFdGm?S%=RH->20{fazOf5J33s8g-rvP=&)bCKM5$0h`xsu&9%uEWR~K)(9G5X&-9{Jrvo8UdYYG(`gYy;DekdBn0upeV6KPc#)BhcM&bXWenG+TW`qs^b)3hss9Ik$K2)9TM}|0F%% z-EcsWNui*FfkQ@#fvKG%;djDLo4HfG4zH3qe!rk#LvVxpjz{KV4IMA7jEj}KeSLZ^ zyB^)yT5vXBr6FuC$M^61|CIF$y*jo`SWnR6M=#3@nXSf)&izrECa3$@Ihp%y70(s( zkfizFq8=Pls5glZ`e^g#n6rbnfA9LcyB43i_;|O)%EwotA2vK&aBRL!#A%?h4j;Xy zOnrIw@)Ktb{wtRM?y<4|`k5d8{DWHEtl9T>u=l*ZcjV#M+^cU->4%5*oH}}MZ^afi zzl?uh+w(Vm`Wb7+lKXS*w1chJY87O&&OYb;TK_G{^zU33Vcs7H^#6%VoIIJYbKu$1 z@D(bdCiNy8D!$I^%B`tw^P0tSS6himJ?3-t*M{%G{#Sn3>*TKfU$`**UbFa)C+2Z% zoLjEM%${@V(H67UPu;ISWMJPvk>TZ=s0-E`4}J|he_@WbBVU~|W1F7)&40V=wY@H6 z7d+SS(g-wYXuhAtcj5K_1RwR|ywm?2WBQZ1+B3Po_)qai>GOjm7`#gAH{*Ljv z>cN{8dUdNU7r0NEBlwwV`k!m@Ej4B{CdcpNR6;}$QhYVMZGOZrP~Y%_dCr{k&z~+2 zPO{SY`i{S#)NcOt{cWZ?wKcs_S`Fd#4372l<2~;)sV;i`;{*Gb&zA)&>t)yfW4Oy& z`yUg00ZNA?bThd+!^!*hNdl~0(>0+MO?&jd~-4F^67 YJ2NfpYdO`=4otlap00i_>zopr0MT?@g#Z8m literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Back/rnd.rsi/meta.json b/Resources/Textures/Backmen/Modsuits/Clothing/Back/rnd.rsi/meta.json new file mode 100644 index 00000000000..374f08a1c37 --- /dev/null +++ b/Resources/Textures/Backmen/Modsuits/Clothing/Back/rnd.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "taken from tgstation at https://github.com/tgstation/tgstation/blob/master/icons/obj/clothing/modsuit/mod_clothing.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "delays": [ + [ + 0.18625, + 0.18625, + 0.18625, + 0.18625 + ] + ] + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Back/rnd2.rsi/equipped-BACKPACK.png b/Resources/Textures/Backmen/Modsuits/Clothing/Back/rnd2.rsi/equipped-BACKPACK.png new file mode 100644 index 0000000000000000000000000000000000000000..8f0d1bea730e8745c27910f02acff3bceb93c352 GIT binary patch literal 618 zcmV-w0+s!VP)Px%BuPX;RCt{2+QCZWKo|$`e^x3%%vI2X*lo#CPxod=1~g2UvUt z@wP_~g3v&78>6`>gjw2C_OMK-)paHln>6(QJ2gWx`SLZLna&JAL_|ciro65LaJ4%K zO8xoaF>`*7+862@&)@W|vSkVPqEe{>LikmgKAxmW?fZYKd%?qF<}E(xTV=~qJ^b-0 zPVTOO<5LLXL#e{4zS;@snh-wXc!c0+2fs!?5ghFxjz=%vh&p?&_m zPwyJRa4#yS*usxEtjd1hOt6iaQyZ}Pq0zNKsRA2f3*-CeSLH5xmjD3R#tdIJt6mU) zFoSZet9J>|Eq;;|ugZa}c744|fbIr|!=NgYGFz{ofKmmde0l7ucirIs23)QKvEFrq z+DH8tAR;0nA|fIpB3d)nb7{MSpwx5nt2zhg5~J0uu&#JG44hYC+b|#F{G{o7j0p(O z&P)B!Qf5vIkZqZyi6`a1)gd8#glFf*Bp4H**WdLGng+RSI!3*Rz{Hq=f**`%{FFZ0%UsY<@r@tS)FgSKR|ClSlpGdiu5-> zzklF8R&T&0O}tee0WNagHELu#yzEjRVk9CWBBE9B7tu7(s|Cn7-2eap07*qoM6N<$ Eg7$nRUH||9 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Back/rnd2.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/Back/rnd2.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..348e08d68dce93414676f339ca79dadf839dce9d GIT binary patch literal 696 zcmV;p0!RIcP)Px%a!Eu%RCt{2n!#!sK^%v_h=7Bfj&VG zIrPw5LJ#Q+L_tE{pa&sMdssHwst4IXpk;e7yQrjipCl8pihRK3!6Ef#!`N?}4*-()^Ob6C;W;*0Z(= literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Back/rnd2.rsi/meta.json b/Resources/Textures/Backmen/Modsuits/Clothing/Back/rnd2.rsi/meta.json new file mode 100644 index 00000000000..374f08a1c37 --- /dev/null +++ b/Resources/Textures/Backmen/Modsuits/Clothing/Back/rnd2.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "taken from tgstation at https://github.com/tgstation/tgstation/blob/master/icons/obj/clothing/modsuit/mod_clothing.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "delays": [ + [ + 0.18625, + 0.18625, + 0.18625, + 0.18625 + ] + ] + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Back/salvage.rsi/equipped-BACKPACK.png b/Resources/Textures/Backmen/Modsuits/Clothing/Back/salvage.rsi/equipped-BACKPACK.png new file mode 100644 index 0000000000000000000000000000000000000000..1fe71a117066d9638ccf7dc4dfc415a1ad21b974 GIT binary patch literal 717 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=oCO|{#S9F5M?jcysy3fA0|QgN zr;B4q#hkaZ>@$J`McV86S;YVIv~JmVP^*z|szdz)9lhLFz5e6B|h`f{wi66jK} zQDy0)6gJIUj_igjLRPdnEb(9u7O`gOPI)=sgMFj-^4HeuRh$KF-<$UCob%b&eERX) z=XKxrRmb1k`CCCol;PnD1`c;t2MaBRLmR^m+_)JRte^gT+MEqa-mEGE9_oE4GJE+!;+=F6Pp7v0ST zZ@+R_BxTxqs_22mnp&1HZquHyxZlPJ<`L=()>qprP1LhFU^8Ln@dt^k-hO&z9aox-`r?uOztvG+kHDHZ!z`qE$tOYGA zZ|<;vE516~}O80V;5bN@Nd`CTmKE<7piC~&E@8XG5F;)ScmpV9F@8{8D>JyY~Q_#NRx qw){SEowF*>;XgMx&Qbh7=l(L!GbcQ3%cX$nlfl!~&t;ucLK6TepgYU} literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Back/salvage.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/Back/salvage.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..d035a6cc708331b61de2ab466703167408ae55ea GIT binary patch literal 748 zcmV3fsj8S7=jieffVbV#O6975MmHfV_|1u ztwqcUDLe$5SVW9xp|t@!K{+i%11Y>lQY3-M7N;SmFv!6|Qc8-;erLILHr@Q(V!jWK z8)oPD%)XuP?%mBhg}}uIAaJn(2wZFc0v8*g`@zO^)UQRuqP-m_SYC}Q@F-h+WdjII z?^BZ(^1i8&QF;^ou8pwGS2AGW`bY*Wh$htQ{Y3*&-<1h2_(}$B?fpwZqXM+_BSLfa zIo`egg6@Z}Sg6KgVq2g0;Yug@ z9LqLeYXv;{b*<8f(;p>qlJ_mAeefike53yZa#pnM75xCd@1THoJfr|}5;9>(1xYz&$E;c~-gPafGd_Yk_<^yc(&ztgTmzXw6 zz2^gL?a!O?Tj{I0{t-v>SN-M#vdLumfCuSSIGS(eV|?TTWIk5aN6Q=L0w&AjJ6q&IfQlpfqtlz>?Si e1THoJf$JDc0+m7Uz4 zY0)RnaQq|F1B*BYnd96Ik1H6L#m|_h$C3B?tC!dHZ|gP0rn~No*?FlhMrT1xUHYHj z$C%b}TlPI@d6=H|j&WhbpC>HO-upj#@kHkM^XU`bMu;sFT4Tj3)w}G@J)gf$c6W?y zehTihUp=?X&itSjV~b+(!?Nd(9(h&EtP!4YmTg6nnEUzLGb*+}_8xT)eY2ly!d;)!9}2H2t!62?d@J|S-+N3^4|y2g9l6(E%5){<`Ih6y z)LjH;ZQ2`Wet&)`lf=Bl#i!$3bf1YfM5s4>Y3r4q2c)^@?)v;Dw|}$!YZif0(;uH} zZPti5xRw6SUE2`&ko7>}9tO;CD3H--=z9#5WaFx6TJZU~^6Cv&SKiz>^|0^5{YQ7c zzh4l3=f#%2uEEw}YZ=<=ZNy8mKB%mG$a#F4_uWbCKDPD^>jkVhqZn---F;}^F~5^{ z{R4^02Tx}BFX9pS`b?m0Zi#-rcrs zzFDkAX^P^c%bjlCOG7tq{i=46`{Aims~$u|+C9%a&9m#Dvus>w{r}lUUv^B$p32C~ zT4FyvxtU?nF{?ASrvr=^Y?ql^;v+Xhs;c$%_XH;)!=2HlQI96qNUt%FT|D>t4#7vL cLA9T8g^zGQ)0N0xU=n8VboFyt=akR{01by&8UO$Q literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Back/security.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/Back/security.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..8a1bcd750d9464438a0d730d0cc84bf3951c31f3 GIT binary patch literal 724 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=oCO|{#S9F5M?jcysy3fA0|Qf= zr;B4q#hkZM=d-08MgA?B)huyArlmz`p|~T*S^g6XMT%Z;e7QE@g#3kQ|9^r%*^53; z3g&NoGRfJmktLsP;lXR$LbR7QwQjpG!NFt0=d##XN1^nxd)o}&H}H9)+W`pDSLC^p=<3 zKaC+V)$`-;V>j5?|6gGWXyv^SboANVZoX;T%=f-7f6Bb)j=qAp)cR@4H;$WL`Y3J-ZE(o^UYS3IX>Z)5a#4vK!{3g2cB_|MdEM`r z@AY)W{N*m^Hpj-11&VVT&JI(+|X&AN;EW*1#faskKux=aY1P%cDOB z=KT5OBLI#E0mcW&(IUWDa$n&eLx;V?A4Zms>_GAn|Bn2g+&|_28XhhB|2$*!-@AeJ z2eSXay*fAN4N&aS*$MxDlmvg=endW@$>U$cG57mQ!P@di-tjNkBK?b5>4W=c_7Fby zy^r_>>KlGAACWhZVpi+0XL!WF;hg?IM0zNQYuH~ob>`j0Tpl67WXj;_>gTe~DWM4f DM*mQF literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Back/security.rsi/meta.json b/Resources/Textures/Backmen/Modsuits/Clothing/Back/security.rsi/meta.json new file mode 100644 index 00000000000..374f08a1c37 --- /dev/null +++ b/Resources/Textures/Backmen/Modsuits/Clothing/Back/security.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "taken from tgstation at https://github.com/tgstation/tgstation/blob/master/icons/obj/clothing/modsuit/mod_clothing.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "delays": [ + [ + 0.18625, + 0.18625, + 0.18625, + 0.18625 + ] + ] + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Back/sstcmd.rsi/equipped-BACKPACK.png b/Resources/Textures/Backmen/Modsuits/Clothing/Back/sstcmd.rsi/equipped-BACKPACK.png new file mode 100644 index 0000000000000000000000000000000000000000..2b068b951c72d1a54c242489e9c8d204eb0c92d7 GIT binary patch literal 778 zcmV+l1NHogP)Px%#7RU!RCt{2+P`kvKpY3~F9Ao!mm&%@X^1K@v1GszD2lQWbz$HM@)Vi+1W}~S z$(X%wz`#g`P9-HP6H-;FF|Q zwl3k<0Ko218$El3TSW<6rc@2EVp+({vrc)an05bdrJ$v-zd?pr!tum-8<3Tn-Q+;Z_@^6#@0CT7>i;_1`|FX#niv+GVFG7<4+v+F46 z1t+KA#vW7+_=t+YYO9H?8}&Mo6IBj>=CXk(=~q2 zN{N}@evEx*i9b*JSz|Q%mG)H8DUzIe|XqgbqxdNpg+}MUxTVL z=RJY%FSu#Xt^%^{0)>~x{cM+>d^>ZIhk;D75<&Px&a7jc#RCt{2n$J%fK@`WoENqJ`7*rInN%hbW5-%8yu@{M6_TaVuLepC>z4p+a z8xtFk9GkS~9z1X~z1GI7UW)yt0um!Gtn4n+gU$+7UIZlxot&Bi0F;VFdrWD4Rw@>Gru9^xc>`p**(NeQ zoxHUG`csyh%nM*e*EME+UDufBWj>~fc#;4BshlGg@ZV`uHZAzZM*#rGCr6IDfD(!l z00z-QYcbM@@?ZkxSRfv}VQxAhyFe)T2RMYIN; zgZvIsY8JcOd)VFHLrTr!Air~`ty8$A&%6PYvT50Gpp}%GMcK4?r{l(HeeMm21^kGu zlrMpXRe;F;Joke)N03oz@eOs8{U>Txe(=$HyZP0DQry6Rjt}4SlYQP}#IlXlVAh^*I%H z^ET*)zH31caPD7XH-n%+AP@)y0)apv5DX=vKY(Y_q3#cGt3L0wKJzj4x<2o z^Iq!@)F0qPeco$*(I3FO5YZptaDCoueWq_nKL4A>r2(m-BP2<9_f*0|=@Kb5i-{+* zILPl{v3`OtzX)ngf(z4vu4^z1{Vn&3?pdEHNV!>`_gbGR3%FUI_gY`{2e24%Kq*#H0l07*qoM6N<$f<~Oc#Q*>R literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Back/sstcmd.rsi/meta.json b/Resources/Textures/Backmen/Modsuits/Clothing/Back/sstcmd.rsi/meta.json new file mode 100644 index 00000000000..374f08a1c37 --- /dev/null +++ b/Resources/Textures/Backmen/Modsuits/Clothing/Back/sstcmd.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "taken from tgstation at https://github.com/tgstation/tgstation/blob/master/icons/obj/clothing/modsuit/mod_clothing.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "delays": [ + [ + 0.18625, + 0.18625, + 0.18625, + 0.18625 + ] + ] + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Back/sstsupport.rsi/equipped-BACKPACK.png b/Resources/Textures/Backmen/Modsuits/Clothing/Back/sstsupport.rsi/equipped-BACKPACK.png new file mode 100644 index 0000000000000000000000000000000000000000..51adc1c8b2be71085f1e07bedffabe9cc2939f08 GIT binary patch literal 592 zcmV-W0Px%3Q0skRCt{2+A(k1Koke?KZJ|0PbC%%QN)sog{e}9s!PMvAs;DAq^cvIpr0dy zw|I#%G*yOnz2CE#XxkIS7VE=~pjR#zSXE=~rx+-c%w zd0+ULP9@+@DFCah9)}UKEJYkf>nbqc7vaHgi~X{ zL#Fi2wk+ookj|2Z8SLUP0 z;@S_y^x|F6Zfn>kAvXb&@kox8ht@Q4;_-7jOB$_df+OW&G9Kk7AvXb=_TRV3CidL! za2!TBU(5lefJG&7J-IujaK4zYJ4cVPt^n7@0Kl#SauZ;(m}TjPVb#aPYEuEZOgs8` z@8F-G0*&LngN<6|zcGFIN)A>7^X`DnZ>`(ooA%-BR3uib1XOY_)vVH(U0DVjuEk44 eL_|ci1wR0B3bz{9R>wvF0000Px%gGod|RCt{2nm=pXKp2M~xmHkevGEY7yM+WqAxnxElOY*17Q%X#yg$VnNfYLo4GyfpS-$)7I}Z$#=f@cYg2gm5hEM z2!bF8!mQ$$4lLijmkxeD`~1l`)@|zNbO)@>7t_@hKaHXuN)=G50Kn>spRUap)87pL zV<4V@2LK%I`CJqg7e%ELQVSdUS_$yHpTYg@ zErLdqB#B9qn4rF8ogzJ8{_Dol>xAv)ue}4}tI%Pgl#WiI+d7__ vKY)=p!(i?YFn$jBUl4zQAP9mW2s6tMhD`~G=Ds(A00000NkvXXu0mjf3R6-* literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Back/sstsupport.rsi/meta.json b/Resources/Textures/Backmen/Modsuits/Clothing/Back/sstsupport.rsi/meta.json new file mode 100644 index 00000000000..740921bd644 --- /dev/null +++ b/Resources/Textures/Backmen/Modsuits/Clothing/Back/sstsupport.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "edit of azlan work for baystation 12 based on viro design", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "delays": [ + [ + 0.18625, + 0.18625, + 0.18625, + 0.18625 + ] + ] + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Hands/advanced.rsi/equipped-HAND.png b/Resources/Textures/Backmen/Modsuits/Clothing/Hands/advanced.rsi/equipped-HAND.png new file mode 100644 index 0000000000000000000000000000000000000000..221175a701ad52afb4b63acf9641dcf62663b23c GIT binary patch literal 663 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=oCO|{#S9F5M?jcysy3fA0|S$% zr;B4q#hkaZ{Iy*IC637-_2ZRJO+4YWP-n@FB*mlV2?yiKq>eQG@r<1Lb+}zDwve$IB}+nnb`3?$$q@aY3Fv9^S!LCU%K=9oa%YS_21`s?_Dl(MvyU~kAtDu zg<*y=(*YSlhG!iN2JS2kmX)kJx~^BwT{AN?3-`{ke)m=~VD8;m32EtV`^=2z+wJ|5 zIBR||Ln}Y;*TswX&h(qw%fcl;U&1jtxb~CIqCIyS&e`|hUDB8PYs1O^;@%Bu3$;IS zDg0({Pha^sVMFNMd-FtUxUTfseJ!o~(fel(Q^u_qiI8Yty zg(=(%LscK;S5)pbubOlv@8_rL?)pPb9oc!kyS8-E#a#8xkCyKPhTdDwf^94uuPVy(y?uSp zCnnalPICyGy=zyL%i@AV{mdKI;Vst0OD&Qu>b%7 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Hands/advanced.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/Hands/advanced.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..a287b6e28872d2f2a0c63340c41e6f4aabf72f90 GIT binary patch literal 711 zcmV;&0yzDNP)?{L@&h`_0~)dpoYntp^E# z{Xo{4oty9XzV|$=r+=&%AO?s5Y6e(bTz2r>`1+03zpU2%H2^m5@9UM@PE?4<0Bk%u z`a3%rRixQ#ND)#%uxfem<+7H27vjekq0!K%awOt zsY)dXuOUtW#vFUl9B^VS4=pSm6QZ8Y7apI{@JFK4(g}5S_fXCNkp{BY5as|$NB|fk zEu6(&t*y=KXSd*oPyjG39$mQ4E7}e1( z2aIut`mB3@GFyRA09a)9EoW(<(KWwRW;mG6lQxF{1ML=ebfskwhpUG{>I^UqpaS(0#@a$Ucn*szTzS1@i5&#TQG4|3XN>o}P zQ(zGLv`L$5z^!8!s)>TcRm+4>0QS7t_vrO6izYg3%Iqh|*8&NFrw8IUKRo+f?SAa-u`au~Y tQ%Zz?5!I@&bi&^K|Nj%l05L$Vx&bw^pw2J>b?*QG002ovPDHLkV1iXnLQMbw literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Hands/advanced.rsi/meta.json b/Resources/Textures/Backmen/Modsuits/Clothing/Hands/advanced.rsi/meta.json new file mode 100644 index 00000000000..03c8f893eeb --- /dev/null +++ b/Resources/Textures/Backmen/Modsuits/Clothing/Hands/advanced.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HAND", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Hands/apocryphal.rsi/equipped-HAND.png b/Resources/Textures/Backmen/Modsuits/Clothing/Hands/apocryphal.rsi/equipped-HAND.png new file mode 100644 index 0000000000000000000000000000000000000000..a3967465e8572e399a92e4b15a912bddafafd145 GIT binary patch literal 676 zcmV;V0$crwP)Px%UP(kjRCt{2+A(V)K@`C8|DH!6W*2rX78b3iWGW%xHe4?5d;Y;sIfA0h0I2StFvna58kg6eecbTv$Mq;5JCtcgb+dq zAwp%#QSXt*v4cc;lE%HYZXO?_zR0Q+Ra^zowx-n8&@wHm2k&J90EVNEX=upH1bCT1 z^?Mzi!?=Fga#U8OW*^op7i7;W)S3-Wu5S{>pIqNiYc|N9RT9Nt z9=qhzduxBUasdGTK0YTJ0Km^5zZ1u98gDx8$Zb`{Rey4y0OwfJv%;gH< zw$+b-N!+qLy0*?0r@pTJrS-@ygUGnZ9dOIQx_WAJ_0*;?9^w0DkAnVP{_qIjcN0w> zW{c+gF8RZwg}f&93*!-b?5idZD|P_9o}gKk;+MT|bPzdqpu9{#lEZ6RE|~rM{a(ko zeq}VFZA}5z9^Na@fVvu5_BbW6pgYhx9&!3 zakf9iI0InTEiR8y7cXr9?j{rJaT08SmkGkV1KsW*c1Jqa0>JDnxSLD>xY*yP{ydDE z;$8W^OSd}!UT>3ZT@_b-P5V3Z8g%SH6^rLPGaey?5JCv?KlleM75LBOz%io$0000< KMNUMnLSTX?k2eDV literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Hands/apocryphal.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/Hands/apocryphal.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..de325d83b81d41af815a84adbfbdc4d261d59f73 GIT binary patch literal 516 zcmV+f0{i`mP)Px$zDYzuR9J=Wl`(6=KorM+DW#w&M2A2Yl`OWz zBLglt&Oed&-`Ccx=#6efGUdj;^gN_5*@BXRy|orU<}-hwX{ zO8^Fg{z)U3E<6Z)vTVz=7r{pYU>R}YE>ytgSf?8Ts4^4UfC=BMQ-;?!Oojk{a=RMyDHEG17r}KGUYmPF%Pvs)FzKsdwB0bURZ`x*l zFS9eY*4$&s^{j)zz@4SRQiM9Ys~fI%~^onti{x^V=@=H(zd_jXzO;`BnIhI}Np~CjFOMW;pTN4t9agrIRg+ADeZh zcDKI&#b2Ovr(3ypvB#Oc`t_Un)?azX{^gVK(F2ih|CF*?c<1qTv4w6j-;#DIGyUvp z`|Q{Yk(=1(?tiHEB30mvz*GAzO#45}cf~W>qXd_XAOnt&^pOhB{?~H7n7Qu4nc__D z6>1yj?J0bhJh^;B+V>S{r{m8$U44-8#60Vqkif0yl0ET_Z)b}1_46o4O1W4}aFJv8 zws2Vbf$#j^t*mb(Lf`Jx%$cfxuJ^8MNzuf8_b=;-Ne4~a`r!1c8~SEzPrZ6`Ig;sq z9Ags`J9F$S#}uiX?!g{6Y=7+kbLVa?<22TIpsJ}CHuF#J>zFS8Z&AwZx8C#WSTlZ> z^R+N6|F>_tPa0?4L$T`Y1QE~YJO}p_`Xn>k1|=eZ2EVfYt}@) i{~V1-DdqG?eTYz>Gm4@IWnQBo ziRd3_sW(yaE!m*gmI#AF*q0W2h(v39UIl$47s0f#^RO3kA^#A7--cFWDAa*%kK2n6t7Fj%}bJ?DyJ z1jxtg1sXC_E(9`u4T$r-9W9Mv7XZX@!DOZgJiizrW%-T+W=D}0>pS}8 zNOtzqo**88WU^0fSf}j$B6qJ}F65l4x_oeh#!WaA=Wc_91IA%Ldh>%CUu(NSTmXot zrn8hE$v7+P%2F=~ESAH?b_k2@LH7WAaZWsOghBie?IPZF`3kKmaciSS>FyrNFH6Zb zh%TVd8ZmY|#ZKq|5QdZ3n_oUmh7sdWWz`G801!R!p~|^$_PGb7Sc_4;zRBNJC2#V* zc5Q(G819byOWwYDVWooE7dY~@v{SB zOZO0$j?>+$cD2m*W4ub3NSzOz^2`&4@La+T#|0GV;wZ$J4o!{nx<3HXzhK!AmVhw2 z#|O`vFuUy;f$oBUeAmRKW=p;O#7cii*CLKUE!G^{iC({=&Vh^cr8G~T5qKaF4u~#Z ztuD1$Gc}uj5pao=n6sDb4dt42-+7|fQy=&y4Ent`TSv$}=~6EF>KQ_8*Sp^n;CBNM ymg-U$a3Or-{Nn)4+-df=|Nno&2p|I3Z~O$pT(~j#Q@Zc~00002Ooz1s(0C?r%@*%+F6eWB=(j#}wYQn~PFa zQ{RVr-+cb2+;!=sT&wyGOhIOW<&XcLS+9(46;3xKsaKr8H>>|xw*0wcukUbjJgw_} zd-n3bgp%KVXJvH{{C?NwogsC*=2dM=24mgN1Hy6I4>JEu54v}>?#`b3T%C$h2lgI$ zCSU#Seok+Ar)-pe#}fI2@pC_hyjtV_p9#tHUzqf+h0N~G5UJk{3}XgQS3j3^P6XxLYCUiItd;6|IZx+r?y+|QpnH> zx<}v9m%jVvF3k~9gnLkuyG!nUzCSLs82zy_KnBPFg8?R!d5!DwupfPV?yr6gfX3tT ztxnge5Xk^EUM!xQx$X8%L6RVn05octPNxrU9#@Q^yZbT;q8ETocU8T6>l|x2z5)7d z-3_3|j22?V3SxSpw}JpRVl{_oj?RCaJvAVlgKnu^e~1`P@8RaJWHFvC79kCsYR=q603HMfv4F$*+d z)2cC>)+>R5aOu%8gtL4+l+i3$X+R30$F&7uLHf=^p`&Oa_+0B0{FJb{H6X;r57AI{ lWv6TH|Nke<02yGYz5so&fSPabo-Y6Z002ovPDHLkV1oDO*Tw(< literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Hands/civillian.rsi/meta.json b/Resources/Textures/Backmen/Modsuits/Clothing/Hands/civillian.rsi/meta.json new file mode 100644 index 00000000000..03c8f893eeb --- /dev/null +++ b/Resources/Textures/Backmen/Modsuits/Clothing/Hands/civillian.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HAND", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Hands/cmo.rsi/equipped-HAND.png b/Resources/Textures/Backmen/Modsuits/Clothing/Hands/cmo.rsi/equipped-HAND.png new file mode 100644 index 0000000000000000000000000000000000000000..109b54b25ef367e1eda9faf248adc18f63bf730c GIT binary patch literal 696 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=oCO|{#S9F5M?jcysy3fA0|Qf* zr;B4q#hkaZ>^+nnMcV5ZHJKGDE!n^!BNL(Fw#D+uscaU<4I2V3IIYbUS^ap`>L=?q zZv4ovkuEL3vN}QWpwrO~F|PoRL`5B$hX=CzO7E?cW_kSXoX@8AJ>N}tx6G`}-#7Or z@19JiVi$%P%1j4j1R0)nFc`SAG*~JzoDpOUr41z(=OHTd98GY^Vp3`Z^{Gm9IqF@ z3v|hAe0@l?-cZ z{&y#@e&SJA_?tawC4bb%)9kNr-2d0>Z|ptM(214D?|i6Gqtup=F27lma;0akxA}YM zo|ezYV*!&nRF3ri|M0+n-mm9MxAxCIui(3C+FK?k)-}E^rW()25y7qsoJ@wAmV}{S6vPYiB>dm7U#32VsLLUbM zj?l8|ZQuWH*W$;I@BOVa>yGI;cr#qR zz3yRnuI%Yc<+=+$bCk=o@6p;;ys&(Rb2TfAkX4nva&6t0RcZ3u`|_Q(ZhUEe>gfDE z|C}!hIk>vt%6ELbKV~UJ?p1GvqurN;lKb9a@r_wqEAIaK^S^JoZUc|?`E<5bx?ihw z|8J=HIhXf8PqU-u-3-<%oBqXf=X{!I?}Y4;Z%p$T)?DHXTJ-NyEHEiDc)I$ztaD0e F0sul>H~;_u literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Hands/cmo.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/Hands/cmo.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..b414ab22e38ff6a56db1bc1164537fda888c980d GIT binary patch literal 661 zcmV;G0&4w$6$0Z0Iz4KO&n?c)CT^45z4xd8snVD9o2B5+iB)wr`)oAN6dL~2IPY$LzH@cL`$h5RZswbx`uysi$5&A%F$D+|uf-F9HxnS18P*KdyJX1{3K%sRv0Pwe%Xy5gOG zuYLNza@)>nHZ^zseWu85WqNhy|LcV5zb{53g4 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Hands/corporate.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/Hands/corporate.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..6fee937cfc11f2374a1b7c4c92a4389a0a402b41 GIT binary patch literal 601 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 BJy`$% literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Hands/hos.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/Hands/hos.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..bdf73619cf24fd3ff1dc5883401829b363deb283 GIT binary patch literal 621 zcmV-z0+RiSP)0nCiKID*8{`G-fx z3WVkm+gUqS8CC!wjs~Nek{|_O%n~35{hqupdVoI5M8@NXNDvKxGVgYulg$WvVdIW)e=pPa`&p_b(e0>Qa0WfH^ zZEtkBr(D3sT2mM2wWnAd zneMOWa^4KAyKd0&>MUOv*;9Fz!hzdDWR@l1E)a<8S}VVBv(8k`M+Lb+PX;w@VEa&< zUfJUI{8KdA8KITHuu}vex;UQYQcKS=EZ~w~V^tc=)tWh#y&0kDM7_b*z1gTQW}UgY zU%3j~dG?V2-wiZOFo_H{vn8+|enNh)=$)S&> zL53435%Bf#mmejW_dmBkud$yS`z?mm{kQth8E^L%?vsy=wKyK~Rlh2Kuboog`#D?H zCLc~U;|M%+@aq1c1LsP%5Acz z*BxH})1>2)^x6i!&;Ru@jOA@v;UUIQ^n$g9p+h@Kna(W?v@EX&6BAwLz zX3>(dNW_U{JfGu;-fHJ!y)*(r3;>w7TF)|<5J6ix?asSF+~%wT#$HHPL&wK-yb6MF z0AM~lo7R1pudlDj-CfN9p&2*k`8SIdnO>eZj8Q>o+`8}W6_s+y58(j7$ZcLIT$}x-zg^yazwPIk5Z;ObBFOk#0s4K*eL(cr i-}^%n0)znn4&WU|)LzK3X@X4v0000^%-Uh_u%)TF~5~@bwJE_!YZx^ghoF{Wf)iMB>x(86r%=m|tHZ&XKAohVmKqnn9#?;ku~AYo#Iu|-npw}U*8iit%+ycmTO%S(-I{lQe!`v$!ME! z_t7n?E`s;N5B$B`T>WN`O^epGgp~VIW7++jv)tdF_gnq$Jjsi{gyZRrmhMHappK^4h(|6bPoOhi+ zZoV11Id#GX$(EM~7We$mk82E5#2Oq7#V!meA+^Hf-1G7|Q>Rvb-xFfR5n9>FGIEtXw9A99UfuHLu1|*jp^U5pYm>_3Ry|#6!@Q@_-&eh` zy8ip>H2H0P>zx@U@Sn8CT3>fA8dX__{k~ z3zx~NqpPny|8F&K6NAy4w~`qqSEEh;{(Y4DoGZ`HYH7(@$qQ$G)f*d}bpOZE2#-yM d;v3vQSc12(|6vWO-U>`-44$rjF6*2UngB0BDFpxk literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Hands/medical.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/Hands/medical.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..d6db9aba72dd95258a26b97e0dd73f174cef70e7 GIT binary patch literal 635 zcmV->0)+jEP)s%0HDEBtC;BQ5O3SvVhmsardQ1b`_$Va`GJ_jj%J!s3b*JsU8cAYg|1 zA!EdjGpIQTYYrg+%!RI+L$rnf1Ep>?t5Xw1r|w}+9UEqvjNj;9b3oXJu#h=6(tx@N z5SaMyYcn8m4nceyYqsxN0F;6XqYe#4sfxPh31Kf!0zw-6Tw4NEL_B;AWwTcm`CMbc z6jbqs)a!6fzzw9-Iz)3qDY!w@LUm&$R-J3)-pUc0Vr}jz zdG6;lw^gR6sa&g@nASHkzs-|qk=n=Lmx}SoFxsrZ&%9BFMogA zGc(}*p8qH2ix|v}tN$<8&u()k{OjxJ6Jm*vb86;r=RACB-e%gm%caTm{+#Kj=ZkEJ z(%pE!K4J6Ei2+VIbsJ|So9#Y0-K3)Pr!$ATWaUh=b6G1^tbLwP zJJV9J3D%ppCmj>IEVlb~Z9{R4_knY7ufLvt?Z4OgkG4yamS=fA6iRshu8i@Jp5Gkt zkgC4-3w6u(^gP_#eIfF|%UM2mEB+mxaldujjh$6RJMJ;~FEV@?+`r8c5lAvsjPq;U W_X+%*)bbn{MGT&Px%H%UZ6RCt{2n!RtMKorD>Q#wT9h6K^s(iZNh++h1}&z+l8bS_r1yA{bc6o{G> z$wMrxBkp|0chUSR8^g|H_QS6jfDl3mA%u`g?6&)Mx81kjML+l*;r@4HN&vv=tS66g z4Y$&Nm?|8{3+H+qFJNs20PQVJxV8R816E7rIBsp_6k%-zV@fnlJt`Iee*SvC%9OeE zy#}n7s?D;sIP8cDvIGI(=`k72lDxp5%+8$pqaSzMeJg`!*?J@_;%S-y0JPQ!!>GI0 zS7_7Jczr7;88NrMb5X?8G;tj67t$A(!Ie^@fn_#|;s^kfOt^=BcVV~Pw{ox;Q$m(t zzYqW;aY2e03d;*vTS04m(S&>HcVAXZ)r#|3w(bTH_lx4_2nt~s!S~$o*)&ZM#|s<| zFJ2SwrSBBdKYWG*inur}ZazIGty0RnWDkcI=YH9%Uzsqs{*Pf1eR1Gp$;ti+!wANd zj@av48ECD$rJ1G)isA@sE9ChGT5D*nk>?vUP3_E(kGb_715Rfh^auCt8xiUwg^AO^ z#~v+;Bl3KMFpOYr1*O!Nhv7Z+M}0u=f3qFld^+o(X=-mD-aoldXC26%2GA|#G))kO z5rEP+#9j0+c7m502;b~AO$}qb&pQo@G3DgOXfFM~(!)z9<}2`;j_`lcCxj3}2qAp!PYxz;VdFzC#}_684s)6Hp$Q%rwP zWZ{4RJLb}byEjiBZjnjTbLeAfkl|#o6k;e+VR+)faAG3E1Z74AcP5|&&)=Ul#pRo_ zKYxAuuKakKAoq@4YwpZ@_3PB#eE#_tZU0yPThQ?I@7mpF`S15L_WPP-MyGTB-kZy$ zaWrX9S$Z|6=8v!b{rnd{PmXJx!;&+1yFKep{`s>HFKC#4wkk0-gE9Ej`3bKjE9=kmWtoV#6CpHsVq$xH5#>g*4@RF2Oo?BB-(aS%?I!X*^So%g5b%ij2W zZ=tE0_peILmZaa$a$njw1+qrmue%wyw!FUY>yz@?rq2{aZl7nAkpFFEowkj^{Lh8I ze7wFbOMF~4%If(P%KHwS5KB;vc$@uQs^wJfx=;VL%ceVD<8hq7C_LfKgTq&PPP)f4 g!UL*7ri#&ix965hzE6$2fpNv)>FVdQ&MBb@04SlzNB{r; literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Hands/nukeops.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/Hands/nukeops.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..be13d9a756b7b431830f692e50c92a1bce653efb GIT binary patch literal 513 zcmV+c0{;DpP);Oe@<=kRHA z@S^|}X7t+~H-28Pb^`elfWk$m9n53ASgr9`?E=vVzz!J@lMoocF5gV~{t>|M^_SaiQ3QZ4P<%9gF@Vs*6z`s$y618>H?5OnpUZr{w^6~R z#imSx1OODrVnQG!h!m#_7;8wnfgAu979<7X0U$0HaSJ2}#hAnWpIR3#&wGKeT;sQM zHjf}Y0K1{M?jB<8$XW{_o)6Wr%j2_jC<34h5{BZOquqKNI5(|t z1;*?cqNoK(T`zLL-`jC~eellCRVEP<40&*i2bNojG2qOmOgoSSQIWbz?tCa$q?__~ z>AHLSIp!hNjsYSiyjOsxZ#ep!PYxz;VdFzC#}_684s)6Hp$Q%rwP zWZ{4RJLb}byEjiBZjnjTbLeAfkl|#o6k;e+VR+)faAG3E1Z74AcP5|&&)=Ul#pRo_ zKYxAuuKakKAoq@4YwpZ@_3PB#eE#_tZU0yPThQ?I@7mpF`S15L_WPP-MyGTB-kZy$ zaWrX9S$Z|6=8v!b{rnd{PmXJx!;&+1yFKep{`s>HFKC#4wkk0-gE9Ej`3bKjE9=kmWtoV#6CpHsVq$xH5#>g*4@RF2Oo?BB-(aS%?I!X*^So%g5b%ij2W zZ=tE0_peILmZaa$a$njw1+qrmue%wyw!FUY>yz@?rq2{aZl7nAkpFFEowkj^{Lh8I ze7wFbOMF~4%If(P%KHwS5KB;vc$@uQs^wJfx=;VL%ceVD<8hq7C_LfKgTq&PPP)f4 g!UL*7ri#&ix965hzE6$2fpNv)>FVdQ&MBb@04SlzNB{r; literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Hands/nukeopsclown.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/Hands/nukeopsclown.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..be13d9a756b7b431830f692e50c92a1bce653efb GIT binary patch literal 513 zcmV+c0{;DpP);Oe@<=kRHA z@S^|}X7t+~H-28Pb^`elfWk$m9n53ASgr9`?E=vVzz!J@lMoocF5gV~{t>|M^_SaiQ3QZ4P<%9gF@Vs*6z`s$y618>H?5OnpUZr{w^6~R z#imSx1OODrVnQG!h!m#_7;8wnfgAu979<7X0U$0HaSJ2}#hAnWpIR3#&wGKeT;sQM zHjf}Y0K1{M?jB<8$XW{_o)6Wr%j2_jC<34h5{BZOquqKNI5(|t z1;*?cqNoK(T`zLL-`jC~eellCRVEP<40&*i2bNojG2qOmOgoSSQIWbz?tCa$q?__~ z>AHLSIp!hNjsYSiyjOsxZ#e#ICs@grQ|IlY)#W!^0H}9PX?R7FrC4K635Yz1Q$N zf4}X!2mclAA{fJ`UthNF_22vQ^ItzmIkvcS;r&&s3V6Jpf9HzOi#MF>ccArA@e8H> z;S8$rYp<<&BI5or|Gnvsl8N`V4@{F246gfTsde~n-t8m#6P?9>?q&M*_u#+jY_rd6 zUB1EN*EDbO^IV++)y;WzNj6QLw#;{S1k|l>IQocb_Sx`YzqKtAZyv4u({}jt8(oJ0 z)h*pzr;QJ`~7Fmhu1O-(w-SsH!s|{@=v|p)NQ7b?F;sr z7p#y<`u#(OuQ&HS(}h@;b8}UuF~r}u-`0Qrpt;$1J*Q0!T0hg2>c745o?5REe@T`} pJdAZpj7s~QpD(5>AVEKlicR}fa!PC{xWt~$(697-<^c4UA literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Hands/nukeopscmd.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/Hands/nukeopscmd.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..396f7ab8becfd280251c131868424bc2174572e3 GIT binary patch literal 507 zcmV8uK35I`F4gWBg@ro$M0<|Y6s zEWO1T5s)AhueB^d>~S1wilg$Irtu(LgDn@UL1{<;AdUiqh!ms&CQbp&TI-&ufpFK% zIr9Etiy#Vsp6_;VKI~Fl?scN)tZ*hBZRtDV0U+MBQV1u05`=T^QW)b) zp37@m37|}f^Y!146P%@IhKN5d+E7g*kDh1jT4HFkl zt_5i!Le`(fniOWysuW0wpJ5x#T`yl>EJh(VIs{P(A=@p~}OjS|UfVRz>o zbz|Y^*5ZA>n`Znrj#r<1^bF^Ti3}5z85P`_9Qs%qWH=ctg&2xd7@l}AocPEk(ff|; zyWQM--<>8eJNB0~j`8%g|%&Q5#Z+}la!EAQ@ z-u8cs@?vbaapxHsew{5;Q^9)U`|D{XCq9|yoQynEwUwhUbG7{B)34Tthn`oQ@AF!3 zf>Gx>Vf(b&+-7Xf#^RqvELYC|?fqZ$?f%mB8jPQR3jg|h`cv)ZN!k~+4W^{t^g=7A+BnV bJHYbP0l+XkKDi7YH literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Hands/rnd.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/Hands/rnd.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..a0b188abc3284969db994adb68c59302c94cc43a GIT binary patch literal 465 zcmV;?0WSWDP)xV1_h^NeKAXzMHq#eEIw57#AB^q4v!S>IkzkCY zILZ$Z#!6V-!rJ#B9Kg?FGkmfN^yQ{S;rd##DiCMJ+E?v#5Wx_(iQ@--8Noh2_XBIQ zvKcz#23S@^S0|`|tb&HoebWP{vt|s|q%d0*ZGjI_S#W%Cx$t~aX0d9-_ImVJ-A6t?5{G?riYc28elezG86_D~?BKp$5_K?p<3 zVkQL{QHF;r7&zQn9V|97aV>v0W8K+z9Hr|Y7l_;5JKy)YTKeDL*sVwBZSVTAk*Vn2 zwd;2aHZg8k_~76jtu>KuHM)&E1 z)ks}`v(NY0S3~V)iyNv2w>jEPycM4Nx#r9hzqotf4D06)wsqtzol?iiQ|8aG{;c52P`g56B<&CSa<874p0QFB@ATkWtkW$&_$ z4F$V+m8!m(Wu8#Y%C+ME@GmQV+A*dVy3$|XWbd#3*6sCw|FwU1{05u4azmNAYdoYU ky>Yj1MvjD!Om>VvUfha|JsZ6fm>?KDUHx3vIVCg!0MdTMqG(ofo`b6vCbiLorJ(v4lZbF`wc6lF! zn|pKfzTf%IN$Tl8D*}iBB7naJn0lTNShou|l*u2~{WAbIP9|FQ$(ek`MOcW?0Bk(^ ztlylSp8nP#;UPi+*j2-{tu3a`v0@JmJZcC9Q4>Hg?w#E;wI=oFW^c74lc$si_y8#J-o=FsMspC*~@!m-mh*p4Ymh~=*yUHv&J12F(F ze>y!&ZypcJT_dTVl&sVS+0lE5Q-CqY?wSMDK6&@S!**;%5W)a>=O>i^xS`e$mj@bz z42W%D_Zq?+Ac;({gjSxnBZ_ z3$7mKTyaltjB@*X${6jH#_IXb7T75;$h9`dIc5ast4r%aW(6TuU}X^A7mMHPyz_RElU29`bMzRg!5l(**z4G-$??64|AelejO&br zr0jI`T~)-jjy+g?Re-xFqtjs%hVUH5_YP3WpjvA83UF6N01-e0a0?mZbt}nyk757- N002ovPDHLkV1lmUGw%QZ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Hands/salvage.rsi/meta.json b/Resources/Textures/Backmen/Modsuits/Clothing/Hands/salvage.rsi/meta.json new file mode 100644 index 00000000000..03c8f893eeb --- /dev/null +++ b/Resources/Textures/Backmen/Modsuits/Clothing/Hands/salvage.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HAND", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Hands/security.rsi/equipped-HAND.png b/Resources/Textures/Backmen/Modsuits/Clothing/Hands/security.rsi/equipped-HAND.png new file mode 100644 index 0000000000000000000000000000000000000000..9770ca2f96e9f46028ad84f77652745f65409614 GIT binary patch literal 670 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=oCO|{#S9F5M?jcysy3fA0|Qfl zr;B4q#hkaZ_In?85IMfTDVb$!#EDB~0#`gWjyk@$pttLH_>P@BEq@%}@l$`t4pG6m zAsZINa*5t*>T8{mZowl}{9SLE$i3e>nUi-{m(Rb`f8efB%VH)48BvCZD;PN3Ssg62 z7!Cz83iNTEsE$}|x;U#;)Z9GW`%Y8z+B_2}UqgvIn?5f)yx@5%Zt9wg%x1ocp%!75>jRx2$j|H*eq8eP!Yc`Ph8;@Os0D6h4Dq^Xm}}rv6rYyIEcf?67$I_;FR+ubZ=rm&Ttr z7ufRqhP|HMQJZ+S!auzh`)*7B?UP?{Y2)(qYZcG#neBcy!>F#=`@6D6>|dTj^BBD? zEVDM5^*g=)p;x(P{fXs*A~%-q-W5>xr!|i4c_UXtK?nnmaDq!sYxuHn_G`DJdp@j{ z_GVx;u-^B7>&K7rKd$wv9*~*g@j!N#hVW+Px5XOGstwfviT5t#nQZUVVf=DT{c*~g ziG{!Z7Vo(jp_5&ALTmQBrTjq!$(zF&FaLP*=E9fj6~%Xte^*?cv+KL9&d*}uXokpr z)-x3|&Ii2YF`hr&HSA`|`$tpG3HZ!CZ?Ghh+u-+mhi~(0XP$l>|4~cUW#7iVb}eFW nr5AYAe(@H7L@wCT%5ewOZ%lA+;!B$hN`VZXu6{1-oD!M<84@b5 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Hands/security.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/Hands/security.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..bdf73619cf24fd3ff1dc5883401829b363deb283 GIT binary patch literal 621 zcmV-z0+RiSP)0nCiKID*8{`G-fx z3WVkm+gUqS8CC!wjs~Nek{|_O%n~35{hqupdVoI5M8@NXNDvKxGVgYulg$WvVdIW)e=pPa`&p_b(e0>Qa0WfH^ zZEtkBr(D3sT2mM2wWnAd zneMOWa^4KAyKd0&>MUOv*;9Fz!hzdDWR@l1E)a<8S}VVBv(8k`M+Lb+PX;w@VEa&< zUfJUI{8KdA8KITHuu}vex;UQYQcKS=EZ~w~V^tc=)tWh#y&0kDM7_b*z1gTQW}UgY zU%3j~dG?V2-wixapS~GKW-Y&z4dMDWQB68pIHK( zXW9P5?TdCpTEwkJbR|L=z_fK=a0f!cU+|m*>is6(3kQ>z9H}d?=Hnliogy5Qn1G+_GWW4{k1h zYoK-ISIP6+rVSNMKYy+5;9&da&7{;KaN^mFGn=y+_U!*;clwF3wRPykyZ3s1WW_U| zGB|Dc8Cq`tq@L$sVI@OBj2wf^basa0PZbX+v zv#tE>a4n^b@SLvN%kGbFF=Tk~q;HO#ljpy1>sra!Sn`xzQsap1?%eX5d5My?tW>c1x!mbz7H1XO-4~o;rt{Z(4Nv&;YA?~3 zPfu(s=`6^NS?t%}AjWX*sVh&tnnPRto_K}no5NMrZk*ZZBkhgVFDc8mFy?e=h;IuNn&NW& zw$j}7DeE0%KE&P7dA)kW*`9dKpZA&Y1vn@=&N2UBz5kZg`*@OOGBD3Fc)I$ztaD0e F0ss=Gy8HkD literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Head/advanced.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/Head/advanced.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..cafefc96c8038ed6a2912423f6e20689690da393 GIT binary patch literal 575 zcmV-F0>J%=P)MaJfj1eX1lT?#6FiDW(J<$`^-DD zJ=A6C06M_`1hCnr<$V6u&@})xQVp=U5R~z~zKPP%u$j-jzm;fiHo(Vckt2i2G)Vb; z2LNC`AMo>WDw8G{35j_o8E{I~))9C;E((Vm=i-SJA0wI1a!FeNQ9X!8=FDS;&xKbsNWvXISynCYDeUS>jO}58H zr)weY0Q&pPGOm>*eNbU{iM$&pa6UJxWAl{5d9tY6*bY z5&!svLrx}R2JygzSTEFGMdV;*@$YOOs51W(0F}Gleip&BOMxeX8*vulMPx&9Z5t%RCt{2nn6euQ5eVnn-RFq!psl@1M6bKx(b4}<#tLT$UGI&LCB6CyG0&c z=w^h_t%9IKhdM-r5Oya)!!`yUGPAI=8!W7^gFEBy>cKZUhV}hU!<*Uf z|MtKCH+%R#fH+|$tC$BGTKt$4c)cK7>_?)+9lq-lx zIxjkA;3gcmzK{VCN#}~H1I`BeJHvY$SgSx$bpQw?rU&U80Z0GS%r05}euv5j$^HJEA3FC4SjP2=bnhZOag`(;xI;K!v;Ul1^ zI-JL8e4kzP*1ATAq0CH+mJ-G_*~n#aV`RizUzne7_;ExKHbB#4tjtW~(T^|Q+Em9N zG))F$g?-UHE{t*okXiu%iS8a`GOOObM0Za^B1AYN@~~~0V61>tst;2ggLwCR0aG1= zNTvF~SOK`IE)4*=EMl=F z-`ZLh(idut)yIsn0yf*@$cL&h$`$l?hB4MFV;pi|$738aAM2IT-x>D4{APQ+p*JXc z6olMrE?yf-z=fadi1HQyKt5Cr>?jO{BD`K_vpo&~nApw(*iFQo)GE{_^EDsfVp}Gn zS8hU{Ok=rjUI3q7h?YGR?Ajf$+I83HFxqApk^ede0K2JJ6K~B6CqPkkuQlyPuPr`+ z^v5UOb9c{3fh6Gdj^ib8`ucs8)|UVPSGP92XG9a=>j=0hXg1>FWEvmt-4666cPx$V@X6oR9J=Wl`%`hP!xqvtO%(I#3fKDA{mTs#a%KKbaw7P@PD{Ci<>{7I0W46 zCXT^Q0ZjrTA_OvMAW4USJcqV1Eh%}owCM1@DZG2Q=iHZE0tf_x6{9LGM$vElb&$ce#D1h#uxRo!M_Ia_0G6b(t}NH;y0Xj_lpJ7P zaD4-oq_Q?^pkp-Qxj8yUvr;#$d2Wv3Dgz9+6(CE|cjH=Z-;MDheRJ9aTx+8$EoL4Z zB8p-hzrPmeW^=p^-Y7559(N7sx(4s%8A%$}_9w4ldUaDg8|SA0fT!#GU%}-CsUJCj zZx674b^-vnEgMg2RJgVvNkb`$V(7YtEO07~e0zW_aG>iNqA2FNet>WTU!NfWj12+@ zzCBwnn@_bX4KSIAO+)PMPG literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Head/apocryphal.rsi/meta.json b/Resources/Textures/Backmen/Modsuits/Clothing/Head/apocryphal.rsi/meta.json new file mode 100644 index 00000000000..7bd2e3e22a7 --- /dev/null +++ b/Resources/Textures/Backmen/Modsuits/Clothing/Head/apocryphal.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Head/atmospheric.rsi/equipped-HELMET.png b/Resources/Textures/Backmen/Modsuits/Clothing/Head/atmospheric.rsi/equipped-HELMET.png new file mode 100644 index 0000000000000000000000000000000000000000..68d26272e4d250175ba0a3e9c06410e6efb2d6ab GIT binary patch literal 998 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=oCO|{#S9F5M?jcysy3fA0|WC6 zPZ!6KiaBp*`Flt^iX7YD@MTGYjwp+Egy&j09TUrM{cQc3UjuGAzg!qlozMJsZBTWV z;=QU@fh|GR7hY{#a_d_L)5(MOQzAMVTW@3>m=kj2-R#n9rlBcn)=g(>6teHBeZKem z?3s6J?@b+xB^iw5z3%PJxqdsSSXyz;#HKI$JPKmnw>y8te>uixbNg11TzA-!xF|2} zc7ZMRiVV7EWxw5e#r5p+myLVU=lka;=ax>Mdw*r*DTNgu^jRL<3=kIjXfQ9z-ym7` zmh)7bef!RCa0n_6P~VYdH#42Ce!Q>yG@gUOa@Nc0#=Z*c>e}pr4q5yCY;MaN z&%F{~A@Wnbx3}#7c2}?ilxkc$G3n~iQP+Ou05RNF1E^5 zJ7LYc(k;tFvveMICsbE!pW};yL!S!Z$!>c2qCu<~|o*6ML*vZ3?p~uWH>oh|H zHtrHeo^RVX#5ev`UAg&{;D_(*A8xh$Pp=a6WL)sX_-NXfxYvg-M*Us1R*Fe=e$C5i zPx*c^IjDXS! zW~_+e)5w{yV*2YDmL>B!cV+oGeER<6a_zxy-<1MFs}gVOo;*G6G_!X9Zbzq;F&vTC zv`?IV()&$$&T03=`o%7bQ-2n7Hi(2QKC+WlU<&>S*~0#T|5NIdsGjCIuYnnt!PC{x JWt~$(697q~&&mJ* literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Head/atmospheric.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/Head/atmospheric.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..8dc4d36530d2129ce21883151abd37b04b6f7a86 GIT binary patch literal 635 zcmV->0)+jEP)mnP34bblN z3Udd9g6_I8@?2VT8pTqc1;GO7>G2yLk4v=fsGm(;fp2uk5`$w>zWxEwb+4gmmklA< zPe9iTkbW&t8}HO?C>4#p04{-EDsZRe0n80Q(ZpsW`%>VTRIl?6@Lh>$iU80&7Yajn zbi)E-kCDPy5V0Jw0B}NY&;vOL*9L6{WLi-*_IgDPKwI((@-RdbPXwlD?7$W?A6}qi z;xrEVm`>Ml!~&SBh|nCTMfHv_PrftTkz%-%Sv88Nc84!iL;aCdmAzqsuHP0OiGL}O#a z)&9i={y$lA0h*g*gw!UYhlfW>M&*oX{p`x^t`9LBu>i_<;-?CT2K6M*;SrZf89)u9 zre0AQ#F2a2WIc`RI553;w=uqgd_LxLq2jd1OK{Vt0c9LO literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Head/atmospheric.rsi/meta.json b/Resources/Textures/Backmen/Modsuits/Clothing/Head/atmospheric.rsi/meta.json new file mode 100644 index 00000000000..7bd2e3e22a7 --- /dev/null +++ b/Resources/Textures/Backmen/Modsuits/Clothing/Head/atmospheric.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Head/civillian.rsi/equipped-HELMET.png b/Resources/Textures/Backmen/Modsuits/Clothing/Head/civillian.rsi/equipped-HELMET.png new file mode 100644 index 0000000000000000000000000000000000000000..118cd6c8a51b2cb8bfe6b4c0c697f621adc97913 GIT binary patch literal 785 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=oCO|{#S9F5M?jcysy3fA0|V1x zPZ!6KiaBp**=LA2iX5{)c*&-F3i&py?yKHhci&Y8H6_xLB>t~~kH{PWv4 zZ&dH+v=m%nxNdGX`!lD!xzus<1t~QzttA~EJ-!&>zuQN+=2f)xhc}tlmG|O|j!&)K zz46bl*f9GF4X!+=f2Y1*kM-GL)NnNa?!K9I_MB!-w;o@N`7rZ9_`H&nHEp*-$}eu8 z$Ebd8&e3TT1#K!n3VmEYbxmE)roNXeBU_$)e6)Dp_4=#-*`K?9_(&Wdpz}fyTRxH$CU{#&-D_2x(UxcS0226PTq`zyGss;nKkxR+AiRJyehYrdqTiwtBGe~ z=AX{G(&@(8eEz#)t!Kq4{-iyZr5v>1Zm{S0IV<;E_X7hqS*E|y42J@l6=Y2DQ3sy- zZdIPFHdj;WOMUnMX?(lel&`UUc%V7;VT+l3aH~(p@9(T4FVwfGS)65%v*8XlI+B>W zJ@}vRf`iYQFSfS+j?_8lHf0vybN2gp^#$alOq^%Uoo{c@JG1fJ%M^zEo(FvaR(Gmy z7`^S!e*ZCT<=ekv3naIu>v)yr+|RtVB=U-U^qhP~v1Ji|9{tmD+ul3NmicGj&$jb> zGe3tVn`Ew!-8=p3@-5K~vgS=M#g9G~nQpu#;8)+NmvdIj-(xD|S)NatchJ#cU21Sq!+TdWHb;;A+!5b;`gr&fw|l=d#Wzp$Py#lWH~q literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Head/civillian.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/Head/civillian.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..812668a149568f0731139f4394f03e62fffcac64 GIT binary patch literal 415 zcmV;Q0bu@#P)VQ!Pj5=UwI-sj--hXW3Wo1c>Gq@@-hfRX-)xghWF3!z}2iWpGUNrWGBKO z-#^3I-#@%0*BIg)07^`b&QAY(?ww>PQ8EXM!Gay;khkyOGkp5`g#o1IM9(S)s%OLf zd-pLo0%`M-CWezebr|v>%RzF_fR=;Q5(|iS0MtkSfg!}$g!Mc2Ov8FTQHMqIav-M*CMJqfSO>`0izBWb-;i-0080FmV(;EszU$(002ov JPDHLkV1j3ts?Pub literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Head/civillian.rsi/meta.json b/Resources/Textures/Backmen/Modsuits/Clothing/Head/civillian.rsi/meta.json new file mode 100644 index 00000000000..7bd2e3e22a7 --- /dev/null +++ b/Resources/Textures/Backmen/Modsuits/Clothing/Head/civillian.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Head/cmo.rsi/equipped-HELMET.png b/Resources/Textures/Backmen/Modsuits/Clothing/Head/cmo.rsi/equipped-HELMET.png new file mode 100644 index 0000000000000000000000000000000000000000..0b9c0eb2d7b7a68eead9d3deb4280c188858d4ca GIT binary patch literal 961 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=oCO|{#S9F5M?jcysy3fA0|Rrh zr;B4q#hkaZ{5?V(WsdK6s^D5GHeJKO>`HFrg;UOAakpl3UW{vQSrILf(bUc&xXn30 zZi=61qw95E$Gw%eT$qfRJ40V9uq@5_XL)4P^y|O-toyHPZTVdBzVTd5;`hBX6Q5gu zo>{q>zixl>g&4Mm>GEgK`9x1GUAgYHDTn9dna9I6{aq9s7Z>63{(`dqzf%krKRr~M zroGV25&hq>>+IdwKzTM6%gR2-uGDMQjSE;5OuzW8u~FZ@>Eq><_Hw<80yH|l-8{4Q zfWn6VLE%!h%FP{H$`*V`y|?olkG$%4cy=2=G z|L#Z&?}61dmMqz?l{vhFZ?1{>y7j&GqBGj3*L+t>Ww0q&vAMHlN71L%pLg#4^+VFc zEN;`a>-InYNocP8dn{nXZOh92 ziYNa0#k|;JQQ36j_SbjD3hy`Ot1@^`PBzVLn7Y;1`(n1=-;ly+o~E}P0hi`~kNGJ3 zn`cFSN7A`(-(Ic%!*N07>aE0&Hy>xck?rBA`IPs6n>7ELQ*Ym0y??uV!ryRZ|KH7i zwfoOEoI0NMy7-)Vzw>7;9mNyX`+wP*FsxAc7t1Hwppe4gP%Oy+40Q&R>5L3#Q?YU5 z>Ov&vFF$mKe}Pu9$ew2$8q5X9pG&`b^-nS&Lf}QIomlayGyWfDDKB7Y5R^Q|uvvcF z$47BYv!$i|ZclYF65;r=AUw6s>HZV*-+F4tRtTxCl47t<9WjlEk~yb+VAK6Ir)s`p1r(#`L6huQ<5sFe>OyM%sa=BnDV~mNe$mw*|{2T zMO^k)yR)d~m9Mic^se4XakM9jK5gZ|FI@-q*&JjakBpFR^Q-#UGEDTGUH$Uo8{rARnncTfVu7#S6 z0-PRCT{LG-QE-0Z`;^hQhet_c@1GyuD$apMHt*%Qm(E%cXv%QYQ1OGqlw(s&>@`Y{ z<{OH497tW(5u(8!yN)J+jTfFHt7 z;V09lBJl5Vch-bdpF=I(3WpR#KV}(!12q_b-E;RYV9t^N z5?qmzhA3q%j~`9#X)cZsM{qx7Yv|v z31fd3uf1MG)yt?A?{02c?Ge{WjO*)&V z8z_nIa%tCd4Pns}jBIb3=I7Rxz_&V~Be=UydMf+LxzD~IlU#oGwDkAf8`bjTzpe*HVl!J2ztN9hy$E@r9o@3*gdrM2h&X*b5r{OT>d zF)4L_v4-YKXxwV*c&hDC9-S+!FU+Oy^ zxqC0CqsW!|{4&-p|NaUaSm!rQOP%niaax1jWCx>Z2lltH#d7Uni7?`I31IG#bv=DE zI4-8%j44C%nx4?B|Cyij%x;IJ%@*f(4KLWfQz$m`-=7$!3&v)0T+y1<8-AUs*59{A z^n&;)Wwj5o2hQ5t$!kS3oiDF4oI3AFMY@FJJ;xo>9o`&_$=D!$?ZEA? z5%sHu-6a>;d^zOY{QZ8R<7f6;%w3a@x&?-1EW3L)Z}aST)2jJ3OuZO9`h*xJEoNzW zqQR(OiJdDP!EiB-LC!4LJE6W|W?ahse-%4zn2uK7jcR)GTfQ@CMe!@QTQd+hGKF}Zd*s6pVCRo33u!t$HWh%9`0bzl9H9lxK59hjRt zz5Ba%!HZkDF%h4+Rs7?&+TV9z*{mN``1h)BneV)oh0>nYN?lpTTrssp+zxFj{}-yn z)}J{tGreJJb`5L6(`!Z^$NGN0iukj*Z$jYVyXxB+O7#4_59m9E>UB+9@mT!Aakn?; zIXf0u^mit%=Ua91ltmn)+zyrn$9t>w zuYGt)Z=2wBYZ+A?3B|K+(-}waVy!o*Q8u*@+KDWQ`cJwF9wO`-l4%dFu zm)f)Ywf@Xh1Fv7g0goh3b;l(rx)pY|`r8y%p?^3Xq!ul2U$!H!;=m%!}E N;OXk;vd$@?2>^#Buf6~P literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Head/corporate.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/Head/corporate.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..210fce489d2663f5e0b81737055cd6fc6c2143a8 GIT binary patch literal 456 zcmV;(0XP1MP)VQ!Pj5>fQ2k`Pp{{Q^tIU^|s%gGu2fAr`a zK|Mq{Ku}1M0q6iYUp`XjKQ?s_mtP^tkwiNH8GtP3l4QauN2()8azIa%%>T*%39Bht z_Jn9h5bXev!FtLf3=DVv;8h1w(-Xz;f6@^uJAhVzCVQ!Pj5=Vz9RL8?5rdbSG;!Sk00004m=o)qVaBGJ`#x{f0G0L4F#Gq z^vO07D0tfCXMq5AWVz$>&jMliii+8_o{3y*rc3~(-LM|$)t9;>Eoa$WSc$MPv#Ss1 z?+4&o?PkwWI^r*bfv_; z6&u4SL9RZ2=?lOv(9Q#sIJXP>CPaVpjpj!t5_Kw7q)dR}fU)ZoxJg1XCL*B4G7(3NX3sGVd~2`3i9#gp42yG%s$%=N?VL_TWt<2f3RCZ`f9b ztgUD1B$%#X(*b!DhTxC{KyXL`AUGre5FC;K2o6aA1cxL5f zG4=^q^+{%c)jyIzK_m4BP_IBbdj!n>1k*MlIQ|t@6gh4JNCKb9b|OE|(BK|l-ipS% zsy-IeXp1tO3{sz)>RfS~rZz}&83{JLngtgD6g){#t#A5KRJWDQks~BrQojI=b|cvq zjZJliKw7=8*b)g`1ibtF9mBCzOrPI>u^YK1dx6Yscv_CL`%9GwDio(}SwOq5`fK3u z=fI=?p1kw|r|yv~ABOJ(^$0kiPODsNa(9SO`csPvwWDa2C2;G`B=-x1Q3LcSumcqQ z&-UhIW*jT$F{EktzC#?nrW+c#apzuA>JHeMYUd_JYK-g0v>b%Pdd{gn-dBCDZ_4X z>Q{gGv7nRSzv>hCn|9?<7=l9*0Kp*%fZ&h>KyXL`AUGre5FC;K2o6aA1cxL5fd1HkQeLf60Ap<0qF5&-ctbR?DS!F!Ub$!C_~r+$Yip@ zd||u={X<>2JWb;85P0HYC*9;vG2H|K*3HL)z5%wjb8ZX57QpjU8fb68-93dlDeko$ zW01?DmjCYV4~(%y>H|%U9`^c{wuDe#0}(9;y=@9?V(?r4R-D%hEe1-FiYx&}Mna5I zaP*KC?bQ4-JR!F+o{nb3oq+T>O^ETi?{Kwx(AOVe$H&nhqhJX@=9Gd_o&vM^o z_jZjofk=o^#0+37SprZEAkhQmdy}~tqF6El#r2~k016>3D2f0!*O9_9_OWZ2%M_3t z@iTZIWAO611Z?O0P+Ekv4I?H9v!uD0qvdQr(-uHsJNX&afCawQB!o03NpqS5Ede`Q z&^7=`RJSnL%2LpPFiV=Rh7%}zB`k)Zy>7fM7ga_oKoKp0Up)&92%e5YD=DtB`u)ji wXoeuu?|tej`GcfX!?FRCOI3g>K*a$*0pw@;h<`%(TmS$707*qoM6N<$f=bp11^@s6 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Head/engineer.rsi/meta.json b/Resources/Textures/Backmen/Modsuits/Clothing/Head/engineer.rsi/meta.json new file mode 100644 index 00000000000..7bd2e3e22a7 --- /dev/null +++ b/Resources/Textures/Backmen/Modsuits/Clothing/Head/engineer.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Head/engineer2.rsi/equipped-HELMET.png b/Resources/Textures/Backmen/Modsuits/Clothing/Head/engineer2.rsi/equipped-HELMET.png new file mode 100644 index 0000000000000000000000000000000000000000..1a809d595da0b06a484175abcbcbbfbfb40d0bb5 GIT binary patch literal 875 zcmV-x1C;!UP)Px&B}qg6L}v0Wg}-G_}SftA%_Y;3T@9l4s~!Bd-J@u0(#<8cb6jkTc`h|mG} zyj6-7%ntY7tu#>P$;)SasZ;>CbFIu!KEc#mhVls}$Lq@rrds`j!b8wwY;Zpa z{oQe2_HKQTsp&E^3)>BU6`r*INCtbU=ut53Q*r)Z(Ju&sAP9mW2!bF8f*=TjApBSS zi?aezZHn|?y4Q;KI>e_nD^PDP0BYT7)vgdk2td6)e7$z{Ne7`fr@Qr9;+}r5X{xGM z>Ey%CA2%-mG$a7Q^bw)yM6o0|vhQ6Y4D9KbmL z1K5Ff0>5RU;7jFABtydD%_Nvhix?TN9lujMp&e$n!e38014gc<@H(^JzL6<2 zYt3W6o}*f|xj)f!;;+g36FqLVYGb~hW7e9-$dv2aqKZ-m%q(ojW)`-8Jq()xn|rs? z4CNE_cfSYrd-jiKca;qZ!`lbmOu&2It)~H)nl58)G-GY-oz83UFk^!qE^r|FcOR}b zmlSsh^0HeUb$002ovPDHLkV1ljm BpXLAn literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Head/engineer2.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/Head/engineer2.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..280b39d8b0262963bb8b8d5ed1d248ec8abf2476 GIT binary patch literal 460 zcmV;-0WPx$hDk(0R9J=WmA^~FKorNnii0JsB_L^IpyCfwbn75?2nY^cogH1o)kU4%{1^NW z#6Q4I96CghX0tX3+DfUFLTO`2aWD?$4x*`dSGx%JnJ(`o?|t9B%R4|K`Hy5XdN`?A z(~}A$1&qs-$jd9s=C8f?eGdTe+HP^joe@cH82U(mv)SSe6@jY-JjqG*ijorgOPB&g zlN*LEB!a62nx@9u9p|2|Npjb9c|uZ{hb5cQLq$o&`bgzOfbV;-tW9bwmv5N|lDPwO z^Ens`ISc|XVpo%Cbl-bWlW9D@Jfq)f001sed)PYoWQC zinW`j34s5%-`7r^LQ@h1T%yBh3TfMPyDw;2Gc^#SZ!fW49mKu5Jc03cR9z@ zr;B4q#hkaZ_Gb$xN*v!Ws2LQJ)aEc6l50K+GrhlET%qn=MMpU*EfX@}Oft z!PyXT*%m&Db&V5yT*M8AaWpt^GWT@P-x2L_cf5k(lM{eJ2uM6H~yZC#R2Iq&g zZ0_qp+y`BDyW3h!cT$uqcY0iEv*6J6#~*GgwJ5Zmt`$`iYiOVEe3Z`Ym)oWOSn0|V zA03DLtL3IHW1qG6zVpK4g;Mg@R~H1WKlV#eL`pobb@~gn2k%%Ohs;en^C>waN~50r z&smREc2bl6bARhsl;{&>XiH{oco@N$U=hZEjk{R2;m`ZOd#-TJNwtk)S~KsDLtY)< zQKxISbH4_}%;G;Tea?ra^BTKA-0LMrJ2o-!PxvzHsZd?2@r~yWax1<~UV4>j&)58w zH$E{3&2~`n)CypjyJgNM1`|6gL*t{D>Kl3H$?Z8@#q-lq>i8AuY{6@0>-o=~l}}r( z(e-+jZMY|c=L9atx_kWlGj7d#q4OmE!_1&=h0k1p?JL|GCowGk?emKD#mq>BtsLh! zmpAPT=?oCiycb~0J%uG9x1l1cOXWs-P{=nm{-ag-zfz47U-}-s?QrV7Y~NK5m&FdM zzRTyzOcm&P_G;&X-Z=Gb=8Ucr%o%KDb!SX4`{q1B_{6_7ZS~DAt}(1aF6R{TERTD# zv3UnhdpEQAnf}3GN3D&^Pb?O+SevzFWi8k7NI7v;sm99({^>Ft-pF*IU=4$Tj5Y($ eaW1Ufe++IfkEfOzPwD|?F$PapKbLh*2~7YL@|a%$ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Head/hos.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/Head/hos.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..c401c000932f43fb5540a50edf949559c94e82ae GIT binary patch literal 473 zcmV;~0Ve*5P)LYmY;1hWB z349HoM+6T!NIhvUA%;Sshge7{D%CarjnjM}x|^m1Ap;@1JHyUz=WC5BmKxyy0BmlU zBAkwl$^cd+H9#SNb7~6wZ>@Ib-1qObYeWkGg}A+A(%DuZ_iy%L-bB0vBho2WEdV%g zwVFh)!H;^W`vy^kPy(>5uE6Ev@kH+X?u?Gwjf{=wJulWB`yjG4g-S}4BLL?J@3J<9 z0rD3k3S`G?y#DTbPWz{cEz(sQ0AKjq>y9sytNyap2FS}`_D-F~`eGlyeoFnzIqhBP z-K7nHmko^%q6orq9^@H9k8@q;$^aZv&g;qNPJ*C24@Xjf!Zc0Bg?mjR*~zhG_u7y3$jSKor+64X`Sy0cwC6pmKmOS$fZhL8i&` P00000NkvXXu0mjfngPtL literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Head/hos.rsi/meta.json b/Resources/Textures/Backmen/Modsuits/Clothing/Head/hos.rsi/meta.json new file mode 100644 index 00000000000..7bd2e3e22a7 --- /dev/null +++ b/Resources/Textures/Backmen/Modsuits/Clothing/Head/hos.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Head/magnate.rsi/equipped-HELMET.png b/Resources/Textures/Backmen/Modsuits/Clothing/Head/magnate.rsi/equipped-HELMET.png new file mode 100644 index 0000000000000000000000000000000000000000..7175637c7ac46d3cb9d6160af10ecb62727cb5e8 GIT binary patch literal 970 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=oCO|{#S9F5M?jcysy3fA0|Rr7 zr;B4q#hkaZ;yr=`WsdKkED+6%}o^raT*|1?SZv1Epe|GqB^vVT2D zRuEL4f8?KyYNL{Bi;$3pZ?NE<0|}R)uKfZbI z-`9NK{XNEFzwiW^)P||`R>fOGwbz!-x_;7w=l1HyW=}d}UKL9lT&<4%+#@TWFY`m| zPD{+|V#x&k-Ai=W=fAvvPF`}cMeqCE*4CL5*4A%ZcBv!c7dWq?;(rBB<;F9=4T#Wf)|H1vo{%kg#_C?p0dDb1>9i`_w|GiB7 zu}5}B@$n6xGTDBr$o@>K(_fRf!KPo8*-pndA;Yl4z0~fG{L7}*3*>&bh`rxc!}{?D z->K8y0#TRG7VOYDdo=Yx@^>X|(^U=oZt;ET=X)Gl%}{)LCf9V6mLepa?)2@E=Vt30XZoIUScxx@ zsragUm#Nvi)Iew<3sXj#Ez>R81Fv7ST2d3%WxWA))pQg3;VYT)+#;tzWfF`eMNRN|$ z?cVV^?ee0R_m<0?db2zt&+{UiM8JN(gyWs%{Le0$2^|ag=y<;21=oUV`?+2(Z*&VQ4OjBch($HK%@@~yvq_H8zs2fUkdET6Z@y+6x7lj-rE|6jPY`=3 zsr**L>zi{#e_QU!mdQ_#8LOAGN-({?ze3hG#{I^Ai@a{*U&0mQ{wu;0iHMcY(q@l) VjZbI1I1S9444$rjF6*2UngArhyCDDo literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Head/magnate.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/Head/magnate.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..78fd784c4de68a63fcb2dfeefe780e363ea3d8ae GIT binary patch literal 454 zcmV;%0XhDOP)VQ!Pj5=UwI)GQs;XgL<&yNl;(%bQ0<}fTWf%Ald=#7Y!MH9r?^qV%Nj4^Wqk;n7h6Yn1=CV?a~;67nU%v@yY^uXQ=A{ z7+Cyn7DKFl8iTo>BwWl~FO}isrRQKdQUS>h00sMEhFJ`Y4`4|3MFB`{$yMUaCE5X?f@N2&$p6T7&ly(p zEMi!VC5^p*_?%&F{09cNW*U@)AmG+~fsvQz<^Sh6zc69*=fZ~?-;hF!q wT@VYJyP*j5=V{0R!#;0D(G`tP`LoG5`Po07*qoM6N<$f-;rBhX4Qo literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Head/magnate.rsi/meta.json b/Resources/Textures/Backmen/Modsuits/Clothing/Head/magnate.rsi/meta.json new file mode 100644 index 00000000000..7bd2e3e22a7 --- /dev/null +++ b/Resources/Textures/Backmen/Modsuits/Clothing/Head/magnate.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Head/medical.rsi/equipped-HELMET.png b/Resources/Textures/Backmen/Modsuits/Clothing/Head/medical.rsi/equipped-HELMET.png new file mode 100644 index 0000000000000000000000000000000000000000..716e361fedbb7d2f9acbe8b741611057660b2352 GIT binary patch literal 960 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=oCO|{#S9F5M?jcysy3fA0|RrB zr;B4q#hkaZ&U%LgN*t44$j`cVnONXL7mo*LmQ5)T+j>GwXyWdyiy=N7fj!+yEx(wB zRI(OIG^(_*Ztd5&}y;&uPA*^J&pteil`Rw{QE`yt~(a=x6%-IP14dQ$@{M z_q@o@-76!((l_5{-m#-cN@eUXHmDyKwy6Ii(8k90amRbRs;W4x+u=+C>-!h(7C(1t z{T2CX97&7z2%R+UX85y8V|v2PzPkr}_!3XVrEdH+`R4gW=hR>4d{<6o*k5-xG3yui zx3_DBO0Ddt*6QEV+@D@(S{SqL%i7zz5|U^CTt9#Jdf9U4${1A!lY+%h)!vof*_!RG zowwd*Zo2jFmo*y|Pkc-=4eUO5T6g}&_YD(&3iLbd+TZUNSu!m>pzC)3-)3&E__jmp(otyUBZ_C~v`_z8#(>r+8 z&h+R$<~_%?jAxeS)Wkf#@%mYKgwuqlNxi%C7y=w?Vy}rdD5Nkr6iYH(h+$&@hCRdC zRBYV3xKGEPuQd3~tdZZ>bYF%smEqlwnk6;6cc13sW}3Tx-JSPWX3l?L?(V?JplsB0 zBI=2`SYCa)0L{CJPjW$-Z4nde*fl;i`G;jfkRhv?DQ`cwxkth>??6S!|GvK z95nG0UxZ(?XJ?VoPp>PlUP&GO+`qM9!4aDlUDc(FY|O6d&+FFSZ!x{%FSCkXOz1Bu z4aS6!8J%7_rQ*SRh|-?4P(yNF`T5o$-wPTN4KgzXDio`DgSD5g z6N&aYrchA6tYeP%15TkytFBLob(dIl_iE0{f804c;vYKHx0o&BVaU*9W|(!Fq2ZYk f!-Acd+;#QGjWVQ!Pj5=V{0c1HqP22oGHt}0mPcqWn0U*nT z1qB%ddH7Mp-+%cCmLt^>Bsl3QRFx{c^QPEYDjSe(GGz59Ar5* z@Z>=Er8Kqv&he|Slfc|)Td z@N|#)fA`64g6ae%RUiyt6oB+xy?%}1(W7&C6C=?f@afZMhC7cRfKxdqGZQ%9qgxIN z{-;38L25xjOiTbs8vV!T2%;R|=2cQOm9bsXv z&7i5Jgd%_a+C8wZ_wU^Yw;bgASFb)WP#gv5jsUSimZ1YuEhpIlFh>9}UNyw#0J0oF zEYQ}}0y%)7I+{3u*aS#32ap0r9Wd&E0e1iZZRn^{a)hF@00000NkvXXu0mjfqCdAA literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Head/medical.rsi/meta.json b/Resources/Textures/Backmen/Modsuits/Clothing/Head/medical.rsi/meta.json new file mode 100644 index 00000000000..7bd2e3e22a7 --- /dev/null +++ b/Resources/Textures/Backmen/Modsuits/Clothing/Head/medical.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Head/medical2.rsi/equipped-HELMET.png b/Resources/Textures/Backmen/Modsuits/Clothing/Head/medical2.rsi/equipped-HELMET.png new file mode 100644 index 0000000000000000000000000000000000000000..9c10572e0d012eb41df417886056a9731ce26fa8 GIT binary patch literal 1294 zcmV+p1@ZccP)Px($Vo&&RCt{2nn7q3R~W~Cu?fcRZU#q_xVzIpCzxnABuHb^Ly>@Jb5W3D0#Yh? zOAa1NZc+~|UObdgNREX{DHIVyPik2Z+C!r)Az@;hNVX7mvb))2!en=~F>9uWWv06# zGH;Wul)fJ;Sa( zohLJO6M%FkRh9pGkob^U%4@4-AT&MZ6blxCKnQ@?z!~oX9BRc0 z1VY08_lR_ER3j7$xtF#T3OO3ph={qWc)nc(N*AE~|M_;2O&Wyl`3^v=x8Df`Rd2tg zWj{x{kJHk!-#Zoxs>FKxotK@zQ)0dSj@H)sO8;70r?7wD>2hJ>N9RcQaV9=G%Jc0a zO`-kX8nBUD=Z!t}jNJO2KV~2D-N>n3zYSdf-+b~O(P$XcOnLs@{fjpq2>bWdvFGe% zr?@;zD5#QLn&;h5Kj-|&hhF>5iM#yv5 zeQ+3kaF}Q`%q9&eYP0v-q=9HO?DY}xFO&h=;TU!*MRIAL(Ayu-aqct=x9^er^JlcS zPLyz%p^m9zM}0w*Gb?0eRb0Gm;<1w&1i>X0L)F@XD?f9 z(m<@Qzci4?bJ$k4w4IpSwE(#Op_J~8YJ~CyIhVKi%UZ6uE&TfTbql!0Y%5Fh@tk-3 z*s*v1=~JW0m)lDw=IRy`3w5@YC6~8=(&TL`%VJ`ouDqXL+d>1?^q8Zl&E8_@W`Mi+ z*;aPfC;zIkxZ6ANDSV@hm>h z#TyT58iaPe!?}3l0ng&&m}bfoW)kMArxS_>K{x{dhQ=m2F*=56rdU~7Ctt9co_@rw z>sPBWC&aDmSDBuEM806Nva*h8rZ_P=#?aVgRrZ9Hp#xnf*|(7-m$&F@Z{^pA)8q>_ z?|(MoN#-B#3D#sS_;x$*KuM1O<%5ypxR5|2oB_q3GUzE&iNx3g$F+4ML?z()vLR~HH-#q~1m0`{@QN|qiMwMH zrK+dER$;ZmnVm{`15BsWHG3IKr_*(AfL)(28;=OW8IZ|j$|jhhTp6zAJh4v$IE$L^7wzX9zi0JNF)-8L?V$$Boc{4B6-dH4XVC6PoK2JL;wH)07*qoM6N<$ Ef=A_qfB*mh literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Head/medical2.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/Head/medical2.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..3b3f4187eddbce1f52dd81e9122660adc8b20230 GIT binary patch literal 645 zcmV;00($+4P)Px%KS@MER9J=Wl|hRVVHn4MwMxZk;@B9AvmT^X*bx@#19aG^PIZXrJ4EcELziyb zp;MP7_6tOZWjCZwts&B_4pE5#HKx^@_MxqDjhMb{v^F{+bB_s!gXnq%U9XTzEr{3>pN6qLy7uU4@6G+&07#O5=%qVKEFO>33@&p0 z?g{{J-)H%pc}2aDwS6CK4J=+=?sfO_{0t=)8CO fD|T^l`7ihdvIh-?`qVFC00000NkvXXu0mjf9H1$+ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Head/medical2.rsi/meta.json b/Resources/Textures/Backmen/Modsuits/Clothing/Head/medical2.rsi/meta.json new file mode 100644 index 00000000000..7bd2e3e22a7 --- /dev/null +++ b/Resources/Textures/Backmen/Modsuits/Clothing/Head/medical2.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Head/miner.rsi/equipped-HELMET.png b/Resources/Textures/Backmen/Modsuits/Clothing/Head/miner.rsi/equipped-HELMET.png new file mode 100644 index 0000000000000000000000000000000000000000..cc96fd61730705d3fa40731b12caae6f0db93f4c GIT binary patch literal 789 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=oCO|{#S9F5M?jcysy3fA0|V1> zPZ!6KiaBp*ZS)s$lsGES8RZe+-^8A@*qx87=g6T`2`hYa{_^YSzFEN`I=6M{|HieP zrj0SF3nkVwFh#wnjM1x5XX!rt?pI=OmW*{@fSuv~hFdy_)>==Vq1n6}FG6Qd zM8n?w`}fbC$r*NE_gW{Hy!~EFyV$)?uh6hncUjz`Wv@==36gkXLOx?>-Q6rKa0G5 zlu1(?7PVpAYCRJ9P14VoA9~<%Zp#-(I=#;>FbkJNNKBU_9L1cC_fX zaP*&#>l0Hd8KPds&Bxm);hYCned)t-iWw`KL_l>F*o<{rZ~l zcR@U3muvlx@FgqP&p#y4C&ln^1tVU{ZvrEa`@bniQe-E7f6c3KMzxsJEyAYxLW+y; zrgy?Gu1hC8tZ>=(@kiv*&G83bN_yO75wkZhSKpUs5~cpmI{TB6qK2#=$E-tl>l)V- zm}azPGnL1C^gDe}%y|6r=5E!^8y@@J{=#KomL4|UY|i{jh07Uio3AY4l$I|$Z<;@W zvEfB?13^2mJo-F?8vIwG0PnQBavwbcehCQ*ehcvWap5e1phPfn;A{cE1Yi+8R$~2*Px%^GQTORCt{2n!ih1Q546&mTr#>F6tv&VlK3}XooCn2zBb>*ww8|DMc*Qp-9ug zr8pG-fglJ)icsic1EH-5E_DeVZhw*C@-$0^^eshr9bV7lCXwXbn_Nrbd?38sdtc5u z_t(krJ;0b*-F*{{+onsqH*9{C&xxo~Mx;M!OdcMMFFFm~?jZlB7%#xgv>yS$N*Tyz zeXNwb``eATwy_L^><;s9iq#1KfT!T%na36q!eIT3|n2cDO~ z{QT{t|Lp7ws6PxlIKK#t?51I6+K@4xK4WWk0YV5&O-&|atyUXbvkPfWS>t&bWV1e$3eak` zyT;;v^Xrg02NdtTn*e~h_3b18`Y07(Zhad7oa{c?4Z{wU3i>9g_nTfn<6!A7X0v|M zXY1SsJr@w8lu9^qQ+0{|ort4)DwQ($jR zqIOxrNyYsloKz6iE=$;3lc+XDQa50`2*zRpIU;FHsQ`NW~@lmQZh9RYd zQt@P;e~YDh+7KZG06-}K2vXZLT7X!Fj=%386!7HnF95)XU%=vG5kR~%=NIV%FhQ?N zpkfRvlsG;5GRW9e=>^U*M|A zdtL^OolO%nW1+FL*|p;oi)po((E?Bo=)HIU5+Ot~d5X;hs~kW_-19O?odD$qmpc7l z+Y!Y=e&b^w06^q22{R1CFbu;m48t%C!!QiP{P+9;_mR4Eh?ffF00000NkvXXu0mjf DV1#@7 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Head/nakamuraengineer.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/Head/nakamuraengineer.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..c78e84012ebba6312b4946da2e10a91045d16107 GIT binary patch literal 461 zcmV;;0W$uHP)Px$heK@^2Q#V({!bdx28kl+-8MIJzcpp_4xjc8?IVP&CM3l?IT z!b-6bEUYa2Y4QXqloTTh7Q^Z`DVFJkwFt9BA=w!d8{JdwW#;ZZ_uQE?kRiigLZvKX z*PPMcAo70+XdOA{jJPJ4Ij>Jk0M1?oCa$-9a=AQON4&iUR{wTVpi&lbspNCMAz562 z`;QvkaW{$u-|9eGD`1KrE;Rtyy{iEv@!F|KMv%+p0j!i5b18nY{{T#|dN2o&#PeH| zNpT?rN(Hukr7K{H_kvOZX5D;CDURbTyHj8XdU5sojp=Yq>KhAjIV4bvDT5bEf4K2FeA`9N{q8KaFyH2}y&IAmJv^};RXULEt!*_fF-%6yieY}m300000NkvXXu0mjf DPx&GD$>1RCt{2n$K&~U>L_g-K1p^$`-X@v{TuX?w64DupI`@i?E|N4|>`k;=zM| z#!kC<^C;}#91LWKuHdQ^TtM4WTP2lB6I$rvAtcu7VQ*%u=<|Wnl7#pB&6B)uLZ2@v zu&5i}dG?=|Vd!7@9cJFx^;pz#{NeF{1Aqridabq_#X}_hL89s_6=0(?Mplc{YP+nN^JEO2HFKU;+a;^T z+2|+@r%bDW%uAH z+&0(sFqgDQ`bq_;#CjAghxKBfc>X$;ahV%+o2zf~6ecF9#CkBq=Rlx;5|5F*I1z3? z!KGk1k@S@ca1xJ!>vHfg$INDv+pC}1I~=F{JO?{@e}6~KfU17R>5|kZNKdDz)*7Uz zQ&4MAvOAn4)b*8D&P*cdB`^900;;tJt+q?0(;E7dpkM#(yZ0>IxOOi6NQMIw0i!zk zLH$eR@A9DB91VK&VOt8w7&;V2ml0Uh4R6hy53&jUUX(p39UPo|s#xY_;*`0r$EPU` zAner*y9oUk0N_f~ZM6T7RYyG=x1XJ|eb}V@e2Pb}Jj~@u3YHW4!GembmJ(4eK*{NX<^MKkH42tP z$?3AblV`S?WB-Y*I^>zzzc<_rKzB06-i`wEHRfu{ zv|T&Gg)D$&h7iE%2Z8B$nfU?DF^zP9r)UJ&fVp16^Kl39(R-@y<+cN}_eizTca1E7 z+1RG$X9wfd+zlvLPpqF1z`p;9{<(|0jC-KwxQPZzMJ|BVsNp1x(O0XvBLEu#gPx&g-Jv~RCt{2n!#(^W*CPbr6aEG;UpSFO`=lP7MeP9aUkHs3O$VU|DD>3JD1q&7$SEOghLvqF)_|LKfhJp-(<~`*77bb0kbXP3(qzZAB_+;A z`#xY~OP{~rPp`i3)!}_106T?IwNn^XY28qr#-(*bxnqOO8$ehBKTrTlc>qU4QcQS!Df=0T?Je*S`O(Iq_sqCivw274<35wPSq9Ji9{s*t}EdD{SD7VS=(iCwaU*+4i{H5n0FgF zp#J!G2I6tb+HTYT0^MZ<{gr-=R5I?3S;1j(wHisk>stWe<`0d8v(m4z;5ba>2bsHF zVrHSp-0c!m`9T&Ohn0S^Hvw zXe2_*b~tpW&r1|SZvj8sTQ-xG8qnwy$Ysa98eT7$p2(L%+4(5OohyGp9yBd_$*mJgp_qm1Uma&)p~k0|ou=zU z?u}k=K>5oGPzp0`U@m@;!8CMMzx@SM?d<^B z-mt^z^df$*@FN8002ovPDHLkV1oQ+-0J`U literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Head/nukeopsclown.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/Head/nukeopsclown.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..f93f86ba207def95ab5e67a7485353c83bf27592 GIT binary patch literal 615 zcmV-t0+{`YP)Px%AxT6*R9J=WRWV2#Q5gO%SaTjq@sK-?Gz2nUlwP)iSri-u>Cj2&&_%L!Q|RR2 z?B*6C;!w!cp$-|l7;w{45L^OsrXi1VMU=ZFpwB^5-sRmpUu>OvAKY;7|G)qH|M%bj zACMq{1hzDTZfOR64u2);@ciRTj{N=GG)|g6HhmJwVa1)ihSv+fIa_Y$lH;ai#Ao;J z13GyPah0*+vwIq6kBXgo%mDzVbqfGulNhdiz?JfvuXM zglhnt7>)>139$I|GeE{N1U7>Di19{BVEMC(jAh`JsmJ&b)ZcgiZ32W`VShIbsB%H~ zchexLD=A-Y3|Y8=3O7)(aeD(N&ySS|PF};t?ad#)R08ahkRgtO;drbT*Md0V)hMnUI#eV(+@3hBmLJaS=1YS z6uln4PEO!WZU(J35sFK})=j!pn4?pZ7F{aLQF;JMso*(4$k*1ztsFoqGd57%CcNl) zXfabFQ@PY8910|?>M7U#q~3_G_OE)KAVGrv7I!)^?+r%FP&ohq002ovPDHLkV1jWT B8nplb literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Head/nukeopsclown.rsi/meta.json b/Resources/Textures/Backmen/Modsuits/Clothing/Head/nukeopsclown.rsi/meta.json new file mode 100644 index 00000000000..7bd2e3e22a7 --- /dev/null +++ b/Resources/Textures/Backmen/Modsuits/Clothing/Head/nukeopsclown.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Head/nukeopscmd.rsi/equipped-HELMET.png b/Resources/Textures/Backmen/Modsuits/Clothing/Head/nukeopscmd.rsi/equipped-HELMET.png new file mode 100644 index 0000000000000000000000000000000000000000..d80913bb94c21962852c7c6c4e6dd48f190c6a4b GIT binary patch literal 831 zcmV-F1Hk-=P)Px%`AI}URCt{2nn7q2K@^7nbd#{|7D?M=OIy@>sfa?O2dP38b18WC}%PNew0QwTTz^1~4#kMU5@b zJj1Q~9{}jBfFSi}Kv+oG>W~Tx}K59kWF;Y9JSBgK64G zISvZ>yxJPYs!!G@T`W)9HxJG=RKWSWZvg;qX;WJQY%3w!D;3BjNaW(TVllElIarwl z)3nu?w{!UDTzpW!y;5ly53_h6L;`@?i-;FEaZS?>{UQJq`fHs;|bj zVlkMejluMw8k?PcswDxL%r#Z|iwleJJQqQmEEzQbfMk)A6VM;8SyH*Oi(=Ks2nDHJprT!iCXEqD%-LGE=?>WHMI$#_LOv1!0GEx0POT64977x zS61_~Dk+c~B!FLgO^W@?3TPG&rAZ=Ge}HM)@H|)Td-=Br0PAZj+N^5ZN{FCNP+!KR zy+J|}>=6hCqT8nr_67v?TiKt$Fbu;m48t%C!!QiPFbs2O`3Z&~hPx$Nl8ROR9J=Wl)p~HFc617Xoip!R3&Ye2qYF}1_n0NiRbBqbYf)Y5f~UzS1PfV zi4h6|LP``RATv~kQYEp2Juvv2BH!ii=lf%DI1E@!$HK%8ux%pX=={vcZcG>qT5qVb z8xcooYjBlaV$=c~cwK*xWi5)VvBX*awxt_S+fgR>{jk-iC^Gt01;BHaDdTGk=$c%j z5}`E%ag>VvgTqGqC`o=LA9_88UQZ`WS*E>GKCC$qA)1=a)r)NMgg ztZw_ST422bag>USPx&j7da6RCt{2n!j%wWf;dl7uV-D)?t^PJ;V{Q;TlB+sg)>7%Tlpqst|J~I(EpK zxkH6eC8mrF-SQV?@|Fc5XeC=pt)w#81k8|}@i`aQ@sH#foV&(}Bl5Z&74UqdlkE4k zp6_$d`@VOQzYi$jZ9MY!zWsXa`8OpD{Yxr8wmx6w;q^IYva_C ze?m2huYUO68#V4W9S`7n=~vZ|Z&hEp001YeKkECx38fEdxbzmW7c> z4(S_-Bst3hz&YwE#Zx{4_nvH0U0WO)tFA3_@5$y^35<)qYX{expj?3U>Rs0EK7K)UZE;$L9%F=I^H(Srz)YDKi6oVB8MoN(XaVGblNUX{dJBP zMQI1b;|9rVCi8dZ0dVRzIm;rylnK20La~J7>?tL2Q3}OUpp#$9kh3hD`oJWezcWwr znn^rvD8*E6kN|?F2pAM$VWq~irwgygn&A|{=h@Q*7FKG(&7aIE)Exj&+pYw{zF2-K z!|exoV9>tOeicra$nk@Y+Yj>Omoh^+ICY!ac11a+a(_VVib4Nq(5&EpKD`6_y>Pok z{2kCgg4h*HwiUfCWJi1VIo4K@bE%5ClOGg#QA60_Ix1UG^cCtN;K207*qoM6N<$g5_$_ Aa{vGU literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Head/pmc.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/Head/pmc.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..94e38433fd1e035df5f4127ca3cfcf49257fec20 GIT binary patch literal 413 zcmV;O0b>4%P)Px$S4l)cR9J=Wls#(0KoEsrOghDdQ|JeEwitptoj|xvA$$vC(&rHAgA4aQLONpv zZgPV#kaR+c3ab!XE0v6t$aq#bkYYdBX7reO^Me3`!60OK<5hp59Y}?vTTd$0(q4;| z4JKpi?C|}AuXJ;18<>o#^8J$?R=Os{D<}>bT<835UB|16Lw0!smIV;eSsf9PiEWQSM51*88WX6yQ>w&%|N3hk%nSg?^FnJ9;u{FV zDVQ1Ab^#&+Gq)ZQA=@s%%m~A&*noHfd0qejqU8?BYK9+00000NkvXX Hu0mjfPpz)Y literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Head/pmc.rsi/meta.json b/Resources/Textures/Backmen/Modsuits/Clothing/Head/pmc.rsi/meta.json new file mode 100644 index 00000000000..7bd2e3e22a7 --- /dev/null +++ b/Resources/Textures/Backmen/Modsuits/Clothing/Head/pmc.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Head/rnd.rsi/equipped-HELMET.png b/Resources/Textures/Backmen/Modsuits/Clothing/Head/rnd.rsi/equipped-HELMET.png new file mode 100644 index 0000000000000000000000000000000000000000..0c3445934668cd698b684fab9c990723ff42c93d GIT binary patch literal 846 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=oCO|{#S9F5M?jcysy3fA0|PUI zr;B4q#hkaZ&SwidiX7kHIAOBa>Hz5pv%2m1r?t&kEaI5cI&GfK7yB0no%O`dI@+vw z;i|71KJn2`4GEPO2cxe~3eeXI>TvA5=^T7v^7O*^SGRMvbIml|tnk@RV3YOjci;EE zKa(SN&--xU5r)b2Q73d(>p#EO_Wbz0xyNsv|E;OQ^78ue?1z>AZmTBO<}$0PeaiBi z8gTY5$MH04)hofKSF^6Jon7$3A#85wWe@Sc1#ePHrPdqyU->Sdn_H{P?6GI}-DA_T z63YI@S?t?-*TMYiyI6BhC-?d<1!Ai;nB(g2Sa0eKOnDg)9be5l$EucXb)95#vhu?j z^KUsW{mJRw?sq_KO3g+K&hxk5)Ed{kV_n9=mT|W@fjQ%4@TGnGH>+1By{eKlFBY$2 zWRus9Zu~kk?eph-`)}@@cm0z5sr3i0AJtBDy@j?`%j?>A>7PkBu$1>l4%(>Adyezk@GA-?X zY1he=ue>=2-Y;MMNTFkeg8c1Yq7Qywa@M=?*m?K*Yg`>{g3`zTckST<=4q-WW?kzHt z`P}#&%dE7Ht<~PPP~~xyOn>K3wX2DuzH`zVPCdQ2_CnS{u8+CLH_OMeUYornqQPog zMNc)`qgd&~ZNjN*?T;?){@5K5W6&wrxc{sAAMQ_DJov*06nOg?+8%ek_>h&!1I!={ Mp00i_>zopr0MzGyC;$Ke literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Head/rnd.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/Head/rnd.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..724f4ec9a4b9f6afc072a178eafb5c4b752e0480 GIT binary patch literal 546 zcmV+-0^R+IP)e@#gp&h(FgFN z7eUmk=lTF`@eNvN(Tjf+VyRSnsG{DZ-_{A!G$gA@kwQKwlbzk2@0;1lHskcqNCYGT zMoU0CopoTd&+BU3TB#~Kf4!z`ZSGRpX0tXHyMW1wl=Iqc)6#N=Hl1DNE1G-C=3jc_ zmQkg<+Z(m^d#-0N#}>;B`}!M$N3A~oS+afhNJPylC- zvf}&!!3y`e@ zSB1%Sq4gFp0nXUAAIY*-sZzP>TMHkTUmj89w*cLb>lK!>h6sS04utT@s_-7zAZQ)I zMlMI?Qb`ejh%=O#@-x4jR+C^jFL;>NI;Aq=B3a`0vKFwbT-Jn*}+#X zwH3Mdj)*LP8;}G0l@>lpu9JPJ0C^9v2>GAj6^S{%DS=q-0T#glC7~Z=*T?cb;1}q7 kOmShfK1ve-iGX3?3q^baC!{oYoB#j-07*qoM6N<$f&z#2+W-In literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Head/rnd.rsi/meta.json b/Resources/Textures/Backmen/Modsuits/Clothing/Head/rnd.rsi/meta.json new file mode 100644 index 00000000000..7bd2e3e22a7 --- /dev/null +++ b/Resources/Textures/Backmen/Modsuits/Clothing/Head/rnd.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Head/rnd2.rsi/equipped-HELMET.png b/Resources/Textures/Backmen/Modsuits/Clothing/Head/rnd2.rsi/equipped-HELMET.png new file mode 100644 index 0000000000000000000000000000000000000000..0bb21d1ec030039edae8b8230a9e4231fc51fc91 GIT binary patch literal 983 zcmV;|11S87P)Px&kx4{BRCt{2n$K&~U>wGu`eU?a*$fI@_R=!85+prH52HJH5D(&IyL$1gu#5N~ zcoGkSc=Y0Z2Tx<*NyhY`4pt@@C3HnLy4ondtXZsXmUxJ7*3NC@O}kC>`+<^>yyW@j z$(tYa`v4IcO6z{qvB!yQou}f682REKBKEu2i8#kPZhdJ3jC|40Wkvu1d~*X@{~-A0 z28?{sKME6!e9>paS$uE0;Wn**5CCH7pO6*LWkztda0z^K0|3G$8_w=|WqOH`FZwxi z9Pi)0gtJ~j`prc+>lG}O7BD?^BbI(-0~AFK*JobL?K!5=a4|M&9Eu5JqlVvVax5)8 zg`%h^6ik?>FQZT}p(rZuKe>lilXuh^g~$dxJhQd$zGO;8>TFs{I1Y^I;kx7Sj^*zC zQHgB8&Cfpo1XDhl3S3U6)bQlX)*=9)Jj)7|n{%|9JIX=pTDV2dL+`BSO@8U3L&d__@zn*mtc^WjO0?XpO{1%wIW9u$;H z7O)kFmuDFgd0V=WsQSVL#&nqV%lOJ(p;|?(lLunF21OB$!%?l)z?crtbA>rbOYHY{`xjSS@m^>jR}BO~5ClOG1VIo4K@bE%5dRl{Q(mB(T4Mc`Jd`ng zY;g>n&vtA-s*J#1UEoH;#iun(T3@;`GL$j>fdLhbFC6DIP4wmkhn^8=&nEyo?Rfw| z#`I-Pkje*)jT-($eG+Uqxbn%A3ck4!{^IuNqhjQX{`Az14o%UZWy4ua)F-9e^O4;e z8#Vmv^+&L;Jw~Zy!Sh@UoX;X>j)T|A;W({-5aqRxJ-;2qm2bb|nx4bb!czbUGXuu6 zTbN1T#!AJGq%SoCfSrE4qNr#!Im*@|G(9JKn6AQPDPxhGhDPOi0pS+8_t2YN-T$>FS5u)4AgAb9H6o?qyw&$ew?+w)Sba=Cy+U(lNe0NZZM0Q6~C zU0Dt@1ErD`xd0hPx$rAb6VR9J=Wl|M_vP!z>~{wXx1p$3&UghJ60p`D6DmbkhUNAcS@_-({dTwPoQ z!46`TATAQC0SQeE6{*HS5?j#vQi_W?5R%;7oOkYh_udB?GGv$lt1Ct{Ew0&V5&bU# zVHiwJz)ad7jE4E+{`-Ew!(As8XDVl-VMdFpidra+*uCc-Po6iC2;nU-8fH|hRN2{R z;XU_8uDqnMsH%x?xl$MI5+MO`}<4t^$EiO$LV4ihENt#2^g0FX`uvwEGvXzfNk4CoKqP@c}d~? z^cXoe;O0=rvP>+?{2KwPR^#gW5?(*|e0#S@yWPQc#cDvf2>WmExc9fo``Y>@05_ep z5x;}I9473uGAwrH=x<9C$@IG!OoGybv+!Xi>_+`$>NUF6{7hL!XvX>(xNy*_&Si{NaOo3ev3YpfLKKQJe=-1c?kgL h_9FG+mLWri3?FSZnpYU|hi3o)002ovPDHLkV1o4T-?#t( literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Head/rnd2.rsi/meta.json b/Resources/Textures/Backmen/Modsuits/Clothing/Head/rnd2.rsi/meta.json new file mode 100644 index 00000000000..7bd2e3e22a7 --- /dev/null +++ b/Resources/Textures/Backmen/Modsuits/Clothing/Head/rnd2.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Head/salvage.rsi/equipped-HELMET.png b/Resources/Textures/Backmen/Modsuits/Clothing/Head/salvage.rsi/equipped-HELMET.png new file mode 100644 index 0000000000000000000000000000000000000000..9f4e3124bc6d0529f4e34a6a80a96efe54ae0146 GIT binary patch literal 996 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=oCO|{#S9F5M?jcysy3fA0|WCk zPZ!6KiaBp*`Fn&o${gRHHqGPoI=4q$D<8~v3JCIgv%n)&NND2oCce^-8>VmQ_K4e~ zA^Sx}>51VM`;H&tH}y8|KA9Hy@8*HnO!MBdSf4=0`21%dkCkpcY*X8x@r-%3@&3sA z{r7+Gn_21qtX!z+u&P5`+)^Pf-{lYFk9yR#r5)Hh$?0j(zszgj*|!^5{y%G!*k^3F zo#CykbC>iw=eKVg-7dRkY}&4|TEgPWyTdHo?e!RwE^)20dEohNl8 zX0AteUP4*)M~+?9Sub{2F(-%}+5fwRJLRwXy$1jIx`VPMl3n>3!a6l~+cLi%{`KlO zf3~7{t;~n_j5{SI?yYq^d3W|1J9`T*^T5Ccb_2o7$~zlAs17uv|EiXZ;U80GzcZDMHefw&sp z{EFsVJx894Iq=VmSg@geqe{hN_2X(xFOv6s+{vQAD0A9Z;`Yn*^y2A{uLlO0y4;RR zde%9i=41Cfw;ykWzl7Y7?pt8@b>6SJjO%{1O=I9(A>TQ5{;I=0>^uHGuzfpy>ZPR& z#yje@r*FOgE%frDjtP$s-xGiI$8IO9Liug;>F0j!y`8(_MTTqC=ipoKSJbchSHo`n z;!jN1wTf0HXC}@iHZnU#p5c9h7&@0wC-qAm}iVO65 zlXorb+IBrdPWtz!5A4P}YKyoXuGOVYtG$0R=gA-58}Bl{GEF=fcwmWYfr8%;-qX!G zrw=R((>}mFogroW)$>o+KS|r5e(f*HkAg{#k0;?jCNu za_$+gqK{Q;8Tjw83Kef&pf7uC<&J+ge#;jLoY7gLvhQkl$d`yGhd6(&lkfhtU!YLG z@d(4oerfG2)|!2uV#bzpR7I8kOXG_kNaTHB`onm9&Q#%;bJktJY|G&3>gTe~DWM4f D4|L5= literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Head/salvage.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/Head/salvage.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..f43695d4347429bb8d0e1f635c2ae68675e2a935 GIT binary patch literal 445 zcmV;u0Yd(XP)VQ!Pj5>fQ2k`Pp{{Q^tIpcsiKu}1M0q6iY z-$_mRKQ?vyZrvr>kt9a}$Z`XDb{w+G|4DTONe&3&Fa7_4VI4s=>ppf9?FgbB05Vul z)Pdm;0SAE800GgC7#g|Y{k!K3dJ+x{h8BhlhfXmt=xPaLRd?axGq4(l6ATQy|1Kda z=MWtNmtG$L8_dAOz;OB6Tb%07pEwUuOC%uL0cZI4GJIfK$M9U%g@M=K4Xc{x>vu66 zdYs2_ho7H;;T@G7fDA&j+_8$c0v$jqAlU()OotiHxtrmT1EvF7H~^HGfTbb0^xOW= zmO(8LdlcLPhJYl)9=IN=IRFGqJ~}ge;DD3?grWeX_7TH5qRb`Q0ic4VL3Hc?dADmB zCYbqQRrB@L2L?N~Nem4iy{TUkfY8S?qHu2k4hK!opTHW1t_qR>bQiw_W z|Kr8(U$t2bDs_?4(OV94#$TB>k?X)?b>0a^&Ux9dE3dgf{`-%!?ypSRy-rD1p^;v?R+w!#US^Y+T-k?NL2&;@6j-zME=(Fh9N< zIBgRDLg5ZG*L6%2@=T2L+vnY@*x$n3vuRf24etjp7yn%&*J$?o>z_yo)|Z_HPs^wI z^?Cg;4EHzq(sqUC$SR?UsmH2VmK<2>r*KDnQGQcm*o?I@?TKq0bT+a%+`)%u4!BvRFDuKu|h{)9rzi2s4U YgxKl*Id7Uz1M>lcr>mdKI;Vst0QwkjivR!s literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Head/security.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/Head/security.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..76fe02797b8b160cbe2fd59bb92f4b9204e5e19e GIT binary patch literal 487 zcmVPJyfa(|4^_upP~ofK@fZb z4?cn5a|phJ;Gu$4dy;xcb1+ar1Lh<`+%KC=w;_SuvQjGfF1wi>c7BY|I&WV1g=>db>U$~!49|baIAojcG^$12hPLl)ktgb=cgZF*hawQ-Be-hj#(Px&07*naRCt{2nn6z*K@`XTpqPafy0#T-nl|**10GCB54|;B`2_t0z1a`YOFuyq z`yuqwV?B7&^wKnG(hCQ@utFN_LXFi9Ox%^}0cRNmao@(Zm-kBu><+y5pEvU$;XlAF zv$?jQZaZd@aZ}U}l(U6vh17bdDLdyV(LEu@y$K!nru@{nvvI_f=IpV1?zsQ}Se6aZ zJ&6-`DrVei`Kgc!VCNhK)t@>pWjrA_A*C3}|9m+Yj_tR)VSeiFi(G(mwxC?&dXfMD zD5*Yb6a^6}sXp9P8lB(*fPi~ATIf!20c6rBXA6qb3Xu!orqaVi5cvG*4FF(keFHm( z7omWp3Gxm)XX7mvj1e-;;tI0DA z!!QiPFbu;m48t%C!!ZAwq&)k()Ik0#dnse9hqE(N-xJ5DkHVz00Y}+99`()u41CL9 zzDUL$28NR_&Dn6z#YCU}5|Tq3g>tr_CgnT2d>)Jm0JfqOA=UwjNtkx|RqHy59Q&;< zcKsf#85?dY4cG6X6eA{Sm6kI0*cR07@b2XdUVnT$2)gnXs;l8^^E^V^^9H7=Pd}PNDu6k0ZBjNH zb^Og_000L&d-%TngDirA&Y^Q^9c|AW>N}3!f~2jg-PvZN9^TV-^;OH9>e5EZtzVnD z%!3h6o<1Wx#H1Y{r9iV$M@jX=Uw~ahfVmn;VD36S@mHBFfWav-*I1aSkP4tJ@EU+x z?-T$~y|)~$%vaA#{G>?R^TJ63!1kXO+wu&Px$!AV3xR9J=WmAz`)P#A_EC$_P5kTFT68cJh_LOXaVWNw>G9&!aG_mHf;iBg&^ zSCA{{;H_Ol3#H&f0xog3*fAKN$QH4UGMJ;Pw)KbHP0u8qS32)|&iV8SQc@Cd`SHL> zq62Is3GlM$IgP5} zYp%4r>5M1YO@O86{D^e~jjFLU_6m(=r^nrN#?gxkXE%NJbH#bM%mzX$JJx96y9<#6 zG&?vFAIx0O-07!0*;C z`~pPUf!m3dQC;o*=?MVm$Dc!urIhr#-N3nHH6riISKarzU36VXN{N&*(wwmy(N*&s zKfe528ZQ(ChH3Jr-NrCYH&7UnY9Oqy+qUHfSY>M4RQ%*ag7y`e;Pt7JD%@4FhmsN*a1`sKP`@FN=izKmq!%Kw;%nOxB~zH002ov JPDHLkV1i6_>=yt4 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Head/sstcmd.rsi/meta.json b/Resources/Textures/Backmen/Modsuits/Clothing/Head/sstcmd.rsi/meta.json new file mode 100644 index 00000000000..7bd2e3e22a7 --- /dev/null +++ b/Resources/Textures/Backmen/Modsuits/Clothing/Head/sstcmd.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Head/sstsupport.rsi/equipped-HELMET.png b/Resources/Textures/Backmen/Modsuits/Clothing/Head/sstsupport.rsi/equipped-HELMET.png new file mode 100644 index 0000000000000000000000000000000000000000..cd7a2b63898407929dc3f1d511808c7fbe39f685 GIT binary patch literal 638 zcmV-^0)hRBP)Px%I7vi7RCt{2n$1qzKoo^fXh2gBLMasUr&e@>kh-B#7hU%)`T$w>33!Y04t)a_ z>?jLXMX;%ax*-BJsKKoe$i`}7ri*l@ZvNnoV$;R>q)3S!%{g;@Z7LPbY->DBk~QkDEUO=BlCABOo;=Eu)(6{)x{!}P5`38Dfhr2)Xq zhar}im;O1Irm=~W%fgGGgW6Dir8MH?Qna3^0G6}U6I`@fd2s;UD^p}A%+0QtG>vg~ zdeY~|7x68il*ZOZf_ES4_`3560C2E)e^3Wpv|3*J;tqI|-3~pzE0&kD zcyo;mA)3wezT=I`gm^u1yS{upV*p@vO1oo?U){=oxw$I*88B{rFT)Fy+B~g3a=)Wa zhVSjTw6_2ugb+dqA%qY@2qAbJI2+7wx+kLtN|+NEFdN{KYM*daWL5_?qm*_jEr7nHw%I(#@$q3HMOa^dWqP#+ zZC=s^-UY~0)~ztA_47yyAj*?%Hg7kqly>t1(Ow<jaIDPBo z+4C2D7vnC(0}{67rrT|xZO2ijM55!OdfnBZ2GCJ{LlRzZfmL&hsFNWdk=wlfb8=N! zRK75&&Ff$Wz~7kw0M1LJG9i8ojK!#(7l=9;02EpP0I*t|Ng#v}LI@#*5JCtcgb*U* YH%s^jc(I`LkpKVy07*qoM6N<$f*X(|$^ZZW literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Head/sstsupport.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/Head/sstsupport.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..7339b671b26e89645e394a7aa9ff3435f7be4037 GIT binary patch literal 452 zcmV;#0XzPQP)Px$en~_@R9J=WmCsAVFcinX6CK#F!BE$Qf*T6i!HY1#%b?(;2mb)Uzra6Z`0scY z*-_ZVgUpNKdYa;>!@;m4Q|6C)kOnGsNu(DcpG(6_`rh~DB`<)%@E@tzG|I}?LROB9 zfWMN{S-iQy=GLC`2>{@67%2N))Cul5^w;^pAW(IcK&b>O!Q<=+DQMjisQ}&JjzhIX zD3zdGE~VPL-5W8EgZsX(;!+?zEEStZgcMTe;>=?KoKMhf?h0F{b0IyD(j6$SuA^o9 zXzXt%?96lFx6i>m7xjZPgrj=^z{&A5+@nvKTR~=hpz-?srF*wp|7G5Y7-Im`ucdMy zkWr@=F2~cvAyjEdQUPH&K?@A6)2oD?d9J8`%u2`s0HgO04Bxm?HwwxU?dDeRpJSbzS{`lp^T-0ItEuHVl7Y51{cd7{oAM zcSFts27$pu2|OFm1wW1SLcfp635sI{p!&U;2kJKr=S%>c8F~XfA}TMyb7-7bWbm@( zef+(ce(L`22*e-A185+i4}u^$|AzyM0`xevD{HHV`n@ggH#IaW5All?emGWuqKd`H z4-7YN%7EwLxaaMUDh8BxoAQ?T*r1&=~O7*I$&m*;%#B0C>mnP`}*j>XMzEKY#D#1&tJ;Z)v2wseyZ-HqYB3gfvW%W- zd=P^23_2Sdn~D?z;no;8^j$!2DTXPG1>pWaK0dB~vke+_!hl@d1sG^KA-rz_BLNU) zYirLdBDy07hJLKUxPfH{&=Y7p`%PgS1N5UW$ct`R6a!umXAJoLYujCNStU4k0C*%O z1`~qdXbK|%KuG1iM`0e0qTT^?3=EEx&mS{0)8*|C#%yLkS7BV&)YQcOD$Mf;`FH4`?*ep3o8kmppbnwCJEN|{rsa$T zfRXw^$6LW!iK8$Qq632?j$c(Mu1zPxNB~rT4G;A@`iV@h6Q~sQ+CXq44q+^)7As|p z1H*U;FeR-YI4b={sMij%Iut^f8V^{-fRlU$CVcpf4nTyJ04Hs{A8f~zei4#{BNadr ej#L0iIQ{{TjsFc&D@FkT0000Fb1epE^MoQhnw50ko0YB=InGfgHmZX1Vd>9(3tPF)r4w0h6;qn(l2vN zK(qk3Fb!hyWz=fd%Ixg)T$vN%;BXI5&n*-R+vv34)O=kC?FfiD4GBPVi3Y`fiV%d+ z)l>l4{Z4LQwP{QkkwiwKAraAyf>s2?fEwSaNFpP1IA1pkQvuvvxS3C#Bzrji{uXh} z+dtDBkj0|Wq+MQIK|Xws%lhwlKKzLC>jqk#Ci?xCkaI+#E2BD)h{ZAb_{1Q4gtXIc zG#-#jtz&=;M$Yaz?f{r9X-~9#PKOQf={1vQxfD6MY_?iPWmvZYZ#ZsJ1PJl6hHR1eIEINGt zk_Scryn?wyUcb`jxA%JX4PYE(()Ygs%u)eB05EreFa3Yn0cNRh5dZ)H07*qoM6N<$ Ef~}I@0ssI2 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/advanced.rsi/meta.json b/Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/advanced.rsi/meta.json new file mode 100644 index 00000000000..133d4914434 --- /dev/null +++ b/Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/advanced.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/dbc2435fa562f4ef130a7112d2a4cc9c80099894", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/apocryphal.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/apocryphal.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 0000000000000000000000000000000000000000..30dd56439a646bd88d2a668980cf746d4b0b0c6e GIT binary patch literal 1052 zcmV+%1mpXOP)Px&)=5M`RCt{2n$K$6KoG`1HKmY521|#4Akm=^oIs&PZFB9hIpx|zu6>TaO%J{1 z)V@L}hC(3GDXB3CM6nH45(uQ*gEGo^Ez7(5m!{nx1l!VjXLtO~uCgU4td2ZHwv02>?K?0y_iaFATjj8WAIOB)@cD|&0s0080D z4FF(h-J-v4&$M$~4}4&8JgG$qz8?tQC)uF)^tt!F4*=j}RdK>n1q`iQfK40#E?>We zBMl%tJDvI7coZ$`S_$3{f6o+wkW$6rIddcKA)gKG>eq_V#=^zG~7UzpZ|i;JHa z42moi!zVc&MQ~iNP+5-ap^pd$$u)YvhX8<2OKcQ6AiTOkc#=x$d}|wEgXrz-B0M|I zUgWl<9_K`!6S!SIb`_N6>HC3@C7$=IIIh>oHVCA<4ZZK}>}J>b`oni86`rUz zq)CydY0~ssN6f20cH(%F{qgI%C_M*oNd7YNF3=QQZG1Z{yX$B>z;V6Y$u3)<>VoXh zUsd~Ba^*3|CC3fx#$Z|dt*-&T9|*_wW+u+JDY{2{ciqVLN&0*ZC}UqM1mu00UipJb z-quwYP1sjfKpt(xeAD)|6df)j8 z8w>`6!C){L3II6@=5;`J@@f*wprru*>xWl2II>q4wy#?Sd4*9#o(fd$ zYvl!o)@>?zR)0g1q*PU2;Gu4=Le`I1mrTA zCXq{Ys-i7b{-nio@wyKnW#LbP1TBENPk}&*5*grr;yhW&2ht?dB(iwPx$nn^@KR9J=Wl|f3wKoo|*hzQmSNfv=D%tDYV2uj3W#YOMp!n?TW)&qEeQVNBF zc4aMvKo?2DwhN(*i!f!1-Y2c{aoMx6FG<92I>UC~!d5Gl?U@ z#T?Gp+5rkmq4E`lQ=^&DA)_TYOwjt@a?b zTJBu#tZ{jj8RfhjJDq-^I2fFPXJ!^a0PAu~j1!^cPmB#qnLUFu);m5^7xj&f{Im#Q#TBR9aQtu$ zI=}o3mrjPH0!r}3H=jUfq!DM%U%;*D+x&}>NfPYxuZicba~ra}zb}BU?q+%a;*|nN z^3%2eDO@yuK0Jw$xn)_##uFo>%a~u9l<%oT6eGwaD3kTFe&V0dP3v9qzR{8&4ELs8 z_l^W`%+c)6z0)C|+xN#T*6)MpjiE5`t@!TB*>#MF|7BuMp!}}xBdAZvKe~KdbU=w5 za_j(J*#RYYhVgf4jg)`A_lU5LSX%PavVbQWpF#U*K;BcRy$2Ln-d?4?Zx%`gkO?Sx zN0(y~xygdGVmSqvEV3d#6Z%F6!; zYsl1!AXl5g89BMJaSc9Bx~2uN@oEwVBA8e+<#T?ruTt9~EelYM@xSqrQS`^>sY{Rq z8^8AK`v`vhNuCgnOhPq=%Pof=EyCUj)Q48;gm^7K;NFctVGR6)p7&mU;2q2FUHBN; z1{+C`aGE`b1HmDeuG!n6ML_YI5GES0%q|eCMzhZxgA<~>7}>={v{;P$gYf%nMdN3& zupk;N=7ib8N(6&pEH7<}uk@@>+Y{uPugpzBnWf!1$tEiA{)$SUxZw|rz}*OfIOwP@ zZ33hNB*vdKw<6ONNrn^i(?vr?Tv*?tHRct}RcTS^5Et`>UY%M5&;(2O`*5JJ76*<2 z)57c?_n*bAcsCuV3C5snf;v#1r-|fJJd)@TzSo_AwFszs?TqDa2K#!^Ub~2)*e&?G zKScY*Zs~~$7ZiI5j<&G3VTd{ja-xSL0vLoWt9=SX z;Yk$_%vpj2p-zM-b7;wjvX)aaf(+;%%xDu(cEWG4@r>6KZPn}M)eM&z*(O0os}rF) znUoPp>O%QEq0*^OivWA$nJ>UR02K_$MO;A1QL^NyxkJg%5%g3I9% f0GGof04~RWFzx|vOy;BH00000NkvXXu0mjf7%%k| literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/atmospheric.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/atmospheric.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..71efd0a88cb772abbcb5fc1603ebf4851db60194 GIT binary patch literal 629 zcmV-*0*d{KP)RCt{2l}|_;K@`TnfFMW;Mm(5o`9qw5cfCXRySOCfZ(@$HC3V?#Q4UNFt;YM(24hsVbM3;{_ zI6*|lA0l|vgW<^#_Ru`x|JXaD;nyNpe6`@k-YLXa-rK|x zg{+kNKxz9oj8E%`zIj$LNA^-^2C7m5uowRTBDi_>^;{Li3$rHMa+U_${6da`hQgD<4NWpO^1?U|Z3{F(Ko8NzIH01lr(h;A& zoCKJjo(XV#^z@-@HEK=5W8MA1`0ab>aT{m!Hz|5@LVr7txz*i(Hy&GxUWYvwwD*$CY;Se$#6nh4-GGrqI?9g_gS25`e3 z@*^}t8-f>4rmXl66kurdN^_>6GRWe<>#OT^sdV?4|D_><=8pn{Z}&eNek%|7{AtlB z3lE^$RGh$dxZtmj9kVFuMJg%44}@`UILJr97G4Lp3x8Vy==#9Xoetvxi1Rq;I0QMo z0ROjj#e?`)Yb#RUted{U!2uH#etUac`uYc~`K>%aZ8O30w`J+<>@(ztKOPvOZ)58yd$aOJla00eM<3=#_xm4{JuQMBtjv@~JcuPeW`02uVh=w)-R zXM)OeU4WNl0q{d$9QCz!?KW_J7}5$y&(mD_bn^5=#@M08((20!YD8 z3LphXDS#9lr2tZJlmbY>Q3~Mt2ju9H0t1kqa?Qu5jimNC3xMoT*Lo$^03gc(34lc! z0P};$NYge~I0+CfO+lXi?|OlmAS)3t__47|=A5ZHneHFiFTlxhOMD+Dj-^psr zdVxH^R6X+)`c;`NoI^k-MhRUn5KUXBiD=(ie7>=EP0V=j0#KR;Eqr`uj!CMuY=8wW zjPreA2pe2yUBfFg#M#H<_x$CveaX^1z}y75Z(h44s9Eq$$2$w42MP5N5+KiO@Bm9@ zz^%i=#|9?>kap58KHsQG@8+MKAukcg2O($=(_z@DGE0rM!@mfDG?0n_x?&>_Fa*+o z^L>D>#6&F~bAs9(vjh{e+>UioCa!0CAHYg2maPJL)CIHx!+`d%O3bAX=MZ2@nsU<6RFA1SnZhr8sv-IVl?*?Co7-{SX5Wi3Sp(gv8EDX8nKCT&+YsZ4C9 z!sCV6Jnhu>dER5Er46A4u)0xYvscHX)?Js)rlzyO_{m|TektQ;>YBo-_AVvZd zODjR73yVcIA13MVJvo%Iv;3V7gjNP_Z<>gTGXNt*D-nkQP@=c=J3V_Y&)3mN0Er?u zo>RyG>O4#^$2eN7fzKxz0MYs72|!f)p-q-$afA{n+QDEDo~JFNZRor>Y>tHn!5H<% zgEC>#Fz@)F7VS9zAyT9tCcSPah!)w9 z`ePjPOr#9})1}gKU@BRV63DthmSO=Ag(Lj=F6D>?K+-F{ejEUhY&ikJ zfrHCO$`J;M8~|pxWW+=wM;kUZxe1K`pkbE_{tNssWBQH$*B?;=kO0J?59qx0BtTy* Q)Bpeg07*qoM6N<$f*@Dg?f?J) literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/civillian.rsi/meta.json b/Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/civillian.rsi/meta.json new file mode 100644 index 00000000000..133d4914434 --- /dev/null +++ b/Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/civillian.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/dbc2435fa562f4ef130a7112d2a4cc9c80099894", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/cmo.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/cmo.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 0000000000000000000000000000000000000000..52fa4cbf3714cfd1ff91083b9a84a33d88aa7cec GIT binary patch literal 1402 zcmV-=1%>*FP)EU_h;@oZ&1RK3P1@*DgY%MsQ{F4qykXFAr_$L z+h3fqfxRtZ>*Gdl=T}bU(z%wf^~*sd07y3EHqxw*Y^nOV0iLy+^3<~_?*z6JiTOhd zaQgI*PI3G;RV#OC`{#YM)-VEtM?JsS-+v%>5zz0*la-naSoiLFuWjnVJzZAuUU!#> zKa>C<@9q7BAb=)PgZ+5dF0cK{#f#o|yhjwT2p)gm2|Y*_!31oYot&WFp<^QcWd#6v ze%m}DNZ^L7x>?V_`*C@KpC4dvTk2WDA9@O$KYv-57`z^AZm}pR@t)t{IDmfNoGB{~ z*9Jepjdm&jvI0Ows97i!XmwY&H&|13PZR~bNAv~7H3dxmY<7jN16RrLI1^I-P#(aY zt=s>N!vn<{u)qB&U8ud~tpN}MtFU^X;so<&vw6J>>}Z>#haH=}_Kt@)2@B-2t7WRy zZi)Cs+u)OtA87m0vy0{&fSuv`sUu_)FJG?G3*ZR&4I8TD?he;SR*Cx*AB0Lj4e9cV z`n*#A2`JAl*-G}|-+>tBP9%XyfSH+pC_{IsZO1{acs`?Cab~67n&2I1w+ZzBLJ2)( zoI3!02vhZsBk+p^P-}oLG1$^%Cv|jpQAwQ*TBlu6+EiO@U@zGM^RpK+O7(>qA1S{` z0CqjNKSU@L#wn9|M-QIc#sR=KlcxJ!Q{c5AD+IW27WSfeD=b6;+_*8; zqCVa;T+*K}Fl+I89DP^o-&uH+{rwB4TyAG)U=mdj8a@YL7r;tlCFs&QvIz`4zwJFLo+-u>juQzGw7~Ik z6f1GFJOII2?-=Y8T)GHH`YpiooDU}0n}<&wp^Dli$TGm)I^E-JIeNC9EjsV=uua;Z zNC1$7q`mzEhr{B0FtME;V}iMu8#W+5_PCkg}zq1hAehZh~X+df|HwI6nH9E*o8UA`5_cyvCoS*7E{_Fm>TOohz`$O&+Ck z#C{?R(9E2GrGQ)kppo?_k^s%j3HU!7;^0s31S#Q21)zlEKj(Jf*FsbaGXMYp07*qo IM6N<$g2gd|(f|Me literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/cmo.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/cmo.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..74544e283556c8a9cf5edb0df3ede3988061cf88 GIT binary patch literal 564 zcmV-40?Yl0P)iJnbFT~^nd3gDkv)rb8)dSO0)w&$w1-c*3??L$44yP;zK zjzV*b)H52?MGWFt7kTmcf@KIx0QhMvHcbG4L2N1#G2-ddQ{x?ZMAjkd0zf=C?lZn$ z3KyuJ9v<&&@~|!p`Brzrato5lbM7I|#r(ga;E`trZWsVnpc+L{s5=lg#6-_)pqL?# zXqlSU0s#R(IKQq7A)JBv-VZv`I*l^`5ZnTmPgYIp8kRHr6x!IWsa_av#?{su$(r;a zQjZU~PqXLKQ=v?`gKxje9yiIG6hNu;Mqaul&*T!n`$2Doo=P25r0VVr`ueXbfi&!=xr7s6y9zJ5b;XOZMwgJqt zp2IHK;Y+cZ@OqQuv!M}_0$ABeaX-}l&cySiY1fz!I=)rYD7Fm%6{F|W-}ftqgJ}CL zK*gGdzK`kV^~+0RH|zy4gZ%aWZvf3S2fzVnIlvdOB;?!KH8Pg~0000+8!tRoC9$&vLCPI^RpwccO*H=6>-}jRF4mucyU5_}kk2`MOjp zOW+5-dPk4nk^mqd8t5c+z~AGiETw3$ZIr3{J8Vsq&&9L!*F-08PppNa0!70?walv|tmAu^RPPL!MYV-`6o3h;TCtX>&!pqVe0eNCAlJJj1Cgjw-PgW&;> znH+_^_%5wKTJ~M~=y}$6LOwf2_EC;stp~-h!(UN=;;jUuuoX}8Z7@r7D2S(xnyes4 z{liB|-r4*7x%*Tt%JGj}=oP=!f(YEc5Vyr|>m*pb8^9wn@lC21%u~avtCxe8062YZ zWs*JlxE_p0xzkWw@vt0w7_a(d2bKlE z$%<%4oCUU4Hw%o0SNKMD$k)x=jnw7@SdJfn@n-(`YAo*&y8K!mke~OQOnCr|2f3nh!1JfL|JawMS$@S|;-;sA48LFfQPw%-0q=eGPu|T-@lPe>Swwe1v@8JT zm7Iq}^8~VeqIn#I48xt6{{Y|LeH13aKU-8c`^|2?KcbxmwAO%9#)0tRLXzr%QpV{T zTnz7%7`Yst0OWFb0+7q$2|zA~Cjhw|o&e->cmj~ip)G(6I<$yTxr);@-6DOPik}*_rgb0?ll86SM z8hwuF>)&}FiRp--B>;@acfq$89~6|U1c@^}Sv~^fD9*f=qItGc5DNs*r)$PHOP#2c zmH=@3;by76iqDBKxba1{FLzjb1azQ0FoZrJY8*`qAyiHPk|UO`JM>i;fU#!7&7*+M zAY((K`nX^zC=ZNXO%#N`i~E&}I^+Q`*gWD(h5#x^iG&G?lA{1e$QXSE(I1mX=so2LX}cfC$#eKIuS90HmLMIKDqHip+ zU*F!|#z+G-I|-sQ)r6_7LQTP1O}(lGFs}*qLM=J91;D9K9evdaP=%|VJ_Q1Z1mQG@ z=rHmExGxm+M>kJEO8{wLKLZhB@*CYUKR3{gpydv4Ky?9f5dw5f3OTiqf2TqdoLOXFnTWi3le7nI`IFT@&1o`S*FJLDKHScpn z5SdD+|1MhsARHYy%{wtb{|i8nOnBGUv$l5ubBY@7s|{1@0Acz}SWZL5Zx^-%P{!6P pFQ8l>YQgV)5+j$x6M$Tf{{Y4FGrM2~L2v*7002ovPDHLkV1k*@`qBUZ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/corporate.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/corporate.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..f7190e15476424174a809da8a01a689e5b66bfff GIT binary patch literal 656 zcmV;B0&o3^P)pbhYD?txg}YM^Wb*XtHsx60yNF85HhZuyui0uy(J zFkSx4peZc?YF>I&z>Adz(qn0G_;_qhi8#M0YARl~Ilj*nWIco~#H9fFm-oc%VHPidX$7+C4Hio*iK0h2TUK&YbFqc9J1?3KD!)vIz&DC1Rt-l6{ZS-@NXbEX=^h+12 zjyiC3FgHZ#46kvB`c<^tUDjIL{Wkz-MQ)JA6R9C}21o;P&ne!Gv;pYa4F*}!SG=Me zSZ85Fa^OgWcDLho*H@dnXsxRw?4{^Wg_>zMCAc`8B?7tDf qMT^V9!}cp?!>4P2UMK-b0Dc2^+WI@{1>`9J0000sHjxYgD8S}(%w8N z^ic7j9`!07>qWd2>_5=fQ;Vh0L#0Sn%GQHX@mE5zr9#rENIb|o-%Q?Sx`uXVe?-de z2W7UiVcvV+ym>RT?`@@+BO!odj)VY;IT8XW=12&jO^VxR57_)XIQ3?W-*JoyfMBce zo2K7?bcCMX+hOOjErAps}Y(*Lm;g?RN=+k1A&R^J1Zx=qx--k(pE}v@hA&=W2@;!S18xMma z7{=>vC}%;uhZ3I_^Asj9HpZQ(jSnN;(BF^ETAs(=kN{@?{v$Og43{%ON(r8s+@d1K z62HTYgyjVohmCWS47uF$d&s|YJx96m7Ekg$c>o&-=t?kHIL8B4EDT7G6ElwXLp4QI zs7U#&hu-3SXKO`zNTXQM2pbYmW6|aTOAnrrb?c-Qsw?UA1L9p+F+lA$9nO~beOp$@ zD>(6oTl7YIj!SkyD zISZX4CKf3=^mSE7dw2!VMHI$ypND3ewZ80!?S7d7-< zKyR50Qy3E<_kR)KM&4lyT&0l}w0X}#CkT|x`YwRIAK(d5@6BLD0HSPL+jb#nRk@?4 zSX-#^H=p&G^OxE|`k;Z^>X-UMKswCVh zSaJuzp$8Mw*EL6zrLysuMg%}0GtWzbkHUOR4SNUB(chb{oj>w4Q&!s{w!gmYveQ2} zwPZA=uj??cJzn?te_uB>1$-BQ@h`vrq9atGJqJ_10w7>S0L}yA&$)GB&&5?3&u4Cq zMt&9M^9alT@pDNYk}v^&4_>}JKo0E#&h0x0H42%wlF zA%J3zgaC>;5&|gZ@I?TB1mUcVX)+=#a9sj_newBDZx7H@Q}`;=tO5yui!|KnF+VUS zfLZ6%xZZ|c7tjctt#->+=&&PAjp@egscEFjxnLnm64-c_<<>#Lj09s3sDBC0yHe$! zsaepgRaggIHxmTP4KgOQdI6K_3{!BW2+P#rH$Q1iz>VQ~;a>A{IdDw?mIcp7lskeP z`w`h(h@sad4Awr&^A6<|o(aIfx^Z~U3|zERSL(F_vVtRGI8`E~>Jmx=7s)EF)yu8x zdI)q7Lava6@jN3R-ceKFcz}={v?jqb0gaf&^TVq>wmT*?1H9(dlB~mI_5tJMs5=WI zgN_J%NK%$d(UX7-@l1KYtOoO{<9Y~u7hrcp%|Nq&I)qbQN^a1!oDl)Y%j*Z7H5HsH zH68g;7zxq--n8AQDiqJARU$?NpaN{DwA0p4WO|)Iv!K@o!UGY9pbM(SRL0mljF*5C zkhb*$N3(B)dhMXB4y_SkYCPa82K>(}FymkOW(OdKF9QCz@r~eDr{s$e#T*F%6muj5 bP|WccjTbV{TOMS`00000NkvXXu0mjfINw~) literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/engineer.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/engineer.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..8de9aeb81dbb5aeb39efa0633a756dd83706c93a GIT binary patch literal 550 zcmV+>0@?kEP)ohQe}gN9!PP%y!($d-Sr7xWWVs+l2tXHAsl?i&h%gOz!5Xuo?=WqxBIOk|Uu#;E^ zMAl2I9@`p#Z@;te$T=JXhA1cJ92wiI!#QFfBBB}vr3kPCsQIQWjtu7m_NzvrCBWA$ zWWqtEy$f22+RoTK%|`iGduh5fo>kn7%tQW;W~ zRv(CmeJb6b(~N&bB*N_)b7WzBvmv7p7dh#Yp0pbg5{xS%pD&OVA(;;`QGO^*U1}ALH2?qr07*qoM6N<$f@JyYe*gdg literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/engineer.rsi/meta.json b/Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/engineer.rsi/meta.json new file mode 100644 index 00000000000..133d4914434 --- /dev/null +++ b/Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/engineer.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/dbc2435fa562f4ef130a7112d2a4cc9c80099894", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/hos.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/hos.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 0000000000000000000000000000000000000000..32509c1e4e42061bb9081bea789007a770cc9098 GIT binary patch literal 1412 zcmV-~1$+95P)OB6oOCmKa1y96Qd$O~yUifC9uIvX3UZ1V>! z^BXK|Z7l^WyHpDXZM4{K38Iy`O;|%9u*fFl1tk{mI^W#;-OOG#yEAilR^;9f!tBo7 z%sKPjGiT1sITxkms0fgfqar{`j*0*&IVu9=55>YlGv?>Ly^nwSj^j+g^=tEStv){> z6v`a-59Gg-18+raU`~2%?VkC_n~aeJaI*LJcBOIklDwSzNB7^nIjj0+IP(H_uQaQcek#xIXWpVLe-I_W;FY0O|e|8b5~kQ(OUZdMV0{8JY>C;=YB_n=y#( zc4zgP2LaH>^Z|>hJhT8>TMHb!3t$pzaP4Ky_4i4cWp^fVK&B6Xg7}-%j=*I|IRGur z>;o`q=;0#YY8&KWY8hw`8>wC4Io4xpjsSf?h^^2VbAX6^>$B@P#Q}P4r=Gc{*rrcl zn_ric24n-nlgpbRkgmfxgd>D}v~ae`Hg{$T z+$Q1uU1JYtAJEwTD3KA7aSOzGp_iTwLIDIre%p8f0L-8AT`j?y0P|dcWk7T1vS@6* znMnLUPX4-zK-=m}g12qPAM5IDa=Pp;-~?$5uh%hXjb?< zm<19{hC-*Teqgn!pQ-+Md;9(5Qe&o2O+cE1KkOc4ir|70S5|Ea3s#2k78qbnLS*P@ z3uhky#+ie!WfqWJP~tu=WO|H=5q>_aNk}YUSiQhFcxg$&GD2Saygv z!wK$X37XdJJ4x5H2moO6K8%NeSu5lUX98&AbciMiD33uIO-Ps%r4CGr2F(qcx&Jd0 zZ^p@e{U!Y^yOs`w^YVfDU8mQZkHr#&BSCC?rvr5Y65I!vvWmiq0K@|3{>seEH0uQN zvhr`A@ro_131GoezW=;>fe^5fg~_`FVuhE0SuZfXB_LT%!sh0yLSs5df-re9O!KEV zp4JjDcb~jI!P4UZ>jo)^!mtyx`d6}ytpoy>p)QF%`Juw@q#l5WwBS`@00iJ9h|hyL z`+CsH6Lh@mi~Xz~pvbAz+XvtcH2&Wg+1i(92t|*l8x=mAS(3+FZ{)5d^}%h=_{*Ds zR$3;b&*DbK_B23QS>Tn{Ci}pP0Mpb%)&!h~VYL9hdQ^9UQgT!TNXb!p0)7FIln_6M6z>jSN?!omwrQk zz^zNa!c|?la2KRh5N$Rk7NHO%7L|x@u5+%rF+Pa7k>Dl+YGU{wQl?^^znDk6~#l`~F*fEqya0np+U{Emqw!(s0DC$G7Kw8u9gNAWq+D{)}h? g$ii{}Ie;9%8@IP67HV0kt^fc407*qoM6N<$f*rT~UH||9 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/hos.rsi/meta.json b/Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/hos.rsi/meta.json new file mode 100644 index 00000000000..133d4914434 --- /dev/null +++ b/Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/hos.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/dbc2435fa562f4ef130a7112d2a4cc9c80099894", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/magnate.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/magnate.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 0000000000000000000000000000000000000000..be862625ad7f2d86b9d8c90693a2471a935ea9a9 GIT binary patch literal 1629 zcmV-j2BP_iP)J@xLS9UO$aRL zbiOyfadusG-|VgwX1;^F``(-Re(#(2&-s3@!QpTPfWzSm0EfdB01k&M02~fifP5R? z{Q9^y@puITcbZU%=a`=#^T@hjuw6@FKQ496;^?7jbboW-gCc|cXRlO<@8tLUE6loh zJPGm>*UlxC`12BgH#;MX>S%w?&7EAIRTF{!zit@}fcNC!Mbe~4TrO6qz`uAb(6;RW3 zK-6UiAcJGOX}vwg;`OsPhHQ_5Y<^BPVtIBELn~pi-f&%7PWsJjRQY!u0mhT%LbHH0 z)&)6(8d|w$1~4)i$H=1bK$44QITu6~{v8Ei zM~QSajPfeuhI|?vVn+`>5u-o^nXDD%5^SG92MR?leu`Yv6v}8v5$y8sD8SV-PsHcM z<1$?MdCcQ`y;eh2s|akOVr8Rl#S9dy)0lq|^L+RDTN(u-x~E_p+wsfwfUtJl4*!k< zWN#&v`cp{gBx$sYEf05C%KbPc$XTCy5z~Wxs$cgMghUA)lXz;W1GA297TL7NOUh1Db3#3;cWOSON;-$Xzz*nxft1HS0a65j2owxE& zKYU=02vvTi5g_M1hrb*F>^#ZMI=Lg10Hxs1TL5lJouM-E{ouu|^<#Z;@p(7$q@b;D zCw{=#+Ipk)Tk840fj~%Y>&;t$-r;&wMvNn8|FIhw&`)RlmzaBV|FL^$A381S645pN z?|l>-XTM)EhdKGO`Fn@o5p}8yV%`E6^QuSu3p^Ml*(TB8IDf}1?TQb5fA{#JVZqPN zTQTt4ni&tQ0n7`aNn>~d`9nzn+4&DXIfAxl&BCEc z#MjMS0S04DoG1mDj3JXF46}4U+CF|?kLeNc>y#cNG!+q)1Yqas2fq7Lb4IyLkm&E4 z(VqZHiZ8q37#yz?9-$SC>5r50y>b4ol#&1(_5tx;aMASStS%A#IMpYh0yzR{#sWq@ z0)>z{0qwJXJuWqWKuG|0*4lCFQ(!R6*f3DIFPIB*1SW=K8P;5OTq;l!fE~6zai*jY zGHb&Z)aPLYB?Xf*T23{a86kub&*q3wf$}aOeL?a1xvEu=%dC;T1O;cZ1|I^QVZJh# zF{waF0H&XO)>Q_>dk^5N-;Hz>IsE>7BUzFZISJnTCZJ7TU&x5*^0@$LnlO*xmzjMC zD;TuO=IDiRruR0(>>lL>Y#T!n_}y1xa5!86 b;Bfp0{JuuRLK9gk00000NkvXXu0mjf;JpM1 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/magnate.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/magnate.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..8fa8d8ea492737dcd609b1c58ee45f5df148fcac GIT binary patch literal 663 zcmV;I0%-k-P)1^cV1nys1 zL0``)3_qA}f~K?pSbS)(8#f=BXf_P^0g%gGjpBU4+m<-tKHM_Zd_=ks2LhbDFcOVA zDYSiUS4A9&oxXS$4+md?P&3YZj5?R$yCs3R_F@2^S8VmY&ge^i>OctXSFrT-r4+Eb zQv2o^Cj{paP*++2pO%)9v5(;0H=wPzU1EHCBi(`_bc;I_0XVOq<`ec%0Ad?GWTOz< z%HEGsXtF#f4ade@Uf2=`!XSVbtRvXbpnnXoS9F6G_w}rb3zW5%l6WoB2H>(Yj;A8D zX2gL-vn+8sz_F-OKyjm_{q%_dD63U9nko_^BTEj`jGF2bNO9(ajZ%_Z*0vMwT@7>~ zte_?(0?I9dT2gxfg_$ zH@k|`l})1qFj~~S4y_$9F#r|6ciJC2z~aqaxoXa>QxiVE!F7LBuFu^4JwJQLlk<$T zis5`60B%3&gyqlIj#7|#uX1< z1VsczZ`sT01|oa#APMNY9?Z?Kf{1}R=t0yGO@eySNfbOp$r8;tha9qm)#yq@rLC`e zUZ>KTn0`H7?Vb^CHv(E5cS5&$GEn;Pek%~u~a(EpZgTS@&n^SmPF4=ljeKdv}5 zc#|GJ8m5jDzs@oOgGW8T*MDk%RCys9Kd6JO*oi3oHssyyrJK3ZUQjZ$=e|Yl9!) z{!g__`4<#GtEki*z4RwFu3PU7)>NGb58ypIc$}hI0w#YZvsl-G%bam0r2K(q0C(2b z*5)uVe88pRGCElQ&hr5f0$#XyYClB@=FenW^e&K_s-crR)_CnF@4TQ^94b0bJiSyo#D4*9b^-qJ}q&Vp5ixcXsvY}V>Y`)+^6^;)YW<3`;2em zvr_(RQ!;A!cOZtj6GHVH%m^r|%vj40=aGr{olXS)0rF!|w(b80IL za{v1p{y+?87zd)}7YU$`nZ>zvZb{Z*gFn3!q=X|CfD(>W07^Jg z0Vv@}1)zi@6@U_sQ~>EeaERIjE<!E>FnX>r;wqWvL%}-5^6E&R+-JeJR40wc&c+aa# zgZJkP!~ruWVdUvdm<%?;uAmSJFf`O(MME>!-?0yeio^lfIRnLAKe1Qr0~{$$9X zHgBrBfA5htNaqj@+K&!l+J8{zkk-;U05+KI(uB>5mjH*W)*ktt8fvE@6xjsU{8&RH z4fLFe#NUVnC`ZW0(VX(cg}7$GMt24Pe!-=pg!(PO>zofJ*qgJ*I^12tGQj=gr?cY>5~qykXF@dYWi)&X?+1&aUx N002ovPDHLkV1ju!Y*zpP literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/medical.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/medical.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..7823dc9416bee52aeec95907f0a55f506fc42fa7 GIT binary patch literal 554 zcmV+_0@eMAP)J66|AXjRcW`7Ki8yQr9vF8dQR)cte8`L^RkCulv7nA5RN>4}H44vz+_RJ-qWf zANO=ohs6T004xB*0ExtbB1ua&z4n#@%*_TB&y<_%^UJiYk-en=-i)GyI73Lo@_H@R4!1`kl|_ zkUf=4Pc?q93*r7cE1|murNv6%rU9@SP=n>OgY-Q) zPjR*z-riq16ojo~^8mEVhiA+t-sS4&!Nr{<8H#TVK)ZZIxrMG@Or`)Fv7SR7*zjQ| z6w4*9n-N0*FZ)|u4>-H2z=F&29rlCbVBc+d1;`jZcQ}Xt++h$+e+9@`meKbKMQbk< s?nO1s1<->0cWxU%E5!n^06Grv3kkK~=#d=9z5oCK07*qoM6N<$g61%&#EP)0)%M9uP#k!t&p@KprnE7^y3=XX*RA?7`a^MMsqE+Th3NnL z57n`@YR!Oa*Dllcc9W{rwh%-Wf{Ae-uptsSP%_Uj{&VNbbo%rudinB=R=e6uU~{uB zN)T*rf|R0}0dl?%v7SA9?k6b%I(YNuy6Ds>ehd)ogaEo2DF8+r4TG3R7X;{}3i+8z zrGg?65zzU5d!l`G9ySq`2cF{r!ZR!sY#6r;jGQ1(vtWdW)-!py7V9)Acuk{S=7$I> za9>`Ax)>`!wOSSB3EHRSqC*><1H=Bg_lRCUz8{h1j+e;uTErc{x^mHf_2JXRvjC&p z+6k|74$lD9&bD|4^{@y3WrsKnBLzT*{&LUK?#>U>>da0C6II4 zRNE=g>fdK6Pc>n{(_6PAr&Ry?O^Af&c02pQuS1gpZE!m|rz<+gkUOo~NmSD27%9Np zw=V{!@9IjyZ+JCvjiu3F9b&5CerX@*R|A4jtYirm2OP7{|t7Wm> z?e$vG)Wdce)=^Mb@>S=V1ehPY4d8hsoG$i$-uB987EooxZ!`m#oFQ*TYMl+J9N`iy z46WCJwg8xR^5H^0dX|D2fcvNqPlCxqfWKlOH#1K zZ{!1xYTQ*%5bYVOL zI24T#v>FCyfoutLRQvLv#Njm-fTObz0Ae6cFGp$mkzrpaJHrGVs>gT8FhWF!B1E`v z%4;kDV)dMX!3L;-O4AUv4hC}rnCn0U&SDAv8|5V!3!r9SOd}wo!xc9wWh{W4dxJm) zzQiIh$|HfCf#(nJk`1gscoO9!fNQZIx<|0)sH6!U7zuy~3`l|Z?`q__bSMTN<_shs zAwq}cd<1~GWxHBCH6w208NlD)0epi;REF0)=M2~a=ObVla6Cee1L!0~s4x~l4m)8B z+Up&Jr#WZ9#x@A=4hM&8=0kW6F+%V)8exobak1i)0gMEY1CjuUvGvF~0ycI48SL?y zPZe9WaU3Q-3Zuie^8!>bUlL*`@-CnzElmT%a)eA_ECAL$PrGovwFlDDY`!1xl9O{1 zU_-F}kFjm0Z5jyx13yeTCBQU0YukqGn;@kenE;e>`~qcdV?Y3xKYsuK002ov JPDHLkV1myMg&_a{ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/miner.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/miner.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..9928d914784a578bb65c7854a470ea0dc21a4c67 GIT binary patch literal 620 zcmV-y0+aoTP)+s2 zPhjU+Jc5M{8w(=sBpQN_c0#MoNK}(C|I^-4!gL0M#hj$Mr}x~P^Sk$aj6{Dd0YCr{ z0Q`S|bSh&C-7so&ThzLK6#%lZFiWLUnN+pLK<`0@;|WuiBMb=f0_i#hH#ZuuqoWB+ zM^Lg~2EoNXU=I!sO}7w^0Jtq2A0MCDw*v@*yqESfnM?+YD+o_TD4yB6;iqN%JIs;rI%U0B|@S8=>mM zBRjsYK2l8XA>DXl`}*b@13;FRS16aeW<5-G8j6Ok^Yu>ma|Xy}kGd9@R=L~OZ&rVTX9ILhN?!q#!7-|o zuigX`P>|<_yWam2z|72|IX#`Uv?RCNbG_2)0FB$VX(P*~nCPA#2Y{f}+C_XHKC=Bd z0D3$+5ayu-K^nwpR;(AmKJ3j&=mS8%RHnWsiHc>NqO#1R8NsoJ>LngL@!lApyYmB} zHPv`3A{Yc;yNP(r6#p+Y-PQE_5=P)eYE5LZXn}NCBXjHO7QutryXQ67DU4^XT3f{`>QL# z`=cMZiNO4%_*n$-Fixy?34ba9G`RvuU<63ESL=!UY{a_p`@CR250Pea1KU(5vx6l3 z{}f>J$#QUV?Z*m_a+2>K^!xgX|9!juHE|Rq_-R_Vv9st1zA~izsUqO;NsT(U>cM{a z-6qw_M^vXX9$n4XC{Hjy4TceDgCkJNKUM&9?6+!^h=R6KI)*o#gz)8!>M=b`wkDek zY<>nit8Kv3qtIta_{R!hhI!lXcx!6*1@YD6Iz4~(G`{!q;*#ihFa8}x6Xc|G!6<$J zJso3km-wB8f2;sJsc6z5ByG&k={D`O0f?f*)E`cklfvd_;g7$cYdi26cATnpdE@1a z(5CCIh<~gA@p@`3b8wQ$86eiqM|fzXk_8X(o5GL!Ea4Y#h2gw*)*xh2Oc7iG!go{z z*jyY9QiufLo*!j^7RB$7E11IbP~>(y3e!R)02{!)ZCfh@Gz9;1uy$pTWS`5D&-DnY5b&wD5k+YYf1V4q`?0i;! zQ3TxE{;D;%S!?97=Kn8#@hZT(u*Q5{Pk0Ey_MkU%i<&p`=1(mE!fL0l-ovBd;_%0H zi74Khwy5jmK*SZlC;}22jOfJ(Vc4c(;DWz86Qq)(5`apMN&qT3DgmhEs05&rqY{8h zj!FROA2<&WaFQagWAH4t;A+|>2QX&O|?lxNG$+YfB<~oQn)V5vgf@h@`fNKCa+@U%Xn#BsPk>K)%6Ce)@ zoC`|q$g~WaB{N(Xa5$^1nXOSCRUxB*p@qtiL-l#7Kjg;M`LVb@m8FHi4t1`|*od;l zN&s>R&PpHOo+s)80FDZ0i4o-Io7a9k0Rmj8kR>yl1tt%;*9Jji4uFlQ5l9R15U_Lh zO=<*Yy+BbBKv6Q*UhXz&IUoUY*$UhB0xrQ3kXI%;w|9XeQsXXo#PtF1UcC-Jef^@t zjuVqWQ57OK7iYRE5C?3=b9~EyP0r z>pX8sf$$w5%-2iFvp}cB)fCJ%0rC2;R)IZVz6Z%P2beX(@usK%=VSh;7Ld8)Wmz=; zhnQ#*wCnhaL|(OsnFP?AA7dA$zxz}u^0Fb@5U_Ld1v{Uo4b_<-l^m4-RC4?UchZP9 T$!HMN00000NkvXXu0mjfN7+d! literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/nukeops.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/nukeops.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..235579a5c67e1d9e42878992f9ad041b88ccec17 GIT binary patch literal 558 zcmV+}0@3}6P)aAPbF=1;GW0VWB7J!o6D;-o@K^ z0roC9fi8#%i5g96jF2EHu}w*IoPX%FLlGE+#+dZq4DBoZzxU?NOt(#yDZu{% zxS%q#jZbQ`kr9tsMv+z77G2TMpcSMI0CS9|xg3#4Oof0s?swg>cy1L4Er3?D#%>>7 zVE`dh2_zK#qDDSTt$K}}b)K{!v;bfZq5Q-lU~*i~PsIU;ctd%9BLGL0J=Pug;^oME zo{5ZKd!88azq`TP(kf_G;HF}d^TA*2Pp-Q`6{N(}1Xd4OgZc%NbhQvbo%^;)Q&q5e zrlAZ9@8jZxS4>P(b9pZ;1W?Ot`;KwQyB#L|oje`v?}o9L*B;Tk8$L%tgX;9cLV!!R zXUMgWPDgo5gr+$hmq9G_RH6N)hubR`LzKcdFYf1dC_o~e|zkPhg4z!D68cancVZ`L4(l> wc1Uc`Z5k!>K?2R&U{=|9)&fXEDL@MF4T?n*{LA*J9smFU07*qoM6N<$f~+U@8UO$Q literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/nukeops.rsi/meta.json b/Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/nukeops.rsi/meta.json new file mode 100644 index 00000000000..133d4914434 --- /dev/null +++ b/Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/nukeops.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/dbc2435fa562f4ef130a7112d2a4cc9c80099894", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/nukeopsclown.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/nukeopsclown.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 0000000000000000000000000000000000000000..511c87cc12bd7094de0839f63a140bf93533f735 GIT binary patch literal 1456 zcmV;h1yA~kP)fHT??gJ4cwF$&Cgo#4J`iW2=o!+<=&2Y+S( zK#u2WwMsN0p&J2ml=sIo^_>q9xbbKt_{{ex$NMv3$Dc`nXYB*=^4(Z9kjYpO167SiFmiE0X==H(VbZ+37 zYNU6N4gX33j`kmk{^c}Q_)CrC_b(PUH-kX7bN(pq{_Il=m>r?Z22>J!1;ce zu0P6(r{QmtR4E@(z1<1u!)}>eg86B-@IVvnfwugq0_bDETc(5;45ZRAf<+L*j}zHr zYM8V)iv=b>gBz=CK<$z1Gi>-%1<>7mFue{AW%LajNwjlx5Wkzfx*#sccN7K4O=CeC zKYDs$z&!Dt4S%Wt98?sk2uXh`Rn$29^RIv6?-~>ar=RCHMAJpE+!QANhp%e%EKXWRK^iwwky}`qvEu&xjj{Ky;3I3=I!=Y6Ybo}(e zXWwT<<`}T7Qp~x{a^1u^9EAXsa})wl&QSi=k<<(t=;h`Q=L{rKtFSf4@2dX z#aU-lavd<&i|B;fw5w%NS7rhDOpe_hsxx8V*bw!J1Xr*KfIKX)FKJ`PTGOC@Wrpts zoL2%m8I#vQsCJ0uFu*BrW3u4JbKPzE%mRSCL-&R0>U=BXo5v4naCMP5$@Ky7;bi*t z$M=bQ0RVf2^IKvJoXQ~l6W#KyvJFA;&~+-TuK-VPWT%%Zblk3e_FX&|8<(kF zfG=bN=2cms1#W3uKe99HdcZmca30|MK0q42#Jx@?nn{4Pb9fy-_Xkv+6H2WAUD%M> z15lv~dPer81BnR-Bp>i$gWYOy)m;GplYny@iakNfISK(N=lCBPzrw9J2@<&|)<-IO1@eJ2Pf06M2I{7?{dvbXKs(G!mPR?0pXfZfJB z*&BxXaK8CtPK^F^I@M49?`(LvGzv};_|hn2{8Jqq#_L`Z1tU5&iK}lVf$M4+uCfpy zoqNBGJ5d;@H?<;Q_qq6>BBs;SUS10e0n%X}gk!Ozsy%iBly;j|7oGKC_GyQtKwWBK zA;4j9B~0(L(iz^*E9*MX=NDJj?hWGhJevIi!g;Z}wBynm(1)bj%;bCX{ad>i{piR0 zN$MXOR8I!DFU)N>nBaFR0&DUX`(6b;Bal%t0o1B$+707YU{@GD<*lm@nBgV?B1m1VqE#try|Hy2$4dct;HP#yUUWz3A;Ji^YO!W*Mk)o2KnJfd zw}s552q|nQj@~qgk3TjIZB>0%hnz?8qC?s9TjiQ_&p!!(VLS-pys`t#rBkbVy5Lv` zgD9|pqMsBEu;`dL1+>5p(_66zVtys zS`aK6+CbH7v=Wjw4f@ox-=339w@I_Rw|hR^eNcA07xtU`c6M%eXKzr>Q3yaeM^ z9EAXsa})yj?Ci3%2)yw4y9kg2|{aLSnMo%{%p(*xh zC|>@4;~st7`An-TwRjpo+5!1&7K{V{!N$g8+TMPzNI-@*e$M15zqP+pWuc;s_8|iL zL4WA?e0Z*S>h&7_;wb8JZvwdKgS8rcJ?xMVU|OL+^lJjxd3AuM!$^Qut2J_Q zpjutJ@*DPmTU1srzqELpjwn6Q5BfvDLmDU^Oh@KqTXuK%R0%uTUK7j|VC+U66@cJg zOeVoD$iMgT@_>vZ;77@^2!Jh<1E84)T7L$iItZnkL2(43EFihTo78Kn?gA?TcpB*L zb-CTo+`rC-X?32WHn0+a2~c9h;r8qi@_8umOLDa5`7WQ^4uJI(U?ZdnF4Of0+0p`kcbZ2c|)qfuj)f)Z609vlks||~M z76PI8jRiPrN2QAmiBcQ;^6v0dwRfYW{B?Lb`W*#8D1NILFe$o@BYxN=a47!bP?U0x zLIBD+3IQnRCPK5!PlmB00;H4Lr z7pUJoA(X&D+pZ5Q0r+5)lan|bgb19o140~#>NaqlGtg25i1P032mgnnfSwOv$UNc2 zZ{koMq2E>5kM`Bw0YEQJ;gA|j49Myb^g7^Vs7Gh&MhXMRV>Yn%001v9b8_;&fNPf4 z1Q-Au%a6H|(slF!YY*Uz5T6Lc{Y`I=_<-aBHw1?lFmRE=2G(BzJ;;r7^hrHr5R{@b zA0Q7xWso#M>V=T$Rg@6$k&jF*fV?Y^C46P1Qwbn5LwdG2BxImXJLSCW1@t)?8b0~F z!~ixVt2;tI`K$$i%d^|@#whJI6&vW6v|t0TJZ--KfRz9|=XpuWcXc^upC#mdfLAYH z#~c)GV}jEZ&?7z!aUpjBr^NN8xV$TD11ACG9JIZW;R}*CO)zv?3EpkgW8~-MCgkQx zN#*Oa0PY0n+}H%Uq~@JGfb;Wz`s0|B<)H}f56`+ZWeO(&vb+;84ZZ{~4n-;FCv93ThyUjP@)(->o~b8lo0 za8h^UC>o2oX%^|h_l)G)=zT($%`>=SRR|>j1ZXtQsolO7!4V8TUdMm-Kl#s8+${<< zR3QEYKp@Al7ksYkCU)5r1fiH6)ei-Pswp1FxevsAImh~Bx070X%=-F~eC%KlNTlVr0A&wvT@bJs9%(|?k=08;ckYC%qBQoAk z0|_ua{YIF!zyC*=PU!#UB$Ehn{2zPYiyVr)Ies}zqZkmvmH$)$*v+Uuz#g#l%hzEV z@@WA+U+dl(=%#59$Daf){3D0J`l~C_kPBkR;M2WbS-se=6rKU*Lm>Pw4@CKQUTn(S z=NIJn?ym#oke-JBL;*gif9gqFq&e|O8%XQo3L-X|U^>9^v+b)gTfgevKmNvf7?A&Q zeQlt30rzUR^m^s^rsnIt+zj(sH{_4vKeY!yX^Ox~*vSU-0LDM9WAo8?{2!Ld0*rZB zlka`pUDGtq0XO8f_J(`)TLb)<7j|Sc_sAhY5ul>4s7EmXjxpP4mec=b1m1zh^SyqO z2dm0?85#oG8+>v8`un-^uTQK5B8)J=i2{Jo{|%&}@p!3@%gAO#(|uBD#sAk8;XD4p zE1Q}I%fqTCH46D($xX^(M1Vgb0_MFqxWa$s8uF+h$qluNTGPr`q0z9UB)0WTV@qIZLQaKCr` zI&Pi#6AQow)A~9Y^}xp4azy|u4#3`~L!sTvtoQR>koaSWTVIf1{DU0hj;q337cYq^ zfpkkNPu8j3A#FGc`h}$!V_a>|Gbw$%OCe)!?Y>CjH_!b@g#WKON}+8 zC?siAVLrkCGb#b3;>N z8xP+f&fkGgjxNVWY~<+=w198WKJ!TKyRqPu2nV+CSGstnorgg5yq>V}0wRlE-Xd7X zED-1WL*1VC4o;II)f@nyJUlOBwaGAE0AS3(7q#~#Z@}8@c@N(GOt0+ntBvKrFe%{V z5JA^M6b2e>kIYdy{Pr2fvX{SO1dU}(LT78x1Fgq&Jy#eGZ3>wK2z5{%F39UIHuW@? zl{*XA(`W+s>J{Ey2#?NOka`(}m$o_HKcKKN0}nTf5oCUTCLH^AHG)CX!bt$@9_R5? z^hm781Cp(+--b9L0>fr_X5iwIcM<^I>we34Wm_Vjzx2RE$O?M^k+*|1`hGNC;{jSr zH8hy<2)ZwDaLMPg6J%%#EkiGHp1{O*)SV3X0owf!v%fd90MU4Xq9;VllSfQ~lK|24 zf86VNU{?yYKEbmPu>#}^SDqB&=du$#YqwaQe3esFN{)X4$DIGY TLv&7|00000NkvXXu0mjf>>u~_ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/rnd.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/rnd.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..4f773dc107212d74ca23be5be0c980b331512565 GIT binary patch literal 572 zcmV-C0>k}@P)4XFQ53yGwJK19NjK&$Z7F_07zzD?MEgF#RqKf8 z1KdZnZe0{@BXOCvvmvmAEU1+&ra5mq%ejT5P)!<9a4jaP&3Hic7tI850AH6aey_=M$+dRn#0rAh4{G zqvs(`a+P1KI3^;73IKVzSrtk4V;}*t*=0Z0YCZUILcLd%ks^i)K-mHA9$*DFulM~J z)>#40%iXH~erN%}@#3yn5*OVA_jgUH<@%y9r#Jut@tz5W3V_jIFc5He7(ql*f^iBO zG-@aTx(Jq7HyeC_^JjJRbrW(U0Th98y|?W&Qs@3odB!9yJZ;En?;!U6(H2t#YD6I4 zdfD@Q;Z{J0il^LjwEl3F$i?fS87O-awwI z0RssjA$RW@(qALFo;OwjXvu87xOO;yR06K&tyszBMayx<_G3hV7|`1*$O)6S8(M(= zaqRkH?npheNimM2h(rKBzB;?6p4DCN{?1{K0B|F0SI*c3;Ny?hjW_B1op+W$^iohU z!-f=~6?>(o%X!r>F3hJL-TjeV!(ktFdw=YEl%SZ5Kc!OvQQ`|=(p|Y0==UTpJHzY zimeth8FMEx5@2X_vF92>w687#JHMT|gsh(MLFgq@Y++3y@O$O-8s@~5S>U}vkBnG< zRo=&=IN8ADPj(G2;^-I8IJ{7egr8l*}rQ{jx1I3;hG;Mqnh73Fqxzk9b!E<60!^64u-dIto^+8*2HexWcsn>YKb z?ZR(FG-u>EMV)%UI=BuDI3NtlW}gF}(0$zts5QLg(L%aC4U3vPSN0gOzp3nG3-0FJ zL*>DoI4RAH>+m6Q+IO#whKXh%@s|USkHOU++s2*&hf^Ut2F*uIr+Mo3ggM7f%Jy>QoZhO65HCE4N&|Jn1NJ*h@UGB~{NXBQKnv(n~RQ7p3E? zq4X}w>k(W}WpZqxT#yRzpXk>aERX%As5RR^hkC#U$yM7-imQ{|Z~z!jwq>;k}t@ zv;CiFnmZs1eLbq+#qpinTpO0I`N!{ZkqK)rj5fp4!Zfg;IsLCRN!22WUJuI(_n@BtA7BQvzZY~v()(A*B`~%wYy)d vct*msCBE#P_4ctgOWB>*rucq2F^kuN{ak2_YAK&s{V70pr@B?Ro=Er?f{{jK literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/salvage.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/salvage.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..6546636ec7faae7ca07476d6cf3abfc38ba0fdba GIT binary patch literal 552 zcmV+@0@wYCP)XLxC`ndYhz{|3=j!dfH0VClTHY7rKF_`HozMAk&k+7u zI)DzK1Ly#n0QQzVlGihiRJwx0SlZBOj~ve-Ts<&AgM*Cr+kn8 zlbv+7Rg~644q*r(0JSrUok9yfpw;hG=0K-fx1xfpyZgb+0g^fc zm(eKPQ`0Qkop}p`;u#ni0Pg{+zr|{2Hd+$}-UpO{0Rm8jG<2xZfI721Ka~)t2N|jt zX#ya}ly literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/salvage.rsi/meta.json b/Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/salvage.rsi/meta.json new file mode 100644 index 00000000000..133d4914434 --- /dev/null +++ b/Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/salvage.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/dbc2435fa562f4ef130a7112d2a4cc9c80099894", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/security.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/security.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 0000000000000000000000000000000000000000..b20667b468414fca59e504074a7df96c0ce6b32f GIT binary patch literal 1398 zcmV-+1&R8JP)NfdrcLM{n8qnKdM5OhY3oRDybG49-?x#B<& z2&8bE((Sb_(z;ElDxe~8aG*aRjXJX!ClStVBXq*xAc7+j<0J={z4>PM$xq|8J+sod z+5JH5@A+oFnfGQi?_HssqY!{{jzR#+ISK(N=O_fAoWn_gA8*b_w`S+5-`_5o&nlIr z=;OgYeLmbTktZxKKa6mE@aa9ho%v~WUtR~nD<^(y0YE+&3~6QM7hFbC1T-G^x3-9C zi+3Z}O1SdB?GY_3{5*Qb*IQe!^?NS-Rsx_D6Byc}|@8MKMF!@hI7XEVu zVDet?A3_fRX_Yzod^#dvbaDCN-|t4{KKz+AEEprvag{ccMq;=zxbc5{|BpgN z{A8v~b@d%h0Zkf~S~CaHPWOm@t=^#ZPqW0n0KFdjp4a-_=Q9Vy@72|JHsxFSfO@A_ zTBCB*x_6&`Gt2>i7^p}~-LD1P`hA)rn18c(SzYbxo;K@%4p=)-?;ib28=b*)ogjdo zs0@bM9zo0wM^*&Kz*2cvX#Ux11YT+DJo?n^qtBa%+kU1&0OTN%b}6s%yx%8pU>}1K zApH&7{#iciG&l*sJzx89RoS_+x7|H$Z#&92go!vlQ9t}bweKM0M9qY^9FTEOb>N>v7i=bi}6%R!7HaSokzgvm^3=1 zlT(r}$nv@8*9Ym(ZQ&#UZ0zZWJ=(lwX;)%@^NiGr^xCl>8dR#zAGDV2j~mc{J=nzIpSyc1G%FwE}Ym_|a%MTZr8fvk^Kek6w_p;2vS%DtcNch_mlw~b|X;+^Q_fOpCdp-c3w4p8evrNIo zmKfz6g#eUu6arArQ3yaeM^9EAXsa})wl&fzQoZ;b&Q9`g|nw*lu1$W0K}?Kmd^ zcwdfj93_q`a#2EX!_!0Np7sQ}@sbq#f8+P!BnBUwqG@&Duw0U~Az&|p^Ol&53(kpX z5Uza(N75S4Bhn0(+QLZyY=oK{kmg>X&)|p|7?Ip^v$X9HA8--?jYnMWX?IWO0b~h8 z_<#<{Cv~GPIc<_U34mk?>cr>Rj^?nm3|ITy9hPOA+_G*Jx)YHlGOq(TUe7kk6+wW+ z*Y2Hq)$07*qoM6N<$ Eg0NYeVE_OC literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/security.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/Obsolete/OuterClothing/security.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..ef7b9e895d5fec7bb5b8646dba056d02ecb30116 GIT binary patch literal 552 zcmV+@0@wYCP)$?P6xoO zoKVMkl!lN3z~H6QanvppboMl;I1c^6xP~-DA^;CQ8a)GM02PPf`rR)FkqBT7`d~AQ zlj9n%lGu;$IgqSGfcrO3vpR_?=B;w1}fYl#q zH=tAd^bD?q<=`+_gf{b=PIoaLBqhBITHtGj=PwEmgY$xm!=QE8I8cz%IeM%huYhRU^x{=EgG+ z*)XUp`W2-FfLrZ$I)>)X?hmMC{;3;s*y50}%Vy4iKa@xbsnMgPjAU8(8M!ewFkq q0f>{cACHy3jR9;zDL@Lab%1XrxC3lVa9Fwk0000Px+lSxEDRCt{2TTy5mR~9|)uH0@av37z*6@pq^NGlC(KnP22(t<`L#$Zz@`7xCZ z>bFcWl(KQik~TCc!!D)ld`l2Hh4#<5;0<9U;yT#UmeMpx+GeQ}w@z%NuI-Sz6!h`> zVc+K`Rki1hJT~m=Kp5wF=AJuu?!E8b_pX5!T4(WK34!>%@C#^5Q&K}Yh)0Ks;D2g z!w|%uH8KFec^i$%@c+Rqc{rrt^qDX||9lqVkb?BpPZ5c#$Ql_84GmyES3o>Ih^L-( zz~_JE;*A@V@0nFXhJXE06+=S!S(jkUue zgcmIf_@a@;EB$^XHioMcADQO=qnVrN1%d5&6TbwJ(>*?a zH_r#nB5Pz24k^eQ85Byzn(_K;p;Uz8^P^N;Fzp39CJV~=^mPH?QeY7mzIygINr=V) z@cWyc8R`>Xp;Uz1-GQznM{78;Mh2DtK18{^4#nr^&o{-dX-QV8RM^bT9P96kF#zy- z1MKYCIQwMadDh<-^t)t5hn?YAA^OB!l=}P7fcSxtU`w zr^hnC=_CjMiqDUY$5kx7b{>(ailIxe zGoLG9;odjs>3J22L_%8jjs_?d7kDg_b)6=%1^Ij)?d=^% zU;PvSQ2DWfwkN76ulxu{yVG(E*7Gm@a1VFxl+fPZfzxNg`1u|d}P%f`yZFL!M zb^Zs(9d7(ZFYX|HcZmGo!U+J#=f423?Flpm(l`JNRR3j~f7h?$^#<75>M|bxwA@B( zeqek47u}R<1eeppIuCpB{r6ury(AX-T}}_X@YfHZ>pB#lpU(h=QW1$n0+-%D&+pqS z{ui~eCG5Z8Pn?xu%4b1xPN~UgRj3s`ENzJawZ~s} z7D0_bg^{R(RY;Y?z_!)J(_y-5T9Vn_B_b9^^;ZB))(fOOKzw=eXqvi1_VQS~5$NTK zt6m54Mj4sX9w6=nH##cc575ik?*dub5t7aU;@Kd9nigccGh{)XBJ}bi#PdlRNPED1 zuE4+krNAOCY$YN38g|YI)7K~3Mq*%Mvj*v46{Zc)DE{Bjb$s~p9MW6I0b&P-T@X2j z9dmf&+Mkg~s5Pg?kVuBo9w0*T`H`+}x2Nrg0f243v;io-=46>Rz?MaMhNV0pCL{m| z237Xuml<2aAQ)5`o&Ln*gM9X(uTPzo(Z%mqJRd)qc%4zD-B zEloe~*Rhz0`UWbmH^9F>waA!-bgWR50>z)$sarCvO=0$yfzHDou7g!ra+ms^fP>f*5c`$Heg#=M zmS%xdC!-B(f`b6n0H;nyEj@231jL?zg9glSD`i{z z0vaK-GKpg|b2$FeQ6L)Msz<()mSZUdLMxNV8X06d<49L~ap=vDr8gp)L4RM29eVR) zq^rHibjFc2G6=0qT9ReS1E?n;Yh-Y4d{q1^5$P={Sy1w$THwm%e{AUj;P!;HJj=5{ rqceHx+_EB5hP(5y2fx=ZAS>@zR_j0#_SwYq00000NkvXXu0mjfv=+;q literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/advanced.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/advanced.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..bd79051596e4de134653c5491eb8e09cd180d18b GIT binary patch literal 856 zcmV-e1E>6nP)Px&5=lfsR9J=WmcMHgVHn3hsiuP_ScL`x8YO~y30TO`L|Y0;hLEBEK{~{_os?oD zm5THShfd9$g6-lc4zb83SSw932nwZ@}0)8)MqH)})qvUZjHT6^{42DAl{9b)M zt7HIlkw(!lRNB{%k4*v)42Ouvds%$9^jC2JLx}-$`J$mz7>a=8aqGF>`=uH*a?MBb zxD7|)Pyw=>5*nfQyzg6K`1fxOStYa2o>el)a!NFc!hr&0IVH5B8Xub^Jv(D@xqM>6 z-a(&rj%j7rx6iu3#HSvLi*Hz6eQg26P+|bd;|2~FVWVri*S{wd{(QnzpXC~@=R7MIRBxc&B& zRujz$&_rzfC{fueS)!4c*gJY9kGn2SStUbycE)12ImPKS&W7ZsA5+WRkf)D$?zzK-C6MGdoEujmoM&HHv&^3vfG@ZyDO}}r)Os@dynS%R|=J_ zlBqpS&4J;&qx!g=f2GttgW(XvcSp@^XI=p8_PiE}?yhj%Y%q(aY9Om*=(8@6W@ikK zkD=cU{;7aI>jIZHRtO{>Fg^zGnd#a!h7tpucy^1k)~}>ZOE3tnA9gRK&CUZuE#q?eL}zCQ%gZa2%bPeHZG3pYNM);JvD=*D@)b$9 iU$}6dLg9_!DfkPfzM(+*seCj50000Px)eMv+?RCt{2TT5%>Ruul!lt645Y*P#Z*Bt`E2@JI3NhYf@Ftg~ayq!h<$7}|= z=pyt7l&-q%qI8$lWRb!oyJ;F)7)Z34QG!8WifyoBfg!zJc#eE@_3)J zcXV_f_ug{?6ev)jK!E}U3j9x@sSeyjRRF+`7)Ac3)#?ZUxVk!1zOO3yy(_vQLGa@v+LFJygZ>`_L74RFEw{ZS^C&}wxAzbA3fF@0~J zo&f;3tSU-aXaPO#24D{k0M`$9P?H2OFV20x8xHJ6w^jnb4?kuWfj4jdfT^#cbM5$L z4LC{=u^J-38xHK*%>lgsbR$#%SwOOg+gJhT=cv_oUS(0|1a0{{v$L3#^( z=0zsPO^_>u0@H2Y{<8R$1(c_xJTCBwNmf(fW$`b}0&&P{x_g)WN~=MFob$(ytyOeG zEK3o2@F!A$JT)cACYTrU;8#{a)T(UJwXBdAzp?^8q_fBcW)^AhF8C9<0Oj7W+1EVv z@ekog;pD(>C;ED^u53s}~rM=XQRSynZ0Eh|{oWnjuH z^WXKnq(FfJ1qu`>P@urS35n5{0xv?V)d}nd<+>c^+vM|Rgb@x{$41`D zkhjXediD&!YymbL*r@2qim}QA`NQ*?n>m@n-0lQcX{z^40(s>}g%WwU7*Kx^$`(K! zA@A!3OnG~{Kk}Bsab@!?5VkD84H8)ZfBWWS8mJa=WNigujZuU!D^TT6To*7WQ?FNu z$btEGSyKDiZQ9TLejUDV;$9VGXcY!k5 zA}A|>o4Z_lmrK%lB8rRm5+sQW%6?kW4IwumaUwEH^Wr?$EWmjPVU=oC84?LfN}$^N zk?VR2;mXKU0dyQy7)_dn69>VjSizC&;>dM9MaUf?c|x{6Dv^gZRH-0U`&!p=(Jrmx zhfkW``MfJboF539J#~=eIu$0IwAOI~f3XtCr%77I*s(R@Q07$2Z#0rQiQ!mphqWS~U1mH|!K%PtBFi_iU7D(j+fPV#c zS1}=~WhMzyS%BOVP^%lU%hjyGH%0(|zd}-^GTW%0fMvLX{QpUEze3XcrFMa3^aR8q du3sSu{sy`O*Q2*-0gwOy002ovPDHLkV1gE=tZ4uM literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/apocryphal.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/apocryphal.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..c0787e1defbd9afca569d65b02db2c4592652b85 GIT binary patch literal 683 zcmV;c0#yBpP)Px%Wl2OqR9J=WmcMG-P!z_0YD*xl4Uz|e!PO8bPN2}%`8Njo09iZuJ-QS+bm$}W z9YVKk9U5r631ez7BwkX*1OysvgZ~5y;dW4ud?m}03>iB3TduFp^*!f)=Y01b*kFSV zHYkV|rfOlTtTm3)RF2ckT$99;qR!vGFvCd?bza_PGW89ySIRYIRcjm_y_8RCFz6V| zJ1rx3Q43QwN?QQ*=YIgWHSXy=Eyvbb)fxb{9R?Z%V~PZk%fPL151M0u+5RC`Fpk#P zwn_i$GWNgG(9hc%$YDV8IU4#jXHx)vKYI?K(~awPmz)YCc`RfaKbCCuYNy0mZ=6c| zDo8ze-VN>cMW&BOs|+VbMSYkD##t|vn0kFN{jLmZ^%BHBeWN z5!p%ZVL@~7uLfk)>6hP z;Mes$HXjZBh;|)G6##ts{55a;)kWCCR6m`a$f;GW#l|Gk>_wE2s{(*;cX!P84`Zj4 z%_TrVV|S1K)n&v|o(eLJCq_ji#RSEfQ~fHr_I;FS^=b`0End^ z&>pD=4Iq@#;&IZU&x`f}YX^|#xTx*H0uXJB^aOee+U@lM$$SfR=qeZued@=jKzQft z!K~X87Rs07G?g?Udh;=v`iAs_uxL_Tw_CUt3a7yHZX(A?$T!b3mu&w%{sOI2ERF38 R!~p;R002ovPDHLkV1oYAH`)LI literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/apocryphal.rsi/meta.json b/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/apocryphal.rsi/meta.json new file mode 100644 index 00000000000..133d4914434 --- /dev/null +++ b/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/apocryphal.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/dbc2435fa562f4ef130a7112d2a4cc9c80099894", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/atmospheric.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/atmospheric.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 0000000000000000000000000000000000000000..5b0de07328ca6df43d6513a24a7d26d3cc69de9d GIT binary patch literal 2284 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 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/atmospheric.rsi/meta.json b/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/atmospheric.rsi/meta.json new file mode 100644 index 00000000000..133d4914434 --- /dev/null +++ b/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/atmospheric.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/dbc2435fa562f4ef130a7112d2a4cc9c80099894", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/civillian.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/civillian.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 0000000000000000000000000000000000000000..50cc4a229cdfaa335b5ae0026d038a56f4ae137c GIT binary patch literal 1658 zcmV-=28H>FP)Px*G)Y83RCt{2TF+}6M-={4jCDu`Cnm^th&LM{H?bC7dXYdNh;m3nD82TOL(*eI zE-eJ&KOhA|dnxT90aHj0rMDbHl7d!LAdoN3L6zLpLRqhhBMaju-TL5QGChblo|Pqe zXC*mlyWeSdXLi0fZ{C|7>|_kL7H*)lT-jHiN*eg`_BW`l*L;tL7yk1XvdHI5oWGD2W%QoUnaccQ zUMgL^zQ6%sqh_PDTtO;nU_Krd?P)a(J#jK`t^WhIeQ^M8j3*5Hqz;65f*1`<{ zz1S z+F7aAdlh-+_hbRZf{9s8$41Q-+U|6NRMJ2`XJTh;7Y*BjJV_0TV!;Fe#7@SL&zXXc zP+G2t?+x2h;_quFWcs#MM|gKk_*pMd`OerbG`;O2UQO{J{%WNR#u#Qb9pT;m<3@^i z90zeD;hEo)1xU*bfBNjH5QH>M#6Wu%o=c=S2`~&aY^%NM=mzgKx+Fu>s)QJ0p85OE z0k%~~v0#eM)z)iZj3J%L3Jq&|6zNPBj4{;KYXAVpaZoInuBFNkI{D*9LX^q;1S(hI z?`r|I^6vnEQ;{ibZ*Fm*Jd!FQzxd-YP}Ty`$ac?V9(F#S%xZqUj;-W z#{dAW)=Qi{H;+FyH$-POJ&J~Hi4hH_%qT{M@iDWqwa{ z0D&Jg zv@%sIWhH*kF2EQQqfKr=8VB|!BgPn-UK>>axfe~oBnNd|uBXC(;8s`$EqQSx0mc|s z%cT%w3~?jjS{g?MO^>=bRV_dHKTWF=n$`_2AC7?0xB>CY)<^vGPAkRGZ-nL&DK3wGFHju- ze3(j*FG0JxVdoO5!tY4|JFi~j*X6cpKl^RPRkppkh3(BPG@q~GuZ@AAZIyAMWbrk>@ zZGr@_m!tte#3`$5H6fcSloZgJnnKAE?tFnIJ}M=xke7KHUmGe)vGC zO=SfT9LEs?J^uM80E1;~dBLM6_d~Vyn#&FIIa7JmWhh^ZQ^*=R{Y4IWUh0G6sKz^x|*6kbJ`WI z+IjUFw*AXU+(6Sl;NgjJ7hm)F8UWz<Da!e2k;ogD^5ROmI z2)R_@%L3%Yh493K7Ho2>svQ@R4hPAP>KPN8^jXti_s_+%#p4D zGCHs6>BcxbF)rd2UfWV~fu>anIgW$y#JCvwK@*_{0dbQ&s+|XXW{b}yQd|y4je7m> zC4;>Cqj0@yJH9qToymxAD?CoSzs^{t3Vh`Uyo8S5Sd(3y|jk)f3pT&?{d-1p~W4!?xP~ryE>#3GxftkI44`e&JgI1R8~6 z!8{ZtQ0KkmD|mq~1@y`Z*xuS2NEol&<8Q(}^A%L_4>>vFAH@b$O8@`>07*qoM6N<$ Ef@MenHUIzs literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/civillian.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/civillian.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..e58512265d25b4078dc0f175e94f25e24ce4d75f GIT binary patch literal 731 zcmV<10wn#3P)Px%l}SWFR9J=Wmd$GuK^Vq=k$?vs5GnnTW?4c*KbD-cP$)FL2t9c9=w18+>>p5} zSMgdrc<}0>sE4LdC?uyI)}+=faotGUgb=FR94dwJP-jf~k<40;c}~l|@4WNO^Stu` zLkuy*5JSYk+SSbd3q z;8XRA#&we>Nl%`xNPvbPQY@8ma}Kj}X&v9I)HJF2g*++CmW7SCMkHu2#Zvi_4Q|e1YqP*<@{D>Ikg{x( z(*1itNgoC^Zl5JtT*|YxS-3V|#ZQxGSoXO^uV1b9ox@0hdKjq2lDqr62q8#Wwq9vH z42Yr#fcGEYBr;i7DguMhmp~ZQdW!o8K0*lQ7xJ2zWv8+1G&|b``~x3=D2lXgHzMGB zUjUdK9i!7~OMsMR_Y_wol@j9agq$21quD&xdTbcpfWSovA&8=gO4*|x2Eh3aQ5Fdy;*kA(aB+=yHFU^81#K{Og|V~AcW}I6_v85EdjJ8LI{pb zi^d@U=q;y+RJ~#%lXa!Cqnn5+23l|xy3d9viegXN4PynWUNMof>}xL=)dO*^;#dUW zue@sY3O7+976G-@!k|W_?CJk=PFD9o)hos#5bH$*^jtniK{+vQJF@$7`a|OXzKAke zS9Y)dI;b2#nvyUgaQfpHpGxP_?tk9viFI0SI;}QGU%&CQ(bV~-_zldLUg*OO=Xn4C N002ovPDHLkV1kO`Q;Yxr literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/civillian.rsi/meta.json b/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/civillian.rsi/meta.json new file mode 100644 index 00000000000..133d4914434 --- /dev/null +++ b/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/civillian.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/dbc2435fa562f4ef130a7112d2a4cc9c80099894", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/cmo.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/cmo.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 0000000000000000000000000000000000000000..af2432faedb7897c41e29bb79c54221153b4ee73 GIT binary patch literal 1892 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 JPDHLkV1iUa9;5&O literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/engineer2.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/engineer2.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..1ecc223b54f0a2c10cff24dc20b79b3a97ca88b7 GIT binary patch literal 695 zcmV;o0!aOdP)Px%aY;l$R9J=WmOX3RP!xtA7aL;49b!UTV;tiI6f#D1$kJ9rF?0*Wd&!cY(Bvm1 zQ+F>RQz&%lR0tj1cJUDGt-*rCq(<0Ii!%t3Kn8VCuRh#XA5Q2}zaWs#Jy++|Ip;lB zFvI_j%ru)`K3Q-kZ68j4O!ck@(*)NwL8qVdE?pCUBz5lu9zQBZ28mn06M_2XhNCC~ zT@y6hR%or+w$L?!q6q4n8>vWSlQ=zl`aJZ~!`($rFK)c&)yfWSD4 zEH9}JK&SH+!29~u%A9uv?b1)~i$iP%Y}>*#{d)>GX4~m2c5C0l=I0ehJ>b&i}Gobo!R-_d)^)@ivT>VwApj0XXgvyY1B*$jJ58^&6ira*?ZDAOGryCR!cYZ1Y5>k#qSq8~W6C4trhH}QQ zm2W*cg4>MiD|z;gEv|b{t2Qs)W3``}fW)M< zb{f5mJcg6X?oI@Pl1#I9Zv>>S_l_<@c3BSD2XcfIB9=p<@t-SyM002ovPDHLkV1fpfI5hwO literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/engineer2.rsi/meta.json b/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/engineer2.rsi/meta.json new file mode 100644 index 00000000000..133d4914434 --- /dev/null +++ b/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/engineer2.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/dbc2435fa562f4ef130a7112d2a4cc9c80099894", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/hos.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/hos.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 0000000000000000000000000000000000000000..45de050ead4065ff725bb21b8c73fff93a0da79d GIT binary patch literal 1856 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 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/magnate.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/magnate.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..2c8b1e5527199d4b75c157444297ce46bede0418 GIT binary patch literal 779 zcmV+m1N8ifP)Px%#Ysd#R9J=Wma$74aTLct(UL_ElGsEp$|c2+42p;+C8HoX2zGGv50KKKQ@0|e zbam=bihn>|O9cm^&{2x9t;8WAf@g?FV$4a;E(dxYF2BoJHMvyBe5W7pz2EPBfA9N# z?+$wCp@$xN@QLl!DSK^s)RvT4TT!NMuTN2?ZAqE6*Oo`^?bRv!t}|{!z;E)bnq=hV zIYCLnGEFkEKG$EUUAgwk`w%<1Bj(@z^mTT}prP?aJDiY-rs5R8<^TvMWIm|h$*M_q za!0(#J;l&;0Mc_Rr==4NP3P=jv*Y=FodN{%pTD`uZ-cOlIKOC1Ahob!161=xx8%`O zoMx=qfPU@;P^rhtSyh)lVi@_`GfWZ+IFeXP$U>ID;NzO zBAJ`PjRN6_%pYk4Xf!U444&S zu@FW>zoD_E?E(;sg{ajkfWHO=pMwbC>|isXDATr+>iEu30kj&+U>t_cVdVr^-=E`k5mAG+)T%QT%u zqj24>?cP3|9-4p{K-GNHaM7BI!xQPQ8xXqqAMo}-P?ByC1Lu`^WqL3IL*t8fdQK&p ziaTRhNYR94ni!f+G!-X3r*=icw*;r96E~T+0%C2MrW?}@{sM6>G^MvM59t5^002ov JPDHLkV1jSgZyEpq literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/magnate.rsi/meta.json b/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/magnate.rsi/meta.json new file mode 100644 index 00000000000..133d4914434 --- /dev/null +++ b/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/magnate.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/dbc2435fa562f4ef130a7112d2a4cc9c80099894", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/medical.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/medical.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 0000000000000000000000000000000000000000..8d15923394975bdceb22491a4d36c1c9380d2592 GIT binary patch literal 1811 zcmV+u2kiKXP)Px*%}GQ-RCt{2TTN&iM-=|l)U`-#)vb{ZItZK^jI;-VsbgKWA|!V3!H24(r~#E+ z0vifV8gTF-hZ2L6w3G;PF%h`JrYgh-6I&+i?x7d|qy`6MA6wzbtw0Koi09=Vd6iT?w$Gk|V z9?9eY{pgKxVQ>)q@Pw_yf$+%2aH4VTIPpDmCj$X^61VFPo`RMNhKv$Tv z%?L(*KwGlES3GAo9#2i-)$5G|+urYoYTrdOxw6jJ903g4%iq1>d@$0u|0RUdF*YbQ|@CNDhGyu&ovvV0&C!mfi zEv7qq81ym}W!dHTN7QJHN3P_?t+Suewp&l0BNReX1C2!Lj=ecg<06+LgB0RZ+rWk>+tzCEeQT*z1GaNeV>MA_^~W{x8b zFmn4o0APEkfIy&I)!zevT*-}nPZ_c((IF5BbgSDtg^GJtF~5*UDwTrI*GBot3SgCu z=Q5@{Y=kC5phhSbcOi>X)i^{JCCXncYMnRZflQGgv1m4%fh_v5*VB)Yr5SAR6cCRm zXj>ydIt5gEA@F_`ipF@PQYj|6HD_oNW6#cITx3>Gr>76RapIOyz z*Yp6r5dF+bh6DN5x7oQLsKsBcjfLNIAOrxDMK>mkZsbaC8WWK3i3ucK`sNwl-mLZ54{L>;j;kYHg}}#y0~p_D{7oA+O^<)7pf;|N0kOOEb(e znLHrBwu)1&O;y{7QjJ6-_?bKa0JgSX9vFX%i!1Q?+L+0$z;1pf4-fJ0i&Z2RT5~V)6)me1fnsX#^~Bn)kF2hjc;s=1qgpSJzaIR z(cjbbG|z9!03`l4k{J~^>X~}6wz^s2?#35j)YE|j2M!!KaNxi}4KRnRBt@- zgB_vX~1b_Imn3Qss}KdjX`erBO2pjHW^tj^gOaCp|n!~!arG-$7Fy~ZVc5wa-J6)0D7V_a#$xY9ybD6?QPfWAnnT9y{DH!Ws_Q8rnD znwMtK^X3`$#Yr?XCP$c*B}qpTfTU6>WPW)-%hQ^dX7m{w+YtzKt6VUIy`FxMlDWj! zSLks#as7rYg8&X3KWDRTG+oto`FnJD%Glm1Kv7tvnupKVhG>k(iw+L**d55C1fQ?% zzy!=vlfXO#^e7g0XqNo*k%V1CT9nFmxKpsC(002ovPDHLkV1nVl BPrm>F literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/medical.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/medical.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..5210508cde3577dcec6ce464457e503a5b8318ea GIT binary patch literal 719 zcmV;=0xPx%iAh93R9J=WmOp3{Q5?rVQ9}c5q$qbo$0C#@L#NWLxgfPI8L~u_Ae?iHixgTq z3PN;o7Xu}vn59E8wP=zxX`rBR34&<7p+iEU6o+<@bI|v=n0R?7ItckfNbdc9_rBlv z`}YDPj4;9o{~L0-7mlCxVYuYSd2u1@#OGryE@T~*brl3u9gWSRGuAAVNE*cFW7Hd# zw29|hrOL(J64gg{mG`}(O1_*<^R`(Apx&@B&6Kp~^Sko*ayktZ9aRxSQ($ZsotfE~ ze6Cfh0JK}5j2z-_J)sJ zPl-jMQpB$iqO5j{8}}aa^1)32G)?p5@Qi>6@mRBrZ65~Q#HN|za`H}3EhLf#wtW}? z*s>?svM0Q@A1(mssrFK-!1~7OK)>~kRZ67-0AtNE-zwY8eSJSvfM<9_Uw2QA>2yxf z^+~krQ^1eYzCH_a>*~1-{~*7;{emZlXB&#s)*BY3Qh`qA6o5=7OME`Y=T3;Yehwh* zx;`oGKLvP3KxqyLtgNg^vRY+|i@7BpH_LQSj>%-Q(&h(4hlNPP-hLqm BPgVc` literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/medical.rsi/meta.json b/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/medical.rsi/meta.json new file mode 100644 index 00000000000..133d4914434 --- /dev/null +++ b/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/medical.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/dbc2435fa562f4ef130a7112d2a4cc9c80099894", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/medical2.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/medical2.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 0000000000000000000000000000000000000000..864ed206c99ac1f4494c9c9e2c0d90b63c1c6c84 GIT binary patch literal 2014 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 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/miner.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/miner.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..245bfc9e9cf0db702e1278834de7416800ec97f5 GIT binary patch literal 704 zcmV;x0zdtUP)Px%dPzhOs@5@JB@o<+RD$F#$Qa{-JziAZ@Jp7*GjHDfe(%jc0~>6x!3O^sxio`D zy&0&sls^4|n>r^83>~9(`-tIigl+pY>dhcdq*gTpA&N-p17srkMAy)9TmUS~M2I4_ zsu`$9h+^1(a?+tzHG>p)Ard3ds5b-4GU;}E;omuqOS^samu=Lh*=zy?I+4&yfr1M2 z+1b~%Ru= zI)2;%F8M-<=-B!BH*LR}l+f+pE`6(1tQymW_F?3CV*n<1_rN0m>aF^foi4N^uw#sP z`rBYI^4JxEEoPxa=chv^Qc~UCW5*bAlYu~{%f+ke-jcR|A9%S{eOY{FssTfkV?Ex= zzJEr*vP^)b{T{mmqzX?Q+C>;W2cp^^|Bl+}Kq~_39DwDUkHTCX=h9uNlmUXvD_g4; mv{RsDHGa@U4=f$&jpGkPtv&)h{jgI20000Px*Zb?KzRCt{2ThD77M-={4Y-E_OgV%{|Sx#Iex~5Vuf>27K;2wG||Jk>Y=fj85lb!3qH2&7pnecZ1r-g{8$@z?cEfeH@>- znPK-;@QG^2l|nfHfJ&t#9+prnSV5&y0sz!sm_d)9kBs^YGhoa>rBVW829_3c0bTNa zl2a8*6Hvar9<1D26W=-aQ7l*iU7Y(}{a-!8SSLYeyp>yPDBoUJ?mtvrRtn|dnt1~k zULBnKV9Y>1pTok!oaobNoWXHi&_rx)y14T=r>%~?u(X&9XgmOdKMLY!%)pGfjC1c4 z?+*8e@=vJeK|PiJ{+e%`Npa(gdG>|JkH@k$wjqh_2dU2_&N8{#HsSw15Kb< zu!1aFXmbzqH`lj1(x74;RmC>E@MF#`bb++PK7C+zJV zfO9_<|G>tj#auuS_HYLo`W|&evI9ImaWjv;LqHQXiX)r^|G-AFp&4@-@87=06f<$n zyn**`Utdwd`I~E(&NB2D7hWB}Xn~Q;f8o{9#58C{icSD|{w!LezY70ACz#LYkk99E z;nlIV=>iB>1bPE>F=pW03q9}FrYi*OwOr{SpU;VhA(aNu(+Lxv-LrAw)iGl(EAcBW zg8;C-1GKppeqkmY#}#c&OpCVd9n}%laPFPrw|ll2mo%{{^_gO(xWByPdD7piAv%%w_SJ)D1w_+Zb0MB=d9b3sXGzPQ~9g_e8r6|40qjx*j3QIy|t0M0$Yydm*>!Yp<9l{>zAgy6HUOaQ>Q53Y+hLF9it`3C@S zwCjzu^r`Zb*-bGMS+rvFD|e(_7XWOm+W56r#=FD)%u1mg++W>CwH9hXoGt0c9yhw|0i9(r4!@QLP{_-eak(P6 zVr8JVBq8&M=0#sekheniSR3FfPCghJ1-e@NKvVj=%gqZXDm=GSV8Fvt0y<{0}wLk@GF}@qj4t4 z`q?1$Ndk?=Sr@lF5tEW3MT!(DQlvvw)zV^^ z!I{)V^h%IW`fO_k*?xM00}j(KsPV4H(9~v1+4Qvyw3Z+3DD}eVK{zBF-qe zBQc=c`En^6L`QPfn%;O?Ccv11pTGYd0C307b+rNGEsIf+M+V7t_o=020?HFW^*=xS z5~ien`qIUdgHGF|L2sT4BRX=~mq`*eP1N!MAN(`S8lktR&y=G2SUw<&7JA90DueQ= zFy}sIjX6{*B~&UU%o=m};Gdz*Jy=#JGb88m#|;`gpU=UvEVQ{N9$1zu5feB*aWg9g zGuYcZ=oCLVl#sB6N{+ieK*sh?=LDJ_a@LqbKA#h{icL&wMWkA)Du==VuAI_NG8C41 zqcSCy96dg9GZgm|x?}NVmq0@Ia_o1hyzWbg^~NYD+S+tMIs2sQ0(wEN6`=4}C;pca zdjd9AZBerqcPknf@@|lpL7nJNhL#BsIQLPlS+FcQDod^|pcgu3kVCa*#O7CC2BU}) zPV!JB$~DU5$I^gF)&%r}Tn`}UDs>Ut1OP~tVQwt)Q4rmj#YJorh{peNJzvs@a*eVV z8OaAYj*Eqbxvu}?i7kmDsO(8a%H1y1A$hAB?~0000< KMNUMnLSTa4g)wpf literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/nakamuraengineer.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/nakamuraengineer.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..9d21d99d91b1b781dd96fa5c99aa1f3c5f6d60fd GIT binary patch literal 761 zcmVPx%vq?ljR9J=Wmd{HYK@`V7DG`MsNY_@4iA~wS3g#3jJroM|U+`Y+$%Fn69{eBl z;HjafUOe|8cqn-AP)`ajC)**><8qWl4Bus#vru5kR#%&qG6H+li{xc>o&Utbv>`a-i~NAu7I_(`zY1 z9dX%qA}PZ@{k?UJoyepq6zxhhZoQ-xG>|exh#ZANp2^AQTBq5(!Sj5SBipM!iyL_^ zF8$Q=vnF2N23NE@#-$ALyneYdE<}!{lFQ;o-sD&yr37W$iAK4nEdwTI=a4ewNA0fT zgs-38{jcEy07B&c;L2l2%s`=#??i|`^laZp2uI75T8kF^JB8YV%&Pk_4zSE2YuOzmTDG%m zdSZ;!L80mn^rd~wn$hnn-2lB)(PR*%Dkzj~CsHYOU6-t|w5%-y-4&kar`G*R4(zQH zy?z@TeZTSoDMPZtqAdf2$nkyi7XWAbL2Bzg$${yqe56XSRC3v>SNM5)m?_$oXt{Jq ztsZAU%FrnF3dSUa?qsahyM%1ZfLgsf8C^I0>;E5v@qNHFszIWM0W+XRE~t+1^%ru` z$Q6t;0P*}+Y*$QIzrC`5;y~}GRfwFP5544ksAmGB67=5r4i1iZcm-3JlxlTe-IOBJ rSzye8X7ffH>qhMBcPT@yGYEbIDS<~)=034>00000NkvXXu0mjfYzSpW literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/nakamuraengineer.rsi/meta.json b/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/nakamuraengineer.rsi/meta.json new file mode 100644 index 00000000000..133d4914434 --- /dev/null +++ b/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/nakamuraengineer.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/dbc2435fa562f4ef130a7112d2a4cc9c80099894", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/nukeops.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/nukeops.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 0000000000000000000000000000000000000000..b3e45812349fae1a6b0c4516203aaaf722bd5581 GIT binary patch literal 1490 zcmV;@1ugoCP)Px)j7da6RCt{2T0v{$I28UgS)8#$O&ZvQ5JQKykZI|mdzxboz3;V${+B)Mf0@Hv z=iWnqK?k>EdHQ0u@!w!Pfzl*-Uk#YP@q78 z0tE^bcpDd}@($bKN%uNzhhLzYc<;Z=&rHYxpzT<=3<6y77xCK;+u>)njl0Pd0Pq>l z+WngF_t*>`FQLa~OZVxz$4f^1Kj}33dh&sP`#uo^^mqv|Z%ck}I~Km~f8f8~{GFK- zh#!-w7-ZYA#Qi(vx(UCQ1HOHq06^sV$rNqJ!s)&fyH7^6rS@4t?(fXDW84663J3B8 znee~qrQ=$I|1t_8hu@iPFSWZ2f>;<{*UI>7^t5plsQfhZck_v$|8&iiUn>HxYi0Q3 z0A7d~IpJrzgVm8RvO!?PFfV`G^q0bK34)3uUhPw`0&APbv*dGA@Ohh}(H^@!*f>r!L6lns} zS*)E2|5^vorqW|GfJdZmC0hTF{XwklaMy{#G+btjZYSzU- zsYAD7!ygBD><`4BYykb2f14JqW_@X})TciV#Gia!wo!*)>nT7T(#-q!4@)!NYSsb8 z8Cih1f%)vtm!28{auk}_pp^&s;{d(TXI|OmY8a~FC%4NY5Aez^2O#) zPLMV7;5S+VlzzGu8!iBZKHQ3pVMR)oLX#fNkO#k!1C9>&006i558@gT)4krGf0$Wd z$ggIda^}}+){XhK_W(*uiA;w4U2c~p^5WNWz;Ug?Kb?Mr*Qh1t{gjD$jT%0ke$3nn z#82Ew{A7bEzxER7J&nZYq)be0lQnuzqr{gUncp7=x!O>mK!E}U3KS^tzk>0rYlrP{ zwK|jMEAU&k0P)I@sV&Cm0Uj@jgi`FJYC6BnjG{`rWDXRi$Vmr|Wq|!Ud{a<^iy>Z2sG1 zkext+AlKX|1W7NTmdx`6aa{&MqFrr+zOn`AHRO zbm+h+0tm8XhI9ef?-}qu8&$|Ee8w|7t~K~IfS-d|Op%iNu{f=3)w?80$f6jk1LEmg zY)Pn*Mx|yH0mEGf-Y66sAh0;8RrLaSLFVaN3bu{T&F0R2430aBFg6HgCxvIt4m6?2eg`Xw6HiHm&?{ihkLmljSCeB5G#e#k$jpc zG<%Y$^oh-;IThQMZO8->@z7p&_$|EkPMJPVx?_B<=RA;nc4xWCcv%OTX6y< sLhJMjCP=*p06(@KPrR}8H^nmi7pbBRW0#ditN;K207*qoM6N<$f+{A~7ytkO literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/nukeops.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/nukeops.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..24d2aebd4dfb1ba1adb01f2155068e05d1addcd9 GIT binary patch literal 652 zcmV;70(1R|P)Px%MoC0LR9J=WmceS}>_?!ESq=j#jP-h-dO zfu<>eI5eOT9D^HFEFpuuJ-92aZ6U89Jrw+dk#}c2^Y1^SS;G!H?6AZCgmYT5FPgH* z))!5APOH#XhP^7u0nTijbrOBilxMcR;%ACiCQcW}2lDbR;wG8{;LF--A}wXNQRm|D zKz_RVDPD}gn`llTQo5SI3AVEAd2RV|nh=N-U)BgjijrH$ z*Er7XzN|6yEUu^Ht?`X|VCY$l>Uk_xilX(XE*N^2NmyWu0($KS)`HGlW~W?-+8@;g z{bVmI)3#nH?E$@(K@y6NXv#pOO!gbRee*iAJv=_auPF25Z-bijLMZ_yZ6H#ROL<+# z&Xa1G>^BH!F(i4jnxIskp4XPZGOz~Mu{RVb@&UFsVyOZuNqBpY>)3>|ID4Wgpzo`v z`t9{}T$aM@EzpB!q-JsUQDk*LQy9&Ga269Jq3|tNs^IIVR(rai$s8~mmkMh94y*-` zD+AC^mSTS4xl&A{QLK`GK5i`+SI-Qr#Y*zrhO9!um;h|P*Gldpn<Z@ob7p_0sb literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/nukeops.rsi/meta.json b/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/nukeops.rsi/meta.json new file mode 100644 index 00000000000..133d4914434 --- /dev/null +++ b/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/nukeops.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/dbc2435fa562f4ef130a7112d2a4cc9c80099894", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/nukeopsclown.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/nukeopsclown.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 0000000000000000000000000000000000000000..81a154afb0857428280f8df8936a6f49f4640dce GIT binary patch literal 1878 zcmV-c2dVgpP)Px+5J^NqRCt{2nonq3M;^yNW2KUxv=*{UY`lKp5Q~areQ?xS7FNK0b0&!AQ;^Kgei4B%lS?T4yM429*XEg6g zmfz@4DO6t&wq{22{mpNF^P4}vAB-`^7-Nhv#u#IaaW<||kYzC?yVaG&l)OfvYu(S8 zU)YcXl(K0yJdaKJT>rK#rsSIAP-zALe8F+zer@=xqJ=9{R7IET+Bx5l@KMP{jgy6x8^tzZh#fCm=k2ff2Ni$&&a z86F=!8`uis{A%VaCljImsxn*tL>6#=CPTg9;rc|#6)Md@t8ynTILu|N2APzfplyM1 zsKMLv_tcQN_BS)HSqkKtPG~1BDEkw7nGE6!PU8n6GMHty{5>teTuW8IE|$cURK)4a z7j#|lcvlNl_3MHY2RW!O=*7R2HpUgSBJFJWdn!OVm8xig3`yTlO|s#6?Cl@ucIOG5 z)2-GE@Y~LEP{jEUr?dR=g=E9?$mbju=4V4Wf+lN@!|h1{N6)SJdn(}mOt_Zn4G)*R z)IteZn4i_{g4%9ao&h(Lmpjm2hey`qPQ(vHCZW;{U@~LPKhdjlVSZK*G@lDSe<_>h zSiWL!|3H6^z5N63K6*INIpFT2he8d$?1!S3vT0nIidcYoK2YuI4KES@nHKQ& zkMyaL|PZI0zDD$Rg06Ra;6SO@NGAM@C1xZP3q!#+*^s%VkVW%W!~ zgYcLf=l>!>|A~*nD;Kj7K{k1>z{yN=Nug(LhYWfgydQcAM&n>Rb!Cq*I!oYra8 zuM0PmAIhGel)n<&-YU(2%63@R?Syz160K45Dy)v2htpXeA3YP7XXfPjT2rsXQCx}R z_k492+LX_QdLK}yL4~CJRzjMO5j$z2Enq2V%V)k53>)#s5K{sD@+V#b&^~_Va}Id` zzfL~qaF{c;Mc<}JJDB_c96jf7I=mY9%imR7OIJUX0C&D|0l30-@d-uw+YhRdcJJPJ zA^!WpWMl@uz2WkAo`@}ON`UpN;cs@n`A6cJIgKB{lp)Ul?TxU#4S$CPEM5Ijx^MiM zKmGp#tE;yF_~c$uzIWv*jm2r+S_!rP^}nC#-@NmOIRL(Y;PKv-r?6F&tE*w%-~5mH z@>jcX6`4c{J^8Os^VZ7Tsrw9vda}d=)mK1|NTRa%GA&$6dIZnqb zka{sbEsLZZ5^L(??5sR36s^cr`KT=68U<nc~tqOZhDKxw>`O|!mSz?CUI`)0Djs1fHBwt zEpC*KQ1yL#Qbf2-nQW0*0g61XU6quuFhAQhabno0iWUp=v*D|BjIW<3c`FN0FR;o1 zLi?q5Z~vgfD~|%MOzE(=;;xF89=wtX^JuzJM)$1h>AX*d#~& Qm;e9(07*qoM6N<$f_ELB?EnA( literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/nukeopsclown.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/nukeopsclown.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..243c0098fb4c2be7cf38ad926ddccb031f0937da GIT binary patch literal 907 zcmV;619bd}P)Px&MM*?KR9J=Wmd|SwX&A>pZ(C9c9U_YjjxBvyvb-fGX*a~zc7dQ zeZKGWeCK(d_Xix}5QjL#_k@dNWLZqhakjFUmKVv4wMAj#Ai)7Hq*8n-qAaH6g;XlU zONyx^q{qb>x&F3Ct>*z?$;oh_k&uP7#^c!;`P;^p_+|pu-}V5oMIU+|g|x=pY&vAG z^*n6Rr!c}#f>@PjvnS-ari(55SaK3u^a;{Eil>gF?3SElEvvKHd>`vSQ4g$Tb?VyC zS5S&^87j$AB;gCG@}JXHsPt0$5kNH@H@Yd)@aK;8rwVS zYs)H3*2st{B@7@VrYNMf5U;Vl!;@DpW6y!u44iAaREk-Du+gT5N1Hw1h~l*69<`oF znF%Vz3>DzvMw`tz=Sc*Bzn$i0(^QHXC1iz9stiT+p^bwb#fb#$=hSvP!qUyedwv{Z zkK+5ZMXl$lGa#S_a_eYF=KNe@FN9G0x2SwSV^L zy;}40?Px)*hxe|RCt{2TFY+YNEAIhj0^<~d5}P&G#<4yk&;Dvk;VK0i}{54zI?(g@&~i% zZ8VdSP&?h4KnT-H6ATtM@hqHM6a|4QgPDhXB!nMjpIf)?ttwX?AVGoz2@)hokRZYO zIM0`Z^L#n@FTFdfV?fWJ000Jt0cZG>qI;}R35uSFoXKY^8FxN3C(gw8mv7jRlH002KG zr&Bpq{-wF{(|7g29y{py6ZoYHT-SjWyztf#aeem)JC%lMGGw2hc&PsJtsS{9kooDo zJ%0kRAE0x&oC^QSPB3iEK3vy9(eq#x$~+(E$_@J%z(EmjhpH}S_z_li=lu_u0QmCx z6HeZJj~xKL)*k@C%c=6OOaVEcKMwmmEa}(tC-^w*FMTd5#PzX)@GC z&r1AD9nfr4aoZjOV+Zyt0g>*!JK*K~ZkHQCmA7&Xr}YAEe(x`Qw+bka?N?4$_$Sb@ ze4n1Z87=2u>VVt!aPArreEIxo;q_I|>%ty8F!QAu2NNH`b)A{}rpaKBo|QVnmHByS zumHf!u+w=pNc1{|955Y&A3SI6>F^?c8g2<<%IWg290eXcCq*x^atzHz6}8dxT;-dM zD)+ef%(_^_Zv`*B)y26<6n^EIAmOdB-bA?T@KXfPe^h?uufZ^^9DeM&4h=DZd@l~f z#jh0s;#Zj50^+^65C^|<1Uz_7${uI_o|}p;Iv2}r z5@%;;vG6N7U~l(0xcG2^qoaD*0@94nbsao*yErW?BuJ1T!T$=ee7bHE@+PS6w!HR| z*rCA!5-YGmB@j0uwhiK@y-MA!aX|BPn8XQ0NIS9E&`yvFM28nW56EWtdSH}wL9Ga& z?JyZd&kHw0gr(`YKs>Y%BCi4Jt_f}cnqDnzjcaV^>^*I5?R zN`d`sW~SnCtpMvnv|~S;!Gov%td;}F+q5f8AhiYn*ms+i$H@H6#ypq2Q>_Cn2LSWJ z15v)RNWHab@QxRuR*80~$rkZk1zNc(4|&uPQNIvp{u9K0fYR~gq|WdE*6C@DL|PFb z%HaT@^QyYba!eN&wOb|75!6aD$u+|iG9mtAtF$H4X9To{>)%Lb3FLKFB z@hCQE&jbmgD&wC5%>~x^CW+Js5Jai$wjs)O*FmHRkTn5*Hw}E&!kQJ3!V1m?qnb6G#iZOs}AWNGb4d*pGipub_*+0SR=*q4vz2 Q1poj507*qoM6N<$fPx%TuDShR9J=WRLyeQFcAJ6u*X$34l6F_St8cXnoN>k({}XO2b$(l^^CEXHia2kngtt_} ziP6{#LW~A)sf2sc22R&RktCG7!JV#&{&0+DxdboTAgVQ_zPy-Ad9z%Ctr56uiiee- z>A##OxUCTYK(kx|0NfjOVDq*!GU{;G6ae6KO?-Qr<#`u?0ww4V$8eR?=1WyYe>jG% z5qQxim*0~NeEDE;cTF(}{FrhUzw*X1Qnv0>tcz+547Me?H!S}3b#$@}nI(u{PIQIH3Bd2u>?hRd(MN*1Vn8G27wP?`wtQ_FY;6O@+5JRo@BexV6KRBH4OKD zyBBS+RMnK7IKMjq(a)}O0bM6xjLNkdhSF}SswutA<1Wc+#gip)x+We+0kEcUw;xah z`S|&hw2P)wu!P>`Z?H9j8_U4McmJsGTnRjmf|N|W@aOZ7qw=i#hsc~%EtPO!H-rFS zT&eBRt?LBs)k5mU448y8(|_h5nuJslj%6&P-7OCJ)*Ob3LdFPK4IK=O0%|rJw zWX=JBm{uzHj8V~I{7_c}g&43kB5Bt3{WYm8g4_&DLaMmyk{mF}wyR<{G4s}5;N1*} zK_u3H&Hw-mtu_E)`Min+A>;@aI=qewC6JqetIKOizo`4MbJFgwC2)0l&3kt}bUGGh ziLood7{zQlMWPx)cu7P-RCt{2TU~48Mif0ZeW;npjxp<4RnmaHD6Inpn}zPfzU)6(*!{nK$wL=P z41tDJYz*10>cqv^j-uD758}$Bu|8(TlDnlk5cD;kGjr$OJ9q9(fC?2VRH#s)LWKfw zK0XW1$7jKRsqSxN3l92r;QJl`fH4ENQ>P|=Tdtn))A$Df2!6l(qn1*YGS0_m!AbuZ zSC=>F9hpHIKVt>}#J=T0s^Fk+2cyvt7Z)GFm;s&)K=kbU9y(SNM$3S=_E3Zn&c|l~ z)wggT!I%NdG64XtJB!`>zK1t&e#T^SEiHsx4H)$8fJg|oZ40GLxb6%9aMC}P#$GPcT{r zt}bt+%FDKskSTx<@81Og;5bf9<-6VX)*qn(hR=61v=0xW-|OPT`*%V6@Bp9hW@vx` z2vwcuqV9E&|y6+Tn9e9=pFeY0GLd! zV?K#*rwlSRAgQC|Y%I%+{(RqyMj-F^DoFah?|ZOqJL0u06Si$f9arVg6o6%!v5qCp z0BP@e53LK4pSbewRroW#Wbep~Z0P=BR^y*(IwFloD|i1e)1C^&diYp`+8{pPP8}uw zOdr786(4N)erW47?eL8egA!odG-Sb#YVQbv_&&+@DNx!Vn?F+kqtOua`4XbrPXR*5Z z4iiWt>7Fs87#{${?NF3*+Lf@2{fqobp?B7^EWdOEDJ1T8+gob_iorv3nJFzsbogoR zCopDk=Bmao9SRfX^W~OGGG-K_?y~&AMkDB|%P+kg4uhS|J+PVblD-vHNXM@c=n&M@E-vH3pc#}efJoZ zQ)Dv=gLx zR$S=ti;*&8f%$xyxcC9Ew>DI$P@zJF3Kjn681(I+tZ;W1yng#it6kEOAb}zwf;c0Aog>3n3ojS%pvTCwS{nBgLyMl=1=m0_1C0bUgddTjvl|&m|~p z01$Sb_TT};&Ij=Ci-zxe=yr!3S9sMOeL%wp&^^BeC3dFo{#neC^%DvvIzk3 z7=S;PmXxzE5)^tT@#)4T+S4F4Ky2VXLg73!EX@R{Vty*zMg4XGnIRCG1PMiT0JMC7 z=)R&1i_@% literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/pmc.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/pmc.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..627f493f70cfef230483dba745b6763e75041098 GIT binary patch literal 626 zcmV-&0*(ENP)Px%EJ;K`R9J=Wmd|V3Fcil>3A+@{?n0c6pt2hb5 zTx$h@5Dw>ycuuvGkk?iXV%gHunNxXsbA%pIGUAI{k{X>#)4J zd%6K1KfKQY;yA9j-1A0jkHHRt?-wbf7tf3JZRiYvls<8+FbOE7&)M0RPQ9_*@7fyZ z@Icc+Ns^+qLQ21Qv{pq9bgl1YfRuh^)gESsLPEv%7oQ~)+CIgDOt88Nhl6Ao0r{N_Ci_ic_Ypj zaoZ8?24vZCZO+^Px*p-DtRRCt{2S}|zbSQ!3%TmpdvWCs)*uCAd&8xIW;!nXz+H@=~8a|j-~bqHLC za)ak^99<4NWXljt<{Q(799hpP4xwN-LqIkKJ31`;NG4~{4eI~=BrCF>Z1slf0}OMD{qKMO``-^lh!7z{ga{ELe4~i{-vWptomNa)md4t3eSmhmEaQUgpG+SM+ zfDcA=eZboLMhB0dtcKzPwtKst7DWmZ@d2JwAeUPM0Mu$1wm|{oj*me7=(p{5-HXB# zq-0$mSob}vy`DTC>r4KI22a0jx4k($6`*M?c29$E+?_I$C-jXD`!dvz|LruO!RYz` zjk{CSlgHTZ?cz~l9aqLV`&&&`P{%Q#k1N3o6U}pJF=YaFFAvz)eZGzN!Z){_sUtz2 zKbKp>yQ3p37=raNXr8}~y})Lvgj(%Fh<{=z%)P_}MuQ}01ORm$Gg5Ly{)gy~Kb}aL zWL0Es_2ea}Zo1skRA>JJwp)f2n zAHZ9r(kz994{RqAkzz>cz4OmMIEmcalXgQ$} zK>REW?phJz7gIM``w*z>Vlwzr07Z2GP)$|6cM>SSqv4UTIU-N{%GN1GS>=xkm%$Ec{`Q26>H-38Vm*2OLd@729pqtxHjFu_d z9R^KJO#)?w0N9o}ewhRyoQ?9_3lNqTQ?@*uGx@>)FUt~JyJv-LHfwvI7e6qvSU;Gk zfThKhxmhX!u(CkTyZ`{UIih87vs9Xy64GhK%w~UNymUGF>7p>)uM&JYLE7>X8EO3H z)*cyZniR@%sA(>nk7N#FcT5y_K!8lVYkD2xCX6>jPUo0x&Z9y_GF? zMkoql9{||T3VENvXN+cfHUL<82|nut*bicYo<|B#0i|0+wzq*F?oM%H956w?2AnA| zx-SgN$Tm0F(U}MWO##3x?CX;=q(jj#kjt$>mL(f!JdyHs41OPk%=A7lOyILa zVN8Mh&LyW=g@i1i)%plsA3)a!Xth2;!AIi!X(e5_BDC{A;fl z2=k0k*9W#~*0?*x!omZ{vSdr#ia_W~@$--eKPP8B_uXWm`}<@OkwM4@(2LzFFPt?4 zVWBWAyAGUW68!+eQ-CjoAke{yrkw#FMBgZe&ri>g%d7#gszuyn6M?V-oV9|NpPDnP z2l5M^k0L;l>E>2U34sEk9djQ_w+LMypfD`6B`EA72>>=O;#Rsvwj7H>*a869YW2db z3vk0&t%8e8A`tf2d{Ttp{E#VzogkrOdg26Nn*yTzfrNFQ$rHX-cF1}1J55<$peX>1 z$KZVBXxN~L)7cgTfp>#p)&zLLPrZT&0$ISPx%bxA})R9J=WmO)D!K@`V-DYYksO$yU2l$cu*FNLu6EGcSw>$ynpegNsgvlQtE z=ob*ro+}iuRSDFC(c5Mb5*JJYdeX!65Z*W&?PR3AHGfz#`}WQJ|9SJ?n}I2&m|}|m z9XTJTC~D|59Wv;50mv6ZlB8wkmP&PPe^V;p`1ps{+RuE**DrTbDj;770Z=L+iW*uT zrGgCk`sFTB)X+Wxo=+lQX>UN`-XE7*ju2QY(3w6W=N4!3H>lEOf1LtRL@`aGKt1Wh3ZX%^8 zLc~7kcd1ls-Z|imz~bT?01gj-Wfp~pi6;<0nVTdn7lm6u9CyrE$WQMMOvnX;e%I`^ z_}Oz^nAk4oWPx*)k#D_RCt{2TTN&iM-={C2W)GjgJMO}X50M8t_&thszVDVIB`l+a&n>9Cf9;{ zYZF2t^pa2r#ig`|7J5jasZW7Iol6J~HiY6s527d-qS{VKvX)knErPO&e2BM)&0EdR z>SuPnic8rKjHKP!`QE;n_vX#KXCOd;009C72oNAZXB;0tVI<wSsWJJIycDaQgSZ3;>v(nuH{Uk;#lY z+GMj!(Df?b`{*sZ>Ee zpGU701pw@c4+6lp6~OZMW78S{9y9=T^ts}1X#(l72}2p)k4mu&RtQxsAfM0MraM3V z_rwPg+8sh95e4AQ6k73@N|lxa;Dx`X0**d9hID-b0FWy#V18iM@&V2%*ib^9o=r>u zW%Jn_7Tmpk3w~X%LRHN{;7tH9WdN!;`e;&^zolkq*`bb$TA?QqmknBOcmZg6qIUeV zZWYjqpB)4O{pQ<=@C!M?+KZaa53uB{5Ul;vbAC8Mp1&2m@ONAWBZ(-;;x@E(95|9e zd1V=jA|n=ypj4_rRSP(9B!j0bPp~IG2xWLb0HC(~Sm;IF@b^kl%fYcA1-a#at5XBs z2?1nl4aY;j*>?2YcER)0=qkhet-sLjkfjv2{2iw!yA%=0v(*O<8{C^50pHHAK#1?R z;o(hGie=PZ)I9ME38*B~#@j>hSfuLmW7~{ir(LC3#?zH2P*-!lg~CcQZLl2b@?$I5 z0?Z(Zy|u z&ekv4?s;ANz3?l^?ePmwQ?f+i%5Brg!q?q{Tl! zFblw2_}y_8AZ%#si0m@ZSJzR~)_ zc-#%J+|53{@Cz$oD4DX(+t^r~V(@0|`~>w&T&+Ic@(U?oD48-cnNh@I5vXdx_R^#b zRV^SEiy)I3^<4?XPuxKB89pqxZ>XczzxitodQ zw%#^*!b4aAly&)Fa0}znuW+w?6}L~F!~H*gf~q<*Mcn{j7eL4H))BdtLuj8tVj;90 zrs=Qc?&9*y9i0B*LtLJ@11)#gs@PBz8B^0USiYr*zK?4x-%>C&J!8!}{$PeZDQ=d& zYX+fdI+RQqly?W1Ol}ceQ@03YGSU3)F6$nvkn$5#K zTYUhaF+$y{6C@c}9so8IpuFHKy(}z)@ToA{A)9*cm7q-Gcz!oc*7{rRYj(%*q>CO{W zwSYSMtfi0SB6-}V#$4Mf{GJ4+)1jR_6>4@G;w4te<#523%tP7DgZbMTm3Ij zH^6gkC;0NL0KO(blEQC93A7*J>lM7hvkAP3nt*m_R;KF({{k|2V^*23LLLAB002ov JPDHLkV1k*GVXgoG literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/rnd2.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/rnd2.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..9ffb2763265ea62b106bcd4563ba8ef7600b9130 GIT binary patch literal 806 zcmV+>1KIqEP)Px%;7LS5R9J=WRxxkWKp1^#T0psaNSeekhJw<{Q7aj+7^q`W20-Ix1b z-uHda2lUa$KStoVKb)PJV_tjjmzR8>dn^L8Gjohm6P8tN*&{@NEK9yg4D^~jAxex= z6S6FU5TR{yN=+n0$x|UGdQxEV?I#8Ri??rp5CNJt*%Fh_ufVdZxN`j(0N~xLmmPBq z`b|E6>j}G;x{u|`QxGD+vZ~1ES6bpMtLjolO=p;%%X*Rs`bn;)GmP0Kyjh*alD>}b zg)f+z(hv*|V&UNnyuR}h2UnlN{F=kW#5jt@E$r?8LVf=LL#Kui5#>kaZyS%>o$adx z2~lFPWC}Z_Z2&;ssz6Z`#N*+X*m8LnhG8H`q5y!1ID)OhDvBkuZ7yFWAVffDI0OI< z5|o-S48tXNv-}Zp1fk*3pEa}X*}j`_EU7Tdsv=0DID?;!WU?$ZV)$qhB47`vQMW1} zM8JB%@XX`6p{6q|G#r9mv(el{2~lE-qJWR1lYlHsFbu;}@@8}_K{ye`VU^vT93;_( z{FJ(-J*t0u$(zy9h<1w=0Ecx~(;1hsT)3nG0AyK$rcE}K;Ol-nVfNZ4 zXh9FiNtK-&JCAT8+KAaHZ6lUE3weAL0QkrTqAwqCHef^?aqV$`;GfPoTIhbZ z?{@*m<&9~mi40IVT6^~6E*AD4xYqPy7CN$B&+EyE0Jq!mrkfwQiO&~5fcpl37VkJQ z0e%B=nh$qA?)w~mYR}=T1pMDOgR8OLL&9csy%CKi6{cyEh{waA)P(by-wRFxUkY%e kaX$0Jo!)eP^zmQdH{0AfdkiB_OaK4?07*qoM6N<$f(8(6@c;k- literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/rnd2.rsi/meta.json b/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/rnd2.rsi/meta.json new file mode 100644 index 00000000000..133d4914434 --- /dev/null +++ b/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/rnd2.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/dbc2435fa562f4ef130a7112d2a4cc9c80099894", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/salvage.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/salvage.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 0000000000000000000000000000000000000000..bb0267b918ddce3f0d7c95a894157493080eb2a6 GIT binary patch literal 1613 zcmV-T2D15yP)Px*2T4RhRCt{2n%_%XXBfx7DT7GMj4{+=MiWPZu7PNjE_4@43H2h3Ar&td*e-TE zK~M@Jtn_Y!j_n`lMs9~9BI%TdvE6JzV`sSFNyzj}0 zW%PU?cyjXkexLK4=l%Tv78Vv378Vv37H=muk-~G60VNo4A)P7V>1M{Jy}$OuJuFwg z5vo&!X~(?s$!EVKohd<*YxI7|Yeyryc(}$}@Y(FRLPRCGhPlarLO!f9tDoi-5d(N( z>y_jhVo^8!uy#G09T(E)a=_eVfL5B$lmGz1fQx?E`vCBjf8A6ku=Nq0bf!cA%FQznyX~(=m>MP$`ZmCb~Jgho!e7xOK z{~aD9{&9~$l6P>{?M1OzhQF(Fsmx*3fxf;T0L$2Y1#CH90GEpiv*maJyavj*mZ?Vf znOyhK0H|${E9f1b08%?#_3L_wgc9*68wuJsz>U zxow*{@9l#DAfCumu~^jIup9tjlkZ`9^dHZTD`W)FMgSQJKL74FA$_hUKu|^1&Zc*G z0^#%f>C7L@@0}x_$kXe?sspDd1vq>A;qR)PJ0-94-;L3A0O?sJxrWG~PhrPfEvm;$ z0DKDTsCHn-dyi*KiA8VFd*Sd1QYj!D9>K}(uQUPJN3bS ze*PRoAKbyg{vN*g$XRDBF$O@}O&}Oh9r5neBI4gKG%ZUaV07VY_*R#=^|>cPh1(D4 zgGq7?&fb0ifU~zBl3YVD;6li2N8$DZ-YSL2u52LWwbQqHbR^^Sq=2I%835>S*_92U zdRz9;kwKpV0Lg65My}cR$F@Ulxnwri_B=pOpG06g`a%YJJY$MF)&s?28GU^{^e?%` zGx;!zR-ZV(9ewU5KqwZ=0D#kz0yToY-)WlZ7}XaV24{w<=T|S$?Y@p=cH0&i^eG|d zOTelA^7Pn{9YXq&ETg*%Nd8^0edxZf;H-j)A-f@cp$N!LJz++MdV&ELa#K&l)CD1n zFYWL~I_GA#=^+#WzSSk9aWORo)D8)91waYD%#yGHBCtcPR^P}Z2oQ7tJ1>A-!7)JR z-DZsYJo;o_&`dv>%?Z^h+zGyE8qGrW?ze(F0wRMxg`FCQymlnBVD<@0w452^e>43? z>y3+hC1HK82#5^&lvvbFXMybI2>U%4a3L0T)5(ij5Pd?UPLLp~&m945h-u#f`EE1} zdG%SRH_|t25oTdwVPRomVPWw$AeLVRh1(5~OQiVs}l=Nic$t1IYROvBQg0Y6mkz zoj(xOgEYyXs%j1apym_!1?muTfWNDPkh6;5d;j9&hc^&URO+IE=P=R?SS?Ae;qgNk z05y54EcimW9nk0j>o!Btc)QAMh#hqsv>Ka4?BI5Q+N+XY_+oF6y*}&qVrwhevEeY8 z&DrkWjVO{VH?`ryRz8Gwg+pFD$lf5J_6gd<3bXeESxDXNK?pe?Ap4P`%}~ez+Rz$Z zSVTOLr$f@g{$5A>fsogZgZ(`Kpt_?Ai@G+pLUat)yd`3j;Ka)94Qiy%00H literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/salvage.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/salvage.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..22211b3984a8c18e40e426ec3d13691163db7cc9 GIT binary patch literal 722 zcmV;@0xkWCP)Px%j7da6R9J=WmCsAtU>L_gb%V+_tZkuUhs_{Tw?MbzVX%Wc6npR_43G1;vmop! zIK2BWc&9utJ@sJ){R)BGpE4Hj2DE#AIoyO~STYzYvlb7D2Gh<@@nk@w=RZ|}m0U&XDJIiYGM0IFuPnpcE<*>ZrLx5t4< z_#)u`<5IZ=Kt_o>ms<|7KE3Ok#62&CRBBdSU0g77eMQr_p=sP$%&)J|PcG36?kP&JeDF^Os?(pRV2iEut9(VqCokCQKak9_uH zn$Vy_JM^k%Qtd>T9yQ2HVN}f|D}^0B`@L5WVDq3n(8v8jhjxCUMd6?rTFNWJ$~$cD z9XrmJ7m|JT05}-r!Gl0AtZKK4E%y91FK^|g@;BFcFbpJMSGKB|dj)bjgDvP#Z4IbZ(!T zj3pmXs1!rFv@EjGCPb~1&3Z5bfg(^_+;DY9H!@0`+Tunq?*xp1yt77$Kcg9}fNUfm~V^ z_Qu=ZJ9atkUd77`NiqrmzDf9wfO`S;Zaw?G-;(meZ*J>3hzZR07*qoM6N<$ Ef;{R-<^TWy literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/salvage.rsi/meta.json b/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/salvage.rsi/meta.json new file mode 100644 index 00000000000..133d4914434 --- /dev/null +++ b/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/salvage.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/dbc2435fa562f4ef130a7112d2a4cc9c80099894", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/security.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/security.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 0000000000000000000000000000000000000000..ed7ab0ed09be49524cae4f2ada350e6fb246d817 GIT binary patch literal 1806 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 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/sstcmd.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/sstcmd.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..a60c4ead7872c54f8eb034ad61d9bdd1b8cef553 GIT binary patch literal 707 zcmV;!0zCbRP)Px%eMv+?R9J=Wmd{SxKoG`%4sm2+jG}}jMX2E714unp>I3w~L-YaqOnnq?eSk_m zA;E#xp{fu`Kv7&fRuZy3n03}k{EzllzKgXxZVZry1FUs znz{DBT{B~1X~=B`}!_lW)p0&NbCg_a^BS{e9*V~8jLgdj6|veQo`YUj63x)wk?Lrvc!?MnlW|&_bOP?wPpqyCq`w-YGy%J2aJ5RQg{rWoLUX)Dw?Nzrp zJ8E-v8$3?|NbY_=7-{xXTb}m@8wrEYT`-r+%W=X1yU03*2ei?)H~{ zvsofe7BWvMv)+h%-7rk5-UxuX)!^81V!!X#*9lt~E|dDfC^JW<@$~ea02uW9grScu z767%%u#mWAhe{Ji;rEf(~*K&}}I11c+*yrhw{GFM2 zAuq62f=xa}Q20f(`Ud!|>-fP)GwThpqx3z%-OMi>x3B_ps}a|H(C>rN>ua`$;tCWd z5C@0EK_kb~Ru-kYpxx=v?sO9M2jYY0IbBhRK&yEmjvWWfvQk$%==ZTKi(|*3)jY_2 p2dXGs0?&&c8LRTEbJC{_{s26wI8jTJ$cO*{002ovPDHLkV1n+=RFVJy literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/sstcmd.rsi/meta.json b/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/sstcmd.rsi/meta.json new file mode 100644 index 00000000000..133d4914434 --- /dev/null +++ b/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/sstcmd.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/dbc2435fa562f4ef130a7112d2a4cc9c80099894", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/sstsupport.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Backmen/Modsuits/Clothing/OuterClothing/sstsupport.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 0000000000000000000000000000000000000000..413254b36b9be6584e0dc5dd0b4e185d9e64a4f6 GIT binary patch literal 1881 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 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/advanced.rsi/icon-on.png b/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/advanced.rsi/icon-on.png new file mode 100644 index 0000000000000000000000000000000000000000..730358201221e784c01e315dc1a3319611cd602a GIT binary patch literal 493 zcmVPx$r%6OXR9J=Wl)p;?aTvxw{hSIaG-xRk7w?83LR}oxK^po40tuX=p`o#+9MU-y z`Um<4Lg>eEcSDN?5f$oEkzff085B3P*bsM}c3z#hb z2m432AKh_s7b-);BLK{LXHg`XM|Yf^gBt3>GPQ?iJ(jyrxw*Ycb*yQ}fbp(FK@q>; z)njISrF@4X$<|H%Cb}3;G&OPKE6=2}EvEc}7r)?TC9%Qg);hqSeu1R{qXVD>w>K6> zQ+}Py8#~!Agznc70JRiJ1^JdeaG%vv`(51`L_8*$E*b#wS<`u9a?Fhd=`;%t zT!^&=pvmXt;*`_yiBOc3)>?W4n_KHntmn5teCMeWu97F8b021Ke0ek>t WFwoT=1M4dQ0000Px%`?k9iQc0cF_HE`k4l~VyuRDO}n`WUWzx%l8 zoI*RGTCv>E)j%C(0IPvIwl)DpQ{8dD@cH9%6p`A7n;(%gC>B3@$``r-tARQu+vkYq z-(zbN08UZrB#_HzF#PEaB7qB(g_j_nZ`lT_orIgO*e6iiMSt`8wsRbZrII>Zp9wMm zSf2^@9QW%s=+3Y0+dcXG7W9(;XwY!OSVS(LL0Zp3(Nx&uO8@|SddlYxUG5052>WihF7*x>Lg%|8K_n) z$jx0(b9veUyeFVqv5?DWFg5+053%yzj<0WnR8nV(rou255tpOb+Whc$EdY+iAH<#( ods|KZf4mO)>+iOH0nz#X0BmEBtLP2IQvd(}07*qoM6N<$g3|hWz5oCK literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/apocryphal.rsi/equipped-FEET.png b/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/apocryphal.rsi/equipped-FEET.png new file mode 100644 index 0000000000000000000000000000000000000000..65f681fa0c4586f86063ce6060886cbdd01184d3 GIT binary patch literal 419 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D%zV?A9QLn`LH zy=9nv$U)-R$K#jIiY;gn&QXb0-|_=RbK;UcN7KdDgn#V|k(f?NUBg7)@1q`ZF$d;?AFO z_JK0)la`!STm2_r`q<=^pK9J8YfoMlXJ7c(qOa-o{j0GvmKlFvc3SCj!p=!5ywg^1 zp8jxs_T<{U$P}$^pSu@hCS8#|dpBnCudUm>XPxuwKDt>Yb8p?$+#`98zeWF;?!N1t z?SAl@dD`nThtR(keI_z?tXJ39vh>{Cb!hsVIfj9EkFy%5t?vK6{nY)OzpFrj0R((#(mkZ164wTR2eDQU%{>$F` zPwH!5+N>8?^-*xeDV95rG;Z9w|5Vgz{`DUmca($+&Tie~)Zs6(dHtJ{H_l3eZ1HsU Kb6Mw<&;$TT4aK7X literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/apocryphal.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/apocryphal.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..39601f405f0444b25eb330cf5c97a5cf0cea1310 GIT binary patch literal 377 zcmV-<0fzpGP)Px$Gf6~2R9J=Wl)s7sF%ZVT(<>Aa)ItzswY$PXu+T@)%6Ga~@-4&%xD$)p;}#aS za2MRgKU-)O4RMmq$bp6VH3{F4%w%RVfWzT6rKJa2TS^mrSh+3Juw0PNC`^i}3M zACHH~^CN1t3I>A@b&&xb z>;QcKm!%g`dg#YC5Sxr(j{jo(mQ##zOy)z#r}ICNY9 X(F>%)%_Ymm00000NkvXXu0mjf!j-M_ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/apocryphal.rsi/meta.json b/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/apocryphal.rsi/meta.json new file mode 100644 index 00000000000..9698939ebfa --- /dev/null +++ b/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/apocryphal.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7e4e9d432d88981fb9bb463970c5b98ce85c0abe", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-FEET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/atmospheric.rsi/equipped-FEET.png b/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/atmospheric.rsi/equipped-FEET.png new file mode 100644 index 0000000000000000000000000000000000000000..722b88e4fc843ec47055da8ead414c07416d1ebc GIT binary patch literal 893 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=oCO|{#S9F5M?jcysy3fA0|T?Z zr;B4q#hkaZd^3a{CED&gbwvo>=vu~N@=ruiYsC&r&LG||VISuu*{)O<)Tzp?{;04d zpo?8I?#io!!5Mi@8$609^xlxuTIiOo)snZ6Gi9ZC;@tdKInG;VL~j0Q@Y&%;TG`F= zZztd6J^bwyAfwCBwV2hRa0`P*pBTf@i%bhFq8LQnxf>p3FrrE-6c?z-6rbJEY_9!v z-Lu;1Y)W|xW!&zrEKyW=^zn0^N!Ec)Mf+1#ggmcr%hs5F-}|XI=Z?ymeC99w-zT+- zY`&i$uVCAMz(O#tRnj=YSn%rFuIcxy71|Eo(Biu7)9}P{X@29z-_06Pr)SLhdnk;_ zLEOIXv4x-NIfcIkjE+u|H05=c2Ndn8*<3%lKiDpMZqV~7LIE0AD>!nu>)&Aull$=Y z$s3+CF;n~5J5R{_eS4I9-&DW;N6EF>({+NFG|os#9y-!){by0`=if~@-@4ns_UU$=gg2)Iw;wnZ7o)FyblU&zFG9t>&B<3!H?H{k zgEQzSkG-Dl{(Ilp6O-#Eu5IwCy>MFIUoTnbiT-|7#*(1I_sjEAf9&lDVw-`*BmM1NU z_;=#l6~}z$<zCLQRH`nRT9`2TJ8MYoI+l1QtDC|f%xC=;P5G$0 zV59nj`pb9LD|G8KhD=`0wRXkH{Hv$;gxvL9p|kI<`0;-e6;+nGIW8@>{~>gsn%QgS z+=R6MN|OU6I(F1&&EsOqI$@;zX8QT-33)b;iv|92ZTcakP{pLN<7K444wkx)`>R@y y?7e>jY<%@smXPgr4O!nDoo>#byBBEvPtG$E2Tq<9)5!(qCk9VfKbLh*2~7a+5s%3L literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/atmospheric.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/atmospheric.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..b9ecda2369f43dd3ad28b17c6a07f715bb28837b GIT binary patch literal 488 zcmVP)nxX0#JbG zq5{O-I+@e=m^$#?uO$E~=@gETuT+if8x2S0H+7ngXDI{Ihf*5FpaAS=O>-Sa*b%tV4_LJ{n zV8OTr$L#^wv*s(8Tpse&$@myJcpyE%S#vpgcIx&ufpBHyC(U<%Ux3r=ew4e$>g#*8 zjEY`G{#-?*FY3~D)%pyVvxB(R!}WK8s4>*`02JjaWDJ+C=_;JMqFC!(4nMZe`x^=X e0U!YW9l!^~zSQ@Hkr5^U0000Kj*P(!rHwbb#v!E ze`fdg`=Y05r@tI6%=xu$x4U50p<|nNe7tKn-*PWYPG0V8vzPZDt+_7yef{=Z87ARp zOBESP6$|Ai?elEl@HZ67e;+R8EBL@PJ(Y3N-^0zd!Y*PDlin|#T39-VY3B93xEWX4 zj;vR4P%GUW-zFPu5X>nQe}p@1+ua=r`|HYj{Qr0{*~QrxR@qqHnlAo)|2*FL#-Bak zzx(*@hl!lMcgnum@22joJIN;exc%5#6$MYfMJhA@=+w*i_?BBSUuis|U;XTu{<^)- zukCjv*5|@15AuB*_N@3)t8cHniOqbUz^1kb!Vj*oym|ZXfxX7+@DGX+4bj30Mu90Q zamx>+?Ozjjuzh7cbBb%@} U`$3~MFrpbeUHx3vIVCg!0L=U4DgXcg literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/civillian.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/civillian.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..adf0da59bb1fec7cc3df422541d28234bcd958d4 GIT binary patch literal 353 zcmV-n0iOPeP)d!f*wKfFVs&|U0OC}J1) z`~ce%POdS=TpJNf-jqBw_a#RjF2%(103N^t%nM+X?rJ)hQi>o5I`4sxs)~H!1OSS! zqF6-nx|x^7Lp;l(DYi}0j^8RyY7+#z1yI1or>9^N3*cjC1|N$U;$upddG2Bs*leALhXI{Z4|>o`@^xFU(Tm?OnvnkO+h+m1AuIEpUUR$ zTLI91tLn>sI{rC|O?|6`JI(8l$OCwQzXW&zggB>5SLFS<00000NkvXXu0mjf_x_NC literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/civillian.rsi/meta.json b/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/civillian.rsi/meta.json new file mode 100644 index 00000000000..9698939ebfa --- /dev/null +++ b/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/civillian.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7e4e9d432d88981fb9bb463970c5b98ce85c0abe", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-FEET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/cmo.rsi/equipped-FEET.png b/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/cmo.rsi/equipped-FEET.png new file mode 100644 index 0000000000000000000000000000000000000000..3d40cb28101250a8fa7561d76d599a609a20e4a4 GIT binary patch literal 497 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=oCO|{#S9F5M?jcysy3fA0|Vn? zPZ!6KiaBp*8G120O0>owkgi}B)MdFGwOo`b)3!x@!xt90LuLv~d~;_zbWMH0Yt#Hp zzPzN&;PsgtwX@aoEqCX}e*0VVSzR;D&!LZ{L57pTQi!2Qh2e<@!-Qm?#P3XQ zj_0(yaX)&I+_Z~Zp4;8;i`#ei{8@jo2kG`a?_;(zz1b-hEAZ_9_ZYvrNetC5-{w3! zC;oY-v0S;s=358mS=#Tu(JK?ybbkArh5(N$l&Sf=d#Wzp$Pz@_sq)x literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/cmo.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/cmo.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..bc777e68ede35371706ca1d8009c4e39555bac54 GIT binary patch literal 370 zcmV-&0ge8NP)vA9-rs7NQ*K11~+S3;XMtwu^A9|*}M-u;^U(}J3%0W^RH&;XSHChL97@1x5Z z+QU)i9@>uGB0v2q%SZ3@b6Cf^vsGI@}P{l4&vudDL0L*oe za~AkF;eDk5SnXJZqQD|Mb%zY3G{9*yH{jg~B8T2?oBKayZAikFMZ&^ZBL0BdiA&7|-a3cb{RlKuZCjgQ;aD`-9^o zYu=td0|xo?3!uK8dP-h^&v#nszUParZ2wCE3fsrEL6w>_iZy@+&;b9^3usS}E@1i# Qh5!Hn07*qoM6N<$f=n`*B>(^b literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/cmo.rsi/meta.json b/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/cmo.rsi/meta.json new file mode 100644 index 00000000000..9698939ebfa --- /dev/null +++ b/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/cmo.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7e4e9d432d88981fb9bb463970c5b98ce85c0abe", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-FEET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/corporate.rsi/equipped-FEET.png b/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/corporate.rsi/equipped-FEET.png new file mode 100644 index 0000000000000000000000000000000000000000..6c1a62c07d3e29a66826fe97e0db7b6b7ba75600 GIT binary patch literal 514 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=oCO|{#S9F5M?jcysy3fA0|Vn0 zPZ!6KiaBp*8Tv6fO0>#nxS9xEVRA}ZZn*I=!@L8`6^!eTS=t;ZQ**HvV(wLx=$WhV z|G^;(uA7mPT=#!#B>a#4cD82b-L!wT6OlX8t=^kT|RC7r-#P`v=@Hhdcp5@+Ms@??)0a7?){Ha zT=`*heKcd(YE$XJ?>Z_9TVC3y|JxaI{{J$b>X$#aro3ElVc%i`J1LN)K51%9_D)L z-2{Wv_I$rtlQjPFaa1!^br%(JnpMvJu&l0C!polNm|hjrwTU3}zg-Nod~ Qz({5AboFyt=akR{02a>Ih5!Hn literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/corporate.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/corporate.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..e46e590899950a23f25ebc4e5246140d8d862180 GIT binary patch literal 331 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5DEQaY z#WAE}&f6&mxtbgV+K#`t;@TfKy70CI1ENQdX>U$cuVyB*edFwt$gGqG1cXp1s)5<^omzYj8w@V+Z zlk2uSc7wI)zzv(*2~E75E%zA%K7MM5JbLAHbGxNZ&rY6mJDFTWU|%Eh97%VFa8vNzqaeO2j>E7yY(_9OaK2AG-O~laEPyB YvS%!44tqK+8yFA_p00i_>zopr0K)x=oB#j- literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/corporate.rsi/meta.json b/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/corporate.rsi/meta.json new file mode 100644 index 00000000000..9698939ebfa --- /dev/null +++ b/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/corporate.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7e4e9d432d88981fb9bb463970c5b98ce85c0abe", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-FEET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/engineer.rsi/equipped-FEET.png b/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/engineer.rsi/equipped-FEET.png new file mode 100644 index 0000000000000000000000000000000000000000..1f6a354c195986e591c1f50c0bed0f6ea1b8e312 GIT binary patch literal 893 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=oCO|{#S9F5M?jcysy3fA0|T?Z zr;B4q#hkaZ&SwidO0?Y%Qe1jN?PEai6u02$E8gOrO%bAAUjz33c>Eypi$=zO_SZ|N z%=@DB$gtfkZcEctg$%u2Q+1oRuDzz_AzYL(%f+i`g2jE6&AnHX(#{?`e1PX>MxPkN(ThwAETR}h+_@VbWiSTF=rW*6rj)(AA*&&O|9;<% zOVg*lz1{Y!`t96jBFYU7`Et$bH>ldr<5Pu zi`>`a7vKJItSyE9|g3H@0asot{~`PbXE zem`quuen{|=L{LQ>>BO**0Vh~-cIlP^jgfI>Rraoq{PS7ygf&YHQwxI)4BWfbcRjS z$Hr)h+1q~932&B{{-?0!?EfQa2VP%NwYICpDl zCCW8(j~(6Ia4~>$ivQ(#%XXYt9y4+OqmLWp4?cRmWqwb~E*2l%ZHh179(lEjf2Pue z^S?Ii2&;T>@wUQ!$&|;^6@L!4Gq?KfN&RgubjtprY=R}{h1Ge>YpPuLX|Y89tGRo8 zoj1eY=$p&aYO|&HcKH~m_Rm(6>YM%Z*L($>v4|YSbLxd0rbe2det6b`{Wz1$TD!@d zHngb?WNhy-)2;{dY2&rby0Hf3xVOmdKI;Vst E0BED4k^lez literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/engineer.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/engineer.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..b9009f358e127be56e0d55d68dc1e0f867e602e9 GIT binary patch literal 483 zcmV<90UZ8`P)i&Ccuf{Tjas9RO=UvTUn zq2eE)lQ=twlP(TU76*$YP_R}TZ78&KskI{MAexu-(lm)b+6JU@501NhUvlsB-n}CO z_+#S$9DoCGfc^tmnv8u+M}jV0Dm3twev!)ud;ws=msh4NEh|6bBvpf#t`xN&_v{FO zf<(tcp23|u1*h!aR}X=mMSlRu4%SW~T;5~7oNUXGbTY$-q@~y9C%)aUV*m>9mO2Mw zZk^2O8{FOV4}eNKgH1@~29%)La8!Ov*XITOSt-KiJMs^}e%3U{#c|VdcI&BAFA!8u z0Mz*`c&p3J=0i%dpeSfu1h)4jBy>Mn&$qyS=P8q@Y;MdtpXm&Wfige&>Z2P#ZmT;0 zd)CqBl}pSCp1QGa9s>*ROAln__Hwe>soU2C!YY%gI?lu`vaR{0>gynZN9-?}zcacp?VS>P$3|sGfaBe>|JV6X z3(ZL{d;aAfe^7bZ!@WPx&Q`3bW_mhxv*mQHf>jLs9mn z{;FYe&Q_@xU*Byjyj0|WT=iRx-Q5~Dzt9IN4U>~OpS=~1J6>44ook_okl4YJe4E)j z?vyW{!Z6KL_xQ)^UC;TZDjeU*zx%E>-_>2b67yI8H~Y;HK4X7(!KX7Xch&FQskNWi zJG@~^S>dOa>znwULmSuRiCN#;t!}w9%u$o^c+ROt;ZI-mkDWhmRkohzTfYGIaKH#6 z?}n1B)(P)fTFxEzZus(Yd#%H^vrSu$^eg`LIy7(T``w&zOgGve$M55RaclberZs!M zXm{`R65n&ap=STR<@)ih&Kql0L#$Yq#=pNjeZ5!gMs3aqS_X}GW=kJD&vf&5Ol4=R zYt#0IH!>$qP2^NLx#Ut@N$2V7$t`b|a@PN2aFjG#>G+5(YHU zy>cc;E~S)KN(iQJYOm1ya>uiKYQ-@*w5JQi2mo3jODx7IM3)Ag z0v(7!0j#&cRHIe^{lQuVvg}mNa>Qj9-maI{_pBKa3QUIzCIQVz7VnZ0V7c%)wOY84 z&NvFzPz8i&^9v&YOfJqi`oC=U0YdCO-1Cza!$om?toKQBuGcg!o{1Ie^%3g&K9$bw zYXQ)Hi)!+Q`ah2t@iocCGY<(ZF6Wj@m(mOUun+PSu=R+t->yw>?pi`EXl~# zL+5_P;?0xaAFI*SdGKi4?u|!xZ}?iY(|BXbp4~J1tK9Fi>fKk7H{L&ifji&+{_(ek z^&hnFY;r#Y~6P?|6FXirhTmHU9Y4+di zd>+4M#odqeXt+72|6BjgZ{HZ4IQX7E=eNCY`66Ecn>R51=cmc|v%2c=yH|mVnXwHY z`){=bG2QuE@_3`P{qa)9#d52b+^cHXy>345@rSROH$BPk;Jq!XxZ3$s literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/magnate.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/magnate.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..184649cd5d9938ad6c9f5d5aa0ea3447aedacc53 GIT binary patch literal 323 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5DEQUW z#WAE}&f6(_xeghKv?_OWr@TPnA{BqewWp5{5a{zjKg0=F0EmTI1;CSdE;*DB^zHo zf3BcnwvM61IyUO(5%Q3AE3qXou)XlkpDmqt@mOEN R4`2W=c)I$ztaD0e0ssOvh-3f& literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/magnate.rsi/meta.json b/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/magnate.rsi/meta.json new file mode 100644 index 00000000000..9698939ebfa --- /dev/null +++ b/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/magnate.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7e4e9d432d88981fb9bb463970c5b98ce85c0abe", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-FEET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/medical.rsi/equipped-FEET.png b/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/medical.rsi/equipped-FEET.png new file mode 100644 index 0000000000000000000000000000000000000000..6b21ad92af5162a5b7bd19fe6656df145978ef7d GIT binary patch literal 469 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=oCO|{#S9F5M?jcysy3fA0|R5b zr;B4q#hkaZ4E>l51zhV@{G8Zj7@`(9h}>yVlTm6vq3Cg#S3`jH!Xd_nzSR!LPGlHG ziQPVU`_KO+8Rl`>|6f#25&6bXrjOw&%k z_TO!1YqRWq`FHcppEsX2DXXcPbWE&!wWL+zPs`h%bh0znJewQJ)W^qP_pUgD@7wt* z!zuaKb@nf9OJc12TD#-_yu-P1{dymM)}LK{QeP-Rf9`qxOMkOUXZIZEtEj7NJ$v)^ z{n-9L>s#jJ-wfRM@c6#hI_LF;9)wq{Y1jxf|KGQb7vB{!Ce2+c!nr|y_t)pw)8EP2 zepoGOoRquO^hLe^Hg{us$Zv8(h1!8{PyUGA6p7$1oWEgd+cUn7bf&7e+|!=MB;y^@E{asRN2`pNWn(pDy` TkhkibP0l+XkK*2chU literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/medical.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/medical.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..d7bbf5797d313f49be25ab3c44e180d184d7900c GIT binary patch literal 360 zcmV-u0hj)XP)`IA3&k2yIp(( zhvJ~FIys0s2%UV7>IqklG)>YPDTVwXB$xBk9(9Po6V;wJ5ely$o&L@1X8<7)vAF~0cc_II-PI1 z{0jjOt7U%9(G(Kmp zX|~Uwah=^{)+5Hbi60dX^|U!pVcXs9x(VlXrf-PTEpIZ3O;_++u_1*7dYhULJVE6#5*Zih6yqvk`q3!hl+6%)Dbi8KW^EZWa#x<53 zGyi@$v(99p98gSjPfC8{51)G*BzIoX>PWZmNqu+2rZtE0@+=1H-SO)KVw(2u+52H< p6)S%vlU}HBLErsXqI+r>q?Vst@kjmJVPMoTc)I$ztaD0e0sy+B&)fh2 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/miner.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/miner.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..4f79a07fd10abb777bba6921c92258df9f34e7a5 GIT binary patch literal 356 zcmV-q0h|7bP)PL~seffD@-#a48r->$#@11C>%=pPQ`>QP6T!ka}!I8>-Jj?L5y3kY|OVg9eP0>N7y& zum(efz%_msKLMaQtt}27JC678t>MQpcLKm6=ksaUSJh=$)3|+)JAk|ZAnw$o!r{Xi zLQVi$Z(DYHsS&Oxk79TG@aj7W;9rUW5g-Dr4)6wU*_b=eO=B4V0000u+9^b1c&;Hx*5FHija;me(El^f=-exDb}b-JRm zHrx1d&E%q@nkjSdM>ov=wxL46PWj&XG&bd6t^Ly(cE9*~werUPNSk*p(hn<)jjt`A zb-sbsZR&%cE8m#iztN|tzW=*$fPVPff91vk-zBAYZ%eHT)4G4F==cTihMRZ(Tw>nb ze{R>uI*o&V|IDy>J@%ThXGfgk^n>di_Ne9G==pOsSm6A=e$}lx_u3CK?J{NDRu<2ARQ1N$+r0ln q)=xOBz_>rMU!MDXZ#G-op0@a-k>_VFWc>+>Nd`|>KbLh*2~7ZWc+Z*u literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/nukeops.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/nukeops.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..b62303a33848837c35946e2acc85d105ea52d9bb GIT binary patch literal 355 zcmV-p0i6DcP)TC;-F4${{PXwE<2mk@V31Af`g0A`F$)eG)wh#QMOTl|y z03i5uGG=KKzYosuj9qVKu;qMK^P^J6gbu>F1Z4mVKh1(p&H$Ob9c07ghw_*}oB`Cp zCcjCYX27Nlon-*K!&?dV_Z+@t(RAS9bpHCDw>CsU%TZ;d6>Xuc0n$Mv=%9f>TpmpQ zU_(HJ0NbVmv;Y|Vqqg$4HNSj@ft#kIGXNa2Sud*fc6Y37>Q|rH4j>}{$ad;cVd`6# zfYw`8MrJ+kRqfWJSld1YXTJ1b{{sOa00e+8^a2x|m16(z4JrTt002ovPDHLkV1nfB BmSg|` literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/nukeops.rsi/meta.json b/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/nukeops.rsi/meta.json new file mode 100644 index 00000000000..9698939ebfa --- /dev/null +++ b/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/nukeops.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7e4e9d432d88981fb9bb463970c5b98ce85c0abe", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-FEET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/nukeopsclown.rsi/equipped-FEET.png b/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/nukeopsclown.rsi/equipped-FEET.png new file mode 100644 index 0000000000000000000000000000000000000000..aca84150a0e97bfa0f110955ca40c36fecfee494 GIT binary patch literal 615 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=oCO|{#S9F5M?jcysy3fA0|S$! zr;B4q#hkaZ>^+zQWsdK6QcUD9RcT4MaPfjjjDp40I~OEef}NeVi1A(x;Jb7$!7-Sn zm-nr&(}W9G1lU-ucBps?JuA5Te(vAT=bu_zPQU-2`T5Ux_p0wdZ?~4Ym(OrUkTIc; zgQ3`kVTLl(0U1GtXB`X%?ko+KN?4>aI6K%5i_JZ}Q1R-%dQH}4?#i#Cmi}6|PBd#O zL(QT7Kiinpgm-6M>dpz-nm& z@qb@aUsj*FljJg2{@p#tzXjP5%U<5Oz3T1bnjf4V2VS`~W!Fvmq%8aSc(Q1VQR>>7 z>){V1vLjAhlsG(ZOP|0gja%%xPt3m@*0gZp-7Oz@Mzt_C>P2halkK7bE9O5kcu}Jt zyyNW5D3`^}R_$+{)E&1HPfw+q1q0A)`?%3dwg=kHQUNti&rn0K8wNp)>ZDDE61*Ue^$j9 zYqOte@0*jaA1sY?U_a0FXBB6`;@ee>vNoI_7ONfLoeNZ9$2h@4NI!MKpR2%>!{F)a K=d#Wzp$P!#!wHN4 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/nukeopsclown.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/nukeopsclown.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..18a36cd8c103c29ea5cd8624ac43d138fd4a3990 GIT binary patch literal 403 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv(mfq~K0 z)5S5QV$RzshTew*L|Xk1Dl}PmOLtv(pc5wWNnA#TwNNOlplCAR+azldbM;JC^_4&5 z=P*0TS#-EvoF3+qI_k9)7!bX0blc58gs`TlI)!y5CLdop#AEDj8Cw36Y|&r-5XUI+ZeSkH$04e5&h#;ua^6c)zWftZAIH6B~Qdvq}sSC zOkq&^^W!he8jHVn4yV`iWmj1*V-W<`hzoIBF~LhjoH>+?yaxr}?CD~5ROY5excWW~|%JZ8P0 zcbz$;%kxkCkkD=Q%xB6Xj0USe#(8Nn-Z{DSjsNq;NwvM&`|g&{oA5@qMSEHrbH%3Y tiQc;Gy|K<~rU%u3R#akO`Vr0`|7TZ)iF5QcMPMj1c)I$ztaD0e0stuQq%8md literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/nukeopsclown.rsi/meta.json b/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/nukeopsclown.rsi/meta.json new file mode 100644 index 00000000000..9698939ebfa --- /dev/null +++ b/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/nukeopsclown.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7e4e9d432d88981fb9bb463970c5b98ce85c0abe", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-FEET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/nukeopscmd.rsi/equipped-FEET.png b/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/nukeopscmd.rsi/equipped-FEET.png new file mode 100644 index 0000000000000000000000000000000000000000..408655f6dfa773d8c6b53c3d32df589985bf6ce3 GIT binary patch literal 488 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=oCO|{#S9F5M?jcysy3fA0|VnM zPZ!6KiaBp*+50yKh#d77-hS-h()vrj!a_HHFpuC5`EPi2>2mN@%m$!gy`Rwmx} zThBk8bN|xu)&e0gDhy9N7*0%Nn4rw4;LhaG$I^fH&$-s8jrQ!ZV}Hud`JwyG z;aA)KD==t&?9NTP9oC0`S$U;mS;!XpY;nRsK>7VeE(zG z=WEsMr-U{nr)`$jjtyyg`uuxj{D0UGb~; z#w&cWNngwGo>StLq{ms+P3MIk*fO@Q?V4dN(41=eyr8cogYoV>hTmoTXDIJvssH2m pRl7w%^}+rsCO^X~>jh5n@7{QQdc^Z@Nx-OM@O1TaS?83{1OWGL&9eXi literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/nukeopscmd.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/nukeopscmd.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..e4a82db973d1992bd37d80d919fa62bd17baf6fd GIT binary patch literal 353 zcmV-n0iOPeP)FI{U(NKO$Mu0TQ6t!BoP>9ct zqu>l(K!`EFa00;MbjNYO^*lZU2z~Z&&nzp3i;CjZ#btT!&NQz-qb^8eX8@3`?^D_A zz7+tSx2`eor{}M&*t|aWKiO=6Unu|tfB?_}IdP;Av5`@a00000NkvXXu0mjf**B64 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/nukeopscmd.rsi/meta.json b/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/nukeopscmd.rsi/meta.json new file mode 100644 index 00000000000..9698939ebfa --- /dev/null +++ b/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/nukeopscmd.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7e4e9d432d88981fb9bb463970c5b98ce85c0abe", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-FEET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/rnd.rsi/equipped-FEET.png b/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/rnd.rsi/equipped-FEET.png new file mode 100644 index 0000000000000000000000000000000000000000..d8a114f4613592ed283ef7b47d43367ec31b68d6 GIT binary patch literal 527 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=oCO|{#S9F5M?jcysy3fA0|Vnh zPZ!6KiaBp*ZS*^AAkbE?;x>WHd8y7)=?P1PoZ}nqiYi-IIVCmaDS9vE(-nHNuzpo{ zkEp6&fy9pA(=7aES=a9@v7GO0sm5^1kTIZ-v!Td`VM;R70vTb3r!yEdjx-wmmrN)OuKDzHD{tTZl}vf>-<^K^?CsWB zlMfW-ZvTBi;KR>PIprJwc}w=YN37q@q3Xf#_VYoe=AE7%1)dK!_;=~$FYGn(<^H}$ z(=IWzB`k3@gWkWwjSkcHCR^=2nDzCOvc<&DKWoD79sfOl+G!1;9WzYkUOo2pG549r z9ury?a6MRb=acZ`~`cz1`8|A*%@-8I%S{SbRP`_$*Gb-Uh0eS6={ zI6q$e`q}gI`~S&*m`|+FWrQz0ch8xzNnTwxdE4pavS#Pvg6L0gIKQ1-SkC(6?8#mG z?oKdByIa?|?u*!iumhT%JF1yxefX|D=h64cA6|1wB>6iCEB+SUb;0{U{2R`UMVb4Z c!uK&QxBh)h%?TR7yU3E@(GA*EKpmQ`GP| zd*QEr(We-B92j!MTLc;WmPs`&cv~L*Hebp+U^}C!`8=Q2dMmZR%qK1%a$CUpJoIm= zFE_&$7x`=5!e&oP)ULB}G%d}LbDjNX)6N{xwnd7^&fiLQW?=ZbU3G<7x>s>nrk?kN zeAV4ClaJXi6m_^3z4v9QY4BfbM!Uqd3>FhtEtPrwL!bG?`WvywgM9n0&g%TTjfKU5 ef#riZgSqnVi7z&sZF~X@AqG!ZKbLh*2~7Z4xq`U> literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/rnd.rsi/meta.json b/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/rnd.rsi/meta.json new file mode 100644 index 00000000000..9698939ebfa --- /dev/null +++ b/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/rnd.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7e4e9d432d88981fb9bb463970c5b98ce85c0abe", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-FEET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/salvage.rsi/equipped-FEET.png b/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/salvage.rsi/equipped-FEET.png new file mode 100644 index 0000000000000000000000000000000000000000..0358365a3a9daf9231ca311446781f68a8a21cdd GIT binary patch literal 609 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=oCO|{#S9F5M?jcysy3fA0|S$= zr;B4q#hkaZHu@bl5NP}F<*~tV!$t!U38m0Sk`p9mI3zuj6{uD(J7WET$-pq=m2t?b zD+@0ylw&H>`t&mTzN z_df9E731~y{u2I|?7vr?WQ_BB*Km+G$zf|e%=BGl{Zd&?WuE*Vsd|%m7NCj)F^pWlcIL^x*Ogw|kpCxcQum7P{dKx~j@{Yi zd*R!!k6()#?-YtT%;sfZZldz~aOS^%PcvtV{mm$LI$con`EL5D?3Lv;>Wn5Y-abvd zR#z7-!5@2Sf%4adBC(fOvGkqiPB^xH-v4u#E%z0(%~%;8%WAjY`@ES!_qQF>tU)zLf${1r2Boyv2HwqKjSs3=?-xp?GF)f5 zkpB69Lh#-uZAYe6ri|P8r)@mB&okVQ!Pj5=V{0VFw~$W`k=^1m z;xMr9)?G%bH~?h1u9h%^n3x2Z|LWBXAo&(-S*)iNhByK!|HtPDlA~bnfvaE|i-Nx0*BFZ!wEkl=aPjtMIQ3C28^Qo6%OQiy*AQ6|-BF-W z*mn!Rd3YV*q^A5Ixu5}Abm1Yyx5(lkHpoJlBS7p=eDVxyZhj!>A)F3?S&kaFZ{ejM zW?Fa)_cg?Ezye7S75%h zUI!q@H#z_%Jao0_Y>JCweA$Ok$|eO2t@gmE14bP%>Ht~*0ACAMLQbcy8Y!fyHku^3;!d8Xw+q`LKm`kDt>6rQb1gmK-}HHT}TP!Z}ZX%9G~B zmY-d(t8gms-rIS9zho-RUMJantn(Vby+lmX#)`FP=KIY1oIJf|xvIm#7TLI~|NXBB zU3kwQJTGxu%sj?e~e>lzaji!();KMUxf}l zjOkozH+92oozDNPsez}LR*5|{=8R*yVP^m5z0aHYroG_{ZN%jFumsrdi&=a>RX{J~ gt>_9V@7R5e>pD1U1KMWa0VWFuPgg&ebxsLQ0FUAT3IG5A literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/security.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Clothing/Shoes/security.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..c9f91fa9fd2cf2e5b37d998fdd4036ba5bb0c4fb GIT binary patch literal 406 zcmV;H0crk;P)4*7FEC86il1xCooaFufcn7fC^JHz;4fv#%lV&=I$R*$j4E#>YJ$E*~GF~Kr zk+3qIPbJ9a3gE34+L*=wzojzd^O*~8xm@!E+plWChbxIA1Kc9d0OFwlv6kQ#J#`0g z^(GL;0JB-|c$XV2EZ}JPr~J;}EaG{HNR^Nik5DTAnzR7vRDsb}qA(x@6@6^uE)WF2 zhK5oCP;&Y1BS4ssLI}C`7)MtIB>)C$HfyJTw>vnsMPDA1cj&G|IGIc%`IOi*dPx%+DSw~R9J=WmR(3wVHn4Mt08{0fmnl(RE+$JyckH4nxE{d5Q7lOj~lOaqQeV4 zOA<33UD%XK1qFf$QGt9jSSqF9;Nak%6V(WfqIBJAX;91ykeQk3bFbdB(+(=gF9zVA<%tMT zE0k>ua_9i-r!MgE#2Em(x~%||6q&@`APx;cy)enr>z@ETOilqHJg;>3=MG|8BQ%OS zZRD1C@JJ5;OLhk&mF<}0*g?$&b0t|h*#OKh&oRF|x2HV&s=!9`#H3g(EjGCUopuLK zyW{@=c!sORfuS{YT0Mff5`dB-6YkY$UcUK4XsQA9XA#1xxb-&Nubh5=0?%-@7^l}@ zG(`X~I_ARCV#B=}&EMZ6gr*u0!m8*@uP08gL8pzRAivmWf7myGWZq$2WM*Q8`QmMaurY^Lgd&$bYL0SpYS0bs}oA~>y0o@=Mw zAvaxCPBsFmo)|1fJn)QG$@FU}>?*pT*VRx5XG> zdTLg2L=~r?u>Q8FiBYribzP1p-d&se1Go?pS9_! zS)6tUqhl_)SCmdk#R|+!tT3J%1%M_-jUge3IK4(*+t`TU9m&L`SlProdftuc`KzbE z_D8g0aQ0og*kN5{JU5EZeZMFSaRXbYK$6n&E6x9APx%6iGxuR9J=Wl)q~eVHn3hr{QP{Cu&+vql6$5GdTn|g^L&xrz|e*;^5eSA#H~K zaB)b)80yl+p><7%;)$4BTnt47p~S%=s3i2-!j*&`Y0n|vwP}*;nZ@NkaPZ#qyzle< zzV|-wfrp2OhsS?La7tDx6?>eUFPPSNcW0Xy`31o#ewsugF}#77uU?xcZk<)qy@A|(!F;@=1MvRW0q?#a03g;b zBBxtC2wnJ_``KAAca3^OqxSWSYXgo)5DeZh@4pGy!j?FI5#8&WYsCZWM?8D9kD?l6 zvL(Cz&_|%Y^&{d3Ku)*#R6Yb?bW@@kJKr@|PPh25tf8nQq-2qBbJnbF=#1Pe4BY5B zC-K$QWg)PBgq&`5#Gi}ofBbDfqnn2q(LFogUb@ZrM2JkbBq*vuF|QGgOOzL<%|RNj zZo%Z_6BA&3BGlF0R@}+~J>748g@-er`)Zwe1km{s)_7_rXG#$t`c@m^=5+v87Up`2 zmlvnalq^DALQ#!@wO#*+EW*uMvzXVYCc}JNYcl0OzMd&rw8zo71VAybk;#^Xp_}kD zwGEwWG7Nwe@sWy&w%AE5;Y`-K-ai|N#wG6Le^5<^(YM+tbpu7!y5_hM9@@a&rvg$W oh`!bYV5K$Iw+B2tJUra;2MpWRH@H@BH2?qr07*qoM6N<$f?_-!t^fc4 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Modules/engivisor.rsi/meta.json b/Resources/Textures/Backmen/Modsuits/Modules/engivisor.rsi/meta.json new file mode 100644 index 00000000000..3f42259846b --- /dev/null +++ b/Resources/Textures/Backmen/Modsuits/Modules/engivisor.rsi/meta.json @@ -0,0 +1,14 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/blob/master/icons/obj/clothing/modsuit/mod_modules.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/Backmen/Modsuits/Modules/flashlight.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Modules/flashlight.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..37b0e2cabcc6b9a0e1b9ab15a739078da8ecf757 GIT binary patch literal 369 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^T<+MX_sArY;~ z2@R(-cR#O?ZQ_-&Dr;j5*E{f%VTSUBqfJx(8LioU zoTq%sPx%2uVaiR9J=Wl`%*gQ5eVnry)X)2*z+jEg6d3WTOP3Y6pWvm*PQahpcgHrVfz~ zM>|xUI%ElP3kn?q>0;b6B}D`!Di_lwW2ZJWbxDqTTzVbKh12)mT@)3H_k#z=`##?P z|Gj(feSnLLi_1fYyE;*+REVVAc-(MWs5m;ujD6a9+t-OkqnBbHr-gUpaU<;WG2?Yr zMR9Zv!y{AFc<-WtL}JY-6!Ju|05Ejd;`0lS>?GI*ZcF?}t9^X~_a#m>Fo^i}@RM5+ z2PlV7(RDyosmY42<8(v>&kN{XG>CY&+d^!4rZ0Z}>nFwnL0bdNGoa`?_1h|D9VS-s zk1soz9ctdp087{k&kOxQqg>UnvgpM@egePu-%#HYTLaS`57PwC3qJCtpU>n3$uEbiRRZjBss@Pa*hLll|?U+!!%$OrkOCSf1P@P^m-CO zp@;N(@{)L=kmpL9DZ||Ua#bVNA)d!2zu#b0ZM_9wwmQgW+Ni}s_c zRE+om0NG3%lAPlld%^p?J?_Kms%`V>c3Wtk^iYe1`g3dHBZ!f4BG(j_WcpeIbwe5< z^_{`m0Tc7zTe)^OWbw_n!AUYOe%LVZ6exZ!Vfs}H&!0_EyB-V2Ti}FpT!(U82k_5? ci_3qPx%F-b&0R9J=Wl|N_`VHn1Lmxfe_6V&(@4547qI++Smv?hfR42BY-i=%7BLFm@T zK~q5tUZKI!NvMM@r4@uYnApL=w7TR^t29A{Qt|4L67gs~hj2;S-svR>4&F0;-1mOp z^L+37KJS4A3l{!&2znpW>2%u{hLukBnd8Tfd;NaDZoI8+CIbvzINehGUl)+OcAXnH zN7R2JKqFo$6-d#XrTj2+w zyQhys2luo3MdsVuS5s#UGtd$B6MFJmZ8Z}B`T051vAP+6S~n*EqJF{(>gH6r-iOJx*- zJ_oL9OkG;2u*>p25Q#Rny^@0WTjN#>GY(aW#Qt;J6$eQqqw;d_o!t= zx1CCPqrR_x_*`EfIC7M6DK5;64yr+)1CLiEDakx|k#Ao>GhEe}nv`U+0T=IQt6bgP zuv^gQsINU<5rCv5Gcf#6F!~o5y1)oa3l*{f7XYH$PVj`IPSy;KcwqSV_q8m*;}tn0 zeIy%jQ7LbbT2)A8Px$D~Ljd;kA??|bh- zOiWD7|BkR5jYh*0TrRArD8*JwPaVB%HVeR5Q1WtNMa|A$iA?J*zX+d03uX{Mr3))SDKjPo8rmW@aua zw}Hdr-j;hwi=~Be(wRxjt*@NA^IU}91MWe>7`9qd(@9!Clh8D&H@iG6Bq$g2ia(S0 zy$7Pk+-alf6`|=B0kE_%?!+Q9Af-e~$;q(^q?7~VhEWx@VqX2&c%%U8&At;qbPc>H z3d*G}t;H0d-u1cJzs$wn1~53&bY>EOa;b}^SG+Y~7*!!$RwcjfpvWegR$8%si#1=hFZH002ovPDHLkV1nd{3uXWS literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Modules/modstorage.rsi/storagesmall.png b/Resources/Textures/Backmen/Modsuits/Modules/modstorage.rsi/storagesmall.png new file mode 100644 index 0000000000000000000000000000000000000000..139219a5627fddf1cf193d5e351214dfaf4d9e0c GIT binary patch literal 557 zcmV+|0@D47P)Px$=Sf6CR9J=Wl|N_`Q5?rVXG@Vn1x>VnkPITRpjOFJq0(lk9dBueH)jkM%zSmy zOb!tY88aWWiy1Q|QlUy(XlkL}=+HklxeP5L8GH_M;gY*cnw)m=KHK}f-|zSRz4w0a zJqQR02>9PoIt`^#$>Fq`T9bZ6-eq35bmH-N+uU%k;MLTcoSwcnu=xDk6NE@eUC%of z3vlIMi+}jI)z!zdfWIYv^1a@F0hc8XEo>vxG|U>-oR_^Han}N@y!Q3+Na7u{;Z#EG>)>jg4XKoN@K(Tcz)Jz@D@duU)WWD!;-|HYk?sJWqwlrjwG6 zMR$D%{9^1^QMH_+YB>d9X<@|SZi-ZZ|f8_LW9sV*q3`byO|ay9abVuLzOo`S}<-*QhK;TI0mb zXQHu?!_N{{HTOIh`VHNP{CFw7cEG|qdpiT&0yn;mzEV^TLZ7}!9>V%Yfk!Jz=4Kzb v{(4^cZo=K|D!bc%Uc&W_g5Puj0hiBjw7SeZ;Jj`M00000NkvXXu0mjfL}voV literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Modules/modstorage.rsi/storagesyndie.png b/Resources/Textures/Backmen/Modsuits/Modules/modstorage.rsi/storagesyndie.png new file mode 100644 index 0000000000000000000000000000000000000000..2ac3d511ee4b6e0a3c236e86cbb7b180b7f9e84b GIT binary patch literal 634 zcmV-=0)_pFP)Px%G)Y83R9J=Wl|N_`Q5?rVXG@Smg*H_ikqkwGpw^PbAwn~h4h|Wj!y7W)7%Vh% z>ZF-OA{a7eayV!a%;1oviR3^f62G}yWZt4$+e`o+-JIbzu*17 z-}ig(-UAO050C$hq(79)Wm|A9wV{nu>`C^4p%;xt0hk<=yq4O~ZoN|p_>L1{b`yjQO5w2G1M>75Zp3XJc(D`# z;9z^3(3M5bpYsFI__zl^{a;+iDNnC)*@d{pz`_1k&IT?Rflj+Q^5bE7X7NtDX>@6z z0W-Q0y|~%fQS&GlGfCrwJ#hoj+nljbeHKCDAd~Vt#%>8?@Pm@jN4u%eJVk1o`&9%To6e7dutJI@3^i8h~83 zMJ%0{Y?qOu6eJ4aY4E@Ppm7a0w~Ac9lO%HEs!i01v2DWLojrDUdPnx=R&iWqJv>gHzd_{& Uz40s_T>t<807*qoM6N<$g5(@5fB*mh literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Modules/modstorage.rsi/storagesyndiesmall.png b/Resources/Textures/Backmen/Modsuits/Modules/modstorage.rsi/storagesyndiesmall.png new file mode 100644 index 0000000000000000000000000000000000000000..2b92da0a17a17ebb6487f9c77416df44a775faac GIT binary patch literal 627 zcmV-(0*w8MP)Px%ElET{R9J=Wl|N_`aTLctXG@Smg*H(ekqkv*p*Ct3hZd5dW^l+59ezWmjKPAL z(@vU6G=iaHCWiw>uwyzj(FRo7VxvOM;NXzh=HH+c$#M?yuF2iy5=$5HKGWUrz2AM` zd%ySY2R1e~Ha7n|lKPO(=MBcC#IkadVo%c#G`(Oj2*7AR=cUB5a_d78x5Gg(678`~ z%URqGhxV?woB57B${<8ck>#w^Z9jEf@nR%OF%qTPZZrS#*+B8v#kZzDh6-4Tt8|MN zMU1aQi0>aX1_v-y<|5Wv&>e%7_}<-bu=f_K)(`EyPH-fV1e)_uXS*~)Kb<}&*S4O-1QH(gCa0S8|H zIOUxmoL+b$8K$6Ct@Mbrnsw8X>FMXEp83S2i}gBCXp$>5xSMd2NyQa4dDAh}XX~By znTqrrk;y)lTD3wr{b&3RSCmk|!Q=Ig&2$WpgAf8C1S6wk2qCof^5+t=oR!v6apl+M zJp~|FXlr(@2d1W`m3|pm@hT;eNjKP9^zi*-n``Y$Tx@Lu5DFYkiPt|4KqlQFoLn{b zfGlSvA!2|1>n-n`VQbN&y~lj-@%o(xKUFxK>|M9K3x>gSxT5r{fJ!*ID(UwPybFfq z+t__6oCN2)PYQGJ{KXnq@5GtEam65N#)&oI?skdY?Gn%l!p7#G;Wr~R{70xvI&S~~ N002ovPDHLkV1mdlEB62Z literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Modules/radiator.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Modules/radiator.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..2699f67d5e31e8a408bd1da37b5818b876aeda24 GIT binary patch literal 824 zcmV-81IPS{P)Px%@<~KNR9J=WR!vA7K^T20CD=m>8oQxZ;-$oZHngD>!T1vpTMz^fh1?2)Afi~$ z>Mg-zC`u6up>=Cy?CwF3kjwTEX54W%W{N_4$UE(R z-{gC5-+Y;GfHvA_;~&FC9(H$knZ(k{nt7E(o5?uk8Xq60@#{{DmsZxy&aUpO;s5~Z#NRm3Q~>D# zB`-nAH{N}M7yF{f^oLx_VRZr$$T6JY37N;En=guTySX->&Y z@Ci`_20}3OD*Y=4J0f`TD#jEg4ph`4UN7E6CadF(>MVfifncy704)D`7Nf&MwwSwb zkoEx3=mU4(Abrnd>zEvK<4fueYPsjO5pUZ9;=Q4?a}^WOZb+8WvZ)*h(yzu-rrF!@UO)lN2UrxOLEwp+eU1K$Z)rs6~)_fd6#e zR1Qz@WbFs#r4DQ+`r|afc zQp3T7AHRRrald{Sy+-2hG{b%C%40I-$RFunTH)$&Tl3+3k1i~IXO#Y%GQqm*zX4zA)8F3r`4gLVlSWR#+N`vtL0000Px&9Z5t%R9J=WmR(2`Q5c4wEs_3K=trd%!d=L87b0Y17nBr>pwQHQ(8yK1iI9Xu z0+q-N%`K@7)aW8uq>HedNDCs`(S-yBuMD+_X0_VPRSCCWESN5Ark!?Y%5J*Z7lt|K zn=|vi=RN29&OjV-#1Y4Th9R;uFfg#Jmn$nzN^-lq`-VYpY+hbo%y`1G7$b0`_^_0J zpcsIFC{kH@Qj$fSsc%+jSJ`FrwJjx0-nOy234Cnd>5RaIfsm{2%~$L*%)?kz&$pmH5Osgf_=G(_#XuEdi!|Tdk27taS?!_;W09;(F9J1jeehrvC&ZiqWEtD z_T?rjLS#&giwq5q(eD!og@dFdnQ%I6iZB^oZ{N@5+O9{TzXYptt{FN#^PH;P81-!Q z=?h9rT&mc_xQN%=M@4xpRaJ$okU;PWgr=u8IaCfDJ9|ztrX}!U^1Bkd-E!T~*;*|@ zs_sl8(a>0N$E_t0g%Den(f=Wz7#)l-B~kQd0{n zBRl&uH=OU;W&+^bqQvyfTBa7)0WkY^9<#;Fo8T+}Up|FN-n2!TZF2H@=4RjXCOC_y z<0{UaT@(}-@%i%?g0Ek*urSvgOMq$#(zA@%J+BzqyA|V0iP91mPKOO3YU9cGq2V!{ z4x5q{k+^@amx7{$08C9ii|K%>5^m1fEg91iVv@_~_X#vK)+nhLnH7K{Z2Z{>W#z{S z1STmcI!HxnQOuI8a^QB$1p`1`L$l;`*rJGmC~`m%+H?079=BT&E$@-)6E4m3K(h|C zUF?V%&$L=pcFQ8=!Xqz9zfbt%38^XIN?Vhmt|4~)_ImrGVoryR+WLB6$tiiS{0)}< tKX9q-rXnno@O literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Modules/reactiveboots.rsi/meta.json b/Resources/Textures/Backmen/Modsuits/Modules/reactiveboots.rsi/meta.json new file mode 100644 index 00000000000..3f42259846b --- /dev/null +++ b/Resources/Textures/Backmen/Modsuits/Modules/reactiveboots.rsi/meta.json @@ -0,0 +1,14 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/blob/master/icons/obj/clothing/modsuit/mod_modules.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/Backmen/Modsuits/Modules/sciencehud.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Modules/sciencehud.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..a9641411d7330aa4e664e29aed2ef204c5b4f279 GIT binary patch literal 647 zcmV;20(kw2P)Px%K}keGR9J=Wl`&`&Q5eU6krL`~G*BrC>Tx)fIwgb-f|dpvN~a=1hb|HvGE|2+ z2tr#0u^ml^R3uZtp@WOGpruktLBt`1bkR^D99K$fFmTC147G3$G0!WS-d!oU+#inn z?z``O|Nr~m_uc~!9z1yX&+yp=;_xO6-5@` zs@i@hk||Ty%Di4*w-s_~0Uh$IdzXYSI1=JucfTz}hMN-;rge-{LAC;{lZCG7y#6 z*g8Bhr>hFc&3QAEu2G1~d|hiYeg3=nH$LhY_Fz;3Ad{{!Is4pqCYKSwPSKzcZ(m4~ z(!=svV1QN_;8-*B5syR1$X5UW002ovPDHLkV1myNA143+ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Modules/sciencehud.rsi/meta.json b/Resources/Textures/Backmen/Modsuits/Modules/sciencehud.rsi/meta.json new file mode 100644 index 00000000000..3f42259846b --- /dev/null +++ b/Resources/Textures/Backmen/Modsuits/Modules/sciencehud.rsi/meta.json @@ -0,0 +1,14 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/blob/master/icons/obj/clothing/modsuit/mod_modules.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/Backmen/Modsuits/Modules/sechud.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Modules/sechud.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..6edf5ab8aefebf914691fc1974563c534c7d2c3e GIT binary patch literal 637 zcmV-@0)qXCP)Px%H%UZ6R9J=Wls{+_Q5?rVF)=j5DXr0}Xh;!)c5t{VRkSvR8thUEy10ab;81W7 z+}bMDR5wp)=#Wu_f+&<$5F*%wEDBAKqG=k11RX*pNr%$}V&gfKOB;JvE)w6-}(#$$AL^{`gV*Z%#d z+wt|<@rVNHgiOo%N0x@>K%(lXd+nd(7nXQ=VmBAF+h5r?FvM5qS;El@L8*X86quVF z(M_Z7Bvf-RTFbyjO{l2i5>*GETYmr>t)~`YDz!o`v&{3^7Zz7(TuCQnE{(m{^krxi zZ!N^PN6H9p8*+BNw*T|PM*wUsd)a^JFjG>%GB-J*sA&jF1s=XmHZNc+uF|*?lnN~N zyZAI;;;Lh_-F&_F+P6m(00>G221loLYe2UP^hhUU7W-WQ2yPp`bY`XJf>1(*n-jw;;F=BF~oqm?=A%3Eb68rHP4&i4lGS X+ds>EJ5JDz00000NkvXXu0mjfRGlHd literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Modules/sechud.rsi/meta.json b/Resources/Textures/Backmen/Modsuits/Modules/sechud.rsi/meta.json new file mode 100644 index 00000000000..3f42259846b --- /dev/null +++ b/Resources/Textures/Backmen/Modsuits/Modules/sechud.rsi/meta.json @@ -0,0 +1,14 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/blob/master/icons/obj/clothing/modsuit/mod_modules.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/Backmen/Modsuits/Modules/trayscanner.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/Modules/trayscanner.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..7370c35aa8037d0bcf639cee08f779f754e409e1 GIT binary patch literal 616 zcmV-u0+;=XP)Px%B1uF+R9J=Wl|5(^VHn4MXG5UirH}^66jG3&V}m#-#E239JCc#0R4N%JNhDQGw%KVl>%?zI^qhe}z;NyfLxliy`7EJp*O|*_ zP0t)Jmv;H(6-%Idt7NUGZO%vBOeRjaJdOU_DA*u+o< zKKqIifNZlfIWdlGv-iYB5Ng8BV!h{!UO#{I$2qZBOaiecv=|9Ci*@bv^x2-+$M=^w z*xjI9F8Ap(nGDfrR8tg1XcdIE;A!Fx0JTPkbYn%2H=E7A$1Fky;`i=SYjglOd7)vt z$j}DfexCrK(;nme_VPf@%O{svyAd{Rz_14ZK78r|V}0>Lp`efV%3Z>KD;~#VPF)c{ z3WWZG2k93*84q?h25N(jZvfniPLfh;tmR)B=0BFZ;CEc@C2fDF#mwTKVSb@4h%Cl6 z*=?b9c%;YFd%T literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/Modules/trayscanner.rsi/meta.json b/Resources/Textures/Backmen/Modsuits/Modules/trayscanner.rsi/meta.json new file mode 100644 index 00000000000..3f42259846b --- /dev/null +++ b/Resources/Textures/Backmen/Modsuits/Modules/trayscanner.rsi/meta.json @@ -0,0 +1,14 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/blob/master/icons/obj/clothing/modsuit/mod_modules.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/Backmen/Modsuits/constructing_modsuit.rsi/CAP.png b/Resources/Textures/Backmen/Modsuits/constructing_modsuit.rsi/CAP.png new file mode 100644 index 0000000000000000000000000000000000000000..f2e388ec1025e8d3ff03d9f2e548e4b572376da7 GIT binary patch literal 429 zcmV;e0aE^nP)Px$XGugsR9J=Wma%HWP!xv0mbw{`f)z8E48<-&hk_J`;0p+aK0sILTlE17g@Us< zlrC;rlnhrv#RSBnTZijll|(A!T&L1}Q^KE|^WT$m&kbZ`Wc+u|OkcF}WgWj?t!GBD zE=&`byjD`^y=xOAA_G>wthv0QRI5_Fwhz=6bAN~hT4F+0fmrhIj~=e;0HD-}V#5Pq z?gQ&t>X0G>@s+!-gHogY^#u0XYTQj7^IT%!kT6^lhRahz$SN@Rhro8FN{y)3Z-MP6 z$k`52Fx@|s7I6jIg$_|LCD-tn*bWohA=mJTf+_7nM;cBx2X?#Q^=Zldotw};`-;bx z0xSlittg%Y0MGq8#joTxjDjmbR(>#P!o|Q$JA&*JRGPX}s~&B%owgcxQ^yt0Z>!SO zwTI@fn*Y`nB?prpSPY1Q>QPOK(Fqnm6X0h)2)q9z19208aq^R~@@0MaUyzZJ@#ok8 X{~dxA#HlYa00000NkvXXu0mjf4H&;c literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/constructing_modsuit.rsi/CE.png b/Resources/Textures/Backmen/Modsuits/constructing_modsuit.rsi/CE.png new file mode 100644 index 0000000000000000000000000000000000000000..3ad8bcd7b42e005b7c211cbed12206094e6b5704 GIT binary patch literal 523 zcmV+m0`&cfP)Px$#Ysd#R9J=WmLX5WKpe#%1QczuO)NQ62#Bq#n`tc|S^^{pCY_ zA%sl;*%bW%13MJS1dsp<@kc-}?H01TV}R+;T>H=U-n;9&Yk{1c98FI4HYnZdvY`8* zX)q!D^7^1X&Z3T}X)yAG0F|l@KL|4QUo*gYM8y&lZJKnQ^GL~rlmX5o@>~Z1khG)G zJ;vi_j7ImFy5~B|CT5Bc`Y{dqF>xM|Wz}iWkI6I`9Ug{c8jJ@0m@KPKlYM2zUy|u$ z*Ve_g=eE!|YNArL(d%|msoH29HPJb4W%}O4L#YYQG;n=+mAMbYeRPgn*xfyV9|Y)i zyEs2Tg0D4gKoTR4UBimGjJKC}4DW80g|$dh&Ur+p!N{`eWEzapb=5JI zPD0=_<;k8;@LVUeQ&f=3Ktd9Ogj162ELLlmU(S$731-<5SLB< zkJ<4XnG8&B(?3J!>oPx$mPtfGR9J=Wl`%^KVHn4MMso~=YfELfPjA{ z7UrC_UhyozOBa#80S@n}G>RKi Sw~_<^0000Px$n@L1LR9J=WRM?TrSlLCEt>}kDveh?!Wu*0u(54U=UfrU@+LqHyf=; z(OY>*$0svphmtvcU z#Z@6a1MxK*1f!(odi^fZbc%AN3Qea!#_YrZ0N8eia6SX)GuU>Ah}`B}pt800000NkvXXu0mjfr^wdG literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/constructing_modsuit.rsi/CORE-equip1.png b/Resources/Textures/Backmen/Modsuits/constructing_modsuit.rsi/CORE-equip1.png new file mode 100644 index 0000000000000000000000000000000000000000..1957741c8de30257db9e52d813143dc36ad75f87 GIT binary patch literal 708 zcmV;#0z3VQP)Px%en~_@RCt{2noDaFQ5c4wQ7e+R>`QpQC&V@ykvxn(-!dsmsmVV;+h?_8Mkf=DD1 ziQH>(!LUuUU@tBhcAWVSyu#BN16@z4Ci`Xb5ubj1)BKo;f`8A80R?Z=Yv_84bjINE zeVf-$pG~D2g5@h2XDvrda@^}u=VmUDbO z9MCQ20C@OB_hi5;zx+NAK;qRKUwluCpk-y5+u9*nX)?F9gJos;UHi)ErN-y(FHc6? z@+-SngE83O^TnTNu~6I2S*OL)^JUuYa{zQb_22JCy@u-7>$d`12*c!$tpEit7W1St zhBF5N2M#!J)i0<6QrLV~2ccpyPqlhAA4jF&VJZy%*a7JETUt6}*u&dRuiw(tw$yH) zb8_Px%X-PyuRCt{2n!igMVHn51XG0OHm^u}(sUNWn=gE>5m0*wN9yAY|xj zM*jeHb#f^!PA<(L)FlZBQK1}M@k~hyR+Mv)_l!}Ryg#nzanEN;j^jQLZ=UxDxi3Hv z1VQjKI${O3T?j@;tRTt$jHp~UESP4NT?%H#hVkuZQ%7q?nuoe+h8;3;6+g`lhD0054Y!|CbS!v)VD^l{uo z<>#6Lj*~;9Ub}aBElh4!;CU?oz_mWbE$5}zfAZ5G4;ikNU=I(}+f1t&JZ9A8~i^=y>VcVHz_R;4?y#{t)yW=Wb2&44(?Eoe(7N?;b zRyYR%gmM6(oZYADfE2Z#>mXDtPNQ1ApO3vTd6Y!q?>hkPj;ra06?AVm?T)LlZOQXm zI6psn_8#tPUZ6k3whKY;LFBpb{SGTH%`ZGky}y9ybCT)@0A&kZoPMEm0F$d+?UUvY zi-=9G$WI+0TSRPfMSkJcvsPx$h)G02R9J=WRk3QrFciEr9Xce`azP*pin}z)WbmN=Kq3C*6uK8Y1TrP*QpZpX z9_&D}t4rm`PD&)lOTo8DPqyBj&+kbiPc;PzcN1bC0-w&tlcnnfb&2C0C7((CoaPWfM*ooJdjDUFm}So0nP)d z>{eqOZ;@p?#PPOV|LhY`>Xc$z5ulR;K$h)5se>%rK?uJRE7*uI`URdhs>GZ13ggKX zQM3f5P8sX(>VmEkP~<71=oqV_+pJfZg(2SNbBrfbc-{z6v@D5>JT($vR4nygS1qX9 zUnkrjQls1#9Z)@APx$dPzhdVZDq=!%K!#@RGb#HVxVoae!nJmnm# zXpNL}L(HEFXo);OFy6PZix6w;C{2vygv=pCqedM?v9r!=e;)1IA(q z(O`oL`g~XHAOSi#00`0GK$gau16dj_^bzrBvnUJ~M*Q*qhE=pimhC~vT*dm@?q_ip zP*)|g>?dX{Rw7c)@v_}w6|E753uM_|5!Y2|CBUj!y4CIZ!9@{v32l4BRR?C%Kze?F zx+>LiYsqwSeeU~N+K90311aZVELH?{RU!-*M$A}@lylpZ04y9hoy&>m2Qtr(0KV)m zirs|LMCSSNBG&iyQgRKHCbE09evA9`0ARpn)bPx$kV!;AR9J=WRy}LOFc5ty9TSK>2)x*$Lp~-$20^Bd)?eyBOUJGn0-4$lS-coD z*oI^c?h>i8OX*oj2o%3XKKp#{ak@JR7%;#S&o6I{yZU0}`{QIBS>nU7@Q(A~OP)!I z`C^Go%9fa$3NS=L7`5IT+eZjFb#c6E1!rsut!ulw$nz~ZE-3?XylNPmTH-ZIXk9~y z6k69oU~Fn_*SEVZ z-U6z!fKuPK5UCZBNr~6Z2J^)doF`CfXNjw_APFE9OSig%F#1u1T|(+?_%j2OanuB1 zgsLoTyBRW<-2HZbZYUzib0CuvLZp^pcB;U6g4wBp5hz58OiF4<0K_dYonZFY6rLeI z9E*|LEn3&)SwPA_o^MAc)u#7<^XWql^gN7AJqVH77VJyd1!)c#oQtY4ZOM5;?)R$* za76%sQuKbm2`)K?4ZQ9HhCB$PtBCN%HOTLNCA$bi2JTvb1O5%Z0Os=3xX#n0=Kufz M07*qoM6N<$f)!%RS^xk5 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/constructing_modsuit.rsi/CORE-equip6.png b/Resources/Textures/Backmen/Modsuits/constructing_modsuit.rsi/CORE-equip6.png new file mode 100644 index 0000000000000000000000000000000000000000..f825bb5c40b2451abaf41432f984fe12fd0a0939 GIT binary patch literal 474 zcmV<00VV#4P)Px$lu1NER9J=WmN9RGFc5`bs*Z^i7%Z_6lp(-`l)+M_j`%P2pQU4050RMK4p~@` zJOEO=Ms(@9h7L6*RiuiyfU)uSbUynG%$nt>hsWp6e7b7k`r~RDXz=?-GFS_Ylx z2WaX_Z#ROOaI^30y|Xc4eGcS8fb&cPc9#ZGw88GufDCe;As51SN&uEiKs$lfmlBV_ zagz4>lxnTd0;>p==7M696Px$vPnciR9J=WRy}WnFcdthj)?>emb?&@p-CpB3`m(e!e8n?BV)&Uh{V)(h?=rk z@?fZvp-V+4JBC)O0kx4TZh11;?~eCnfDt2l;`Z*oHf>)xeGg72R1+UhytkjLzT`=o zVzFEyNz;ayUlpK;JfAk6t92hC)}af6b;CI!E`+GGHBl5hYrj?z2!eG@h^vV=kPxCm z97hnM!UhuN`?lCY0!(rM5Te4K%o}_5WZsBE7ZKMso5FC`SU*2KVzFF-u^fcBdTs7) zr=_=mQgSeMUdM5yMI>p8ZI)rNTpG*LD98cUSik+i!t%i>h;`vk$ zrBZSTQK2Yyj%_Vi-vuhCjO98Vs^{bQ9QH0_80c{wPbaiiId9t`*K%hO-`PLKbVBPO uSl1UJH$@Efaq(ZWK^P-&(E=RtZ}171pWmLpNLz9M0000Px$dPzhu2b3y}5D@@ChzLSN(7HyN zZlHB-$LKkU0p^<$lY-wZSnJ|>Ak~^Cd-7h z*q_@6=eW=2oC~9bfiy~$CJdz6@1Ko(@3Y>dgGi~;xQ27Td6pNG;^!p*=v+=wBZP>0 zN#Vji34zYpT6amH1du4L>p?S)G1)9`EZyjFV>ep>i2yq1)2{#3`C~%nFxiA|@i>u- qi122K;y3>zn#J0In;LLsDSiQBBcO*}!eC|q0000Px$3rR#lR9J=Wlrav1KoCX0#u5^>AfW+nU_!zDPv99A8j>x51bQsY;Ig93te9xB zuOcwv|K0gBfXCzcH^Lwu!yq2H@7LH#ijyRt1lp#aeLJ1w>A9+|?EkV0lO!Lb=m@R5 zw{=v*HF4k?SQ0W>Gxo6oy7IQEr|ZtL6ab)9`BbyH0UND5=Tn=oGayZPKh)c1z)U%C z&w$wi`!@Q4*M>dU0EwF7N|jKmM3$wqZxTcXY_`aO(-aUzaRKmXfy)$#HendVBW2;$ zCTyFU9YDZg45`O-dcxiXUo!wKZ#}I$aR32_7SOXjmgdPNEf7rs=f@Ipv4J%KsW>2P jfr-7EUBo>e&rfgz&_sig|8nVm00000NkvXXu0mjfq^gg5 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/constructing_modsuit.rsi/boots.png b/Resources/Textures/Backmen/Modsuits/constructing_modsuit.rsi/boots.png new file mode 100644 index 0000000000000000000000000000000000000000..f85c53bed7b923c1e0490193442b6ada4a41e2bf GIT binary patch literal 613 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 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/modsuit_fabricator.rsi/icon.png b/Resources/Textures/Backmen/Modsuits/modsuit_fabricator.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..7c434064dc0c0f41f8975e03f8bd3c033cc66de5 GIT binary patch literal 763 zcmVPx%wMj%lR9J=8R?lnNU>JTRq#~Y7xEElC5L58y7=o7D@MMJKD)n6{~9Nrz39Xr2#nlk*{Kxwt%@obDs z&>Qrz_v|rnR0e+kn(w``ig+@CLfN_CN$6!@HLXk3e-Y@tV~5F76N_jWc=Yhe%zN80 z)U@u^$;ztZfRiI-6<{9NlU$B@u)8~|iB%kacL7=A<$( zXiTh~XzOvfM7shMuW+rkni2Dh)mLhgh`9T~tq&d? zPr7>WXk<8hxTC-yhQgAfppuC~|F4Tg9jPd|(_j8wuKYd2!my-SR}J|xcIB!)HZ+_Y zDayS5gK|$DkFt*O=^2xku-F{GZd+5cxBHXM`{MdOIn!*z1L{KOjSg?=H1Ak$p4?R?1ozxn>%sGTP{%{3*Mt>R^#C$n(8Vfwo2agDsS-(Qvw_RQf`r{mW# z8qZ%69v$_B-#EHnGRNV_^1g%Q?k+(m(jb(}wTHzn1Y_DCaI&zjLqY_rhNc zOIEBt!dpq9ratFS>y7!RP7X7*a9k?X8WzhXX{~ zF0vJXWrKI>DST<#NOfg;Hq;x`1;qHfIi{+guuKV=gZ&ngt zZwicC2=ICvdjG?tPp?wn{Ca!#>x(ss5?;^m-?jJ2`seua%e7lMWtaH+`^?v^4L|+L zFh1^Z)z+NuqmTQ~$wwbHd&+pPE~kk3-uj1+4{yjm{d{@v`SVlQGjgM(19I)=_y4>4 zrPlt}-%kv|w;2>x{xSWsdwpr_^-%r9pl_GCf4pbm5LWPMFkn1HJY&PB%?odzJ3fE@ m+-dSmzq!lGEW{Zegjch2@9`6zZ83j8$VZ;8elF{r5}E*~L_O31 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/modsuit_fabricator.rsi/meta.json b/Resources/Textures/Backmen/Modsuits/modsuit_fabricator.rsi/meta.json new file mode 100644 index 00000000000..be03ee9a13a --- /dev/null +++ b/Resources/Textures/Backmen/Modsuits/modsuit_fabricator.rsi/meta.json @@ -0,0 +1,48 @@ +{ + "version": 1, + "license": "AGPL3.0", + "copyright": "Taken from Tau Ceti at https://github.com/TauCetiStation/TauCetiClassic/pull/9991 and edited by @sentryprimies", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "panel" + }, + { + "name": "unlit" + }, + { + "name": "building", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "inserting", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + } + ] +} diff --git a/Resources/Textures/Backmen/Modsuits/modsuit_fabricator.rsi/panel.png b/Resources/Textures/Backmen/Modsuits/modsuit_fabricator.rsi/panel.png new file mode 100644 index 0000000000000000000000000000000000000000..3d79a221413aacfc8d99e56df873ca5a71a18903 GIT binary patch literal 182 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}1)eUBArY;~ z2@=fA9wL}U$eJ- zQX>#Nyt%Q84G7x&z8>WP0mg6ng|8BqOnb`LXD6}mFdN^S`%b3TE14MVUP-ldh;8u! P+RfnU>gTe~DWM4fKQlc_ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/modsuit_fabricator.rsi/unlit.png b/Resources/Textures/Backmen/Modsuits/modsuit_fabricator.rsi/unlit.png new file mode 100644 index 0000000000000000000000000000000000000000..0836a210cbb18b8bd7c5e41fa1c45cd6f7414cbc GIT binary patch literal 271 zcmV+q0r38bP)Px#$w@>(R9J=Wl`#&&AQ**TjVI`7aP$OT!AXzc)Z)q_SKtagL098t+;psw-WHPBh8OLnB5ouUgI3Kp+wSKa?Tp3cc^f94~6PxH`5o)5z z8W3Lr>k2+anD|?!8AOsCP{z?Gyao+~)I`q#u>qeqJ*4p}4C!AGtN;@;!8X))5|-4r zhR92HVQ!Pj5=WGJHSDU_dkd}aP2cAT^#_k*jQPB z;q2WHa6YMyA=v@Q79#^R{(oW}L9_#KS?uE^2o3>q0ZAc%Y&pnc5ZJQsJy;yZhXG&+ zP~QRQ7Q^@;HjGayAld;iUm{zK&0)xnqpAa72BTZ7ZlcGKx)JCAhD!|O0FoSl&2qb1 z1_mJ&IUtV?4nVh9+8~+XQ1e`dsPxGU4BCqHaR9Qfm$S@exOwIhIDIr2Oa$}64y#XQ zVA$+PT?c^j`o_=pa9`g%vjvC|2@YmC$YG4xenfkSXa_tI^GESD%wkv}1QMI=4`Ko3 zUJ6jZ9FTdnkzrZ0KSOWVK@^K&g%fhtBc)^{sT=@Vj&3+M%V<&=!7L)T+NIb5)V7#p j2ha+PI$+cRqYeN7wVsJaFR$`<00000NkvXXu0mjf0NRzU literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/plating.rsi/ce-plating.png b/Resources/Textures/Backmen/Modsuits/plating.rsi/ce-plating.png new file mode 100644 index 0000000000000000000000000000000000000000..461923f07b05d85eca33c057c7b1c565caa3bdd2 GIT binary patch literal 404 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^T2*{ z!ml|N$u^u$;x5kZ5l~>AAi{KFTJ(%;V*?q2^}vL^&*ct(%@*MCF8Jj7`T^f+TlMn?4iwDT#b;2zQSj(> zgYLxE39UQLnlCT0KW8<>4s)qLS>x_?(xYVQ#jB?8 s?KievUSiY~>C^QP6mm_04m=DD`;}UD=A`BTLzaQT)78&qol`;+0F9!n>;M1& literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/plating.rsi/civillian-plating.png b/Resources/Textures/Backmen/Modsuits/plating.rsi/civillian-plating.png new file mode 100644 index 0000000000000000000000000000000000000000..51b47682259295dd684dc78d2fcdcad2fe2c402c GIT binary patch literal 378 zcmV-=0fqjFP)Px$G)Y83R9J=Wl_77!KorOSkb2B48qp7M7aSm1gTSo@Lr5kk`2a{9k}VkqQ(3Vz zh;43ZKL7%aB_Z=9H?h2O6iD8+1$967a_#&5@0xoBEEbEUAYON%yzW5deZNvf3;?Z8 z8{eN_Cu`Aa$?oeE5$j}X#SOs@a7`?Qdv*dQ7@dGFm%;@A#K{`1PCKoMXtgXqKvqn3 zoUGH@6m|gGr7pe{Ob=IT0BW2S1HgRu3u)3wqiXW-CHe5d^P`H1Sh0aC#dkm=gxrY~peU(V_1HIPRLn zG=!vZvFJ7b*B)vZk7HI}b^s>~@b)@86Vq_gub# Y4~&O-H?AxSO8@`>07*qoM6N<$g8M_9k^lez literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/plating.rsi/cmo-plating.png b/Resources/Textures/Backmen/Modsuits/plating.rsi/cmo-plating.png new file mode 100644 index 0000000000000000000000000000000000000000..48247971a6f5b7720fee1bcb9ef2e6955c8d75c8 GIT binary patch literal 400 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^Ta|PzvusxSLsWRB(VWOqAhpZ_UV2LPQ>0Z>C7mO)YvE?sqp!$ zq{Khr*Bpyv8%`&c*5BQkb_d;O%-5gm@bT-Xa2cNRcXylAcewUfJm4$#%u~C?=%RioLz-D6{;*D) z=;87&TO}n#dL`fOZ<;24MUQ=&+|C0B-pHKXQ2Mt@q&u-yxagYmdg%|0i?n%{&r1E@ oX*x%3s^FQVARc*0xFs<#$gnr>%HF+90~o{%p00i_>zopr09bmYBLDyZ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/plating.rsi/engineering-plating.png b/Resources/Textures/Backmen/Modsuits/plating.rsi/engineering-plating.png new file mode 100644 index 0000000000000000000000000000000000000000..25d4b8430fcad861ba866e218da2a2da92fd4765 GIT binary patch literal 416 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^T}Q^!yYKb=GY4+%pR4%b8%x{Gg>qkt88)r27q2pk+4pVQ!H}-*gBi~?cO0IS z7o&2^W|8p2m+AKPx$NJ&INR9J=Wl`&5OF&KtljN^4_0^}~niFgZ!#mT|o#Db%Lz{I%t9}s6pCmD^C z3xk83{D>}Gn1mcTNp69?E=OtMG+#M!>a#V?eed)2ny-Mv;cyg$dA?+xFSq@^R3sPx zz(XJ%8hi7_lw5beP_T}+W`Lwh?AZh}&zIn#5mv1qQA^}vcLF)ViHHCm8X}1Ru$b;Z zU_CfnCn8d7Tj&B=mwIrXm@fCX0$Jhp;BqZMWgOrOu}vuj`4R$~U6*SCN*_S0(cUWD zT0jr3j01EIt|8BXhyKO?3FuvSCq2wYF~CDSHakk}_4Z{40_o7``Z;~VY!s^t*PZl~ z*ya5Rxh#2Po*v)HR-=t~{$>O($8hy*^&1iqVg5NF)g}ut&zJS98;JhE2;LaU*&cNi s(*+Kj(g^+qo5zSu(P!7;a5#SA8wpT$H~XftBme*a07*qoM6N<$fv;JXix@o>8*(g9Bnem)e$tANIo8gYz!7kt@rBso9|~qY z{#pvR7!Bf;qI=FJp6FY=iaCL8arBy%OOH&ry<5b2jvC*Aw4L5X#?9N>^_h1ztSMqh zD=dfpe;NNAJ3fQe%|8v=4GmNRuQM*#v+v6Z z)*b5|#hMLt4j$BDw|rAk%y&^v=@#Sp8?6B~yqhJ$I2tbW9?{an^LB{Ts5p{2*{ z!ml|N$u^u$GBjlD5l~>AAi{KFT6ZU>0SN4=`r7Ci;30Ibz43f}N3qDsz=j;dp8v0| zvRlj#aoEC~u+L?i#O%WpWZiiZl%iCxBmfN&IV~dcL^A2#wn<4mKlvQKZ*6L_X}7po7K1C3NZL(smJ?g)Z(+ z{VOte=$5^+OYI+!AzQn4xwr@pt)QENdRJaJLkjn(9MO+BJ)k z-D;9vID~Vt)6R!-L&^fLgVkQw2*x4AmPx%CEi>*hcWXOfqlZ_r7^==FM18 zp!6gks%-P%^kdJG&C^L)z-PHzA9ony)r&-|V239+5nq*{Bs<9lI6S#QA+IOVLG%^5 z2{-{PykLsGV}5QqzZomIcifNo0{5lgDg^+*cJVnn?K3)_zWELSIO<#h05WzJ05BOh z0Ra2kOG;lAv_;+6+~h`g7{VQf$ks`6d@2qEarw>)W%K{y@8ud3`wnq{ak9y$UI( z4gmPs*o)XiUy)lXAkIRiz?&VtlhMJ@{@^O1p;Ae~)DZq<%7jldruC2?d^tlH(`ygLkUkMdv8 z!aQ7kObfHWy(G=Vzo7nd){48mS+j~NHBuQ zxXA@4_W}T17t4{}P{>;-Mepoz*ydfb9M_ZCcy|{^BEiYQM7*Tg6&fDVL;9Y+6+?1t%QcUdUy( zQZ8YuSPQj{=(<=o3NSSr6Ngqn>FEQb08<7`9PwV68pLV0Mgd;GFEuWH{$M09WkAJ2 zVkUG1Dq$>48DKfYD>?87^7jCH9Cf(sD@n%7-G*@k&kM3Zwi#(R;a%>9I2^JCCIMhL z8gmNCNa~wgwdV>>cmsbBsXwtL$pi_sSg;NJr>I4kF9T&}@c pIj3`t%eA?Mk+{+a$^QTm@CUokg_hu=T%`a2002ovPDHLkV1oHFYA65z literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/suit_storage.rsi/door.png b/Resources/Textures/Backmen/Modsuits/suit_storage.rsi/door.png new file mode 100644 index 0000000000000000000000000000000000000000..ea7e2d056a7202ad6036d620cbc6dfb87f2d1403 GIT binary patch literal 485 zcmVPx$pGibPR9J=Wma$92KorJ5#U)^;4r-ujz#x>;P6ffmK`4j_BBB3-QaW{Ya&>ah zf1sm?AW|qexD*N%C8fA@h#dkB-2}&Tx}!~Vce!hd1^a`Lmm~MymzR&b1D5=ER&*w1 z?HmDsA3&?T^1w@&UQa&h5 zJhz^EQ}6UV4~}i2({Abs82Cdtw#D2$&i2kGey*+o07ktQ`3}t?BDM+VMQjsNPTVq! zje2cr{Nb*ZoPa0;y}!N*6NX!!xCz7N3zJH1v3M>fr1AK#0Qjw6coY7)0PU49Y(`$I zWhPYKj#Y@W9c!IpOg#u{dS&wBRA<_<{&Aik|y2XJ-_W+R0 bu}s7-TU@qJ1kt$K00000NkvXXu0mjf1cTLN literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/suit_storage.rsi/locked.png b/Resources/Textures/Backmen/Modsuits/suit_storage.rsi/locked.png new file mode 100644 index 0000000000000000000000000000000000000000..8822b8688da6e6c6c83c8d82651fc9ba9eb14909 GIT binary patch literal 88 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE0wix1Z>k4U@}4e^Ar-fhQx*sq^hp_H9azD* gn5_rGIDD3Yq0fLp(c=Aq_dul#p00i_>zopr0DN{B6#xJL literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/suit_storage.rsi/meta.json b/Resources/Textures/Backmen/Modsuits/suit_storage.rsi/meta.json new file mode 100644 index 00000000000..af92750d535 --- /dev/null +++ b/Resources/Textures/Backmen/Modsuits/suit_storage.rsi/meta.json @@ -0,0 +1,23 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "made by @flazer", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "base" + }, + { + "name": "door" + }, + { + "name": "welded" + }, + { + "name": "locked" + } + ] +} diff --git a/Resources/Textures/Backmen/Modsuits/suit_storage.rsi/welded.png b/Resources/Textures/Backmen/Modsuits/suit_storage.rsi/welded.png new file mode 100644 index 0000000000000000000000000000000000000000..83cb8593fe47e11e7aeb847eda274290b2b9fcfa GIT binary patch literal 415 zcmV;Q0bu@#P)Px$SxH1eR9J=Wlf7yiK@>*MOyY~Qq;O+WsEmuqXci=OhLAL>ZS2OSTR%cvxX7CX z@)&87E`+EUfpF;}zYtJh3qf{gZW>{Xz|2Cn^PFzra=wo{Gmv@cnACu(ww9G;SpfB7 zv8YuQW0Ly+FK{=+Id=){0iQw$2g~L1D&>Eitk^F2C9of3JW^*=&U^pPx%(Md!>R9J<*R=;c8KotIDR8Xp7N{u6|I)NB3fkI+%Xz7xzd*|$ijQ&eJ7P^~` znL?pk7h_XFZ3uJ;HQ23$Y*K)_CJ|kms0 z&?*OjzkQNzXzLcbx`}u1p8){AT$$*_0dAOW%GwqZz=n7<9N^=x6MgstF5&g`~Wo@(ETmeN& zt*u)$>3VS>oXbMQooYmE^B|e75(7Z!lm%NM%f*5=qLR|dUQIaX#J<$I%$9%(h@t@V z*_69-vezPVo+F-(R6u*LhD)oN`@so4t|2>K}5s;y8G-x8K;JO|r<4G<8v<#illQxXL(MXk@6Z`1J0Zl?yNLM#= zy}`C?u*hva^SpjyuMkl@aR6U z$$n81vdHGZE3J&LcR#e!dF6QBsS6ww*k6@%!r{7JDzcq=vT$i5>guLafU4Q3IHUr| zc`t)10xAw=D^{UMyHyJKzT$`J%2_H2R1pwy5T7L(fk+q&RRma$?2+t*9{)bTmZJPx$Wl2OqR9J=WmN84iKorOSEiP#wbdwYmgzTa;U%}ZA;OOGwqNAf@U0k|2i66ml zk!Zd^K(NqIT;w2TtkV^9$$PmxT2ipT=`P&8_rLf4xdhnp-|0ynkHevAeQktii z7nL;|HDPb|g<|pu0B~-vNuzGP3E38m9Uq}rKH2HRJsa@-=B_l4RF1gFWG$#OVgD^* z1(+poG9fFV&V<4F85{8U^?5Z;l#9>{FkPhN`qnMbn5{5NuW4#Q=O*l2fcPdf%}BlP z8@mZ@*nN&|=v)Bn0X??;7c}{6K#>P@V(Kz##;*u5X{>K0>6Lq VqiyBi!^Hpq002ovPDHLkV1f^N!X5ws literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/suit_storage_syndie.rsi/locked.png b/Resources/Textures/Backmen/Modsuits/suit_storage_syndie.rsi/locked.png new file mode 100644 index 0000000000000000000000000000000000000000..8822b8688da6e6c6c83c8d82651fc9ba9eb14909 GIT binary patch literal 88 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE0wix1Z>k4U@}4e^Ar-fhQx*sq^hp_H9azD* gn5_rGIDD3Yq0fLp(c=Aq_dul#p00i_>zopr0DN{B6#xJL literal 0 HcmV?d00001 diff --git a/Resources/Textures/Backmen/Modsuits/suit_storage_syndie.rsi/meta.json b/Resources/Textures/Backmen/Modsuits/suit_storage_syndie.rsi/meta.json new file mode 100644 index 00000000000..7d9e3fc55ac --- /dev/null +++ b/Resources/Textures/Backmen/Modsuits/suit_storage_syndie.rsi/meta.json @@ -0,0 +1,23 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "made by @flazer", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "base" + }, + { + "name": "door" + }, + { + "name": "welded" + }, + { + "name": "locked" + } + ] + } diff --git a/Resources/Textures/Backmen/Modsuits/suit_storage_syndie.rsi/welded.png b/Resources/Textures/Backmen/Modsuits/suit_storage_syndie.rsi/welded.png new file mode 100644 index 0000000000000000000000000000000000000000..83cb8593fe47e11e7aeb847eda274290b2b9fcfa GIT binary patch literal 415 zcmV;Q0bu@#P)Px$SxH1eR9J=Wlf7yiK@>*MOyY~Qq;O+WsEmuqXci=OhLAL>ZS2OSTR%cvxX7CX z@)&87E`+EUfpF;}zYtJh3qf{gZW>{Xz|2Cn^PFzra=wo{Gmv@cnACu(ww9G;SpfB7 zv8YuQW0Ly+FK{=+Id=){0iQw$2g~L1D&>Eitk^F2C9of3JW^*=&U^p Date: Mon, 2 Dec 2024 17:57:19 +0500 Subject: [PATCH 13/22] Modsuits --- .../Modsuits/Construction/modsuitgraphs.yml | 69 ------------------- 1 file changed, 69 deletions(-) diff --git a/Resources/Prototypes/_Backmen/Modsuits/Construction/modsuitgraphs.yml b/Resources/Prototypes/_Backmen/Modsuits/Construction/modsuitgraphs.yml index e313e9d0b3e..7f1ca927c40 100644 --- a/Resources/Prototypes/_Backmen/Modsuits/Construction/modsuitgraphs.yml +++ b/Resources/Prototypes/_Backmen/Modsuits/Construction/modsuitgraphs.yml @@ -241,29 +241,6 @@ - node: modsuitatmospheric entity: ClothingControlModsuitAtmosphericsSealed -- type: constructionGraph - id: ModsuitAdvanced - start: start - graph: - - node: start - edges: - - to: modsuitadvanced - steps: - - tag: PlatingCEModsuit - name: покрытие продвинутого РИГ-а - icon: - sprite: Backmen/Modsuits/plating.rsi - state: ce-plating - doAfter: 2 - - tag: ModsuitControlEnd - name: собранный каркас РИГ-а - icon: - sprite: Backmen/Modsuits/constructing_modsuit.rsi - state: CORE-equip8 - doAfter: 2 - - node: modsuitadvanced - entity: ClothingControlModsuitCESealed - - type: constructionGraph id: ModsuitRescue start: start @@ -286,49 +263,3 @@ doAfter: 2 - node: modsuitrescue entity: ClothingControlModsuitParamedicSealed - -- type: constructionGraph - id: ModsuitMagnate - start: start - graph: - - node: start - edges: - - to: modsuitmagnate - steps: - - tag: PlatingMagnateModsuit - name: покрытие РИГ-а капитана - icon: - sprite: Backmen/Modsuits/plating.rsi - state: magnate-plating - doAfter: 2 - - tag: ModsuitControlEnd - name: собранный каркас РИГ-а - icon: - sprite: Backmen/Modsuits/constructing_modsuit.rsi - state: CORE-equip8 - doAfter: 2 - - node: modsuitmagnate - entity: ClothingControlModsuitMagnateSealed - -- type: constructionGraph - id: ModsuitHOS - start: start - graph: - - node: start - edges: - - to: modsuithos - steps: - - tag: PlatingHOSModsuit - name: покрытие РИГ-а главы службы безопасности - icon: - sprite: Backmen/Modsuits/plating.rsi - state: security-plating - doAfter: 2 - - tag: ModsuitControlSafeguard - name: собранный каркас РИГ-а - icon: - sprite: Backmen/Modsuits/constructing_modsuit.rsi - state: CORE-equip8 - doAfter: 2 - - node: modsuithos - entity: ClothingControlModsuitHOSSealed From c5617f2bb36f15792ec669eff924737598f9f25b Mon Sep 17 00:00:00 2001 From: Cat <115424457+CatBackGround@users.noreply.github.com> Date: Mon, 2 Dec 2024 18:04:16 +0500 Subject: [PATCH 14/22] Delete Content.Server/Backmen/AccessWeaponBlockerSystem directory --- .../AccessWeaponBlockerComponent.cs | 20 ----- .../AccessWeaponBlockerSystem.cs | 74 ------------------- 2 files changed, 94 deletions(-) delete mode 100644 Content.Server/Backmen/AccessWeaponBlockerSystem/AccessWeaponBlockerComponent.cs delete mode 100644 Content.Server/Backmen/AccessWeaponBlockerSystem/AccessWeaponBlockerSystem.cs diff --git a/Content.Server/Backmen/AccessWeaponBlockerSystem/AccessWeaponBlockerComponent.cs b/Content.Server/Backmen/AccessWeaponBlockerSystem/AccessWeaponBlockerComponent.cs deleted file mode 100644 index 49bf7e87044..00000000000 --- a/Content.Server/Backmen/AccessWeaponBlockerSystem/AccessWeaponBlockerComponent.cs +++ /dev/null @@ -1,20 +0,0 @@ -using Content.Shared.Access; -using Content.Shared.Backmen.AccessWeaponBlockerSystem; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Set; - -namespace Content.Server.Backmen.AccessWeaponBlockerSystem; - -[RegisterComponent] -public sealed partial class AccessWeaponBlockerComponent : SharedAccessWeaponBlockerComponent -{ - [ViewVariables(VVAccess.ReadWrite)] - public bool CanUse; - - [ViewVariables(VVAccess.ReadWrite)] - [DataField("alertText")] - public string AlertText = ""; - - [ViewVariables(VVAccess.ReadWrite), - DataField("access", customTypeSerializer: typeof(PrototypeIdHashSetSerializer))] - public HashSet Access = new(); -} diff --git a/Content.Server/Backmen/AccessWeaponBlockerSystem/AccessWeaponBlockerSystem.cs b/Content.Server/Backmen/AccessWeaponBlockerSystem/AccessWeaponBlockerSystem.cs deleted file mode 100644 index 592a314394b..00000000000 --- a/Content.Server/Backmen/AccessWeaponBlockerSystem/AccessWeaponBlockerSystem.cs +++ /dev/null @@ -1,74 +0,0 @@ -using Content.Shared.Hands; -using Content.Shared.Access.Components; -using Content.Shared.Backmen.AccessWeaponBlockerSystem; -using Content.Shared.Weapons.Melee.Events; -using Content.Shared.Weapons.Ranged.Systems; -using Robust.Shared.GameStates; -using Content.Shared.Inventory; -using Content.Shared.PDA; - -namespace Content.Server.Backmen.AccessWeaponBlockerSystem; - -public sealed class AccessWeaponBlockerSystem : EntitySystem -{ - [Dependency] private readonly InventorySystem _inventorySystem = default!; - public override void Initialize() - { - base.Initialize(); - - SubscribeLocalEvent(OnShootAttempt); - SubscribeLocalEvent(OnMeleeAttempt); - SubscribeLocalEvent(OnGetState); - SubscribeLocalEvent(OnGotEquippedHand); - } - - - private void OnGotEquippedHand(EntityUid uid, AccessWeaponBlockerComponent component, ref GotEquippedHandEvent args) - { - if (!_inventorySystem.TryGetSlotEntity(args.User, "id", out var slotCardUid)) - return; - var accessEntity = TryComp(slotCardUid, out var pda) && pda.ContainedId is { } pdaSlot - ? pdaSlot - : slotCardUid.Value; - component.CanUse = IsAnyAccess(accessEntity, component); - Dirty(uid, component); - } - - private bool IsAnyAccess(EntityUid accessEntity, AccessWeaponBlockerComponent component) - { - if (!TryComp(accessEntity, out var access)) - return false; - foreach (var accessTag in access.Tags) - { - if (component.Access.Contains(accessTag)) - return true; - } - return false; - } - private void OnGetState(EntityUid uid, AccessWeaponBlockerComponent component, ref ComponentGetState args) - { - args.State = new AccessWeaponBlockerComponentState() - { - CanUse = component.CanUse, - AlertText = component.AlertText - }; - } - - private void OnMeleeAttempt(EntityUid uid, AccessWeaponBlockerComponent component, ref AttemptMeleeEvent args) - { - if (component.CanUse) - return; - - args.Cancelled = true; - args.Message = component.AlertText; - } - - private void OnShootAttempt(EntityUid uid, AccessWeaponBlockerComponent component, ref AttemptShootEvent args) - { - if (component.CanUse) - return; - - args.Cancelled = true; - args.Message = component.AlertText; - } -} From 375d44e277d37f0a12ba93b3db07fe330fffadb9 Mon Sep 17 00:00:00 2001 From: Cat <115424457+CatBackGround@users.noreply.github.com> Date: Mon, 2 Dec 2024 18:11:22 +0500 Subject: [PATCH 15/22] Delete Content.Client/Backmen/AccessWeaponBlockerSystem directory --- .../AccessWeaponBlockerComponent.cs | 13 ---- .../AccessWeaponBlockerSystem.cs | 64 ------------------- 2 files changed, 77 deletions(-) delete mode 100644 Content.Client/Backmen/AccessWeaponBlockerSystem/AccessWeaponBlockerComponent.cs delete mode 100644 Content.Client/Backmen/AccessWeaponBlockerSystem/AccessWeaponBlockerSystem.cs diff --git a/Content.Client/Backmen/AccessWeaponBlockerSystem/AccessWeaponBlockerComponent.cs b/Content.Client/Backmen/AccessWeaponBlockerSystem/AccessWeaponBlockerComponent.cs deleted file mode 100644 index 83e96b0450a..00000000000 --- a/Content.Client/Backmen/AccessWeaponBlockerSystem/AccessWeaponBlockerComponent.cs +++ /dev/null @@ -1,13 +0,0 @@ -using Content.Shared.Backmen.AccessWeaponBlockerSystem; - -namespace Content.Client.Backmen.AccessWeaponBlockerSystem; - -[RegisterComponent] -public sealed partial class AccessWeaponBlockerComponent : SharedAccessWeaponBlockerComponent -{ - [ViewVariables(VVAccess.ReadWrite)] - public bool CanUse; - - [ViewVariables(VVAccess.ReadWrite)] - public string AlertText = ""; -} diff --git a/Content.Client/Backmen/AccessWeaponBlockerSystem/AccessWeaponBlockerSystem.cs b/Content.Client/Backmen/AccessWeaponBlockerSystem/AccessWeaponBlockerSystem.cs deleted file mode 100644 index 823cf8b7df7..00000000000 --- a/Content.Client/Backmen/AccessWeaponBlockerSystem/AccessWeaponBlockerSystem.cs +++ /dev/null @@ -1,64 +0,0 @@ -using Content.Shared.Interaction.Events; -using Content.Shared.Backmen.AccessWeaponBlockerSystem; -using Content.Shared.Weapons.Melee.Events; -using Content.Shared.Weapons.Ranged.Systems; -using Robust.Shared.GameStates; - -namespace Content.Client.Backmen.AccessWeaponBlockerSystem; - -public sealed class AccessWeaponBlockerSystem : EntitySystem -{ - public override void Initialize() - { - base.Initialize(); - - SubscribeLocalEvent(OnShootAttempt); - SubscribeLocalEvent(OnMeleeAttempt); - SubscribeLocalEvent(OnUseAttempt); - SubscribeLocalEvent(OnInteractAttempt); - SubscribeLocalEvent(OnAccessWeaponBlockerHandleState); - } - - private void OnUseAttempt(EntityUid uid, AccessWeaponBlockerComponent component, ref UseAttemptEvent args) - { - if (component.CanUse) - return; - - args.Cancel(); - } - - private void OnInteractAttempt(EntityUid uid, AccessWeaponBlockerComponent component, ref InteractionAttemptEvent args) - { - if (component.CanUse) - return; - - args.Cancelled = true; - } - - private void OnAccessWeaponBlockerHandleState(EntityUid uid, AccessWeaponBlockerComponent component, ref ComponentHandleState args) - { - if (args.Current is not AccessWeaponBlockerComponentState state) - return; - - component.CanUse = state.CanUse; - component.AlertText = state.AlertText; - } - - private void OnMeleeAttempt(EntityUid uid, AccessWeaponBlockerComponent component, ref AttemptMeleeEvent args) - { - if (component.CanUse) - return; - - args.Cancelled = true; - args.Message = component.AlertText; - } - - private void OnShootAttempt(EntityUid uid, AccessWeaponBlockerComponent component, ref AttemptShootEvent args) - { - if (component.CanUse) - return; - - args.Cancelled = true; - args.Message = component.AlertText; - } -} From 5e11ad98bf22006c0395b8c43ca11fffe4ac0c74 Mon Sep 17 00:00:00 2001 From: Cat <115424457+CatBackGround@users.noreply.github.com> Date: Mon, 2 Dec 2024 18:11:43 +0500 Subject: [PATCH 16/22] Delete Content.Shared/Backmen/AccessWeaponBlockerSystem directory --- .../SharedAccessWeaponBlockerComponent.cs | 17 ----------------- .../SharedAccessWeaponBlockerSystem.cs | 6 ------ 2 files changed, 23 deletions(-) delete mode 100644 Content.Shared/Backmen/AccessWeaponBlockerSystem/SharedAccessWeaponBlockerComponent.cs delete mode 100644 Content.Shared/Backmen/AccessWeaponBlockerSystem/SharedAccessWeaponBlockerSystem.cs diff --git a/Content.Shared/Backmen/AccessWeaponBlockerSystem/SharedAccessWeaponBlockerComponent.cs b/Content.Shared/Backmen/AccessWeaponBlockerSystem/SharedAccessWeaponBlockerComponent.cs deleted file mode 100644 index 47a14ec401e..00000000000 --- a/Content.Shared/Backmen/AccessWeaponBlockerSystem/SharedAccessWeaponBlockerComponent.cs +++ /dev/null @@ -1,17 +0,0 @@ -using Robust.Shared.GameStates; -using Robust.Shared.Serialization; - -namespace Content.Shared.Backmen.AccessWeaponBlockerSystem; - -[NetworkedComponent] -public abstract partial class SharedAccessWeaponBlockerComponent : Component -{ - -} - -[Serializable, NetSerializable] -public sealed class AccessWeaponBlockerComponentState : ComponentState -{ - public bool CanUse; - public string AlertText = ""; -} diff --git a/Content.Shared/Backmen/AccessWeaponBlockerSystem/SharedAccessWeaponBlockerSystem.cs b/Content.Shared/Backmen/AccessWeaponBlockerSystem/SharedAccessWeaponBlockerSystem.cs deleted file mode 100644 index 43a1a9c1f80..00000000000 --- a/Content.Shared/Backmen/AccessWeaponBlockerSystem/SharedAccessWeaponBlockerSystem.cs +++ /dev/null @@ -1,6 +0,0 @@ -namespace Content.Shared.Backmen.AccessWeaponBlockerSystem; - -public sealed class SharedAccessWeaponBlockerSystem : EntitySystem -{ - -} From 7a6207346aca179861c73f959a570311c9809fcd Mon Sep 17 00:00:00 2001 From: BongoCatGamer Date: Mon, 2 Dec 2024 18:21:50 +0500 Subject: [PATCH 17/22] Fix chestplate --- .../_Backmen/Modsuits/Clothing/chestplate.yml | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/Resources/Prototypes/_Backmen/Modsuits/Clothing/chestplate.yml b/Resources/Prototypes/_Backmen/Modsuits/Clothing/chestplate.yml index 6a2951262b2..aeaf6aa2d7d 100644 --- a/Resources/Prototypes/_Backmen/Modsuits/Clothing/chestplate.yml +++ b/Resources/Prototypes/_Backmen/Modsuits/Clothing/chestplate.yml @@ -59,7 +59,6 @@ Caustic: 0.2 Heat: 0.35 Radiation: 0 - Stamina: 0.85 ## Stamina resistance Cold: 0.35 - type: ClothingSpeedModifier walkModifier: 0.9 @@ -98,7 +97,6 @@ Cold: 0.8 Caustic: 0.4 Radiation: 0.2 - Stamina: 0.85 ## Stamina resistance - type: ClothingSpeedModifier walkModifier: 0.85 sprintModifier: 0.85 @@ -136,7 +134,6 @@ Cold: 0.45 Radiation: 0.3 Shock: 0.5 - Stamina: 0.85 ## slow & fat - type: ClothingSpeedModifier walkModifier: 0.75 sprintModifier: 0.75 @@ -170,7 +167,6 @@ Heat: 0.1 Cold: 0.1 Shock: 0.35 - Stamina: 0.85 ## Stamina resistance - type: ClothingSpeedModifier walkModifier: 0.85 sprintModifier: 0.85 @@ -202,7 +198,6 @@ Heat: 0.9 Cold: 0.9 Shock: 0.9 - Stamina: 0.85 ## Stamina resistance - type: ClothingSpeedModifier walkModifier: 0.95 sprintModifier: 0.95 @@ -235,7 +230,6 @@ Slash: 0.8 Heat: 0.6 Cold: 0.7 - Stamina: 0.85 ## Stamina resistance - type: ToggleableClothing clothingPrototype: ClothingGauntletsModsuitParamedicSealed requiredSlot: outerClothing @@ -271,7 +265,6 @@ Cold: 0.8 Shock: 0.5 Caustic: 0.9 - Stamina: 0.85 ## Stamina resistance - type: ClothingSpeedModifier walkModifier: 0.9 sprintModifier: 0.9 @@ -306,7 +299,6 @@ Cold: 0.6 Radiation: 0.25 Heat: 0.6 - Stamina: 0.85 ## Stamina resistance - type: ClothingSpeedModifier walkModifier: 0.9 sprintModifier: 0.9 @@ -339,7 +331,6 @@ Piercing: 0.5 Shock: 0.5 Caustic: 0.7 - Stamina: 0.8 ## Stamina resistance - type: ClothingSpeedModifier walkModifier: 0.8 sprintModifier: 0.8 @@ -374,7 +365,6 @@ Cold: 0.7 Shock: 0.5 Heat: 0.7 - Stamina: 0.7 ## Stamina resistance - type: ClothingSpeedModifier walkModifier: 0.85 sprintModifier: 0.85 @@ -407,7 +397,6 @@ Caustic: 0.7 Shock: 0.25 Cold: 0.8 - Stamina: 0.85 ## Stamina resistance Heat: 0.8 - type: ClothingSpeedModifier walkModifier: 0.85 @@ -441,7 +430,6 @@ Caustic: 0.65 Heat: 0.5 Radiation: 0.4 - Stamina: 0.85 ## Stamina resistance - type: ClothingSpeedModifier walkModifier: 0.85 sprintModifier: 0.85 @@ -476,7 +464,6 @@ Cold: 0.5 Heat: 0.5 Radiation: 0.25 - Stamina: 0.45 # Stamina resistance - type: ClothingSpeedModifier walkModifier: 0.9 sprintModifier: 0.9 @@ -553,7 +540,6 @@ Caustic: 0.2 Heat: 0.5 Radiation: 0.5 - Stamina: 0.85 ## Stamina resistance - type: entity parent: ClothingOuterChestplateModsuitSealedBase @@ -583,7 +569,6 @@ Caustic: 0.05 Heat: 0.1 Radiation: 0.1 - Stamina: 0.5 ## Stamina resistance - type: ToggleableClothing clothingPrototype: ClothingGauntletsModsuitApocryphalSealed requiredSlot: outerClothing @@ -645,7 +630,6 @@ Shock: 0 Heat: 0.25 Radiation: 0.15 - Stamina: 0.45 # Stamina resistance - type: ClothingSpeedModifier walkModifier: 0.9 sprintModifier: 0.9 From cc82b8d862c7c3b861031683eb0aa075d0eb7dad Mon Sep 17 00:00:00 2001 From: BongoCatGamer Date: Mon, 2 Dec 2024 18:44:51 +0500 Subject: [PATCH 18/22] Fix again... --- .../_Backmen/Modsuits/Clothing/boots.yml | 11 ------ .../_Backmen/Modsuits/Clothing/chestplate.yml | 3 +- .../_Backmen/Modsuits/Clothing/control.yml | 4 +-- .../_Backmen/Modsuits/Clothing/helmet.yml | 2 +- .../_Backmen/Modsuits/Modfab/modsuit.yml | 1 - .../_Backmen/Modsuits/modsuit_storage.yml | 34 ------------------- 6 files changed, 5 insertions(+), 50 deletions(-) diff --git a/Resources/Prototypes/_Backmen/Modsuits/Clothing/boots.yml b/Resources/Prototypes/_Backmen/Modsuits/Clothing/boots.yml index b7102c1d8c5..19aa5231bd6 100644 --- a/Resources/Prototypes/_Backmen/Modsuits/Clothing/boots.yml +++ b/Resources/Prototypes/_Backmen/Modsuits/Clothing/boots.yml @@ -24,25 +24,14 @@ slot: head requiredSlot: feet - type: Magboots - toggleAction: ActionToggleMagbootsModsuitAdvanced - type: ClothingSpeedModifier walkModifier: 0.9 sprintModifier: 0.9 - enabled: false - type: NoSlip - type: Tag tags: - WhitelistChameleon - - type: entity - id: ActionToggleMagbootsModsuitAdvanced - parent: ActionToggleMagboots - noSpawn: true - components: - - type: InstantAction - icon: { sprite: Backmen/Modsuits/Clothing/Shoes/advanced.rsi, state: icon } - iconOn: Backmen/Modsuits/Clothing/Shoes/advanced.rsi/icon-on.png - - type: entity parent: ClothingShoesBase id: ClothingBootsModsuitEngineerSealed diff --git a/Resources/Prototypes/_Backmen/Modsuits/Clothing/chestplate.yml b/Resources/Prototypes/_Backmen/Modsuits/Clothing/chestplate.yml index aeaf6aa2d7d..928cb24d685 100644 --- a/Resources/Prototypes/_Backmen/Modsuits/Clothing/chestplate.yml +++ b/Resources/Prototypes/_Backmen/Modsuits/Clothing/chestplate.yml @@ -69,7 +69,8 @@ slot: gloves - type: Insulated - type: TemperatureProtection - coefficient: 0.00000001 + heatingCoefficient: 0.001 + coolingCoefficient: 0.001 - type: entity parent: ClothingOuterChestplateModsuitSealedBase diff --git a/Resources/Prototypes/_Backmen/Modsuits/Clothing/control.yml b/Resources/Prototypes/_Backmen/Modsuits/Clothing/control.yml index 2b02b4a5f0a..f8bf5cfdc87 100644 --- a/Resources/Prototypes/_Backmen/Modsuits/Clothing/control.yml +++ b/Resources/Prototypes/_Backmen/Modsuits/Clothing/control.yml @@ -485,8 +485,8 @@ sprite: Backmen/Modsuits/Clothing/Back/corporate.rsi - type: Clothing sprite: Backmen/Modsuits/Clothing/Back/corporate.rsi - equipSound: /Audio/Items/Modsuits/ballin.ogg - unequipSound: /Audio/Items/Modsuits/ballout.ogg + equipSound: /Audio/Backmen/Modsuits/ballin.ogg + unequipSound: /Audio/Backmen/Modsuits/ballout.ogg - type: ToggleableClothing clothingPrototype: ClothingOuterChestplateModsuitCCSealed requiredSlot: back diff --git a/Resources/Prototypes/_Backmen/Modsuits/Clothing/helmet.yml b/Resources/Prototypes/_Backmen/Modsuits/Clothing/helmet.yml index bf568091946..0741689dc2e 100644 --- a/Resources/Prototypes/_Backmen/Modsuits/Clothing/helmet.yml +++ b/Resources/Prototypes/_Backmen/Modsuits/Clothing/helmet.yml @@ -40,7 +40,7 @@ - type: entity parent: ClothingHeadHelmetModsuitCEBase id: ClothingHeadHelmetModsuitCESealed - noSpawn: true + categories: [ HideSpawnMenu ] name: salvage modsuit helmet description: Special hardsuit helmet, made for the captain of the station. components: diff --git a/Resources/Prototypes/_Backmen/Modsuits/Modfab/modsuit.yml b/Resources/Prototypes/_Backmen/Modsuits/Modfab/modsuit.yml index ada24f927bc..2df2efc7f0c 100644 --- a/Resources/Prototypes/_Backmen/Modsuits/Modfab/modsuit.yml +++ b/Resources/Prototypes/_Backmen/Modsuits/Modfab/modsuit.yml @@ -136,7 +136,6 @@ requirements: MatterBin: 1 Manipulator: 1 - materialRequirements: Glass: 2 - type: GuideHelp guides: diff --git a/Resources/Prototypes/_Backmen/Modsuits/modsuit_storage.yml b/Resources/Prototypes/_Backmen/Modsuits/modsuit_storage.yml index a43c3e8f5ba..281a4c5432e 100644 --- a/Resources/Prototypes/_Backmen/Modsuits/modsuit_storage.yml +++ b/Resources/Prototypes/_Backmen/Modsuits/modsuit_storage.yml @@ -198,37 +198,3 @@ - id: ClothingControlModsuitCCSealed - id: ClothingMaskGasCentcom - id: JetpackSecurityFilled - -- type: entity - name: ModSuit Storage Centcom - description: ModSuit Storage - id: ModSuitStorageSyndicate - parent: ModSuitStorageBase - suffix: HOS - components: - - type: StorageFill - contents: - - id: NitrogenTankFilled - - id: OxygenTankFilled - - id: ClothingControlModsuitOperativeSealedFractionBoom - - id: ClothingMaskGasSyndicate - - id: JetpackBlackFilled - - type: Sprite - sprite: Backmen/Modsuits/suit_storage_syndie.rsi - -- type: entity - name: ModSuit Storage Centcom - description: ModSuit Storage - id: ModSuitStorageSyndicateCMD - parent: ModSuitStorageBase - suffix: HOS - components: - - type: StorageFill - contents: - - id: NitrogenTankFilled - - id: OxygenTankFilled - - id: ClothingControlModsuitOperativeCMDSealedFractionBoom - - id: ClothingMaskGasSyndicate - - id: JetpackBlackFilled - - type: Sprite - sprite: Backmen/Modsuits/suit_storage_syndie.rsi From 786b1c1cdfcc39a9008dc09c7344301acfcf3083 Mon Sep 17 00:00:00 2001 From: BongoCatGamer Date: Mon, 2 Dec 2024 18:53:28 +0500 Subject: [PATCH 19/22] Fix again x2... --- .../_Backmen/Modsuits/Clothing/control.yml | 12 ------------ .../Modsuits/Construction/modsuitconstruction.yml | 2 +- .../Prototypes/_Backmen/Modsuits/modsuitstech.yml | 2 +- 3 files changed, 2 insertions(+), 14 deletions(-) diff --git a/Resources/Prototypes/_Backmen/Modsuits/Clothing/control.yml b/Resources/Prototypes/_Backmen/Modsuits/Clothing/control.yml index f8bf5cfdc87..4b6caa202d4 100644 --- a/Resources/Prototypes/_Backmen/Modsuits/Clothing/control.yml +++ b/Resources/Prototypes/_Backmen/Modsuits/Clothing/control.yml @@ -88,9 +88,6 @@ radius: 12 softness: 20 autoRot: true - - type: Construction - graph: ModsuitAdvanced - node: modsuitadvanced - type: StaticPrice price: 67000 @@ -199,9 +196,6 @@ radius: 12 softness: 20 autoRot: true - - type: Construction - graph: ModsuitMedical - node: modsuitmedical - type: StaticPrice price: 4000 @@ -280,9 +274,6 @@ radius: 12 softness: 20 autoRot: true - - type: Construction - graph: ModsuitMagnate - node: modsuitmagnates - type: StaticPrice price: 35000 # magnate = роскошный @@ -336,9 +327,6 @@ radius: 12 softness: 20 autoRot: true - - type: Construction - graph: ModsuitHOS - node: modsuithos - type: StaticPrice price: 10000 diff --git a/Resources/Prototypes/_Backmen/Modsuits/Construction/modsuitconstruction.yml b/Resources/Prototypes/_Backmen/Modsuits/Construction/modsuitconstruction.yml index 548d4f6cd76..9cfe9200c01 100644 --- a/Resources/Prototypes/_Backmen/Modsuits/Construction/modsuitconstruction.yml +++ b/Resources/Prototypes/_Backmen/Modsuits/Construction/modsuitconstruction.yml @@ -219,7 +219,7 @@ - type: entity parent: BaseItem - id: PlatingCMOModsuitConstructing + id: PlatingParamedicModsuitConstructing name: cmo-plating description: Special hardsuit helmet, made for the CE of the station. components: diff --git a/Resources/Prototypes/_Backmen/Modsuits/modsuitstech.yml b/Resources/Prototypes/_Backmen/Modsuits/modsuitstech.yml index ea0cc2b0331..9f706c04e18 100644 --- a/Resources/Prototypes/_Backmen/Modsuits/modsuitstech.yml +++ b/Resources/Prototypes/_Backmen/Modsuits/modsuitstech.yml @@ -1,5 +1,5 @@ - type: technology - id: СombatModsuits + id: CombatModsuits name: research-technology-operative-modsuits icon: sprite: Backmen/Modsuits/Clothing/Head/salvage.rsi From b7034df1aa34281d268e2128f351baaf1595db2d Mon Sep 17 00:00:00 2001 From: BongoCatGamer Date: Mon, 2 Dec 2024 19:03:15 +0500 Subject: [PATCH 20/22] Fix shitsuits. --- .../_Backmen/Modsuits/Clothing/control.yml | 13 ------ .../Modsuits/Construction/modsuitrecipe.yml | 44 ------------------- 2 files changed, 57 deletions(-) diff --git a/Resources/Prototypes/_Backmen/Modsuits/Clothing/control.yml b/Resources/Prototypes/_Backmen/Modsuits/Clothing/control.yml index 4b6caa202d4..9a06064dacb 100644 --- a/Resources/Prototypes/_Backmen/Modsuits/Clothing/control.yml +++ b/Resources/Prototypes/_Backmen/Modsuits/Clothing/control.yml @@ -55,16 +55,6 @@ minValue: 0.1 maxValue: 2.0 isLooped: true - # - type: QualityOfItem - # qualityWeights: - # 0: 0 - # 1: 0 - # 2: 0 - # 3: 80 - # 4: 20 - # 5: 0 - # 6: 0 - # СВЕРХУ ЭТО РАЗКОММЕНТИТь!!! - type: entity parent: ClothingControlModsuitBase @@ -221,9 +211,6 @@ radius: 12 softness: 20 autoRot: true - - type: Construction - graph: ModsuitRescue - node: modsuitrescue - type: StaticPrice price: 8000 diff --git a/Resources/Prototypes/_Backmen/Modsuits/Construction/modsuitrecipe.yml b/Resources/Prototypes/_Backmen/Modsuits/Construction/modsuitrecipe.yml index e2014b44de2..684b3c812d2 100644 --- a/Resources/Prototypes/_Backmen/Modsuits/Construction/modsuitrecipe.yml +++ b/Resources/Prototypes/_Backmen/Modsuits/Construction/modsuitrecipe.yml @@ -20,17 +20,6 @@ icon: { sprite: Backmen/Modsuits/Clothing/Back/engineer.rsi, state: icon } objectType: Item -- type: construction - name: Медицинский Р.И.Г - id: ModsuitMedical - graph: ModsuitMedical - startNode: start - targetNode: modsuitmedical - category: construction-category-clothing - description: Р.И.Г, созданный специально под нужды профессии. - icon: { sprite: Backmen/Modsuits/Clothing/Back/medical.rsi, state: icon } - objectType: Item - - type: construction name: Научный Р.И.Г id: ModsuitRND @@ -75,17 +64,6 @@ icon: { sprite: Backmen/Modsuits/Clothing/Back/security.rsi, state: icon } objectType: Item -- type: construction - name: Продвинутый Р.И.Г - id: ModsuitAdvanced - graph: ModsuitAdvanced - startNode: start - targetNode: modsuitadvanced - category: construction-category-clothing - description: Р.И.Г, созданный специально под нужды профессии. - icon: { sprite: Backmen/Modsuits/Clothing/Back/advanced.rsi, state: icon } - objectType: Item - - type: construction name: Спасательный Р.И.Г id: ModsuitRescue @@ -96,25 +74,3 @@ description: Р.И.Г, созданный специально под нужды профессии. icon: { sprite: Backmen/Modsuits/Clothing/Back/cmo.rsi, state: icon } objectType: Item - -- type: construction - name: Роскошный Р.И.Г - id: ModsuitMagnate - graph: ModsuitMagnate - startNode: start - targetNode: modsuitmagnate - category: construction-category-clothing - description: Р.И.Г, созданный специально под нужды профессии. - icon: { sprite: Backmen/Modsuits/Clothing/Back/magnate.rsi, state: icon } - objectType: Item - -- type: construction - name: Гвардейский Р.И.Г - id: ModsuitHOS - graph: ModsuitHOS - startNode: start - targetNode: modsuithos - category: construction-category-clothing - description: Р.И.Г, созданный специально под нужды профессии. - icon: { sprite: Backmen/Modsuits/Clothing/Back/hos.rsi, state: icon } - objectType: Item From e5e237eeca8f214a7c07e38d619279d7f28ec3e4 Mon Sep 17 00:00:00 2001 From: BongoCatGamer Date: Mon, 2 Dec 2024 19:19:33 +0500 Subject: [PATCH 21/22] Fix blyat' --- .../Prototypes/_Backmen/Modsuits/Clothing/boots.yml | 2 +- .../_Backmen/Modsuits/Clothing/gauntlets.yml | 2 +- .../Prototypes/_Backmen/Modsuits/Clothing/helmet.yml | 12 +----------- .../Modsuits/Construction/modsuitconstruction.yml | 2 +- 4 files changed, 4 insertions(+), 14 deletions(-) diff --git a/Resources/Prototypes/_Backmen/Modsuits/Clothing/boots.yml b/Resources/Prototypes/_Backmen/Modsuits/Clothing/boots.yml index 19aa5231bd6..ee67f023ad6 100644 --- a/Resources/Prototypes/_Backmen/Modsuits/Clothing/boots.yml +++ b/Resources/Prototypes/_Backmen/Modsuits/Clothing/boots.yml @@ -1,7 +1,7 @@ - type: entity parent: ClothingShoesBase id: ClothingBootsModsuitCESealed - noSpawn: true + categories: [ HideSpawnMenu ] name: salvage modsuit helmet description: Special hardsuit helmet, made for the captain of the station. components: diff --git a/Resources/Prototypes/_Backmen/Modsuits/Clothing/gauntlets.yml b/Resources/Prototypes/_Backmen/Modsuits/Clothing/gauntlets.yml index 748d5c806f4..d54d3828528 100644 --- a/Resources/Prototypes/_Backmen/Modsuits/Clothing/gauntlets.yml +++ b/Resources/Prototypes/_Backmen/Modsuits/Clothing/gauntlets.yml @@ -1,7 +1,7 @@ - type: entity parent: ClothingHandsBase id: ClothingGauntletsModsuitCESealed - noSpawn: true + categories: [ HideSpawnMenu ] name: salvage modsuit helmet description: Special hardsuit helmet, made for the captain of the station. components: diff --git a/Resources/Prototypes/_Backmen/Modsuits/Clothing/helmet.yml b/Resources/Prototypes/_Backmen/Modsuits/Clothing/helmet.yml index 0741689dc2e..4e7de7a327a 100644 --- a/Resources/Prototypes/_Backmen/Modsuits/Clothing/helmet.yml +++ b/Resources/Prototypes/_Backmen/Modsuits/Clothing/helmet.yml @@ -1,7 +1,7 @@ - type: entity parent: ClothingHeadHardsuitBase id: ClothingHeadHelmetModsuitCEBase - noSpawn: true + categories: [ HideSpawnMenu ] abstract: true name: salvage modsuit helmet description: Special hardsuit helmet, made for the captain of the station. @@ -26,16 +26,6 @@ - type: FlashImmunity - type: EyeProtection - type: IdentityBlocker - # - type: QualityOfItem - # qualityWeights: - # 0: 0 - # 1: 0 - # 2: 0 - # 3: 80 - # 4: 20 - # 5: 0 - # 6: 0 - # ЭТО РАЗКОММЕНТИТь!!! - type: entity parent: ClothingHeadHelmetModsuitCEBase diff --git a/Resources/Prototypes/_Backmen/Modsuits/Construction/modsuitconstruction.yml b/Resources/Prototypes/_Backmen/Modsuits/Construction/modsuitconstruction.yml index 9cfe9200c01..9e1d82f3bf8 100644 --- a/Resources/Prototypes/_Backmen/Modsuits/Construction/modsuitconstruction.yml +++ b/Resources/Prototypes/_Backmen/Modsuits/Construction/modsuitconstruction.yml @@ -228,7 +228,7 @@ state: cmo-plating - type: Tag tags: - - PlatingCMOModsuit + - PlatingParamedicModsuit - type: entity parent: BaseItem From 6d58d71dd40d223d18d5cef5797144f2bcf5ec56 Mon Sep 17 00:00:00 2001 From: BongoCatGamer Date: Mon, 2 Dec 2024 19:26:46 +0500 Subject: [PATCH 22/22] Suka... --- .../_Backmen/Modsuits/Clothing/boots.yml | 2 +- .../_Backmen/Modsuits/Clothing/helmet.yml | 2 +- Resources/Prototypes/_Backmen/Modsuits/misc.yml | 15 --------------- 3 files changed, 2 insertions(+), 17 deletions(-) diff --git a/Resources/Prototypes/_Backmen/Modsuits/Clothing/boots.yml b/Resources/Prototypes/_Backmen/Modsuits/Clothing/boots.yml index ee67f023ad6..b714e6bc5f9 100644 --- a/Resources/Prototypes/_Backmen/Modsuits/Clothing/boots.yml +++ b/Resources/Prototypes/_Backmen/Modsuits/Clothing/boots.yml @@ -35,7 +35,7 @@ - type: entity parent: ClothingShoesBase id: ClothingBootsModsuitEngineerSealed - noSpawn: true + categories: [ HideSpawnMenu ] name: salvage modsuit helmet description: Special hardsuit helmet, made for the captain of the station. components: diff --git a/Resources/Prototypes/_Backmen/Modsuits/Clothing/helmet.yml b/Resources/Prototypes/_Backmen/Modsuits/Clothing/helmet.yml index 4e7de7a327a..180db1e75ca 100644 --- a/Resources/Prototypes/_Backmen/Modsuits/Clothing/helmet.yml +++ b/Resources/Prototypes/_Backmen/Modsuits/Clothing/helmet.yml @@ -57,7 +57,7 @@ - type: entity parent: ClothingHeadHelmetModsuitCEBase id: ClothingHeadHelmetModsuitEngineerSealed - noSpawn: true + categories: [ HideSpawnMenu ] name: salvage modsuit helmet description: Special hardsuit helmet, made for the captain of the station. components: diff --git a/Resources/Prototypes/_Backmen/Modsuits/misc.yml b/Resources/Prototypes/_Backmen/Modsuits/misc.yml index 52f14c5717d..dfaeed14492 100644 --- a/Resources/Prototypes/_Backmen/Modsuits/misc.yml +++ b/Resources/Prototypes/_Backmen/Modsuits/misc.yml @@ -13,21 +13,6 @@ tags: - NukeOpsUplink -- type: listing - id: ModsuitOperativeCMDSealed - name: uplink-modsuitoperativecmd-name - description: uplink-modsuitoperativecmd-desc - productEntity: ClothingControlModsuitPMCSealed - cost: - Telecrystal: 30 - categories: - - UplinkWearables - conditions: - - !type:StoreWhitelistCondition - blacklist: - tags: - - NukeOpsUplink - - type: listing id: ModsuitNukeOperativeSealed name: uplink-modsuitoperative-name