From 86c2e989e68df9a0a2797010f9ac553d04d31dac Mon Sep 17 00:00:00 2001 From: Paul Ritter Date: Sun, 22 Nov 2020 02:53:52 +0100 Subject: [PATCH 01/13] fix smes (#2602) Co-authored-by: Paul --- .../Prototypes/Entities/Constructible/Power/power_base.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Prototypes/Entities/Constructible/Power/power_base.yml b/Resources/Prototypes/Entities/Constructible/Power/power_base.yml index 3b35c9b988..b5e285e2a2 100644 --- a/Resources/Prototypes/Entities/Constructible/Power/power_base.yml +++ b/Resources/Prototypes/Entities/Constructible/Power/power_base.yml @@ -68,8 +68,8 @@ - type: Sprite netsync: false sprite: Constructible/Power/smes.rsi - state: smes layers: + - state: smes - state: smes-display shader: unshaded - type: Smes From 8c81e7c7679bae12a0cfa396be840db9bbaf6728 Mon Sep 17 00:00:00 2001 From: Manel Navola <6786088+ManelNavola@users.noreply.github.com> Date: Sun, 22 Nov 2020 03:58:31 +0100 Subject: [PATCH 02/13] Added threshold to DoAfter's user and target movement checks (#2585) * Added threshold to DoAfter user and target movement checks * Fixed spacing * Update Content.Server/GameObjects/EntitySystems/DoAfter/DoAfterEventArgs.cs Co-authored-by: Manel Navola Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> --- .../GameObjects/EntitySystems/DoAfter/DoAfterSystem.cs | 4 ++-- Content.Server/GameObjects/Components/DoAfterComponent.cs | 3 ++- .../GameObjects/EntitySystems/DoAfter/DoAfter.cs | 8 +++++--- .../GameObjects/EntitySystems/DoAfter/DoAfterEventArgs.cs | 8 +++++++- .../GameObjects/Components/SharedDoAfterComponent.cs | 7 +++++-- 5 files changed, 21 insertions(+), 9 deletions(-) diff --git a/Content.Client/GameObjects/EntitySystems/DoAfter/DoAfterSystem.cs b/Content.Client/GameObjects/EntitySystems/DoAfter/DoAfterSystem.cs index 28d350b880..920cd8e71a 100644 --- a/Content.Client/GameObjects/EntitySystems/DoAfter/DoAfterSystem.cs +++ b/Content.Client/GameObjects/EntitySystems/DoAfter/DoAfterSystem.cs @@ -114,7 +114,7 @@ namespace Content.Client.GameObjects.EntitySystems.DoAfter // Predictions if (doAfter.BreakOnUserMove) { - if (userGrid != doAfter.UserGrid) + if (!userGrid.InRange(EntityManager, doAfter.UserGrid, doAfter.MovementThreshold)) { comp.Cancel(id, currentTime); continue; @@ -123,7 +123,7 @@ namespace Content.Client.GameObjects.EntitySystems.DoAfter if (doAfter.BreakOnTargetMove) { - if (EntityManager.TryGetEntity(doAfter.TargetUid, out var targetEntity) && targetEntity.Transform.Coordinates != doAfter.TargetGrid) + if (EntityManager.TryGetEntity(doAfter.TargetUid, out var targetEntity) && !targetEntity.Transform.Coordinates.InRange(EntityManager, doAfter.TargetGrid, doAfter.MovementThreshold)) { comp.Cancel(id, currentTime); continue; diff --git a/Content.Server/GameObjects/Components/DoAfterComponent.cs b/Content.Server/GameObjects/Components/DoAfterComponent.cs index 5ae0a4ce83..1fe5f2712e 100644 --- a/Content.Server/GameObjects/Components/DoAfterComponent.cs +++ b/Content.Server/GameObjects/Components/DoAfterComponent.cs @@ -1,4 +1,4 @@ -#nullable enable +#nullable enable using System.Collections.Generic; using Content.Server.GameObjects.EntitySystems.DoAfter; using Content.Shared.GameObjects.Components; @@ -31,6 +31,7 @@ namespace Content.Server.GameObjects.Components doAfter.EventArgs.Delay, doAfter.EventArgs.BreakOnUserMove, doAfter.EventArgs.BreakOnTargetMove, + doAfter.EventArgs.MovementThreshold, doAfter.EventArgs.Target?.Uid ?? EntityUid.Invalid); toAdd.Add(clientDoAfter); diff --git a/Content.Server/GameObjects/EntitySystems/DoAfter/DoAfter.cs b/Content.Server/GameObjects/EntitySystems/DoAfter/DoAfter.cs index 59b847effd..2e4d2e5380 100644 --- a/Content.Server/GameObjects/EntitySystems/DoAfter/DoAfter.cs +++ b/Content.Server/GameObjects/EntitySystems/DoAfter/DoAfter.cs @@ -1,4 +1,4 @@ -#nullable enable +#nullable enable using System; using System.Threading.Tasks; using Content.Server.GameObjects.Components.GUI; @@ -118,12 +118,14 @@ namespace Content.Server.GameObjects.EntitySystems.DoAfter } // TODO :Handle inertia in space. - if (EventArgs.BreakOnUserMove && EventArgs.User.Transform.Coordinates != UserGrid) + if (EventArgs.BreakOnUserMove && !EventArgs.User.Transform.Coordinates.InRange( + EventArgs.User.EntityManager, UserGrid, EventArgs.MovementThreshold)) { return true; } - if (EventArgs.BreakOnTargetMove && EventArgs.Target!.Transform.Coordinates != TargetGrid) + if (EventArgs.BreakOnTargetMove && !EventArgs.Target!.Transform.Coordinates.InRange( + EventArgs.User.EntityManager, TargetGrid, EventArgs.MovementThreshold)) { return true; } diff --git a/Content.Server/GameObjects/EntitySystems/DoAfter/DoAfterEventArgs.cs b/Content.Server/GameObjects/EntitySystems/DoAfter/DoAfterEventArgs.cs index 84507fe1b9..e3063e3a43 100644 --- a/Content.Server/GameObjects/EntitySystems/DoAfter/DoAfterEventArgs.cs +++ b/Content.Server/GameObjects/EntitySystems/DoAfter/DoAfterEventArgs.cs @@ -1,4 +1,4 @@ -#nullable enable +#nullable enable using System; using System.Threading; using Content.Shared.Physics; @@ -60,6 +60,11 @@ namespace Content.Server.GameObjects.EntitySystems.DoAfter /// public bool BreakOnTargetMove { get; set; } + /// + /// Threshold for user and target movement + /// + public float MovementThreshold { get; set; } + public bool BreakOnDamage { get; set; } public bool BreakOnStun { get; set; } @@ -86,6 +91,7 @@ namespace Content.Server.GameObjects.EntitySystems.DoAfter Delay = delay; CancelToken = cancelToken; Target = target; + MovementThreshold = 0.1f; if (Target == null) { diff --git a/Content.Shared/GameObjects/Components/SharedDoAfterComponent.cs b/Content.Shared/GameObjects/Components/SharedDoAfterComponent.cs index bd1c506b7e..9e04ef0dd4 100644 --- a/Content.Shared/GameObjects/Components/SharedDoAfterComponent.cs +++ b/Content.Shared/GameObjects/Components/SharedDoAfterComponent.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Generic; using Robust.Shared.GameObjects; using Robust.Shared.Map; @@ -59,7 +59,9 @@ namespace Content.Shared.GameObjects.Components public bool BreakOnTargetMove { get; } - public ClientDoAfter(byte id, EntityCoordinates userGrid, EntityCoordinates targetGrid, TimeSpan startTime, float delay, bool breakOnUserMove, bool breakOnTargetMove, EntityUid targetUid = default) + public float MovementThreshold { get; } + + public ClientDoAfter(byte id, EntityCoordinates userGrid, EntityCoordinates targetGrid, TimeSpan startTime, float delay, bool breakOnUserMove, bool breakOnTargetMove, float movementThreshold, EntityUid targetUid = default) { ID = id; UserGrid = userGrid; @@ -68,6 +70,7 @@ namespace Content.Shared.GameObjects.Components Delay = delay; BreakOnUserMove = breakOnUserMove; BreakOnTargetMove = breakOnTargetMove; + MovementThreshold = movementThreshold; TargetUid = targetUid; } } From 1f654df9774f14485293b9aefbe72562ba8e1260 Mon Sep 17 00:00:00 2001 From: GlassEclipse <32942106+GlassEclipse@users.noreply.github.com> Date: Sat, 21 Nov 2020 21:40:09 -0600 Subject: [PATCH 03/13] Fixes crit in nograv (#2554) --- .../GameObjects/EntitySystems/SharedMoverSystem.cs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Content.Shared/GameObjects/EntitySystems/SharedMoverSystem.cs b/Content.Shared/GameObjects/EntitySystems/SharedMoverSystem.cs index 8d59168e75..974ba1014a 100644 --- a/Content.Shared/GameObjects/EntitySystems/SharedMoverSystem.cs +++ b/Content.Shared/GameObjects/EntitySystems/SharedMoverSystem.cs @@ -49,7 +49,8 @@ namespace Content.Shared.GameObjects.EntitySystems base.Shutdown(); } - protected void UpdateKinematics(ITransformComponent transform, IMoverComponent mover, IPhysicsComponent physics) + //TODO: reorganize this to make more logical sense + protected void UpdateKinematics(ITransformComponent transform, IMoverComponent mover, IPhysicsComponent physics) { physics.EnsureController(); @@ -70,14 +71,14 @@ namespace Content.Shared.GameObjects.EntitySystems // TODO: movement check. var (walkDir, sprintDir) = mover.VelocityDir; var combined = walkDir + sprintDir; - if (combined.LengthSquared < 0.001 || !ActionBlockerSystem.CanMove(mover.Owner) && !weightless) + if (combined.LengthSquared < 0.001 || !ActionBlockerSystem.CanMove(mover.Owner) && !weightless) { if (physics.TryGetController(out MoverController controller)) { controller.StopMoving(); } } - else + else if (ActionBlockerSystem.CanMove(mover.Owner)) { if (weightless) { From eb97168e30a6c51f8f064e497b8af7541d560f7e Mon Sep 17 00:00:00 2001 From: DrSmugleaf Date: Sun, 22 Nov 2020 04:45:15 +0100 Subject: [PATCH 04/13] Make godmode able to be disabled and more accessible to the rest of the code (#2560) * Make Godmode able to be disabled and more accessible * You got a license for that exclamation mark? * Move restore logic to the entity system * Make MovedByPressureComponent able to be disabled * Add extension that gives you the moved by pressure component * Fix not disabling moved by pressure --- Content.Server/Atmos/TileAtmosphere.cs | 2 +- .../Atmos/MovedByPressureComponent.cs | 22 +++- .../Components/Damage/DamageCommands.cs | 18 ++-- .../EntitySystems/GodmodeSystem.cs | 100 ++++++++++++++++++ 4 files changed, 129 insertions(+), 13 deletions(-) create mode 100644 Content.Server/GameObjects/EntitySystems/GodmodeSystem.cs diff --git a/Content.Server/Atmos/TileAtmosphere.cs b/Content.Server/Atmos/TileAtmosphere.cs index 69cba419e3..eaebbd2f7e 100644 --- a/Content.Server/Atmos/TileAtmosphere.cs +++ b/Content.Server/Atmos/TileAtmosphere.cs @@ -197,7 +197,7 @@ namespace Content.Server.Atmos foreach (var entity in _gridTileLookupSystem.GetEntitiesIntersecting(GridIndex, GridIndices)) { if (!entity.TryGetComponent(out IPhysicsComponent physics) - || !entity.TryGetComponent(out MovedByPressureComponent pressure) + || !entity.IsMovedByPressure(out var pressure) || entity.IsInContainer()) continue; diff --git a/Content.Server/GameObjects/Components/Atmos/MovedByPressureComponent.cs b/Content.Server/GameObjects/Components/Atmos/MovedByPressureComponent.cs index 851f281a58..8e840ce03e 100644 --- a/Content.Server/GameObjects/Components/Atmos/MovedByPressureComponent.cs +++ b/Content.Server/GameObjects/Components/Atmos/MovedByPressureComponent.cs @@ -1,4 +1,7 @@ -using Robust.Shared.GameObjects; +#nullable enable +using System.Diagnostics.CodeAnalysis; +using Robust.Shared.GameObjects; +using Robust.Shared.Interfaces.GameObjects; using Robust.Shared.Serialization; using Robust.Shared.ViewVariables; @@ -9,6 +12,8 @@ namespace Content.Server.GameObjects.Components.Atmos { public override string Name => "MovedByPressure"; + [ViewVariables(VVAccess.ReadWrite)] + public bool Enabled { get; set; } = true; [ViewVariables(VVAccess.ReadWrite)] public float PressureResistance { get; set; } = 1f; [ViewVariables(VVAccess.ReadWrite)] @@ -19,8 +24,23 @@ namespace Content.Server.GameObjects.Components.Atmos public override void ExposeData(ObjectSerializer serializer) { base.ExposeData(serializer); + serializer.DataField(this, x => x.Enabled, "enabled", true); serializer.DataField(this, x => PressureResistance, "pressureResistance", 1f); serializer.DataField(this, x => MoveResist, "moveResist", 100f); } } + + public static class MovedByPressureExtensions + { + public static bool IsMovedByPressure(this IEntity entity) + { + return entity.IsMovedByPressure(out _); + } + + public static bool IsMovedByPressure(this IEntity entity, [NotNullWhen(true)] out MovedByPressureComponent? moved) + { + return entity.TryGetComponent(out moved) && + moved.Enabled; + } + } } diff --git a/Content.Server/GameObjects/Components/Damage/DamageCommands.cs b/Content.Server/GameObjects/Components/Damage/DamageCommands.cs index e90fc5d294..820c858db5 100644 --- a/Content.Server/GameObjects/Components/Damage/DamageCommands.cs +++ b/Content.Server/GameObjects/Components/Damage/DamageCommands.cs @@ -2,12 +2,13 @@ using System; using System.Diagnostics.CodeAnalysis; using Content.Server.Administration; -using Content.Server.GameObjects.Components.Atmos; +using Content.Server.GameObjects.EntitySystems; using Content.Shared.Administration; using Content.Shared.GameObjects.Components.Damage; using Robust.Server.Interfaces.Console; using Robust.Server.Interfaces.Player; using Robust.Shared.GameObjects; +using Robust.Shared.GameObjects.Systems; using Robust.Shared.Interfaces.GameObjects; using Robust.Shared.IoC; @@ -204,17 +205,12 @@ namespace Content.Server.GameObjects.Components.Damage return; } - if (entity.HasComponent()) - { - entity.RemoveComponent(); - } + var godmodeSystem = EntitySystem.Get(); + var enabled = godmodeSystem.ToggleGodmode(entity); - if (entity.TryGetComponent(out IDamageableComponent? damageable)) - { - damageable.AddFlag(DamageFlag.Invulnerable); - } - - shell.SendText(player, $"Enabled godmode for entity {entity.Name}"); + shell.SendText(player, enabled + ? $"Enabled godmode for entity {entity.Name} with id {entity.Uid}" + : $"Disabled godmode for entity {entity.Name} with id {entity.Uid}"); } } } diff --git a/Content.Server/GameObjects/EntitySystems/GodmodeSystem.cs b/Content.Server/GameObjects/EntitySystems/GodmodeSystem.cs new file mode 100644 index 0000000000..b2495f7627 --- /dev/null +++ b/Content.Server/GameObjects/EntitySystems/GodmodeSystem.cs @@ -0,0 +1,100 @@ +#nullable enable +using System.Collections.Generic; +using Content.Server.GameObjects.Components.Atmos; +using Content.Shared.GameObjects.Components.Damage; +using Content.Shared.GameTicking; +using JetBrains.Annotations; +using Robust.Shared.GameObjects.Systems; +using Robust.Shared.Interfaces.GameObjects; + +namespace Content.Server.GameObjects.EntitySystems +{ + [UsedImplicitly] + public class GodmodeSystem : EntitySystem, IResettingEntitySystem + { + private readonly Dictionary _entities = new Dictionary(); + + public void Reset() + { + _entities.Clear(); + } + + public bool EnableGodmode(IEntity entity) + { + if (_entities.ContainsKey(entity)) + { + return false; + } + + _entities[entity] = new OldEntityInformation(entity); + + if (entity.TryGetComponent(out MovedByPressureComponent? moved)) + { + moved.Enabled = false; + } + + if (entity.TryGetComponent(out IDamageableComponent? damageable)) + { + damageable.AddFlag(DamageFlag.Invulnerable); + } + + return true; + } + + public bool HasGodmode(IEntity entity) + { + return _entities.ContainsKey(entity); + } + + public bool DisableGodmode(IEntity entity) + { + if (!_entities.Remove(entity, out var old)) + { + return false; + } + + if (entity.TryGetComponent(out MovedByPressureComponent? moved)) + { + moved.Enabled = old.MovedByPressure; + } + + if (entity.TryGetComponent(out IDamageableComponent? damageable)) + { + damageable.RemoveFlag(DamageFlag.Invulnerable); + } + + return true; + } + + /// + /// Toggles godmode for a given entity. + /// + /// The entity to toggle godmode for. + /// true if enabled, false if disabled. + public bool ToggleGodmode(IEntity entity) + { + if (HasGodmode(entity)) + { + DisableGodmode(entity); + return false; + } + else + { + EnableGodmode(entity); + return true; + } + } + + public class OldEntityInformation + { + public OldEntityInformation(IEntity entity) + { + Entity = entity; + MovedByPressure = entity.IsMovedByPressure(); + } + + public IEntity Entity { get; } + public bool MovedByPressure { get; } + } + } +} From ccb7719935c1bf92046b4726f625a9d44858f023 Mon Sep 17 00:00:00 2001 From: Alex Evgrashin Date: Sun, 22 Nov 2020 07:05:30 +0300 Subject: [PATCH 05/13] Glass shards can be refined by welder (#2576) * Added refine component for glass shard * Add refinable to rest of the shards * Fixed windows shard count * Now objects can vary refine time * Windows will spawn correct shards after destruction * Added all requested changes * Client ignore as well Co-authored-by: Metal Gear Sloth Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> --- Content.Client/IgnoredComponents.cs | 3 +- .../Construction/WelderRefinableComponent.cs | 71 +++++++++++++++++++ .../Entities/Constructible/Walls/windows.yml | 10 ++- .../Prototypes/Entities/Objects/shards.yml | 28 +++++--- 4 files changed, 101 insertions(+), 11 deletions(-) create mode 100644 Content.Server/GameObjects/Components/Construction/WelderRefinableComponent.cs diff --git a/Content.Client/IgnoredComponents.cs b/Content.Client/IgnoredComponents.cs index 1959d0ebad..41c10d6f2d 100644 --- a/Content.Client/IgnoredComponents.cs +++ b/Content.Client/IgnoredComponents.cs @@ -210,8 +210,9 @@ "CrematoriumEntityStorage", "RandomArcade", "RandomSpriteState", + "WelderRefinable", "ConveyorAssembly", - "TwoWayLever" + "TwoWayLever", }; } } diff --git a/Content.Server/GameObjects/Components/Construction/WelderRefinableComponent.cs b/Content.Server/GameObjects/Components/Construction/WelderRefinableComponent.cs new file mode 100644 index 0000000000..1d5fb02d88 --- /dev/null +++ b/Content.Server/GameObjects/Components/Construction/WelderRefinableComponent.cs @@ -0,0 +1,71 @@ +#nullable enable +using System.Collections.Generic; +using System.Threading.Tasks; +using Content.Server.GameObjects.Components.Interactable; +using Content.Server.GameObjects.Components.Stack; +using Content.Shared.GameObjects.Components.Interactable; +using Content.Shared.Interfaces.GameObjects.Components; +using Robust.Shared.GameObjects; +using Robust.Shared.Serialization; +using Robust.Shared.ViewVariables; + +namespace Content.Server.GameObjects.Components.Construction +{ + /// + /// Used for something that can be refined by welder. + /// For example, glass shard can be refined to glass sheet. + /// + [RegisterComponent] + public class WelderRefinableComponent : Component, IInteractUsing + { + [ViewVariables] + private HashSet? _refineResult = default; + [ViewVariables] + private float _refineTime; + + private bool _beingWelded; + + public override string Name => "WelderRefinable"; + + public override void ExposeData(ObjectSerializer serializer) + { + base.ExposeData(serializer); + serializer.DataField(ref _refineResult, "refineResult", new HashSet { "GlassStack" }); + serializer.DataField(ref _refineTime, "refineTime", 2f); + } + + public async Task InteractUsing(InteractUsingEventArgs eventArgs) + { + // check if object is welder + if (!eventArgs.Using.TryGetComponent(out ToolComponent? tool)) + return false; + + // check if someone is already welding object + if (_beingWelded) + return false; + _beingWelded = true; + + if (!await tool.UseTool(eventArgs.User, Owner, _refineTime, ToolQuality.Welding)) + { + // failed to veld - abort refine + _beingWelded = false; + return false; + } + + // get last owner coordinates and delete it + var resultPosition = Owner.Transform.Coordinates; + Owner.Delete(); + + // spawn each result afrer refine + foreach (var result in _refineResult!) + { + var droppedEnt = Owner.EntityManager.SpawnEntity(result, resultPosition); + + if (droppedEnt.TryGetComponent(out var stackComp)) + stackComp.Count = 1; + } + + return true; + } + } +} diff --git a/Resources/Prototypes/Entities/Constructible/Walls/windows.yml b/Resources/Prototypes/Entities/Constructible/Walls/windows.yml index 97e6310a7c..87ee34936b 100644 --- a/Resources/Prototypes/Entities/Constructible/Walls/windows.yml +++ b/Resources/Prototypes/Entities/Constructible/Walls/windows.yml @@ -33,7 +33,7 @@ spawnOnDestroy: ShardGlass: Min: 1 - Max: 3 + Max: 2 - type: SnapGrid offset: Center - type: Airtight @@ -58,6 +58,10 @@ sprite: Constructible/Structures/Windows/reinforced_window.rsi - type: Destructible deadThreshold: 75 + spawnOnDestroy: + ShardGlassReinforced: + Min: 1 + Max: 2 resistances: metallicResistances - type: Window base: rwindow @@ -77,6 +81,10 @@ sprite: Constructible/Structures/Windows/phoron_window.rsi - type: Destructible deadThreshold: 100 + spawnOnDestroy: + ShardGlassPhoron: + Min: 1 + Max: 2 resistances: metallicResistances - type: Window base: pwindow diff --git a/Resources/Prototypes/Entities/Objects/shards.yml b/Resources/Prototypes/Entities/Objects/shards.yml index 0807101774..b9803cf51b 100644 --- a/Resources/Prototypes/Entities/Objects/shards.yml +++ b/Resources/Prototypes/Entities/Objects/shards.yml @@ -25,10 +25,13 @@ description: A small piece of glass. It looks sharp, you wouldn't want to step on it barefoot. parent: ShardBase components: - - type: Sprite - color: "#bbeeff" - - type: Item - color: "#bbeeff" + - type: Sprite + color: "#bbeeff" + - type: Item + color: "#bbeeff" + - type: WelderRefinable + refineResult: + - GlassStack - type: entity id: ShardGlassReinforced @@ -36,11 +39,14 @@ description: A small piece of reinforced glass. It looks sharp, you wouldn't want to step on it barefoot. parent: ShardBase components: - - type: Sprite - color: "#96cdef" - - type: Item - color: "#96cdef" - + - type: Sprite + color: "#96cdef" + - type: Item + color: "#96cdef" + - type: WelderRefinable + refineResult: + - GlassStack + - MetalStack - type: entity id: ShardGlassPhoron name: phoron glass shard @@ -51,3 +57,7 @@ color: "#f3b489" - type: Item color: "#f3b489" + - type: WelderRefinable + refineResult: + - GlassStack + - PhoronStack From f46a6a8d813dd20f4a86d5d0bc4a0c70cbd821dd Mon Sep 17 00:00:00 2001 From: Swept Date: Sun, 22 Nov 2020 04:17:14 +0000 Subject: [PATCH 06/13] Copyright Pass/Pruning | Part 1 - Clothing (#2539) * Backpacks/Belts * Cleans up Headsets * Glasses and Gloves (Remind me to make an alpha for those stupid gloves) * This commit has taken too many of my damn tears please appreciate it * Holy SHIT that was an ordeal * NECK and MASKS * Jumpsuits/skirts * Goodbye old color.rsi * Outerclothing * More Outerclothing * It builds now * More ID organization :) * Gloves up to scratch * My piss burns * GLasses * Added some more glasses * Mission control we are ready for review * Hotfix * Cleanup * Fix not commenting out whole line in contents * duffelbag => duffel bag * Update Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> * Fixed Breath Mask * Scrubs * New line * Fixed Build * Ok * Update engivend.yml * Fix meson glasses prototype in boxes * Fix prototype name for sec glasses in boxes * Fix InventoryHelpersTest janitor jumpsuit prototype * Fix outdated stationstation prototypes * Fix vending machines having invalid starting inventories * Fix chapel vending machine Co-authored-by: DrSmugleaf Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> --- .../Tests/InventoryHelpersTest.cs | 4 +- Resources/Maps/saltern.yml | 22 +- Resources/Maps/stationstation.yml | 26 +- .../Prototypes/Catalog/Fills/backpack.yml | 24 +- .../Fills/belt.yml} | 20 +- Resources/Prototypes/Catalog/Fills/duffel.yml | 16 + .../Prototypes/Catalog/Fills/lockers.yml | 36 +- .../Catalog/VendingMachines/chapel.yml | 17 +- .../Catalog/VendingMachines/engivend.yml | 2 +- .../Catalog/VendingMachines/hats.yml | 35 +- .../Catalog/VendingMachines/shoes.yml | 8 +- .../Catalog/VendingMachines/suits.yml | 15 +- .../Entities/Clothing/Back/backpacks.yml | 48 +- .../Entities/Clothing/Back/duffel.yml | 94 +- .../Entities/Clothing/Back/gas_tanks.yml | 11 - .../Entities/Clothing/Back/satchel.yml | 65 +- .../Entities/Clothing/Belt/base.yml | 11 + .../Entities/Clothing/Belt/belts.yml | 18 +- .../Clothing/{Earpieces => Ears}/headsets.yml | 60 +- .../{Earpieces => Ears}/headsets_alt.yml | 35 +- .../Entities/Clothing/Eyes/base.yml | 9 + .../Entities/Clothing/Eyes/glasses.yml | 103 + .../Prototypes/Entities/Clothing/Eyes/hud.yml | 32 + .../Entities/Clothing/Eyes/misc.yml | 10 + .../Entities/Clothing/Glasses/eyes.yml | 46 - .../Entities/Clothing/Gloves/gloves.yml | 312 --- .../Entities/Clothing/Hands/base.yml | 9 + .../Entities/Clothing/Hands/colored.yml | 120 ++ .../Entities/Clothing/Hands/gloves.yml | 127 ++ .../Entities/Clothing/Head/animals.yml | 178 +- .../Entities/Clothing/Head/bandanas.yml | 87 + .../Entities/Clothing/Head/base.yml | 31 + .../Entities/Clothing/Head/hardhats.yml | 54 + .../Clothing/Head/hardsuit-helmets.yml | 195 +- .../Entities/Clothing/Head/hats.yml | 1119 ++--------- .../Entities/Clothing/Head/helmets.yml | 170 +- .../Entities/Clothing/Head/hoods.yml | 156 +- .../Entities/Clothing/Head/misc.yml | 119 +- .../Entities/Clothing/Head/soft.yml | 241 +++ .../Entities/Clothing/Head/welding-masks.yml | 95 - .../Entities/Clothing/Head/welding.yml | 43 + .../Entities/Clothing/Masks/base.yml | 9 + .../Entities/Clothing/Masks/masks.yml | 87 +- .../Entities/Clothing/Neck/base.yml | 14 + .../Entities/Clothing/Neck/cloaks.yml | 102 +- .../Entities/Clothing/Neck/misc.yml | 32 + .../Entities/Clothing/Neck/neck.yml | 138 -- .../Entities/Clothing/Neck/scarfs.yml | 43 + .../Entities/Clothing/Neck/ties.yml | 21 + .../Entities/Clothing/OuterClothing/armor.yml | 244 +-- .../Entities/Clothing/OuterClothing/base.yml | 20 + .../Entities/Clothing/OuterClothing/bio.yml | 71 + .../Entities/Clothing/OuterClothing/coats.yml | 331 +--- .../Clothing/OuterClothing/hardsuits.yml | 308 ++- .../Entities/Clothing/OuterClothing/misc.yml | 314 ++- .../Entities/Clothing/OuterClothing/suits.yml | 211 +- .../Entities/Clothing/OuterClothing/vests.yml | 65 + .../Entities/Clothing/Shoes/base.yml | 10 + .../Entities/Clothing/Shoes/boots.yml | 33 + .../Entities/Clothing/Shoes/clown.yml | 14 - .../Entities/Clothing/Shoes/color.yml | 98 + .../Entities/Clothing/Shoes/misc.yml | 43 + .../Entities/Clothing/Shoes/shoes.yml | 358 ---- .../Entities/Clothing/Shoes/specific.yml | 81 + .../Entities/Clothing/Under/under.yml | 24 + .../will be filled out when implemented -S | 0 .../Entities/Clothing/Uniforms/base.yml | 20 + .../Entities/Clothing/Uniforms/color.yml | 475 ----- .../Entities/Clothing/Uniforms/jumpskirts.yml | 452 +++++ .../Entities/Clothing/Uniforms/jumpsuits.yml | 550 ++++++ .../Entities/Clothing/Uniforms/scrubs.yml | 32 + .../Entities/Clothing/Uniforms/uniforms.yml | 918 --------- .../Entities/Objects/Boxes/boxes_general.yml | 4 +- .../Entities/Objects/Boxes/boxes_medical.yml | 4 +- .../Entities/Objects/Boxes/boxes_security.yml | 2 +- .../Entities/Objects/Misc/bedsheets.yml | 117 +- .../Entities/Objects/Tools/toolbox.yml | 4 +- .../Roles/Jobs/Cargo/cargo_technician.yml | 9 +- .../Roles/Jobs/Cargo/quartermaster.yml | 9 +- .../Roles/Jobs/Civilian/assistant.yml | 8 +- .../Roles/Jobs/Civilian/bartender.yml | 11 +- .../Roles/Jobs/Civilian/botanist.yml | 8 +- .../Roles/Jobs/Civilian/chaplain.yml | 8 +- .../Prototypes/Roles/Jobs/Civilian/chef.yml | 9 +- .../Prototypes/Roles/Jobs/Civilian/clown.yml | 10 +- .../Roles/Jobs/Civilian/janitor.yml | 10 +- .../Prototypes/Roles/Jobs/Civilian/mime.yml | 16 +- .../Prototypes/Roles/Jobs/Command/captain.yml | 17 +- .../Roles/Jobs/Command/head_of_personnel.yml | 10 +- .../Roles/Jobs/Engineering/chief_engineer.yml | 10 +- .../Jobs/Engineering/station_engineer.yml | 13 +- .../Jobs/Medical/chief_medical_officer.yml | 10 +- .../Roles/Jobs/Medical/medical_doctor.yml | 10 +- .../Roles/Jobs/Science/research_director.yml | 9 +- .../Roles/Jobs/Science/scientist.yml | 10 +- .../Roles/Jobs/Security/head_of_security.yml | 14 +- .../Roles/Jobs/Security/security_officer.yml | 13 +- .../Prototypes/Roles/Jobs/Security/warden.yml | 13 +- .../Back/Backpacks/backpack.rsi/meta.json | 48 +- .../Back/Backpacks/botany.rsi/meta.json | 48 +- .../Back/Backpacks/captain.rsi/meta.json | 48 +- .../Back/Backpacks/chemistry.rsi/meta.json | 48 +- .../Back/Backpacks/clown.rsi/meta.json | 48 +- .../Back/Backpacks/engineering.rsi/meta.json | 48 +- .../Back/Backpacks/holding.rsi/meta.json | 184 +- .../Back/Backpacks/medical.rsi/meta.json | 48 +- .../Back/Backpacks/mime.rsi/meta.json | 48 +- .../Back/Backpacks/security.rsi/meta.json | 48 +- .../equipped-BACKPACK.png | Bin .../{duffel_cap.rsi => captain.rsi}/icon.png | Bin .../inhand-left.png | Bin .../inhand-right.png | Bin .../Back/Duffels/captain.rsi/meta.json | 27 + .../equipped-BACKPACK.png | Bin .../{duffel_clown.rsi => clown.rsi}/icon.png | Bin .../inhand-left.png | Bin .../inhand-right.png | Bin .../Clothing/Back/Duffels/clown.rsi/meta.json | 27 + .../Back/Duffels/duffel.rsi/meta.json | 48 +- .../Back/Duffels/duffel_cap.rsi/meta.json | 27 - .../Back/Duffels/duffel_clown.rsi/meta.json | 27 - .../Back/Duffels/duffel_eng.rsi/meta.json | 27 - .../Back/Duffels/duffel_med.rsi/meta.json | 27 - .../Back/Duffels/duffel_sec.rsi/meta.json | 27 - .../Back/Duffels/duffel_syn.rsi/meta.json | 27 - .../equipped-BACKPACK.png | Bin .../icon.png | Bin .../inhand-left.png | Bin .../inhand-right.png | Bin .../Back/Duffels/engineering.rsi/meta.json | 27 + .../equipped-BACKPACK.png | Bin .../{duffel_med.rsi => medical.rsi}/icon.png | Bin .../inhand-left.png | Bin .../inhand-right.png | Bin .../Back/Duffels/medical.rsi/meta.json | 27 + .../equipped-BACKPACK.png | Bin .../{duffel_sec.rsi => security.rsi}/icon.png | Bin .../inhand-left.png | Bin .../inhand-right.png | Bin .../Back/Duffels/security.rsi/meta.json | 27 + .../equipped-BACKPACK.png | Bin .../icon.png | Bin .../inhand-left.png | Bin .../inhand-right.png | Bin .../Back/Duffels/syndicate.rsi/meta.json | 27 + .../equipped-BACKPACK.png | Bin .../icon.png | Bin .../inhand-left.png | Bin .../inhand-right.png | Bin .../Back/Satchels/captain.rsi/meta.json | 27 + .../equipped-BACKPACK.png | Bin .../icon.png | Bin .../inhand-left.png | Bin .../inhand-right.png | Bin .../Back/Satchels/chemistry.rsi/meta.json | 27 + .../equipped-BACKPACK.png | Bin .../icon.png | Bin .../inhand-left.png | Bin .../inhand-right.png | Bin .../Back/Satchels/engineering.rsi/meta.json | 27 + .../equipped-BACKPACK.png | Bin .../icon.png | Bin .../inhand-left.png | Bin .../inhand-right.png | Bin .../Back/Satchels/hydroponics.rsi/meta.json | 27 + .../equipped-BACKPACK.png | Bin .../icon.png | Bin .../inhand-left.png | Bin .../inhand-right.png | Bin .../Back/Satchels/medical.rsi/meta.json | 27 + .../Back/Satchels/satchel.rsi/meta.json | 48 +- .../Satchels/satchel_captain.rsi/meta.json | 27 - .../Satchels/satchel_chemistry.rsi/meta.json | 27 - .../satchel_engineering.rsi/meta.json | 27 - .../satchel_hydroponics.rsi/meta.json | 27 - .../Satchels/satchel_medical.rsi/meta.json | 27 - .../Satchels/satchel_science.rsi/meta.json | 27 - .../Satchels/satchel_security.rsi/meta.json | 27 - .../equipped-BACKPACK.png | Bin .../icon.png | Bin .../inhand-left.png | Bin .../inhand-right.png | Bin .../Back/Satchels/science.rsi/meta.json | 27 + .../equipped-BACKPACK.png | Bin .../icon.png | Bin .../inhand-left.png | Bin .../inhand-right.png | Bin .../Back/Satchels/security.rsi/meta.json | 27 + .../Clothing/Belt/assault.rsi/meta.json | 65 +- .../Clothing/Belt/bandolier.rsi/meta.json | 65 +- .../Belt/belt_icon_overlay.rsi/meta.json | 4 +- .../Belt/belt_mob_overlay.rsi/meta.json | 4 +- .../Textures/Clothing/Belt/ce.rsi/meta.json | 65 +- .../Clothing/Belt/champion.rsi/meta.json | 65 +- .../Clothing/Belt/holster.rsi/meta.json | 65 +- .../Clothing/Belt/janitor.rsi/meta.json | 65 +- .../Clothing/Belt/medical.rsi/meta.json | 65 +- .../Belt/militarywebbing.rsi/meta.json | 65 +- .../Clothing/Belt/security.rsi/meta.json | 65 +- .../Belt/securitywebbing.rsi/meta.json | 65 +- .../Clothing/Belt/sheath.rsi/meta.json | 88 +- .../Clothing/Belt/suspenders.rsi/meta.json | 65 +- .../Clothing/Belt/utility.rsi/meta.json | 39 +- .../Ears/Headsets/base.rsi/cypherkey.png | Bin 279 -> 0 bytes .../Clothing/Ears/Headsets/base.rsi/meta.json | 60 +- .../Headsets/cargo.rsi/cargo_cypherkey.png | Bin 317 -> 0 bytes .../Ears/Headsets/cargo.rsi/meta.json | 69 +- .../Ears/Headsets/cargo.rsi/qm_cypherkey.png | Bin 307 -> 0 bytes .../Headsets/centcom.rsi/cent_cypherkey.png | Bin 286 -> 0 bytes .../Ears/Headsets/centcom.rsi/meta.json | 51 +- .../Headsets/command.rsi/com_cypherkey.png | Bin 282 -> 0 bytes .../Headsets/command.rsi/hop_cypherkey.png | Bin 294 -> 0 bytes .../Ears/Headsets/command.rsi/meta.json | 82 +- .../Headsets/engineering.rsi/ce_cypherkey.png | Bin 295 -> 0 bytes .../engineering.rsi/eng_cypherkey.png | Bin 296 -> 0 bytes .../Ears/Headsets/engineering.rsi/meta.json | 69 +- .../Headsets/medical.rsi/cmo_cypherkey.png | Bin 301 -> 0 bytes .../Headsets/medical.rsi/med_cypherkey.png | Bin 304 -> 0 bytes .../Ears/Headsets/medical.rsi/meta.json | 82 +- .../medicalscience.rsi/medsci_cypherkey.png | Bin 329 -> 0 bytes .../Headsets/medicalscience.rsi/meta.json | 40 +- .../Ears/Headsets/mining.rsi/meta.json | 40 +- .../Headsets/mining.rsi/mine_cypherkey.png | Bin 316 -> 0 bytes .../Ears/Headsets/robotics.rsi/meta.json | 40 +- .../Headsets/robotics.rsi/rob_cypherkey.png | Bin 339 -> 0 bytes .../Ears/Headsets/science.rsi/meta.json | 49 +- .../Headsets/science.rsi/rd_cypherkey.png | Bin 300 -> 0 bytes .../Headsets/science.rsi/sci_cypherkey.png | Bin 293 -> 0 bytes .../Headsets/security.rsi/hos_cypherkey.png | Bin 288 -> 0 bytes .../Ears/Headsets/security.rsi/meta.json | 82 +- .../Headsets/security.rsi/sec_cypherkey.png | Bin 289 -> 0 bytes .../Ears/Headsets/service.rsi/meta.json | 40 +- .../Headsets/service.rsi/srv_cypherkey.png | Bin 320 -> 0 bytes .../Headsets/service.rsi/srvsec_cypherkey.png | Bin 306 -> 0 bytes .../Headsets/servicemedical.rsi/meta.json | 20 - .../servicemedical.rsi/srvmed_cypherkey.png | Bin 320 -> 0 bytes .../Headsets/servicesecurity.rsi/meta.json | 40 +- .../servicesecurity.rsi/srvsec_cypherkey.png | Bin 306 -> 0 bytes .../Ears/Headsets/syndicate.rsi/meta.json | 60 +- .../Headsets/syndicate.rsi/syn_cypherkey.png | Bin 291 -> 0 bytes .../beergoggles.rsi}/equipped-EYES.png | Bin .../Eyes/Glasses/beergoggles.rsi/icon.png | Bin 0 -> 181 bytes .../Eyes/Glasses/beergoggles.rsi/meta.json | 19 + .../Glasses/gar.rsi/alt-equipped-EYES.png | Bin 0 -> 457 bytes .../Eyes/Glasses/gar.rsi/alt-inhand-left.png | Bin 0 -> 209 bytes .../Eyes/Glasses/gar.rsi/alt-inhand-right.png | Bin 0 -> 209 bytes .../Eyes/Glasses/gar.rsi/equipped-EYES.png | Bin 0 -> 464 bytes .../Eyes/Glasses/gar.rsi/icon-alt.png | Bin 0 -> 310 bytes .../Eyes/Glasses/gar.rsi/icon-super.png | Bin 0 -> 361 bytes .../Clothing/Eyes/Glasses/gar.rsi/icon.png | Bin 0 -> 361 bytes .../Eyes/Glasses/gar.rsi/inhand-left.png | Bin 0 -> 196 bytes .../Eyes/Glasses/gar.rsi/inhand-right.png | Bin 0 -> 197 bytes .../Clothing/Eyes/Glasses/gar.rsi/meta.json | 59 + .../Glasses/gar.rsi/super-equipped-EYES.png | Bin 0 -> 472 bytes .../Glasses/gar.rsi/super-inhand-left.png | Bin 0 -> 209 bytes .../Glasses/gar.rsi/super-inhand-right.png | Bin 0 -> 209 bytes .../Glasses/glasses.rsi/equipped-EYES.png | Bin 0 -> 484 bytes .../Eyes/Glasses/glasses.rsi/icon.png | Bin 0 -> 180 bytes .../Eyes/Glasses/glasses.rsi/inhand-left.png | Bin 0 -> 189 bytes .../Eyes/Glasses/glasses.rsi/inhand-right.png | Bin 0 -> 191 bytes .../Eyes/Glasses/glasses.rsi/meta.json | 27 + .../Glasses/meson.rsi}/equipped-EYES.png | Bin .../Glasses/meson.rsi/icon.png} | Bin .../Eyes/Glasses/meson.rsi/inhand-left.png | Bin 0 -> 343 bytes .../Eyes/Glasses/meson.rsi/inhand-right.png | Bin 0 -> 352 bytes .../Clothing/Eyes/Glasses/meson.rsi/meta.json | 27 + .../Glasses/secglasses.rsi}/equipped-EYES.png | Bin .../Glasses/secglasses.rsi}/icon.png | Bin .../Glasses/secglasses.rsi}/inhand-left.png | Bin .../Glasses/secglasses.rsi}/inhand-right.png | Bin .../Eyes/Glasses/secglasses.rsi/meta.json | 27 + .../Glasses/sunglasses.rsi/equipped-EYES.png | Bin 0 -> 187 bytes .../Glasses/sunglasses.rsi/icon.png | Bin .../Glasses/sunglasses.rsi}/inhand-left.png | Bin .../Glasses/sunglasses.rsi}/inhand-right.png | Bin .../Eyes/Glasses/sunglasses.rsi/meta.json | 27 + .../Glasses/thermal.rsi/equipped-EYES.png | Bin 0 -> 524 bytes .../Eyes/Glasses/thermal.rsi/icon.png | Bin 0 -> 199 bytes .../Eyes/Glasses/thermal.rsi/inhand-left.png | Bin 0 -> 327 bytes .../Eyes/Glasses/thermal.rsi/inhand-right.png | Bin 0 -> 325 bytes .../Eyes/Glasses/thermal.rsi/meta.json | 27 + .../Eyes/Hud/diag.rsi/equipped-EYES.png | Bin 0 -> 546 bytes .../Clothing/Eyes/Hud/diag.rsi/icon.png | Bin 0 -> 195 bytes .../Eyes/Hud/diag.rsi/inhand-left.png | Bin 0 -> 299 bytes .../Eyes/Hud/diag.rsi/inhand-right.png | Bin 0 -> 304 bytes .../Clothing/Eyes/Hud/diag.rsi/meta.json | 27 + .../Eyes/Hud/med.rsi/equipped-EYES.png | Bin 0 -> 534 bytes .../Clothing/Eyes/Hud/med.rsi/icon.png | Bin 0 -> 195 bytes .../Clothing/Eyes/Hud/med.rsi/inhand-left.png | Bin 0 -> 300 bytes .../Eyes/Hud/med.rsi/inhand-right.png | Bin 0 -> 305 bytes .../Clothing/Eyes/Hud/med.rsi/meta.json | 27 + .../Eyes/Hud/sec.rsi/equipped-EYES.png | Bin 0 -> 544 bytes .../Clothing/Eyes/Hud/sec.rsi/icon.png | Bin 0 -> 195 bytes .../Clothing/Eyes/Hud/sec.rsi/inhand-left.png | Bin 0 -> 293 bytes .../Eyes/Hud/sec.rsi/inhand-right.png | Bin 0 -> 300 bytes .../Clothing/Eyes/Hud/sec.rsi/meta.json | 27 + .../Eyes/Misc/eyepatch.rsi/equipped-EYES.png | Bin 0 -> 313 bytes .../Clothing/Eyes/Misc/eyepatch.rsi/icon.png | Bin 0 -> 191 bytes .../Clothing/Eyes/Misc/eyepatch.rsi/meta.json | 19 + .../Glasses/meson_scanners.rsi/meta.json | 1 - .../Clothing/Glasses/sunglasses.rsi/meta.json | 74 - .../Glasses/sunglasses_sec.rsi/meta.json | 74 - .../Clothing/Gloves/black.rsi/meta.json | 1 - .../Clothing/Gloves/blue.rsi/meta.json | 1 - .../Clothing/Gloves/boxing.rsi/meta.json | 1 - .../Clothing/Gloves/boxingblue.rsi/meta.json | 1 - .../Clothing/Gloves/boxinggreen.rsi/meta.json | 1 - .../Gloves/boxingyellow.rsi/meta.json | 1 - .../Clothing/Gloves/brown.rsi/meta.json | 1 - .../Clothing/Gloves/captain.rsi/meta.json | 1 - .../Clothing/Gloves/gray.rsi/meta.json | 1 - .../Clothing/Gloves/green.rsi/meta.json | 1 - .../Clothing/Gloves/ihscombat.rsi/meta.json | 1 - .../Clothing/Gloves/latex.rsi/meta.json | 1 - .../Clothing/Gloves/leather.rsi/meta.json | 1 - .../Clothing/Gloves/lightbrown.rsi/meta.json | 1 - .../Clothing/Gloves/orange.rsi/meta.json | 1 - .../Clothing/Gloves/powerglove.rsi/meta.json | 1 - .../Gloves/powerglove_active.rsi/meta.json | 1 - .../Clothing/Gloves/purple.rsi/meta.json | 1 - .../Clothing/Gloves/red.rsi/meta.json | 1 - .../Clothing/Gloves/robohands.rsi/meta.json | 1 - .../Clothing/Gloves/s_ninja.rsi/meta.json | 1 - .../Clothing/Gloves/s_ninjak.rsi/meta.json | 1 - .../Clothing/Gloves/s_ninjan.rsi/meta.json | 1 - .../Clothing/Gloves/white.rsi/meta.json | 60 - .../Clothing/Gloves/yellow.rsi/meta.json | 1 - .../Gloves/Color}/black.rsi/equipped-HAND.png | Bin .../Gloves/Color}/black.rsi/icon.png | Bin .../Gloves/Color}/black.rsi/inhand-left.png | Bin .../Gloves/Color}/black.rsi/inhand-right.png | Bin .../Hands/Gloves/Color/black.rsi/meta.json | 27 + .../Gloves/Color}/blue.rsi/equipped-HAND.png | Bin .../Gloves/Color}/blue.rsi/icon.png | Bin .../Gloves/Color}/blue.rsi/inhand-left.png | Bin .../Gloves/Color}/blue.rsi/inhand-right.png | Bin .../Hands/Gloves/Color/blue.rsi/meta.json | 27 + .../Gloves/Color}/brown.rsi/equipped-HAND.png | Bin .../Gloves/Color}/brown.rsi/icon.png | Bin .../Gloves/Color}/brown.rsi/inhand-left.png | Bin .../Gloves/Color}/brown.rsi/inhand-right.png | Bin .../Hands/Gloves/Color/brown.rsi/meta.json | 27 + .../Gloves/Color}/gray.rsi/equipped-HAND.png | Bin .../Gloves/Color}/gray.rsi/icon.png | Bin .../Gloves/Color}/gray.rsi/inhand-left.png | Bin .../Gloves/Color}/gray.rsi/inhand-right.png | Bin .../Hands/Gloves/Color/gray.rsi/meta.json | 27 + .../Gloves/Color}/green.rsi/equipped-HAND.png | Bin .../Gloves/Color}/green.rsi/icon.png | Bin .../Gloves/Color}/green.rsi/inhand-left.png | Bin .../Gloves/Color}/green.rsi/inhand-right.png | Bin .../Hands/Gloves/Color/green.rsi/meta.json | 27 + .../Color}/lightbrown.rsi/equipped-HAND.png | Bin .../Gloves/Color}/lightbrown.rsi/icon.png | Bin .../Color}/lightbrown.rsi/inhand-left.png | Bin .../Color}/lightbrown.rsi/inhand-right.png | Bin .../Gloves/Color/lightbrown.rsi/meta.json | 27 + .../Color}/orange.rsi/equipped-HAND.png | Bin .../Gloves/Color}/orange.rsi/icon.png | Bin .../Gloves/Color}/orange.rsi/inhand-left.png | Bin .../Gloves/Color}/orange.rsi/inhand-right.png | Bin .../Hands/Gloves/Color/orange.rsi/meta.json | 27 + .../Color}/purple.rsi/equipped-HAND.png | Bin .../Gloves/Color}/purple.rsi/icon.png | Bin .../Gloves/Color}/purple.rsi/inhand-left.png | Bin .../Gloves/Color}/purple.rsi/inhand-right.png | Bin .../Hands/Gloves/Color/purple.rsi/meta.json | 27 + .../Gloves/Color}/red.rsi/equipped-HAND.png | Bin .../Gloves/Color}/red.rsi/icon.png | Bin .../Gloves/Color}/red.rsi/inhand-left.png | Bin .../Gloves/Color}/red.rsi/inhand-right.png | Bin .../Hands/Gloves/Color/red.rsi/meta.json | 27 + .../Gloves/Color}/white.rsi/equipped-HAND.png | Bin .../Gloves/Color}/white.rsi/icon.png | Bin .../Gloves/Color}/white.rsi/inhand-left.png | Bin .../Gloves/Color}/white.rsi/inhand-right.png | Bin .../Hands/Gloves/Color/white.rsi/meta.json | 27 + .../Color}/yellow.rsi/equipped-HAND.png | Bin .../Gloves/Color}/yellow.rsi/icon.png | Bin .../Gloves/Color}/yellow.rsi/inhand-left.png | Bin .../Gloves/Color}/yellow.rsi/inhand-right.png | Bin .../Hands/Gloves/Color/yellow.rsi/meta.json | 27 + .../Gloves/boxing.rsi/blue-equipped-HAND.png} | Bin .../Gloves/boxing.rsi/blue-inhand-left.png} | Bin .../Gloves/boxing.rsi/blue-inhand-right.png} | Bin .../Gloves/boxing.rsi/equipped-HAND.png | Bin .../boxing.rsi/green-equipped-HAND.png} | Bin .../Gloves/boxing.rsi/green-inhand-left.png} | Bin .../Gloves/boxing.rsi/green-inhand-right.png} | Bin .../Gloves/boxing.rsi/icon-blue.png} | Bin .../Gloves/boxing.rsi/icon-green.png} | Bin .../Gloves/boxing.rsi/icon-yellow.png} | Bin .../{ => Hands}/Gloves/boxing.rsi/icon.png | Bin .../Gloves/boxing.rsi/inhand-left.png | Bin .../Gloves/boxing.rsi/inhand-right.png | Bin .../Hands/Gloves/boxing.rsi/meta.json | 75 + .../boxing.rsi/yellow-equipped-HAND.png} | Bin .../Gloves/boxing.rsi/yellow-inhand-left.png} | Bin .../boxing.rsi/yellow-inhand-right.png} | Bin .../Gloves/captain.rsi/equipped-HAND.png | Bin .../{ => Hands}/Gloves/captain.rsi/icon.png | Bin .../Gloves/captain.rsi/inhand-left.png | Bin .../Gloves/captain.rsi/inhand-right.png | Bin .../Hands/Gloves/captain.rsi/meta.json | 27 + .../Gloves/ihscombat.rsi/equipped-HAND.png | Bin .../{ => Hands}/Gloves/ihscombat.rsi/icon.png | Bin .../Gloves/ihscombat.rsi/inhand-left.png | Bin .../Gloves/ihscombat.rsi/inhand-right.png | Bin .../Hands/Gloves/ihscombat.rsi/meta.json | 27 + .../Gloves/latex.rsi/equipped-HAND.png | Bin .../{ => Hands}/Gloves/latex.rsi/icon.png | Bin .../Gloves/latex.rsi/inhand-left.png | Bin .../Gloves/latex.rsi/inhand-right.png | Bin .../Clothing/Hands/Gloves/latex.rsi/meta.json | 27 + .../Gloves/leather.rsi/equipped-HAND.png | Bin .../{ => Hands}/Gloves/leather.rsi/icon.png | Bin .../Gloves/leather.rsi/inhand-left.png | Bin .../Gloves/leather.rsi/inhand-right.png | Bin .../Hands/Gloves/leather.rsi/meta.json | 27 + .../Gloves/powerglove.rsi/equipped-HAND.png | Bin .../Gloves/powerglove.rsi/icon-on.png} | Bin .../Gloves/powerglove.rsi/icon.png | Bin .../Gloves/powerglove.rsi/inhand-left.png | Bin .../Gloves/powerglove.rsi/inhand-right.png | Bin .../Hands/Gloves/powerglove.rsi/meta.json | 43 + .../powerglove.rsi/on-equipped-HAND.png} | Bin .../Gloves/powerglove.rsi/on-inhand-left.png} | Bin .../powerglove.rsi/on-inhand-right.png} | Bin .../Gloves/robohands.rsi/equipped-HAND.png | Bin .../{ => Hands}/Gloves/robohands.rsi/icon.png | Bin .../Gloves/robohands.rsi/inhand-left.png | Bin .../Gloves/robohands.rsi/inhand-right.png | Bin .../Hands/Gloves/robohands.rsi/meta.json | 27 + .../Gloves/spaceninja.rsi}/equipped-HAND.png | Bin .../spaceninja.rsi/green-equipped-HAND.png} | Bin .../spaceninja.rsi/green-inhand-left.png} | Bin .../spaceninja.rsi/green-inhand-right.png} | Bin .../Gloves/spaceninja.rsi/icon-green.png} | Bin .../Gloves/spaceninja.rsi/icon-red.png} | Bin .../Gloves/spaceninja.rsi}/icon.png | Bin .../Gloves/spaceninja.rsi}/inhand-left.png | Bin .../Gloves/spaceninja.rsi}/inhand-right.png | Bin .../Hands/Gloves/spaceninja.rsi/meta.json | 59 + .../spaceninja.rsi/red-equipped-HAND.png} | Bin .../spaceninja.rsi/red-inhand-left.png} | Bin .../spaceninja.rsi/red-inhand-right.png} | Bin .../{ => Animals}/cat.rsi/equipped-HELMET.png | Bin .../Head/{ => Animals}/cat.rsi/icon.png | Bin .../{ => Animals}/cat.rsi/inhand-left.png | Bin .../{ => Animals}/cat.rsi/inhand-right.png | Bin .../Clothing/Head/Animals/cat.rsi/meta.json | 27 + .../cat2.rsi/equipped-HELMET.png | Bin .../Head/{ => Animals}/cat2.rsi/icon.png | Bin .../{ => Animals}/cat2.rsi/inhand-left.png | Bin .../{ => Animals}/cat2.rsi/inhand-right.png | Bin .../Clothing/Head/Animals/cat2.rsi/meta.json | 27 + .../cat3.rsi/equipped-HELMET.png | Bin .../Head/{ => Animals}/cat3.rsi/icon.png | Bin .../{ => Animals}/cat3.rsi/inhand-left.png | Bin .../{ => Animals}/cat3.rsi/inhand-right.png | Bin .../Clothing/Head/Animals/cat3.rsi/meta.json | 27 + .../headslime.rsi/equipped-HELMET.png | Bin .../Head/{ => Animals}/headslime.rsi/icon.png | Bin .../headslime.rsi/inhand-left.png | Bin .../headslime.rsi/inhand-right.png | Bin .../Head/Animals/headslime.rsi/meta.json | 27 + .../monkey.rsi/equipped-HELMET.png | Bin .../Head/{ => Animals}/monkey.rsi/icon.png | Bin .../{ => Animals}/monkey.rsi/inhand-left.png | Bin .../{ => Animals}/monkey.rsi/inhand-right.png | Bin .../Head/Animals/monkey.rsi/meta.json | 27 + .../mouse_brown.rsi/equipped-HELMET.png | Bin .../{ => Animals}/mouse_brown.rsi/icon.png | Bin .../mouse_brown.rsi/inhand-left.png | Bin .../mouse_brown.rsi/inhand-right.png | Bin .../Head/Animals/mouse_brown.rsi/meta.json | 27 + .../mouse_gray.rsi/equipped-HELMET.png | Bin .../{ => Animals}/mouse_gray.rsi/icon.png | Bin .../mouse_gray.rsi/inhand-left.png | Bin .../mouse_gray.rsi/inhand-right.png | Bin .../Head/Animals/mouse_gray.rsi/meta.json | 27 + .../mouse_white.rsi/equipped-HELMET.png | Bin .../{ => Animals}/mouse_white.rsi/icon.png | Bin .../mouse_white.rsi/inhand-left.png | Bin .../mouse_white.rsi/inhand-right.png | Bin .../Head/Animals/mouse_white.rsi/meta.json | 27 + .../Bandanas/black.rsi/equipped-HELMET.png | Bin 0 -> 402 bytes .../Clothing/Head/Bandanas/black.rsi/icon.png | Bin 0 -> 345 bytes .../Head/Bandanas/black.rsi/icon_mask.png | Bin 0 -> 257 bytes .../Head/Bandanas/black.rsi/inhand-left.png | Bin 0 -> 306 bytes .../Head/Bandanas/black.rsi/inhand-right.png | Bin 0 -> 310 bytes .../black.rsi/mask-equipped-HELMET.png | Bin 0 -> 301 bytes .../Head/Bandanas/black.rsi/meta.json | 35 + .../Bandanas/blue.rsi/equipped-HELMET.png | Bin 0 -> 391 bytes .../Clothing/Head/Bandanas/blue.rsi/icon.png | Bin 0 -> 380 bytes .../Head/Bandanas/blue.rsi/icon_mask.png | Bin 0 -> 266 bytes .../Head/Bandanas/blue.rsi/inhand-left.png | Bin 0 -> 402 bytes .../Head/Bandanas/blue.rsi/inhand-right.png | Bin 0 -> 399 bytes .../blue.rsi/mask-equipped-HELMET.png | Bin 0 -> 322 bytes .../Clothing/Head/Bandanas/blue.rsi/meta.json | 35 + .../Bandanas/botany.rsi/equipped-HELMET.png | Bin 0 -> 568 bytes .../Head/Bandanas/botany.rsi/icon.png | Bin 0 -> 580 bytes .../Head/Bandanas/botany.rsi/icon_mask.png | Bin 0 -> 343 bytes .../Head/Bandanas/botany.rsi/inhand-left.png | Bin 0 -> 340 bytes .../Head/Bandanas/botany.rsi/inhand-right.png | Bin 0 -> 323 bytes .../botany.rsi/mask-equipped-HELMET.png | Bin 0 -> 317 bytes .../Head/Bandanas/botany.rsi/meta.json | 35 + .../Bandanas/gold.rsi/equipped-HELMET.png | Bin 0 -> 397 bytes .../Clothing/Head/Bandanas/gold.rsi/icon.png | Bin 0 -> 397 bytes .../Head/Bandanas/gold.rsi/icon_mask.png | Bin 0 -> 261 bytes .../Head/Bandanas/gold.rsi/inhand-left.png | Bin 0 -> 311 bytes .../Head/Bandanas/gold.rsi/inhand-right.png | Bin 0 -> 314 bytes .../gold.rsi/mask-equipped-HELMET.png | Bin 0 -> 305 bytes .../Clothing/Head/Bandanas/gold.rsi/meta.json | 35 + .../Bandanas/green.rsi/equipped-HELMET.png | Bin 0 -> 390 bytes .../Clothing/Head/Bandanas/green.rsi/icon.png | Bin 0 -> 375 bytes .../Head/Bandanas/green.rsi/icon_mask.png | Bin 0 -> 265 bytes .../Head/Bandanas/green.rsi/inhand-left.png | Bin 0 -> 324 bytes .../Head/Bandanas/green.rsi/inhand-right.png | Bin 0 -> 326 bytes .../green.rsi/mask-equipped-HELMET.png | Bin 0 -> 319 bytes .../Head/Bandanas/green.rsi/meta.json | 35 + .../Bandanas/grey.rsi/equipped-HELMET.png | Bin 0 -> 456 bytes .../Clothing/Head/Bandanas/grey.rsi/icon.png | Bin 0 -> 419 bytes .../Head/Bandanas/grey.rsi/icon_mask.png | Bin 0 -> 310 bytes .../Head/Bandanas/grey.rsi/inhand-left.png | Bin 0 -> 409 bytes .../Head/Bandanas/grey.rsi/inhand-right.png | Bin 0 -> 405 bytes .../grey.rsi/mask-equipped-HELMET.png | Bin 0 -> 385 bytes .../Clothing/Head/Bandanas/grey.rsi/meta.json | 35 + .../Head/Bandanas/red.rsi/equipped-HELMET.png | Bin 0 -> 378 bytes .../Clothing/Head/Bandanas/red.rsi/icon.png | Bin 0 -> 360 bytes .../Head/Bandanas/red.rsi/icon_mask.png | Bin 0 -> 255 bytes .../Head/Bandanas/red.rsi/inhand-left.png | Bin 0 -> 327 bytes .../Head/Bandanas/red.rsi/inhand-right.png | Bin 0 -> 321 bytes .../Bandanas/red.rsi/mask-equipped-HELMET.png | Bin 0 -> 304 bytes .../Clothing/Head/Bandanas/red.rsi/meta.json | 35 + .../Bandanas/skull.rsi/equipped-HELMET.png | Bin 0 -> 402 bytes .../Clothing/Head/Bandanas/skull.rsi/icon.png | Bin 0 -> 420 bytes .../Head/Bandanas/skull.rsi/icon_mask.png | Bin 0 -> 317 bytes .../Head/Bandanas/skull.rsi/inhand-left.png | Bin 0 -> 416 bytes .../Head/Bandanas/skull.rsi/inhand-right.png | Bin 0 -> 413 bytes .../skull.rsi/mask-equipped-HELMET.png | Bin 0 -> 337 bytes .../Head/Bandanas/skull.rsi/meta.json | 35 + .../blue.rsi}/equipped-HELMET.png | Bin .../blue.rsi}/icon.png | Bin .../blue.rsi}/inhand-left.png | Bin .../blue.rsi}/inhand-right.png | Bin .../Clothing/Head/Hardhats/blue.rsi/meta.json | 27 + .../blue.rsi}/on-equipped-HELMET.png | Bin .../blue.rsi}/on-icon.png | Bin .../blue.rsi}/on-inhand-left.png | Bin .../blue.rsi}/on-inhand-right.png | Bin .../orange.rsi}/equipped-HELMET.png | Bin .../orange.rsi}/icon.png | Bin .../orange.rsi}/inhand-left.png | Bin .../orange.rsi}/inhand-right.png | Bin .../Head/Hardhats/orange.rsi/meta.json | 27 + .../orange.rsi}/on-equipped-HELMET.png | Bin .../orange.rsi}/on-icon.png | Bin .../orange.rsi}/on-inhand-left.png | Bin .../orange.rsi}/on-inhand-right.png | Bin .../red.rsi}/equipped-HELMET.png | Bin .../red.rsi}/icon.png | Bin .../red.rsi}/inhand-left.png | Bin .../red.rsi}/inhand-right.png | Bin .../Clothing/Head/Hardhats/red.rsi/meta.json | 27 + .../red.rsi}/on-equipped-HELMET.png | Bin .../red.rsi}/on-icon.png | Bin .../red.rsi}/on-inhand-left.png | Bin .../red.rsi}/on-inhand-right.png | Bin .../white.rsi}/equipped-HELMET.png | Bin .../white.rsi}/icon.png | Bin .../white.rsi}/inhand-left.png | Bin .../white.rsi}/inhand-right.png | Bin .../Head/Hardhats/white.rsi/meta.json | 27 + .../white.rsi}/on-equipped-HELMET.png | Bin .../white.rsi}/on-icon.png | Bin .../white.rsi}/on-inhand-left.png | Bin .../white.rsi}/on-inhand-right.png | Bin .../yellow.rsi}/equipped-HELMET.png | Bin .../yellow.rsi}/icon.png | Bin .../yellow.rsi}/inhand-left.png | Bin .../yellow.rsi}/inhand-right.png | Bin .../Head/Hardhats/yellow.rsi/meta.json | 27 + .../yellow.rsi}/on-equipped-HELMET.png | Bin .../yellow.rsi}/on-icon.png | Bin .../yellow.rsi}/on-inhand-left.png | Bin .../yellow.rsi}/on-inhand-right.png | Bin .../atmospherics.rsi/equipped-HELMET.png | Bin 0 -> 485 bytes .../flash-equipped-HELMET.png | Bin 0 -> 1586 bytes .../Hardsuits/atmospherics.rsi/icon-flash.png | Bin 0 -> 671 bytes .../Head/Hardsuits/atmospherics.rsi/icon.png | Bin 0 -> 250 bytes .../atmospherics.rsi/inhand-left.png | Bin 0 -> 407 bytes .../atmospherics.rsi/inhand-right.png | Bin 0 -> 413 bytes .../Head/Hardsuits/atmospherics.rsi/meta.json | 35 + .../capspace.rsi/equipped-HELMET.png | Bin .../{ => Hardsuits}/capspace.rsi/icon.png | Bin .../capspace.rsi/inhand-left.png | Bin .../capspace.rsi/inhand-right.png | Bin .../Head/Hardsuits/capspace.rsi/meta.json | 27 + .../deathsquad.rsi/equipped-HELMET.png | Bin .../{ => Hardsuits}/deathsquad.rsi/icon.png | Bin .../deathsquad.rsi/inhand-left.png | Bin .../deathsquad.rsi/inhand-right.png | Bin .../Head/Hardsuits/deathsquad.rsi/meta.json | 27 + .../engineering-white.rsi/equipped-HELMET.png | Bin 0 -> 1286 bytes .../flash-equipped-HELMET.png | Bin 0 -> 1598 bytes .../engineering-white.rsi/icon-flash.png | Bin 0 -> 679 bytes .../Hardsuits/engineering-white.rsi/icon.png | Bin 0 -> 246 bytes .../engineering-white.rsi}/inhand-left.png | Bin .../engineering-white.rsi}/inhand-right.png | Bin .../Hardsuits/engineering-white.rsi/meta.json | 35 + .../engineering.rsi}/equipped-HELMET.png | Bin .../engineering.rsi/flash-equipped-HELMET.png | Bin 0 -> 1592 bytes .../Hardsuits/engineering.rsi/icon-flash.png | Bin 0 -> 692 bytes .../Head/Hardsuits/engineering.rsi/icon.png | Bin 0 -> 246 bytes .../engineering.rsi}/inhand-left.png | Bin .../engineering.rsi}/inhand-right.png | Bin .../Head/Hardsuits/engineering.rsi/meta.json | 35 + .../ihsvoid.rsi}/equipped-HELMET.png | Bin .../ihsvoid.rsi/icon-on.png} | Bin .../ihsvoid.rsi}/icon.png | Bin .../ihsvoid.rsi}/inhand-left.png | Bin .../ihsvoid.rsi}/inhand-right.png | Bin .../Head/Hardsuits/ihsvoid.rsi/meta.json | 31 + .../Hardsuits/medical.rsi/equipped-HELMET.png | Bin 0 -> 1091 bytes .../medical.rsi/flash-equipped-HELMET.png | Bin 0 -> 1239 bytes .../Head/Hardsuits/medical.rsi/icon-flash.png | Bin 0 -> 562 bytes .../Head/Hardsuits/medical.rsi/icon.png | Bin 0 -> 222 bytes .../Hardsuits/medical.rsi/inhand-left.png | Bin 0 -> 388 bytes .../Hardsuits/medical.rsi/inhand-right.png | Bin 0 -> 393 bytes .../Head/Hardsuits/medical.rsi/meta.json | 35 + ...ts that belong to hardsuits in here -swept | 0 .../Head/Hardsuits/rd.rsi/equipped-HELMET.png | Bin 0 -> 473 bytes .../rd.rsi/flash-equipped-HELMET.png | Bin 0 -> 1356 bytes .../Head/Hardsuits/rd.rsi/icon-flash.png | Bin 0 -> 722 bytes .../Clothing/Head/Hardsuits/rd.rsi/icon.png | Bin 0 -> 260 bytes .../Clothing/Head/Hardsuits/rd.rsi/meta.json | 27 + .../Hardsuits/salvage.rsi/equipped-HELMET.png | Bin 0 -> 1275 bytes .../salvage.rsi/flash-equipped-HELMET.png | Bin 0 -> 1587 bytes .../Head/Hardsuits/salvage.rsi/icon-flash.png | Bin 0 -> 811 bytes .../Head/Hardsuits/salvage.rsi/icon.png | Bin 0 -> 262 bytes .../Hardsuits/salvage.rsi/inhand-left.png | Bin 0 -> 413 bytes .../Hardsuits/salvage.rsi/inhand-right.png | Bin 0 -> 419 bytes .../Head/Hardsuits/salvage.rsi/meta.json | 35 + .../security-red.rsi/equipped-HELMET.png | Bin 0 -> 1161 bytes .../flash-equipped-HELMET.png | Bin 0 -> 1608 bytes .../Hardsuits/security-red.rsi/icon-flash.png | Bin 0 -> 656 bytes .../Head/Hardsuits/security-red.rsi/icon.png | Bin 0 -> 229 bytes .../security-red.rsi/inhand-left.png | Bin 0 -> 392 bytes .../security-red.rsi/inhand-right.png | Bin 0 -> 407 bytes .../Head/Hardsuits/security-red.rsi/meta.json | 35 + .../security.rsi/equipped-HELMET.png | Bin 0 -> 902 bytes .../security.rsi/flash-equipped-HELMET.png | Bin 0 -> 1207 bytes .../Hardsuits/security.rsi/icon-flash.png | Bin 0 -> 284 bytes .../Head/Hardsuits/security.rsi/icon.png | Bin 0 -> 214 bytes .../Head/Hardsuits/security.rsi/meta.json | 27 + .../syndicate.rsi/combat-equipped-HELMET.png} | Bin .../syndicate.rsi/equipped-HELMET.png} | Bin .../syndicate.rsi}/icon.png | Bin .../syndicate.rsi}/inhand-left.png | Bin .../syndicate.rsi}/inhand-right.png | Bin .../Head/Hardsuits/syndicate.rsi/meta.json | 31 + .../wizard.rsi}/equipped-HELMET.png | Bin .../wizard.rsi/flash-equipped-HELMET.png | Bin 0 -> 1665 bytes .../Head/Hardsuits/wizard.rsi/icon-flash.png | Bin 0 -> 857 bytes .../wizard.rsi}/icon.png | Bin .../Head/Hardsuits/wizard.rsi/inhand-left.png | Bin 0 -> 439 bytes .../Hardsuits/wizard.rsi/inhand-right.png | Bin 0 -> 439 bytes .../Head/Hardsuits/wizard.rsi/meta.json | 35 + .../beaver_hat.rsi/equipped-HELMET.png | Bin .../Head/{ => Hats}/beaver_hat.rsi/icon.png | Bin .../{ => Hats}/beaver_hat.rsi/inhand-left.png | Bin .../beaver_hat.rsi/inhand-right.png | Bin .../Head/Hats/beaver_hat.rsi/meta.json | 27 + .../{ => Hats}/beret.rsi/equipped-HELMET.png | Bin .../Head/{ => Hats}/beret.rsi/icon.png | Bin .../Head/{ => Hats}/beret.rsi/inhand-left.png | Bin .../{ => Hats}/beret.rsi/inhand-right.png | Bin .../Clothing/Head/Hats/beret.rsi/meta.json | 27 + .../beret_engineering.rsi/equipped-HELMET.png | Bin .../{ => Hats}/beret_engineering.rsi/icon.png | Bin .../beret_engineering.rsi/inhand-left.png | Bin .../beret_engineering.rsi/inhand-right.png | Bin .../Head/Hats/beret_engineering.rsi/meta.json | 27 + .../beret_hos.rsi/equipped-HELMET.png | Bin .../beret_hos.rsi/icon.png} | Bin .../Head/Hats/beret_hos.rsi/meta.json | 19 + .../Hats/beret_warden.rsi/equipped-HELMET.png | Bin 0 -> 365 bytes .../Head/Hats/beret_warden.rsi/icon.png | Bin 0 -> 212 bytes .../Head/Hats/beret_warden.rsi/meta.json | 19 + .../bowler_hat.rsi/equipped-HELMET.png | Bin .../Head/{ => Hats}/bowler_hat.rsi/icon.png | Bin .../{ => Hats}/bowler_hat.rsi/inhand-left.png | Bin .../bowler_hat.rsi/inhand-right.png | Bin .../Head/Hats/bowler_hat.rsi/meta.json | 27 + .../brownfedora.rsi/equipped-HELMET.png | Bin .../Head/{ => Hats}/brownfedora.rsi/icon.png | Bin .../brownfedora.rsi/inhand-left.png | Bin .../brownfedora.rsi/inhand-right.png | Bin .../Head/Hats/brownfedora.rsi/meta.json | 27 + .../captain.rsi/equipped-HELMET.png | Bin .../Head/{ => Hats}/captain.rsi/icon.png | Bin .../{ => Hats}/captain.rsi/inhand-left.png | Bin .../{ => Hats}/captain.rsi/inhand-right.png | Bin .../Clothing/Head/Hats/captain.rsi/meta.json | 27 + .../cardborg_h.rsi/equipped-HELMET.png | Bin .../Head/{ => Hats}/cardborg_h.rsi/icon.png | Bin .../{ => Hats}/cardborg_h.rsi/inhand-left.png | Bin .../cardborg_h.rsi/inhand-right.png | Bin .../Head/Hats/cardborg_h.rsi/meta.json | 27 + .../centcom.rsi/equipped-HELMET.png | Bin .../Head/{ => Hats}/centcom.rsi/icon.png | Bin .../{ => Hats}/centcom.rsi/inhand-left.png | Bin .../{ => Hats}/centcom.rsi/inhand-right.png | Bin .../Clothing/Head/Hats/centcom.rsi/meta.json | 27 + .../chefhat.rsi/equipped-HELMET.png | Bin .../Head/{ => Hats}/chefhat.rsi/icon.png | Bin .../{ => Hats}/chefhat.rsi/inhand-left.png | Bin .../{ => Hats}/chefhat.rsi/inhand-right.png | Bin .../Clothing/Head/Hats/chefhat.rsi/meta.json | 27 + .../{ => Hats}/fez.rsi/equipped-HELMET.png | Bin .../Clothing/Head/{ => Hats}/fez.rsi/icon.png | Bin .../Head/{ => Hats}/fez.rsi/inhand-left.png | Bin .../Head/{ => Hats}/fez.rsi/inhand-right.png | Bin .../Clothing/Head/Hats/fez.rsi/meta.json | 27 + .../greyfedora.rsi/equipped-HELMET.png | Bin .../Head/{ => Hats}/greyfedora.rsi/icon.png | Bin .../{ => Hats}/greyfedora.rsi/inhand-left.png | Bin .../greyfedora.rsi/inhand-right.png | Bin .../Head/Hats/greyfedora.rsi/meta.json | 27 + .../{ => Hats}/hopcap.rsi/equipped-HELMET.png | Bin .../Head/{ => Hats}/hopcap.rsi/hopcap.png | Bin .../Head/{ => Hats}/hopcap.rsi/icon.png | Bin .../{ => Hats}/hopcap.rsi/inhand-left.png | Bin .../{ => Hats}/hopcap.rsi/inhand-right.png | Bin .../Clothing/Head/Hats/hopcap.rsi/meta.json | 27 + .../{ => Hats}/hoshat.rsi/equipped-HELMET.png | Bin .../Head/{ => Hats}/hoshat.rsi/icon.png | Bin .../{ => Hats}/hoshat.rsi/inhand-left.png | Bin .../{ => Hats}/hoshat.rsi/inhand-right.png | Bin .../Clothing/Head/Hats/hoshat.rsi/meta.json | 27 + .../{ => Hats}/paper.rsi/equipped-HELMET.png | Bin .../Head/{ => Hats}/paper.rsi/icon.png | Bin .../Head/{ => Hats}/paper.rsi/inhand-left.png | Bin .../{ => Hats}/paper.rsi/inhand-right.png | Bin .../Clothing/Head/Hats/paper.rsi/meta.json | 27 + .../{ => Hats}/pirate.rsi/equipped-HELMET.png | Bin .../Head/{ => Hats}/pirate.rsi/icon.png | Bin .../{ => Hats}/pirate.rsi/inhand-left.png | Bin .../{ => Hats}/pirate.rsi/inhand-right.png | Bin .../Clothing/Head/Hats/pirate.rsi/meta.json | 27 + .../plaguedoctor.rsi/equipped-HELMET.png | Bin .../Head/{ => Hats}/plaguedoctor.rsi/icon.png | Bin .../plaguedoctor.rsi/inhand-left.png | Bin .../plaguedoctor.rsi/inhand-right.png | Bin .../Head/Hats/plaguedoctor.rsi/meta.json | 27 + .../redwizard.rsi/equipped-HELMET.png | Bin .../Head/{ => Hats}/redwizard.rsi/icon.png | Bin .../{ => Hats}/redwizard.rsi/inhand-left.png | Bin .../{ => Hats}/redwizard.rsi/inhand-right.png | Bin .../Head/Hats/redwizard.rsi/meta.json | 27 + .../santahat.rsi/equipped-HELMET.png | Bin .../Head/{ => Hats}/santahat.rsi/icon.png | Bin .../{ => Hats}/santahat.rsi/inhand-left.png | Bin .../{ => Hats}/santahat.rsi/inhand-right.png | Bin .../Clothing/Head/Hats/santahat.rsi/meta.json | 27 + .../sombrero.rsi/equipped-HELMET.png | Bin .../Head/{ => Hats}/sombrero.rsi/icon.png | Bin .../{ => Hats}/sombrero.rsi/inhand-left.png | Bin .../{ => Hats}/sombrero.rsi/inhand-right.png | Bin .../Clothing/Head/Hats/sombrero.rsi/meta.json | 27 + .../surgcap_blue.rsi/equipped-HELMET.png | Bin .../Head/{ => Hats}/surgcap_blue.rsi/icon.png | Bin .../surgcap_blue.rsi/inhand-left.png | Bin .../surgcap_blue.rsi/inhand-right.png | Bin .../Head/Hats/surgcap_blue.rsi/meta.json | 27 + .../surgcap_green.rsi/equipped-HELMET.png | Bin .../{ => Hats}/surgcap_green.rsi/icon.png | Bin .../surgcap_green.rsi/inhand-left.png | Bin .../surgcap_green.rsi/inhand-right.png | Bin .../Head/Hats/surgcap_green.rsi/meta.json | 27 + .../surgcap_purple.rsi/equipped-HELMET.png | Bin .../{ => Hats}/surgcap_purple.rsi/icon.png | Bin .../surgcap_purple.rsi/inhand-left.png | Bin .../surgcap_purple.rsi/inhand-right.png | Bin .../Head/Hats/surgcap_purple.rsi/meta.json | 27 + .../{ => Hats}/tophat.rsi/equipped-HELMET.png | Bin .../Head/{ => Hats}/tophat.rsi/icon.png | Bin .../{ => Hats}/tophat.rsi/inhand-left.png | Bin .../{ => Hats}/tophat.rsi/inhand-right.png | Bin .../Clothing/Head/Hats/tophat.rsi/meta.json | 27 + .../Head/Hats/ushanka.rsi/equipped-HELMET.png | Bin 0 -> 644 bytes .../Head/Hats/ushanka.rsi/icon-up.png | Bin 0 -> 595 bytes .../Clothing/Head/Hats/ushanka.rsi/icon.png | Bin 0 -> 723 bytes .../Clothing/Head/Hats/ushanka.rsi/meta.json | 27 + .../Hats/ushanka.rsi/up-equipped-HELMET.png | Bin 0 -> 551 bytes .../violetwizard.rsi/equipped-HELMET.png | Bin .../Head/{ => Hats}/violetwizard.rsi/icon.png | Bin .../violetwizard.rsi/inhand-left.png | Bin .../violetwizard.rsi/inhand-right.png | Bin .../Head/Hats/violetwizard.rsi/meta.json | 27 + .../Head/Hats/warden.rsi/equipped-HELMET.png | Bin 0 -> 365 bytes .../Clothing/Head/Hats/warden.rsi/icon.png | Bin 0 -> 221 bytes .../Clothing/Head/Hats/warden.rsi/meta.json | 19 + .../{ => Hats}/witch.rsi/equipped-HELMET.png | Bin .../Head/{ => Hats}/witch.rsi/icon.png | Bin .../Head/{ => Hats}/witch.rsi/inhand-left.png | Bin .../{ => Hats}/witch.rsi/inhand-right.png | Bin .../Clothing/Head/Hats/witch.rsi/meta.json | 27 + .../witchhat.rsi/equipped-HELMET.png | Bin .../Head/{ => Hats}/witchhat.rsi/icon.png | Bin .../{ => Hats}/witchhat.rsi/inhand-left.png | Bin .../{ => Hats}/witchhat.rsi/inhand-right.png | Bin .../Clothing/Head/Hats/witchhat.rsi/meta.json | 27 + .../wizard_fake.rsi}/equipped-HELMET.png | Bin .../wizard_fake.rsi}/icon.png | Bin .../wizard_fake.rsi}/inhand-left.png | Bin .../wizard_fake.rsi}/inhand-right.png | Bin .../Head/Hats/wizard_fake.rsi/meta.json | 27 + .../wizardhat.rsi/equipped-HELMET.png | Bin .../Head/{ => Hats}/wizardhat.rsi/icon.png | Bin .../{ => Hats}/wizardhat.rsi/inhand-left.png | Bin .../{ => Hats}/wizardhat.rsi/inhand-right.png | Bin .../Head/Hats/wizardhat.rsi/meta.json | 27 + .../xmascrown.rsi}/equipped-HELMET.png | Bin .../xmascrown.rsi}/icon.png | Bin .../xmascrown.rsi}/inhand-left.png | Bin .../xmascrown.rsi}/inhand-right.png | Bin .../Head/Hats/xmascrown.rsi/meta.json | 27 + .../bombsuit.rsi}/equipped-HELMET.png | Bin .../bombsuit.rsi}/icon.png | Bin .../bombsuit.rsi}/inhand-left.png | Bin .../bombsuit.rsi}/inhand-right.png | Bin .../Head/Helmets/bombsuit.rsi/meta.json | 27 + .../cosmonaut.rsi/equipped-HELMET.png | Bin .../Head/{ => Helmets}/cosmonaut.rsi/icon.png | Bin .../cosmonaut.rsi/inhand-left.png | Bin .../cosmonaut.rsi/inhand-right.png | Bin .../Head/Helmets/cosmonaut.rsi/meta.json | 27 + .../cult.rsi}/equipped-HELMET.png | Bin .../cult.rsi}/icon.png | Bin .../cult.rsi}/inhand-left.png | Bin .../cult.rsi}/inhand-right.png | Bin .../Clothing/Head/Helmets/cult.rsi/meta.json | 27 + .../ihvoid.rsi}/equipped-HELMET.png | Bin .../{void.rsi => Helmets/ihvoid.rsi}/icon.png | Bin .../ihvoid.rsi}/inhand-left.png | Bin .../ihvoid.rsi}/inhand-right.png | Bin .../Head/Helmets/ihvoid.rsi/meta.json | 27 + .../light_riot.rsi/equipped-HELMET.png | Bin .../light_riot.rsi/icon-on.png} | Bin .../{ => Helmets}/light_riot.rsi/icon.png | Bin .../light_riot.rsi/inhand-left.png | Bin .../light_riot.rsi/inhand-right.png | Bin .../Head/Helmets/light_riot.rsi/meta.json | 43 + .../light_riot.rsi/on-equipped-HELMET.png | Bin .../light_riot.rsi/on-inhand-left.png | Bin .../light_riot.rsi/on-inhand-right.png | Bin .../scaf.rsi/equipped-HELMET.png | Bin .../Head/{ => Helmets}/scaf.rsi/icon.png | Bin .../{ => Helmets}/scaf.rsi/inhand-left.png | Bin .../{ => Helmets}/scaf.rsi/inhand-right.png | Bin .../Clothing/Head/Helmets/scaf.rsi/meta.json | 27 + .../security.rsi}/equipped-HELMET.png | Bin .../security.rsi}/icon.png | Bin .../security.rsi}/inhand-left.png | Bin .../security.rsi}/inhand-right.png | Bin .../Head/Helmets/security.rsi/meta.json | 27 + .../securityold.rsi/equipped-HELMET.png | Bin 0 -> 880 bytes .../Head/Helmets/securityold.rsi/icon.png | Bin 0 -> 205 bytes .../securityold.rsi}/inhand-left.png | Bin .../securityold.rsi}/inhand-right.png | Bin .../securityold.rsi/light-equipped-HELMET.png | Bin 0 -> 952 bytes .../lighton-equipped-HELMET.png | Bin 0 -> 1070 bytes .../Head/Helmets/securityold.rsi/meta.json | 35 + .../spaceninja.rsi}/equipped-HELMET.png | Bin .../Head/Helmets/spaceninja.rsi/icon.png | Bin 0 -> 242 bytes .../spaceninja.rsi}/inhand-left.png | Bin .../spaceninja.rsi}/inhand-right.png | Bin .../Head/Helmets/spaceninja.rsi/meta.json | 27 + .../syndicate.rsi/equipped-HELMET.png | Bin .../headlight-equipped-HELMET.png | Bin .../syndicate.rsi/headlight-inhand-left.png | Bin .../syndicate.rsi/headlight-inhand-right.png | Bin .../Head/Helmets/syndicate.rsi/headlight.png | Bin 0 -> 290 bytes .../Head/Helmets/syndicate.rsi/icon.png | Bin 0 -> 278 bytes .../syndicate.rsi/inhand-left.png | Bin .../syndicate.rsi/inhand-right.png | Bin .../Head/Helmets/syndicate.rsi/meta.json | 59 + .../visorlit-equipped-HELMET.png | Bin .../syndicate.rsi/visorlit-inhand-left.png | Bin .../syndicate.rsi/visorlit-inhand-right.png | Bin .../Head/Helmets/syndicate.rsi/visorlit.png | Bin 0 -> 282 bytes .../Helmets/templar.rsi/equipped-HELMET.png | Bin 0 -> 491 bytes .../Head/Helmets/templar.rsi/icon.png | Bin 0 -> 305 bytes .../Head/Helmets/templar.rsi/meta.json | 19 + .../thunderdome.rsi/equipped-HELMET.png | Bin .../{ => Helmets}/thunderdome.rsi/icon.png | Bin .../thunderdome.rsi/inhand-left.png | Bin .../thunderdome.rsi/inhand-right.png | Bin .../Head/Helmets/thunderdome.rsi/meta.json | 27 + .../wizardhelm.rsi/equipped-HELMET.png | Bin .../{ => Helmets}/wizardhelm.rsi/icon.png | Bin .../wizardhelm.rsi/inhand-left.png | Bin .../wizardhelm.rsi/inhand-right.png | Bin .../Head/Helmets/wizardhelm.rsi/meta.json | 27 + .../Bio}/bio.rsi/equipped-HELMET.png | Bin .../Head/{ => Hoods/Bio}/bio.rsi/icon.png | Bin .../{ => Hoods/Bio}/bio.rsi/inhand-left.png | Bin .../{ => Hoods/Bio}/bio.rsi/inhand-right.png | Bin .../Clothing/Head/Hoods/Bio/bio.rsi/meta.json | 27 + .../Bio/cmo.rsi}/equipped-HELMET.png | Bin .../Bio/cmo.rsi}/icon.png | Bin .../Bio/cmo.rsi}/inhand-left.png | Bin .../Bio/cmo.rsi}/inhand-right.png | Bin .../Clothing/Head/Hoods/Bio/cmo.rsi/meta.json | 27 + .../Bio/general.rsi}/equipped-HELMET.png | Bin .../Bio/general.rsi}/icon.png | Bin .../Bio/general.rsi}/inhand-left.png | Bin .../Bio/general.rsi}/inhand-right.png | Bin .../Head/Hoods/Bio/general.rsi/meta.json | 27 + .../Bio/janitor.rsi}/equipped-HELMET.png | Bin .../Bio/janitor.rsi}/icon.png | Bin .../Bio/janitor.rsi}/inhand-left.png | Bin .../Bio/janitor.rsi}/inhand-right.png | Bin .../Head/Hoods/Bio/janitor.rsi/meta.json | 27 + .../Bio/scientist.rsi}/equipped-HELMET.png | Bin .../Bio/scientist.rsi}/icon.png | Bin .../Bio/scientist.rsi}/inhand-left.png | Bin .../Bio/scientist.rsi}/inhand-right.png | Bin .../Head/Hoods/Bio/scientist.rsi/meta.json | 27 + .../Bio/security.rsi}/equipped-HELMET.png | Bin .../Bio/security.rsi}/icon.png | Bin .../Bio/security.rsi}/inhand-left.png | Bin .../Bio/security.rsi}/inhand-right.png | Bin .../Head/Hoods/Bio/security.rsi/meta.json | 27 + .../Bio/virology.rsi}/equipped-HELMET.png | Bin .../Bio/virology.rsi}/icon.png | Bin .../Bio/virology.rsi}/inhand-left.png | Bin .../Bio/virology.rsi}/inhand-right.png | Bin .../Head/Hoods/Bio/virology.rsi/meta.json | 27 + .../chaplain.rsi}/equipped-HELMET.png | Bin .../chaplain.rsi}/icon.png | Bin .../chaplain.rsi}/inhand-left.png | Bin .../chaplain.rsi}/inhand-right.png | Bin .../Head/Hoods/chaplain.rsi/meta.json | 27 + .../cult.rsi}/equipped-HELMET.png | Bin .../{culthood.rsi => Hoods/cult.rsi}/icon.png | Bin .../cult.rsi}/inhand-left.png | Bin .../cult.rsi}/inhand-right.png | Bin .../Clothing/Head/Hoods/cult.rsi/meta.json | 27 + .../nun.rsi}/equipped-HELMET.png | Bin .../{nun_hood.rsi => Hoods/nun.rsi}/icon.png | Bin .../nun.rsi}/inhand-left.png | Bin .../nun.rsi}/inhand-right.png | Bin .../Clothing/Head/Hoods/nun.rsi/meta.json | 27 + .../Head/Hoods/rad.rsi/equipped-HELMET.png | Bin 0 -> 930 bytes .../Clothing/Head/Hoods/rad.rsi/icon.png | Bin 0 -> 347 bytes .../Clothing/Head/Hoods/rad.rsi/meta.json | 19 + .../bearpelt.rsi/equipped-HELMET.png | Bin .../Head/{ => Misc}/bearpelt.rsi/icon.png | Bin .../{ => Misc}/bearpelt.rsi/inhand-left.png | Bin .../{ => Misc}/bearpelt.rsi/inhand-right.png | Bin .../Clothing/Head/Misc/bearpelt.rsi/meta.json | 27 + .../{ => Misc}/bunny.rsi/equipped-HELMET.png | Bin .../Head/{ => Misc}/bunny.rsi/icon.png | Bin .../Head/{ => Misc}/bunny.rsi/inhand-left.png | Bin .../{ => Misc}/bunny.rsi/inhand-right.png | Bin .../Clothing/Head/Misc/bunny.rsi/meta.json | 27 + .../{ => Misc}/cake.rsi/equipped-HELMET.png | Bin .../on-icon.png => Misc/cake.rsi/icon-on.png} | Bin .../Head/{ => Misc}/cake.rsi/icon.png | Bin .../Head/{ => Misc}/cake.rsi/inhand-left.png | Bin .../Head/{ => Misc}/cake.rsi/inhand-right.png | Bin .../Clothing/Head/Misc/cake.rsi/meta.json | 65 + .../cake.rsi/on-equipped-HELMET.png | Bin .../{ => Misc}/cake.rsi/on-inhand-left.png | Bin .../{ => Misc}/cake.rsi/on-inhand-right.png | Bin .../chickenhead.rsi/equipped-HELMET.png | Bin .../Head/{ => Misc}/chickenhead.rsi/icon.png | Bin .../chickenhead.rsi/inhand-left.png | Bin .../chickenhead.rsi/inhand-right.png | Bin .../Head/Misc/chickenhead.rsi/meta.json | 27 + .../hairflower.rsi/equipped-HELMET.png | Bin .../Head/{ => Misc}/hairflower.rsi/icon.png | Bin .../{ => Misc}/hairflower.rsi/inhand-left.png | Bin .../hairflower.rsi/inhand-right.png | Bin .../Head/Misc/hairflower.rsi/meta.json | 27 + .../pumpkin.rsi/equipped-HELMET.png | Bin .../pumpkin.rsi/icon-on.png} | Bin .../Head/{ => Misc}/pumpkin.rsi/icon.png | Bin .../{ => Misc}/pumpkin.rsi/inhand-left.png | Bin .../{ => Misc}/pumpkin.rsi/inhand-right.png | Bin .../Clothing/Head/Misc/pumpkin.rsi/meta.json | 43 + .../pumpkin.rsi/on-equipped-HELMET.png | Bin .../{ => Misc}/pumpkin.rsi/on-inhand-left.png | Bin .../pumpkin.rsi/on-inhand-right.png | Bin .../{ => Misc}/pwig.rsi/equipped-HELMET.png | Bin .../Head/{ => Misc}/pwig.rsi/icon.png | Bin .../Head/{ => Misc}/pwig.rsi/inhand-left.png | Bin .../Head/{ => Misc}/pwig.rsi/inhand-right.png | Bin .../Clothing/Head/Misc/pwig.rsi/meta.json | 27 + .../richard.rsi/equipped-HELMET.png | Bin .../Head/{ => Misc}/richard.rsi/icon.png | Bin .../{ => Misc}/richard.rsi/inhand-left.png | Bin .../{ => Misc}/richard.rsi/inhand-right.png | Bin .../Clothing/Head/Misc/richard.rsi/meta.json | 27 + .../skubhead.rsi/equipped-HELMET.png | Bin .../Head/{ => Misc}/skubhead.rsi/icon.png | Bin .../Clothing/Head/Misc/skubhead.rsi/meta.json | 19 + .../{ => Misc}/xenom.rsi/equipped-HELMET.png | Bin .../Head/{ => Misc}/xenom.rsi/icon.png | Bin .../Head/{ => Misc}/xenom.rsi/inhand-left.png | Bin .../{ => Misc}/xenom.rsi/inhand-right.png | Bin .../Clothing/Head/Misc/xenom.rsi/meta.json | 27 + .../{ => Misc}/xenos.rsi/equipped-HELMET.png | Bin .../Head/{ => Misc}/xenos.rsi/icon.png | Bin .../Head/{ => Misc}/xenos.rsi/inhand-left.png | Bin .../{ => Misc}/xenos.rsi/inhand-right.png | Bin .../Clothing/Head/Misc/xenos.rsi/meta.json | 27 + .../bluesoft.rsi/equipped-HELMET.png | Bin .../Head/{ => Soft}/bluesoft.rsi/icon.png | Bin .../{ => Soft}/bluesoft.rsi/inhand-left.png | Bin .../{ => Soft}/bluesoft.rsi/inhand-right.png | Bin .../Clothing/Head/Soft/bluesoft.rsi/meta.json | 27 + .../bluesoft_flipped.rsi/equipped-HELMET.png | Bin .../{ => Soft}/bluesoft_flipped.rsi/icon.png | Bin .../bluesoft_flipped.rsi/inhand-left.png | Bin .../bluesoft_flipped.rsi/inhand-right.png | Bin .../Head/Soft/bluesoft_flipped.rsi/meta.json | 27 + .../cargosoft.rsi/equipped-HELMET.png | Bin .../Head/{ => Soft}/cargosoft.rsi/icon.png | Bin .../{ => Soft}/cargosoft.rsi/inhand-left.png | Bin .../{ => Soft}/cargosoft.rsi/inhand-right.png | Bin .../Head/Soft/cargosoft.rsi/meta.json | 27 + .../cargosoft_flipped.rsi/equipped-HELMET.png | Bin .../{ => Soft}/cargosoft_flipped.rsi/icon.png | Bin .../cargosoft_flipped.rsi/inhand-left.png | Bin .../cargosoft_flipped.rsi/inhand-right.png | Bin .../Head/Soft/cargosoft_flipped.rsi/meta.json | 27 + .../corpsoft.rsi/equipped-HELMET.png | Bin .../Head/{ => Soft}/corpsoft.rsi/icon.png | Bin .../{ => Soft}/corpsoft.rsi/inhand-left.png | Bin .../{ => Soft}/corpsoft.rsi/inhand-right.png | Bin .../Clothing/Head/Soft/corpsoft.rsi/meta.json | 27 + .../corpsoft_flipped.rsi/equipped-HELMET.png | Bin .../{ => Soft}/corpsoft_flipped.rsi/icon.png | Bin .../corpsoft_flipped.rsi/inhand-left.png | Bin .../corpsoft_flipped.rsi/inhand-right.png | Bin .../Head/Soft/corpsoft_flipped.rsi/meta.json | 27 + .../greensoft.rsi/equipped-HELMET.png | Bin .../Head/{ => Soft}/greensoft.rsi/icon.png | Bin .../{ => Soft}/greensoft.rsi/inhand-left.png | Bin .../{ => Soft}/greensoft.rsi/inhand-right.png | Bin .../Head/Soft/greensoft.rsi/meta.json | 27 + .../greensoft_flipped.rsi/equipped-HELMET.png | Bin .../{ => Soft}/greensoft_flipped.rsi/icon.png | Bin .../greensoft_flipped.rsi/inhand-left.png | Bin .../greensoft_flipped.rsi/inhand-right.png | Bin .../Head/Soft/greensoft_flipped.rsi/meta.json | 27 + .../greysoft.rsi/equipped-HELMET.png | Bin .../Head/{ => Soft}/greysoft.rsi/icon.png | Bin .../{ => Soft}/greysoft.rsi/inhand-left.png | Bin .../{ => Soft}/greysoft.rsi/inhand-right.png | Bin .../Clothing/Head/Soft/greysoft.rsi/meta.json | 27 + .../greysoft_flipped.rsi/equipped-HELMET.png | Bin .../{ => Soft}/greysoft_flipped.rsi/icon.png | Bin .../greysoft_flipped.rsi/inhand-left.png | Bin .../greysoft_flipped.rsi/inhand-right.png | Bin .../Head/Soft/greysoft_flipped.rsi/meta.json | 27 + .../mimesoft.rsi/equipped-HELMET.png | Bin .../Head/{ => Soft}/mimesoft.rsi/icon.png | Bin .../{ => Soft}/mimesoft.rsi/inhand-left.png | Bin .../{ => Soft}/mimesoft.rsi/inhand-right.png | Bin .../Clothing/Head/Soft/mimesoft.rsi/meta.json | 27 + .../mimesoft_flipped.rsi/equipped-HELMET.png | Bin .../{ => Soft}/mimesoft_flipped.rsi/icon.png | Bin .../mimesoft_flipped.rsi/inhand-left.png | Bin .../mimesoft_flipped.rsi/inhand-right.png | Bin .../Head/Soft/mimesoft_flipped.rsi/meta.json | 27 + .../orangesoft.rsi/equipped-HELMET.png | Bin .../Head/{ => Soft}/orangesoft.rsi/icon.png | Bin .../{ => Soft}/orangesoft.rsi/inhand-left.png | Bin .../orangesoft.rsi/inhand-right.png | Bin .../Head/Soft/orangesoft.rsi/meta.json | 27 + .../equipped-HELMET.png | Bin .../orangesoft_flipped.rsi/icon.png | Bin .../orangesoft_flipped.rsi/inhand-left.png | Bin .../orangesoft_flipped.rsi/inhand-right.png | Bin .../Soft/orangesoft_flipped.rsi/meta.json | 27 + .../purplesoft.rsi/equipped-HELMET.png | Bin .../Head/{ => Soft}/purplesoft.rsi/icon.png | Bin .../{ => Soft}/purplesoft.rsi/inhand-left.png | Bin .../purplesoft.rsi/inhand-right.png | Bin .../Head/Soft/purplesoft.rsi/meta.json | 27 + .../equipped-HELMET.png | Bin .../purplesoft_flipped.rsi/icon.png | Bin .../purplesoft_flipped.rsi/inhand-left.png | Bin .../purplesoft_flipped.rsi/inhand-right.png | Bin .../Soft/purplesoft_flipped.rsi/meta.json | 27 + .../redsoft.rsi/equipped-HELMET.png | Bin .../Head/{ => Soft}/redsoft.rsi/icon.png | Bin .../{ => Soft}/redsoft.rsi/inhand-left.png | Bin .../{ => Soft}/redsoft.rsi/inhand-right.png | Bin .../Clothing/Head/Soft/redsoft.rsi/meta.json | 27 + .../redsoft_flipped.rsi/equipped-HELMET.png | Bin .../{ => Soft}/redsoft_flipped.rsi/icon.png | Bin .../redsoft_flipped.rsi/inhand-left.png | Bin .../redsoft_flipped.rsi/inhand-right.png | Bin .../Head/Soft/redsoft_flipped.rsi/meta.json | 27 + .../secsoft.rsi/equipped-HELMET.png | Bin .../Head/{ => Soft}/secsoft.rsi/icon.png | Bin .../{ => Soft}/secsoft.rsi/inhand-left.png | Bin .../{ => Soft}/secsoft.rsi/inhand-right.png | Bin .../Clothing/Head/Soft/secsoft.rsi/meta.json | 27 + .../secsoft_flipped.rsi/equipped-HELMET.png | Bin .../{ => Soft}/secsoft_flipped.rsi/icon.png | Bin .../secsoft_flipped.rsi/inhand-left.png | Bin .../secsoft_flipped.rsi/inhand-right.png | Bin .../Head/Soft/secsoft_flipped.rsi/meta.json | 27 + .../yellowsoft.rsi/equipped-HELMET.png | Bin .../Head/{ => Soft}/yellowsoft.rsi/icon.png | Bin .../{ => Soft}/yellowsoft.rsi/inhand-left.png | Bin .../yellowsoft.rsi/inhand-right.png | Bin .../Head/Soft/yellowsoft.rsi/meta.json | 27 + .../equipped-HELMET.png | Bin .../yellowsoft_flipped.rsi/icon.png | Bin .../yellowsoft_flipped.rsi/inhand-left.png | Bin .../yellowsoft_flipped.rsi/inhand-right.png | Bin .../Soft/yellowsoft_flipped.rsi/meta.json | 27 + .../equipped-HELMET.png | Bin .../blue_flame_welding_mask.rsi/icon-up.png} | Bin .../blue_flame_welding_mask.rsi}/icon.png | Bin .../inhand-left.png | Bin .../inhand-right.png | Bin .../blue_flame_welding_mask.rsi/meta.json | 43 + .../up-equipped-HELMET.png} | Bin .../up-inhand-left.png} | Bin .../up-inhand-right.png} | Bin .../equipped-HELMET.png | Bin .../flame_welding_mask.rsi/icon-up.png} | Bin .../flame_welding_mask.rsi}/icon.png | Bin .../flame_welding_mask.rsi}/inhand-left.png | Bin .../flame_welding_mask.rsi}/inhand-right.png | Bin .../Welding/flame_welding_mask.rsi/meta.json | 43 + .../up-equipped-HELMET.png} | Bin .../up-inhand-left.png} | Bin .../up-inhand-right.png} | Bin .../paintedwelding.rsi/equipped-HELMET.png | Bin .../paintedwelding.rsi/icon-up.png} | Bin .../{ => Welding}/paintedwelding.rsi/icon.png | Bin .../paintedwelding.rsi/inhand-left.png | Bin .../paintedwelding.rsi/inhand-right.png | Bin .../Head/Welding/paintedwelding.rsi/meta.json | 43 + .../up-equipped-HELMET.png} | Bin .../paintedwelding.rsi/up-inhand-left.png} | Bin .../paintedwelding.rsi/up-inhand-right.png} | Bin .../welding.rsi/equipped-HELMET.png | Bin .../welding.rsi/icon-up.png} | Bin .../Head/{ => Welding}/welding.rsi/icon.png | Bin .../{ => Welding}/welding.rsi/inhand-left.png | Bin .../welding.rsi/inhand-right.png | Bin .../Head/Welding/welding.rsi/meta.json | 43 + .../welding.rsi/up-equipped-HELMET.png} | Bin .../welding.rsi/up-inhand-left.png} | Bin .../welding.rsi/up-inhand-right.png} | Bin .../Head/atmos_helm.rsi/equipped-HELMET.png | Bin 955 -> 0 bytes .../Clothing/Head/atmos_helm.rsi/icon.png | Bin 364 -> 0 bytes .../Head/atmos_helm.rsi/inhand-left.png | Bin 808 -> 0 bytes .../Head/atmos_helm.rsi/inhand-right.png | Bin 779 -> 0 bytes .../Clothing/Head/atmos_helm.rsi/meta.json | 1 - .../Head/bandana.rsi/equipped-HELMET.png | Bin 730 -> 0 bytes .../Clothing/Head/bandana.rsi/icon.png | Bin 286 -> 0 bytes .../Clothing/Head/bandana.rsi/inhand-left.png | Bin 611 -> 0 bytes .../Head/bandana.rsi/inhand-right.png | Bin 592 -> 0 bytes .../Clothing/Head/bandana.rsi/meta.json | 1 - .../Head/bandblack.rsi/equipped-HELMET.png | Bin 533 -> 0 bytes .../Clothing/Head/bandblack.rsi/icon.png | Bin 182 -> 0 bytes .../Head/bandblack.rsi/inhand-left.png | Bin 471 -> 0 bytes .../Head/bandblack.rsi/inhand-right.png | Bin 465 -> 0 bytes .../Clothing/Head/bandblack.rsi/meta.json | 1 - .../Head/bandblue.rsi/equipped-HELMET.png | Bin 534 -> 0 bytes .../Clothing/Head/bandblue.rsi/icon.png | Bin 192 -> 0 bytes .../Head/bandblue.rsi/inhand-left.png | Bin 480 -> 0 bytes .../Head/bandblue.rsi/inhand-right.png | Bin 473 -> 0 bytes .../Clothing/Head/bandblue.rsi/meta.json | 1 - .../Head/bandbotany.rsi/equipped-HELMET.png | Bin 713 -> 0 bytes .../Clothing/Head/bandbotany.rsi/icon.png | Bin 228 -> 0 bytes .../Head/bandbotany.rsi/inhand-left.png | Bin 624 -> 0 bytes .../Head/bandbotany.rsi/inhand-right.png | Bin 623 -> 0 bytes .../Clothing/Head/bandbotany.rsi/meta.json | 1 - .../Head/bandcamo.rsi/equipped-HELMET.png | Bin 780 -> 0 bytes .../Clothing/Head/bandcamo.rsi/icon.png | Bin 225 -> 0 bytes .../Head/bandcamo.rsi/inhand-left.png | Bin 668 -> 0 bytes .../Head/bandcamo.rsi/inhand-right.png | Bin 659 -> 0 bytes .../Clothing/Head/bandcamo.rsi/meta.json | 1 - .../Head/bandgold.rsi/equipped-HELMET.png | Bin 534 -> 0 bytes .../Clothing/Head/bandgold.rsi/icon.png | Bin 197 -> 0 bytes .../Head/bandgold.rsi/inhand-left.png | Bin 492 -> 0 bytes .../Head/bandgold.rsi/inhand-right.png | Bin 486 -> 0 bytes .../Clothing/Head/bandgold.rsi/meta.json | 1 - .../Head/bandgreen.rsi/equipped-HELMET.png | Bin 531 -> 0 bytes .../Clothing/Head/bandgreen.rsi/icon.png | Bin 192 -> 0 bytes .../Head/bandgreen.rsi/inhand-left.png | Bin 477 -> 0 bytes .../Head/bandgreen.rsi/inhand-right.png | Bin 470 -> 0 bytes .../Clothing/Head/bandgreen.rsi/meta.json | 1 - .../Head/bandorange.rsi/equipped-HELMET.png | Bin 518 -> 0 bytes .../Clothing/Head/bandorange.rsi/icon.png | Bin 190 -> 0 bytes .../Head/bandorange.rsi/inhand-left.png | Bin 464 -> 0 bytes .../Head/bandorange.rsi/inhand-right.png | Bin 462 -> 0 bytes .../Clothing/Head/bandorange.rsi/meta.json | 1 - .../Head/bandpurple.rsi/equipped-HELMET.png | Bin 535 -> 0 bytes .../Clothing/Head/bandpurple.rsi/icon.png | Bin 194 -> 0 bytes .../Head/bandpurple.rsi/inhand-left.png | Bin 489 -> 0 bytes .../Head/bandpurple.rsi/inhand-right.png | Bin 481 -> 0 bytes .../Clothing/Head/bandpurple.rsi/meta.json | 1 - .../Head/bandred.rsi/equipped-HELMET.png | Bin 518 -> 0 bytes .../Clothing/Head/bandred.rsi/icon.png | Bin 190 -> 0 bytes .../Clothing/Head/bandred.rsi/inhand-left.png | Bin 464 -> 0 bytes .../Head/bandred.rsi/inhand-right.png | Bin 462 -> 0 bytes .../Clothing/Head/bandred.rsi/meta.json | 1 - .../Head/bandskull.rsi/equipped-HELMET.png | Bin 533 -> 0 bytes .../Clothing/Head/bandskull.rsi/icon.png | Bin 182 -> 0 bytes .../Head/bandskull.rsi/inhand-left.png | Bin 471 -> 0 bytes .../Head/bandskull.rsi/inhand-right.png | Bin 465 -> 0 bytes .../Clothing/Head/bandskull.rsi/meta.json | 1 - .../Clothing/Head/bearpelt.rsi/meta.json | 1 - .../Clothing/Head/beaver_hat.rsi/meta.json | 1 - .../Clothing/Head/beret.rsi/meta.json | 1 - .../Head/beret_engineering.rsi/meta.json | 1 - .../Clothing/Head/beret_hos.rsi/meta.json | 1 - .../Head/beret_warden.rsi/equipped-HELMET.png | Bin 405 -> 0 bytes .../Clothing/Head/beret_warden.rsi/icon.png | Bin 194 -> 0 bytes .../Head/beret_warden.rsi/inhand-left.png | Bin 349 -> 0 bytes .../Head/beret_warden.rsi/inhand-right.png | Bin 348 -> 0 bytes .../Clothing/Head/beret_warden.rsi/meta.json | 1 - .../Textures/Clothing/Head/bio.rsi/meta.json | 1 - .../Clothing/Head/bio_cmo.rsi/meta.json | 1 - .../Clothing/Head/bio_general.rsi/meta.json | 1 - .../Clothing/Head/bio_janitor.rsi/meta.json | 1 - .../Clothing/Head/bio_scientist.rsi/meta.json | 1 - .../Clothing/Head/bio_security.rsi/meta.json | 1 - .../Clothing/Head/bio_virology.rsi/meta.json | 1 - .../blue_flame_welding_mask_1.rsi/meta.json | 1 - .../blue_flame_welding_mask_1up.rsi/meta.json | 1 - .../Clothing/Head/bluesoft.rsi/meta.json | 1 - .../Head/bluesoft_flipped.rsi/meta.json | 1 - .../Head/boater_hat.rsi/equipped-HELMET.png | Bin 309 -> 0 bytes .../Clothing/Head/boater_hat.rsi/icon.png | Bin 295 -> 0 bytes .../Head/boater_hat.rsi/inhand-left.png | Bin 324 -> 0 bytes .../Head/boater_hat.rsi/inhand-right.png | Bin 331 -> 0 bytes .../Clothing/Head/boater_hat.rsi/meta.json | 1 - .../Head/bombsuit.rsi/equipped-HELMET.png | Bin 977 -> 0 bytes .../Clothing/Head/bombsuit.rsi/icon.png | Bin 365 -> 0 bytes .../Head/bombsuit.rsi/inhand-left.png | Bin 813 -> 0 bytes .../Head/bombsuit.rsi/inhand-right.png | Bin 832 -> 0 bytes .../Clothing/Head/bombsuit.rsi/meta.json | 1 - .../bombsuit_white.rsi/equipped-HELMET.png | Bin 986 -> 0 bytes .../Clothing/Head/bombsuit_white.rsi/icon.png | Bin 371 -> 0 bytes .../Head/bombsuit_white.rsi/inhand-left.png | Bin 811 -> 0 bytes .../Head/bombsuit_white.rsi/inhand-right.png | Bin 831 -> 0 bytes .../Head/bombsuit_white.rsi/meta.json | 1 - .../Clothing/Head/bombsuitsec.rsi/meta.json | 1 - .../Head/bowler.rsi/equipped-HELMET.png | Bin 310 -> 0 bytes .../Clothing/Head/bowler.rsi/icon.png | Bin 182 -> 0 bytes .../Clothing/Head/bowler.rsi/inhand-left.png | Bin 305 -> 0 bytes .../Clothing/Head/bowler.rsi/inhand-right.png | Bin 309 -> 0 bytes .../Clothing/Head/bowler.rsi/meta.json | 1 - .../Clothing/Head/bowler_hat.rsi/meta.json | 1 - .../Clothing/Head/brownfedora.rsi/meta.json | 1 - .../Clothing/Head/bunny.rsi/meta.json | 1 - .../Textures/Clothing/Head/cake.rsi/meta.json | 137 -- .../Head/capcap.rsi/equipped-HELMET.png | Bin 619 -> 0 bytes .../Clothing/Head/capcap.rsi/icon.png | Bin 379 -> 0 bytes .../Clothing/Head/capcap.rsi/inhand-left.png | Bin 549 -> 0 bytes .../Clothing/Head/capcap.rsi/inhand-right.png | Bin 537 -> 0 bytes .../Clothing/Head/capcap.rsi/meta.json | 1 - .../Clothing/Head/capspace.rsi/meta.json | 1 - .../Clothing/Head/captain.rsi/meta.json | 1 - .../Clothing/Head/cardborg_h.rsi/meta.json | 1 - .../Clothing/Head/cargosoft.rsi/meta.json | 1 - .../Head/cargosoft_flipped.rsi/meta.json | 1 - .../Textures/Clothing/Head/cat.rsi/meta.json | 1 - .../Textures/Clothing/Head/cat2.rsi/meta.json | 1 - .../Textures/Clothing/Head/cat3.rsi/meta.json | 1 - .../Clothing/Head/centcom.rsi/meta.json | 1 - .../Clothing/Head/chaplain_hood.rsi/meta.json | 1 - .../Clothing/Head/chefhat.rsi/meta.json | 1 - .../Clothing/Head/chickenhead.rsi/meta.json | 1 - .../Clothing/Head/corpsoft.rsi/meta.json | 1 - .../Head/corpsoft_flipped.rsi/meta.json | 1 - .../Clothing/Head/cosmonaut.rsi/meta.json | 1 - .../Head/cowboy.rsi/equipped-HELMET.png | Bin 239 -> 0 bytes .../Clothing/Head/cowboy.rsi/icon.png | Bin 258 -> 0 bytes .../Clothing/Head/cowboy.rsi/inhand-left.png | Bin 314 -> 0 bytes .../Clothing/Head/cowboy.rsi/inhand-right.png | Bin 310 -> 0 bytes .../Clothing/Head/cowboy.rsi/meta.json | 1 - .../Clothing/Head/cult_helmet.rsi/meta.json | 1 - .../Clothing/Head/culthood.rsi/meta.json | 1 - .../Clothing/Head/deathsquad.rsi/meta.json | 1 - .../Textures/Clothing/Head/fez.rsi/meta.json | 1 - .../Head/fire_welding_mask_1.rsi/meta.json | 1 - .../Head/fire_welding_mask_1up.rsi/meta.json | 1 - .../Head/gladiator.rsi/equipped-HELMET.png | Bin 1662 -> 0 bytes .../Clothing/Head/gladiator.rsi/icon.png | Bin 948 -> 0 bytes .../Head/gladiator.rsi/inhand-left.png | Bin 1265 -> 0 bytes .../Head/gladiator.rsi/inhand-right.png | Bin 1272 -> 0 bytes .../Clothing/Head/gladiator.rsi/meta.json | 1 - .../Head/greenbandana.rsi/equipped-HELMET.png | Bin 713 -> 0 bytes .../Clothing/Head/greenbandana.rsi/icon.png | Bin 601 -> 0 bytes .../Head/greenbandana.rsi/inhand-left.png | Bin 624 -> 0 bytes .../Head/greenbandana.rsi/inhand-right.png | Bin 623 -> 0 bytes .../Clothing/Head/greenbandana.rsi/meta.json | 1 - .../Clothing/Head/greensoft.rsi/meta.json | 1 - .../Head/greensoft_flipped.rsi/meta.json | 1 - .../Clothing/Head/greyfedora.rsi/meta.json | 1 - .../Clothing/Head/greysoft.rsi/meta.json | 1 - .../Head/greysoft_flipped.rsi/meta.json | 1 - .../Clothing/Head/hairflower.rsi/meta.json | 1 - .../Clothing/Head/hardhat_blue.rsi/meta.json | 137 -- .../Head/hardhat_orange.rsi/meta.json | 137 -- .../Clothing/Head/hardhat_red.rsi/meta.json | 137 -- .../Clothing/Head/hardhat_white.rsi/meta.json | 137 -- .../Head/hardhat_yellow.rsi/meta.json | 137 -- .../hardsuit-atmos.rsi/equipped-HELMET.png | Bin 955 -> 0 bytes .../Clothing/Head/hardsuit-atmos.rsi/icon.png | Bin 503 -> 0 bytes .../Head/hardsuit-atmos.rsi/inhand-left.png | Bin 811 -> 0 bytes .../Head/hardsuit-atmos.rsi/inhand-right.png | Bin 779 -> 0 bytes .../Head/hardsuit-atmos.rsi/meta.json | 1 - .../Head/hardsuit-engineering.rsi/icon.png | Bin 486 -> 0 bytes .../Head/hardsuit-engineering.rsi/meta.json | 1 - .../equipped-HELMET.png | Bin 1185 -> 0 bytes .../Head/hardsuit-hazardhardsuit.rsi/icon.png | Bin 472 -> 0 bytes .../inhand-left.png | Bin 942 -> 0 bytes .../inhand-right.png | Bin 899 -> 0 bytes .../hardsuit-hazardhardsuit.rsi/meta.json | 1 - .../hardsuit-medical.rsi/equipped-HELMET.png | Bin 866 -> 0 bytes .../Head/hardsuit-medical.rsi/icon.png | Bin 372 -> 0 bytes .../Head/hardsuit-medical.rsi/inhand-left.png | Bin 719 -> 0 bytes .../hardsuit-medical.rsi/inhand-right.png | Bin 670 -> 0 bytes .../Head/hardsuit-medical.rsi/meta.json | 1 - .../hardsuit-mining.rsi/equipped-HELMET.png | Bin 1146 -> 0 bytes .../Head/hardsuit-mining.rsi/icon.png | Bin 525 -> 0 bytes .../Head/hardsuit-mining.rsi/inhand-left.png | Bin 914 -> 0 bytes .../Head/hardsuit-mining.rsi/inhand-right.png | Bin 850 -> 0 bytes .../Head/hardsuit-mining.rsi/meta.json | 1 - .../Head/hardsuit-old.rsi/equipped-HELMET.png | Bin 1184 -> 0 bytes .../Clothing/Head/hardsuit-old.rsi/icon.png | Bin 435 -> 0 bytes .../Head/hardsuit-old.rsi/inhand-left.png | Bin 936 -> 0 bytes .../Head/hardsuit-old.rsi/inhand-right.png | Bin 978 -> 0 bytes .../Clothing/Head/hardsuit-old.rsi/meta.json | 1 - .../hardsuit-sectg.rsi/equipped-HELMET.png | Bin 1037 -> 0 bytes .../Clothing/Head/hardsuit-sectg.rsi/icon.png | Bin 499 -> 0 bytes .../Head/hardsuit-sectg.rsi/inhand-left.png | Bin 845 -> 0 bytes .../Head/hardsuit-sectg.rsi/inhand-right.png | Bin 849 -> 0 bytes .../Head/hardsuit-sectg.rsi/meta.json | 1 - .../combat-inhand-left.png | Bin 888 -> 0 bytes .../combat-inhand-right.png | Bin 833 -> 0 bytes .../Head/hardsuit-syndie.rsi/meta.json | 128 -- .../hardsuit-white.rsi/equipped-HELMET.png | Bin 1126 -> 0 bytes .../Clothing/Head/hardsuit-white.rsi/icon.png | Bin 485 -> 0 bytes .../Head/hardsuit-white.rsi/meta.json | 1 - .../Head/hardsuit-wiz.rsi/inhand-left.png | Bin 853 -> 0 bytes .../Head/hardsuit-wiz.rsi/inhand-right.png | Bin 848 -> 0 bytes .../Clothing/Head/hardsuit-wiz.rsi/meta.json | 1 - .../hardsuit0-atmos.rsi/equipped-HELMET.png | Bin 955 -> 0 bytes .../Head/hardsuit0-atmos.rsi/icon.png | Bin 503 -> 0 bytes .../Head/hardsuit0-atmos.rsi/inhand-left.png | Bin 808 -> 0 bytes .../Head/hardsuit0-atmos.rsi/inhand-right.png | Bin 779 -> 0 bytes .../Head/hardsuit0-atmos.rsi/meta.json | 1 - .../equipped-HELMET.png | Bin 1136 -> 0 bytes .../Head/hardsuit0-engineering.rsi/icon.png | Bin 486 -> 0 bytes .../hardsuit0-engineering.rsi/inhand-left.png | Bin 858 -> 0 bytes .../inhand-right.png | Bin 919 -> 0 bytes .../Head/hardsuit0-engineering.rsi/meta.json | 1 - .../equipped-HELMET.png | Bin 1185 -> 0 bytes .../hardsuit0-hazardhardsuit.rsi/icon.png | Bin 472 -> 0 bytes .../inhand-left.png | Bin 941 -> 0 bytes .../inhand-right.png | Bin 899 -> 0 bytes .../hardsuit0-hazardhardsuit.rsi/meta.json | 1 - .../hardsuit0-medical.rsi/equipped-HELMET.png | Bin 866 -> 0 bytes .../Head/hardsuit0-medical.rsi/icon.png | Bin 372 -> 0 bytes .../hardsuit0-medical.rsi/inhand-left.png | Bin 715 -> 0 bytes .../hardsuit0-medical.rsi/inhand-right.png | Bin 667 -> 0 bytes .../Head/hardsuit0-medical.rsi/meta.json | 1 - .../hardsuit0-mining.rsi/equipped-HELMET.png | Bin 1146 -> 0 bytes .../Head/hardsuit0-mining.rsi/icon.png | Bin 525 -> 0 bytes .../Head/hardsuit0-mining.rsi/inhand-left.png | Bin 910 -> 0 bytes .../hardsuit0-mining.rsi/inhand-right.png | Bin 848 -> 0 bytes .../Head/hardsuit0-mining.rsi/meta.json | 1 - .../hardsuit0-sectg.rsi/equipped-HELMET.png | Bin 1037 -> 0 bytes .../Head/hardsuit0-sectg.rsi/icon.png | Bin 499 -> 0 bytes .../Head/hardsuit0-sectg.rsi/inhand-left.png | Bin 846 -> 0 bytes .../Head/hardsuit0-sectg.rsi/inhand-right.png | Bin 850 -> 0 bytes .../Head/hardsuit0-sectg.rsi/meta.json | 1 - .../hardsuit0-syndie.rsi/equipped-HELMET.png | Bin 1069 -> 0 bytes .../Head/hardsuit0-syndie.rsi/icon.png | Bin 485 -> 0 bytes .../Head/hardsuit0-syndie.rsi/inhand-left.png | Bin 888 -> 0 bytes .../hardsuit0-syndie.rsi/inhand-right.png | Bin 833 -> 0 bytes .../Head/hardsuit0-syndie.rsi/meta.json | 1 - .../hardsuit0-white.rsi/equipped-HELMET.png | Bin 1126 -> 0 bytes .../Head/hardsuit0-white.rsi/icon.png | Bin 485 -> 0 bytes .../Head/hardsuit0-white.rsi/inhand-left.png | Bin 877 -> 0 bytes .../Head/hardsuit0-white.rsi/inhand-right.png | Bin 914 -> 0 bytes .../Head/hardsuit0-white.rsi/meta.json | 1 - .../hardsuit0-wiz.rsi/equipped-HELMET.png | Bin 1079 -> 0 bytes .../Clothing/Head/hardsuit0-wiz.rsi/icon.png | Bin 594 -> 0 bytes .../Head/hardsuit0-wiz.rsi/inhand-left.png | Bin 851 -> 0 bytes .../Head/hardsuit0-wiz.rsi/inhand-right.png | Bin 846 -> 0 bytes .../Clothing/Head/hardsuit0-wiz.rsi/meta.json | 1 - .../Clothing/Head/headslime.rsi/meta.json | 1 - .../Clothing/Head/helmet.rsi/meta.json | 1 - .../Head/helmetold.rsi/equipped-HELMET.png | Bin 741 -> 0 bytes .../Clothing/Head/helmetold.rsi/icon.png | Bin 312 -> 0 bytes .../Clothing/Head/helmetold.rsi/meta.json | 1 - .../Clothing/Head/hopcap.rsi/meta.json | 1 - .../Clothing/Head/hoshat.rsi/meta.json | 1 - .../Clothing/Head/ihsvoidhelm.rsi/meta.json | 1 - .../ihsvoidhelm_on.rsi/equipped-HELMET.png | Bin 808 -> 0 bytes .../Head/ihsvoidhelm_on.rsi/inhand-left.png | Bin 677 -> 0 bytes .../Head/ihsvoidhelm_on.rsi/inhand-right.png | Bin 687 -> 0 bytes .../Head/ihsvoidhelm_on.rsi/meta.json | 1 - .../Clothing/Head/light_riot.rsi/meta.json | 137 -- .../Head/medical_helm.rsi/equipped-HELMET.png | Bin 866 -> 0 bytes .../Clothing/Head/medical_helm.rsi/icon.png | Bin 292 -> 0 bytes .../Head/medical_helm.rsi/inhand-left.png | Bin 715 -> 0 bytes .../Head/medical_helm.rsi/inhand-right.png | Bin 667 -> 0 bytes .../Clothing/Head/medical_helm.rsi/meta.json | 1 - .../Clothing/Head/mimesoft.rsi/meta.json | 1 - .../Head/mimesoft_flipped.rsi/meta.json | 1 - .../Clothing/Head/monkey.rsi/meta.json | 1 - .../Clothing/Head/mouse_brown.rsi/meta.json | 1 - .../Clothing/Head/mouse_gray.rsi/meta.json | 1 - .../Clothing/Head/mouse_white.rsi/meta.json | 1 - .../Head/nightvis.rsi/equipped-HELMET.png | Bin 938 -> 0 bytes .../Clothing/Head/nightvis.rsi/icon.png | Bin 938 -> 0 bytes .../Head/nightvis.rsi/inhand-left.png | Bin 801 -> 0 bytes .../Head/nightvis.rsi/inhand-right.png | Bin 784 -> 0 bytes .../Clothing/Head/nightvis.rsi/meta.json | 1 - .../Clothing/Head/nun_hood.rsi/meta.json | 1 - .../Head/nursehat.rsi/equipped-HELMET.png | Bin 455 -> 0 bytes .../Clothing/Head/nursehat.rsi/icon.png | Bin 287 -> 0 bytes .../Head/nursehat.rsi/inhand-left.png | Bin 402 -> 0 bytes .../Head/nursehat.rsi/inhand-right.png | Bin 411 -> 0 bytes .../Clothing/Head/nursehat.rsi/meta.json | 1 - .../Head/nymph.rsi/equipped-HELMET.png | Bin 1006 -> 0 bytes .../Textures/Clothing/Head/nymph.rsi/icon.png | Bin 254 -> 0 bytes .../Clothing/Head/nymph.rsi/inhand-left.png | Bin 797 -> 0 bytes .../Clothing/Head/nymph.rsi/inhand-right.png | Bin 801 -> 0 bytes .../Clothing/Head/nymph.rsi/meta.json | 1 - .../orange_bandana.rsi/equipped-HELMET.png | Bin 666 -> 0 bytes .../Clothing/Head/orange_bandana.rsi/icon.png | Bin 615 -> 0 bytes .../Head/orange_bandana.rsi/inhand-left.png | Bin 578 -> 0 bytes .../Head/orange_bandana.rsi/inhand-right.png | Bin 586 -> 0 bytes .../Head/orange_bandana.rsi/meta.json | 1 - .../Clothing/Head/orangesoft.rsi/meta.json | 1 - .../Head/orangesoft_flipped.rsi/meta.json | 1 - .../Head/pai-cat.rsi/equipped-HELMET.png | Bin 804 -> 0 bytes .../Clothing/Head/pai-cat.rsi/icon.png | Bin 295 -> 0 bytes .../Clothing/Head/pai-cat.rsi/inhand-left.png | Bin 681 -> 0 bytes .../Head/pai-cat.rsi/inhand-right.png | Bin 687 -> 0 bytes .../Clothing/Head/pai-cat.rsi/meta.json | 1 - .../Head/pai-monkey.rsi/equipped-HELMET.png | Bin 886 -> 0 bytes .../Clothing/Head/pai-monkey.rsi/icon.png | Bin 314 -> 0 bytes .../Head/pai-monkey.rsi/inhand-left.png | Bin 708 -> 0 bytes .../Head/pai-monkey.rsi/inhand-right.png | Bin 738 -> 0 bytes .../Clothing/Head/pai-monkey.rsi/meta.json | 1 - .../Head/pai-mouse.rsi/equipped-HELMET.png | Bin 514 -> 0 bytes .../Clothing/Head/pai-mouse.rsi/icon.png | Bin 198 -> 0 bytes .../Head/pai-mouse.rsi/inhand-left.png | Bin 451 -> 0 bytes .../Head/pai-mouse.rsi/inhand-right.png | Bin 445 -> 0 bytes .../Clothing/Head/pai-mouse.rsi/meta.json | 1 - .../pai-repairbot.rsi/equipped-HELMET.png | Bin 836 -> 0 bytes .../Clothing/Head/pai-repairbot.rsi/icon.png | Bin 289 -> 0 bytes .../Head/pai-repairbot.rsi/inhand-left.png | Bin 690 -> 0 bytes .../Head/pai-repairbot.rsi/inhand-right.png | Bin 683 -> 0 bytes .../Clothing/Head/pai-repairbot.rsi/meta.json | 1 - .../Head/paintedwelding.rsi/meta.json | 1 - .../Head/paintedweldingup.rsi/meta.json | 1 - .../Clothing/Head/paper.rsi/meta.json | 1 - .../philosopher_wig.rsi/equipped-HELMET.png | Bin 1148 -> 0 bytes .../Head/philosopher_wig.rsi/icon.png | Bin 527 -> 0 bytes .../Head/philosopher_wig.rsi/inhand-left.png | Bin 852 -> 0 bytes .../Head/philosopher_wig.rsi/inhand-right.png | Bin 832 -> 0 bytes .../Head/philosopher_wig.rsi/meta.json | 1 - .../Clothing/Head/pirate.rsi/meta.json | 1 - .../Clothing/Head/plaguedoctor.rsi/meta.json | 1 - .../Clothing/Head/pumpkin.rsi/meta.json | 137 -- .../Clothing/Head/purplesoft.rsi/meta.json | 1 - .../Head/purplesoft_flipped.rsi/meta.json | 1 - .../Textures/Clothing/Head/pwig.rsi/meta.json | 1 - .../Clothing/Head/rad.rsi/equipped-HELMET.png | Bin 1361 -> 0 bytes .../Textures/Clothing/Head/rad.rsi/icon.png | Bin 508 -> 0 bytes .../Clothing/Head/rad.rsi/inhand-left.png | Bin 1131 -> 0 bytes .../Clothing/Head/rad.rsi/inhand-right.png | Bin 1130 -> 0 bytes .../Textures/Clothing/Head/rad.rsi/meta.json | 1 - .../Clothing/Head/redsoft.rsi/meta.json | 1 - .../Head/redsoft_flipped.rsi/meta.json | 1 - .../Clothing/Head/redwizard.rsi/meta.json | 1 - .../Clothing/Head/richard.rsi/meta.json | 1 - .../Clothing/Head/s-ninja.rsi/icon.png | Bin 493 -> 0 bytes .../Clothing/Head/s-ninja.rsi/meta.json | 1 - .../Clothing/Head/santahat.rsi/meta.json | 1 - .../Textures/Clothing/Head/scaf.rsi/meta.json | 1 - .../Clothing/Head/secsoft.rsi/meta.json | 1 - .../Head/secsoft_flipped.rsi/meta.json | 1 - .../Head/security.rsi/equipped-HELMET.png | Bin 697 -> 0 bytes .../Clothing/Head/security.rsi/icon.png | Bin 376 -> 0 bytes .../Head/security.rsi/inhand-left.png | Bin 686 -> 0 bytes .../Head/security.rsi/inhand-right.png | Bin 686 -> 0 bytes .../Clothing/Head/security.rsi/meta.json | 1 - .../Clothing/Head/skubhead.rsi/meta.json | 38 - .../Clothing/Head/sombrero.rsi/meta.json | 1 - .../Clothing/Head/surgcap_blue.rsi/meta.json | 1 - .../Clothing/Head/surgcap_green.rsi/meta.json | 1 - .../Head/surgcap_purple.rsi/meta.json | 1 - .../Clothing/Head/syndicate.rsi/headlight.png | Bin 430 -> 0 bytes .../Clothing/Head/syndicate.rsi/icon.png | Bin 411 -> 0 bytes .../Clothing/Head/syndicate.rsi/meta.json | 200 -- .../Clothing/Head/syndicate.rsi/visorlit.png | Bin 411 -> 0 bytes .../Clothing/Head/thunderdome.rsi/meta.json | 1 - .../Clothing/Head/tophat.rsi/meta.json | 1 - .../Head/ushankadown.rsi/equipped-HELMET.png | Bin 571 -> 0 bytes .../Clothing/Head/ushankadown.rsi/icon.png | Bin 917 -> 0 bytes .../Head/ushankadown.rsi/inhand-left.png | Bin 496 -> 0 bytes .../Head/ushankadown.rsi/inhand-right.png | Bin 484 -> 0 bytes .../Clothing/Head/ushankadown.rsi/meta.json | 1 - .../Head/ushankaup.rsi/equipped-HELMET.png | Bin 525 -> 0 bytes .../Clothing/Head/ushankaup.rsi/icon.png | Bin 906 -> 0 bytes .../Head/ushankaup.rsi/inhand-left.png | Bin 467 -> 0 bytes .../Head/ushankaup.rsi/inhand-right.png | Bin 454 -> 0 bytes .../Clothing/Head/ushankaup.rsi/meta.json | 1 - .../Clothing/Head/violetwizard.rsi/meta.json | 1 - .../Textures/Clothing/Head/void.rsi/meta.json | 1 - .../Clothing/Head/welding.rsi/meta.json | 1 - .../Clothing/Head/weldingup.rsi/meta.json | 1 - .../Clothing/Head/witch.rsi/meta.json | 1 - .../Clothing/Head/witchhat.rsi/meta.json | 1 - .../Clothing/Head/wizard-fake.rsi/meta.json | 1 - .../Clothing/Head/wizardhat.rsi/meta.json | 1 - .../Clothing/Head/wizardhelm.rsi/meta.json | 1 - .../Clothing/Head/xenom.rsi/meta.json | 1 - .../Clothing/Head/xenos.rsi/meta.json | 1 - .../Clothing/Head/xmashat.rsi/meta.json | 1 - .../Clothing/Head/yellowsoft.rsi/meta.json | 1 - .../Head/yellowsoft_flipped.rsi/meta.json | 1 - .../breath.rsi}/equipped-MASK.png | Bin .../breath.rsi}/icon.png | Bin .../Clothing/Mask/breath.rsi/inhand-left.png | Bin 0 -> 299 bytes .../Clothing/Mask/breath.rsi/inhand-right.png | Bin 0 -> 298 bytes .../Clothing/Mask/breath.rsi/meta.json | 27 + .../clown.rsi}/equipped-MASK.png | Bin .../clown.rsi}/icon.png | Bin .../clown.rsi}/inhand-left.png | Bin .../clown.rsi}/inhand-right.png | Bin .../Clothing/Mask/clown.rsi/meta.json | 27 + .../gas.rsi}/equipped-MASK.png | Bin .../mask_gasalt.rsi => Mask/gas.rsi}/icon.png | Bin .../gas.rsi}/inhand-left.png | Bin .../gas.rsi}/inhand-right.png | Bin .../Textures/Clothing/Mask/gas.rsi/meta.json | 27 + .../joy.rsi}/equipped-MASK.png | Bin .../mask_joy.rsi => Mask/joy.rsi}/icon.png | Bin .../Textures/Clothing/Mask/joy.rsi/meta.json | 19 + .../mime.rsi}/equipped-MASK.png | Bin .../mask_mime.rsi => Mask/mime.rsi}/icon.png | Bin .../Textures/Clothing/Mask/mime.rsi/meta.json | 19 + .../sterile.rsi}/equipped-MASK.png | Bin .../sterile.rsi}/icon.png | Bin .../Clothing/Mask/sterile.rsi/inhand-left.png | Bin 0 -> 295 bytes .../Mask/sterile.rsi/inhand-right.png | Bin 0 -> 294 bytes .../Clothing/Mask/sterile.rsi/meta.json | 31 + .../sterile.rsi}/up-equipped-MASK.png | Bin .../Clothing/Masks/mask_breath.rsi/meta.json | 38 - .../Clothing/Masks/mask_clown.rsi/meta.json | 1 - .../Masks/mask_gas.rsi/equipped-MASK.png | Bin 597 -> 0 bytes .../Clothing/Masks/mask_gas.rsi/icon.png | Bin 444 -> 0 bytes .../Masks/mask_gas.rsi/inhand-left.png | Bin 355 -> 0 bytes .../Masks/mask_gas.rsi/inhand-right.png | Bin 360 -> 0 bytes .../Clothing/Masks/mask_gas.rsi/meta.json | 46 - .../Clothing/Masks/mask_gasalt.rsi/meta.json | 46 - .../Clothing/Masks/mask_joy.rsi/meta.json | 33 - .../Clothing/Masks/mask_mime.rsi/meta.json | 33 - .../Clothing/Masks/mask_sterile.rsi/meta.json | 51 - .../Mobs/Back/corgi_back.rsi/meta.json | 174 +- .../Mobs/Hats/corgi_hats.rsi/meta.json | 738 ++++++- .../equipped-NECK.png} | Bin .../inhand-left.png} | Bin .../inhand-right.png} | Bin .../Clothing/Neck/Bedsheets/NT.rsi/meta.json | 23 + .../equipped-NECK.png} | Bin .../inhand-left.png} | Bin .../inhand-right.png} | Bin .../Clothing/Neck/Bedsheets/USA.rsi/meta.json | 23 + .../equipped-NECK.png} | Bin .../inhand-left.png} | Bin .../inhand-right.png} | Bin .../Neck/Bedsheets/black.rsi/meta.json | 23 + .../equipped-NECK.png} | Bin .../inhand-left.png} | Bin .../inhand-right.png} | Bin .../Neck/Bedsheets/blue.rsi/meta.json | 23 + .../equipped-NECK.png} | Bin .../inhand-left.png} | Bin .../inhand-right.png} | Bin .../Neck/Bedsheets/brown.rsi/meta.json | 23 + .../equipped-NECK.png} | Bin .../inhand-left.png} | Bin .../inhand-right.png} | Bin .../Neck/Bedsheets/captain.rsi/meta.json | 23 + .../equipped-NECK.png} | Bin .../inhand-left.png} | Bin .../inhand-right.png} | Bin .../Clothing/Neck/Bedsheets/ce.rsi/meta.json | 23 + .../equipped-NECK.png} | Bin .../inhand-left.png} | Bin .../inhand-right.png} | Bin .../Neck/Bedsheets/centcom.rsi/meta.json | 23 + .../equipped-NECK.png} | Bin .../Neck/Bedsheets/clown.rsi/meta.json | 23 + .../equipped-NECK.png} | Bin .../inhand-left.png} | Bin .../inhand-right.png} | Bin .../Clothing/Neck/Bedsheets/cmo.rsi/meta.json | 23 + .../equipped-NECK.png} | Bin .../inhand-left.png} | Bin .../inhand-right.png} | Bin .../meta.json | 10 +- .../equipped-NECK.png} | Bin .../inhand-left.png} | Bin .../inhand-right.png} | Bin .../{sheet_wiz.rsi => cult.rsi}/meta.json | 38 +- .../equipped-NECK.png} | Bin .../inhand-left.png} | Bin .../inhand-right.png} | Bin .../Neck/Bedsheets/green.rsi/meta.json | 23 + .../equipped-NECK.png} | Bin .../inhand-left.png} | Bin .../inhand-right.png} | Bin .../Neck/Bedsheets/grey.rsi/meta.json | 23 + .../equipped-NECK.png} | Bin .../inhand-left.png} | Bin .../inhand-right.png} | Bin .../Clothing/Neck/Bedsheets/hop.rsi/meta.json | 23 + .../equipped-NECK.png} | Bin .../inhand-left.png} | Bin .../inhand-right.png} | Bin .../Clothing/Neck/Bedsheets/hos.rsi/meta.json | 23 + .../equipped-NECK.png} | Bin .../inhand-left.png} | Bin .../inhand-right.png} | Bin .../Clothing/Neck/Bedsheets/ian.rsi/meta.json | 23 + .../equipped-NECK.png} | Bin .../inhand-left.png} | Bin .../inhand-right.png} | Bin .../Neck/Bedsheets/medical.rsi/meta.json | 23 + .../equipped-NECK.png} | Bin .../inhand-left.png} | Bin .../inhand-right.png} | Bin .../Neck/Bedsheets/mime.rsi/meta.json | 23 + .../equipped-NECK.png} | Bin .../inhand-left.png} | Bin .../inhand-right.png} | Bin .../Neck/Bedsheets/orange.rsi/meta.json | 23 + .../equipped-NECK.png} | Bin .../inhand-left.png} | Bin .../inhand-right.png} | Bin .../Neck/Bedsheets/purple.rsi/meta.json | 23 + .../equipped-NECK.png} | Bin .../inhand-left.png} | Bin .../inhand-right.png} | Bin .../Clothing/Neck/Bedsheets/qm.rsi/meta.json | 23 + .../equipped-NECK.png} | Bin .../inhand-left.png} | Bin .../inhand-right.png} | Bin .../Neck/Bedsheets/rainbow.rsi/meta.json | 23 + .../equipped-NECK.png} | Bin .../inhand-left.png} | Bin .../inhand-right.png} | Bin .../Clothing/Neck/Bedsheets/rd.rsi/meta.json | 23 + .../equipped-NECK.png} | Bin .../inhand-left.png} | Bin .../inhand-right.png} | Bin .../Clothing/Neck/Bedsheets/red.rsi/meta.json | 23 + .../Neck/Bedsheets/sheet_NT.rsi/meta.json | 65 - .../Neck/Bedsheets/sheet_USA.rsi/meta.json | 65 - .../Neck/Bedsheets/sheet_black.rsi/meta.json | 65 - .../Neck/Bedsheets/sheet_blue.rsi/meta.json | 65 - .../Neck/Bedsheets/sheet_brown.rsi/meta.json | 65 - .../Bedsheets/sheet_captain.rsi/meta.json | 65 - .../Neck/Bedsheets/sheet_ce.rsi/meta.json | 65 - .../Bedsheets/sheet_centcom.rsi/meta.json | 65 - .../Neck/Bedsheets/sheet_clown.rsi/meta.json | 29 - .../Neck/Bedsheets/sheet_cmo.rsi/meta.json | 65 - .../Neck/Bedsheets/sheet_cult.rsi/meta.json | 77 - .../Neck/Bedsheets/sheet_green.rsi/meta.json | 65 - .../Neck/Bedsheets/sheet_grey.rsi/meta.json | 65 - .../Neck/Bedsheets/sheet_hop.rsi/meta.json | 65 - .../Neck/Bedsheets/sheet_hos.rsi/meta.json | 65 - .../Neck/Bedsheets/sheet_ian.rsi/meta.json | 65 - .../Bedsheets/sheet_medical.rsi/meta.json | 65 - .../Neck/Bedsheets/sheet_mime.rsi/meta.json | 65 - .../Neck/Bedsheets/sheet_orange.rsi/meta.json | 65 - .../Neck/Bedsheets/sheet_purple.rsi/meta.json | 65 - .../Neck/Bedsheets/sheet_qm.rsi/meta.json | 65 - .../Bedsheets/sheet_rainbow.rsi/meta.json | 65 - .../Neck/Bedsheets/sheet_rd.rsi/meta.json | 65 - .../Neck/Bedsheets/sheet_red.rsi/meta.json | 65 - .../Neck/Bedsheets/sheet_syndie.rsi/meta.json | 65 - .../Neck/Bedsheets/sheet_white.rsi/meta.json | 65 - .../Neck/Bedsheets/sheet_yellow.rsi/meta.json | 65 - .../equipped-NECK.png} | Bin .../inhand-left.png} | Bin .../inhand-right.png} | Bin .../Neck/Bedsheets/syndie.rsi/meta.json | 23 + .../equipped-NECK.png} | Bin .../inhand-left.png} | Bin .../inhand-right.png} | Bin .../Neck/Bedsheets/white.rsi/meta.json | 23 + .../equipped-NECK.png} | Bin .../inhand-left.png} | Bin .../inhand-right.png} | Bin .../Clothing/Neck/Bedsheets/wiz.rsi/meta.json | 23 + .../equipped-NECK.png} | Bin .../inhand-left.png} | Bin .../inhand-right.png} | Bin .../Neck/Bedsheets/yellow.rsi/meta.json | 23 + .../equipped-NECK.png} | Bin .../capcloak.png => cap.rsi/icon.png} | Bin .../Clothing/Neck/Cloaks/cap.rsi/meta.json | 19 + .../Neck/Cloaks/cap_cloak.rsi/meta.json | 36 - .../equipped-NECK.png} | Bin .../cecloak.png => ce.rsi/icon.png} | Bin .../Clothing/Neck/Cloaks/ce.rsi/meta.json | 19 + .../Neck/Cloaks/ce_cloak.rsi/meta.json | 37 - .../equipped-NECK.png} | Bin .../cmocloak.png => cmo.rsi/icon.png} | Bin .../Clothing/Neck/Cloaks/cmo.rsi/meta.json | 19 + .../Neck/Cloaks/cmo_cloak.rsi/meta.json | 36 - .../equipped-NECK.png} | Bin .../heraldcloak.png => herald.rsi/icon.png} | Bin .../Clothing/Neck/Cloaks/herald.rsi/meta.json | 19 + .../Neck/Cloaks/herald_cloak.rsi/meta.json | 36 - .../equipped-NECK.png} | Bin .../hopcloak.png => hop.rsi/icon.png} | Bin .../Clothing/Neck/Cloaks/hop.rsi/meta.json | 19 + .../Neck/Cloaks/hop_cloak.rsi/meta.json | 37 - .../equipped-NECK.png} | Bin .../hoscloak.png => hos.rsi/icon.png} | Bin .../Clothing/Neck/Cloaks/hos.rsi/meta.json | 19 + .../Neck/Cloaks/hos_cloak.rsi/meta.json | 36 - .../equipped-NECK.png} | Bin .../qmcloak.png => qm.rsi/icon.png} | Bin .../Clothing/Neck/Cloaks/qm.rsi/meta.json | 19 + .../Neck/Cloaks/qm_cloak.rsi/meta.json | 36 - .../equipped-NECK.png} | Bin .../rdcloak.png => rd.rsi/icon.png} | Bin .../Clothing/Neck/Cloaks/rd.rsi/meta.json | 19 + .../Neck/Cloaks/rd_cloak.rsi/meta.json | 36 - .../bling.rsi/equipped-NECK.png} | Bin .../bling.png => Misc/bling.rsi/icon.png} | Bin .../Clothing/Neck/Misc/bling.rsi/meta.json | 20 + .../headphones.rsi/equipped-NECK.png} | Bin .../headphones.rsi/icon-on.png} | Bin .../headphones.rsi/icon.png} | Bin .../headphones.rsi/inhand-left.png} | Bin .../headphones.rsi/inhand-right.png} | Bin .../Neck/Misc/headphones.rsi/meta.json | 73 + .../headphones.rsi/on-equipped-NECK.png} | Bin .../stethoscope.rsi/equipped-NECK.png} | Bin .../stethoscope.rsi/icon.png} | Bin .../Neck/Misc/stethoscope.rsi/meta.json | 19 + .../equipped-NECK.png} | Bin .../icon.png} | Bin .../Clothing/Neck/Scarfs/blue.rsi/meta.json | 19 + .../Neck/Scarfs/blue_scarf.rsi/meta.json | 38 - .../equipped-NECK.png} | Bin .../icon.png} | Bin .../Clothing/Neck/Scarfs/green.rsi/meta.json | 19 + .../Neck/Scarfs/green_scarf.rsi/meta.json | 38 - .../equipped-NECK.png} | Bin .../stripedredscarf.png => red.rsi/icon.png} | Bin .../Clothing/Neck/Scarfs/red.rsi/meta.json | 19 + .../Neck/Scarfs/red_scarf.rsi/meta.json | 38 - .../equipped-NECK.png} | Bin .../zebrascarf.png => zebra.rsi/icon.png} | Bin .../Clothing/Neck/Scarfs/zebra.rsi/meta.json | 19 + .../Neck/Scarfs/zebra_scarf.rsi/meta.json | 38 - .../dettie.rsi/equipped-NECK.png} | Bin .../dettie.png => Ties/dettie.rsi/icon.png} | Bin .../Clothing/Neck/Ties/dettie.rsi/meta.json | 19 + .../redtie.rsi/equipped-NECK.png} | Bin .../redtie.png => Ties/redtie.rsi/icon.png} | Bin .../Clothing/Neck/Ties/redtie.rsi/meta.json | 19 + .../Clothing/Neck/bling.rsi/meta.json | 38 - .../Clothing/Neck/dettie.rsi/meta.json | 38 - .../Clothing/Neck/headphones.rsi/meta.json | 125 -- .../Clothing/Neck/redtie.rsi/meta.json | 38 - .../Clothing/Neck/stethoscope.rsi/meta.json | 38 - .../equipped-OUTERCLOTHING.png | Bin .../{ => Armor}/armor_reflec.rsi/icon.png | Bin .../armor_reflec.rsi/inhand-left.png | Bin .../armor_reflec.rsi/inhand-right.png | Bin .../Armor/armor_reflec.rsi/meta.json | 27 + .../equipped-OUTERCLOTHING.png | Bin .../{ => Armor}/bulletproof.rsi/icon.png | Bin .../bulletproof.rsi/inhand-left.png | Bin .../bulletproof.rsi/inhand-right.png | Bin .../Armor/bulletproof.rsi/meta.json | 27 + .../equipped-OUTERCLOTHING.png | Bin .../{ => Armor}/cult_armour.rsi/icon.png | Bin .../cult_armour.rsi/inhand-left.png | Bin .../cult_armour.rsi/inhand-right.png | Bin .../Armor/cult_armour.rsi/meta.json | 27 + .../heavy.rsi/equipped-OUTERCLOTHING.png | Bin .../{ => Armor}/heavy.rsi/icon.png | Bin .../{ => Armor}/heavy.rsi/inhand-left.png | Bin .../{ => Armor}/heavy.rsi/inhand-right.png | Bin .../OuterClothing/Armor/heavy.rsi/meta.json | 27 + .../equipped-OUTERCLOTHING.png | Bin .../heavygreen.rsi}/icon.png | Bin .../heavygreen.rsi}/inhand-left.png | Bin .../heavygreen.rsi}/inhand-right.png | Bin .../Armor/heavygreen.rsi/meta.json | 27 + .../heavyred.rsi}/equipped-OUTERCLOTHING.png | Bin .../heavyred.rsi}/icon.png | Bin .../heavyred.rsi}/inhand-left.png | Bin .../heavyred.rsi}/inhand-right.png | Bin .../Armor/heavyred.rsi/meta.json | 27 + .../magusblue.rsi/equipped-OUTERCLOTHING.png | Bin .../{ => Armor}/magusblue.rsi/icon.png | Bin .../{ => Armor}/magusblue.rsi/inhand-left.png | Bin .../magusblue.rsi/inhand-right.png | Bin .../Armor/magusblue.rsi/meta.json | 27 + .../magusred.rsi/equipped-OUTERCLOTHING.png | Bin .../{ => Armor}/magusred.rsi/icon.png | Bin .../{ => Armor}/magusred.rsi/inhand-left.png | Bin .../{ => Armor}/magusred.rsi/inhand-right.png | Bin .../Armor/magusred.rsi/meta.json | 27 + .../riot.rsi/equipped-OUTERCLOTHING.png | Bin .../{ => Armor}/riot.rsi/icon.png | Bin .../{ => Armor}/riot.rsi/inhand-left.png | Bin .../{ => Armor}/riot.rsi/inhand-right.png | Bin .../OuterClothing/Armor/riot.rsi/meta.json | 27 + .../scaf.rsi/equipped-OUTERCLOTHING.png | Bin .../{ => Armor}/scaf.rsi/icon.png | Bin .../{ => Armor}/scaf.rsi/inhand-left.png | Bin .../{ => Armor}/scaf.rsi/inhand-right.png | Bin .../OuterClothing/Armor/scaf.rsi/meta.json | 27 + .../cmo.rsi}/equipped-OUTERCLOTHING.png | Bin .../{bio_cmo.rsi => Bio/cmo.rsi}/icon.png | Bin .../cmo.rsi}/inhand-left.png | Bin .../cmo.rsi}/inhand-right.png | Bin .../OuterClothing/Bio/cmo.rsi/meta.json | 27 + .../general.rsi}/equipped-OUTERCLOTHING.png | Bin .../general.rsi}/icon.png | Bin .../general.rsi}/inhand-left.png | Bin .../general.rsi}/inhand-right.png | Bin .../OuterClothing/Bio/general.rsi/meta.json | 27 + .../janitor.rsi}/equipped-OUTERCLOTHING.png | Bin .../janitor.rsi}/icon.png | Bin .../janitor.rsi}/inhand-left.png | Bin .../janitor.rsi}/inhand-right.png | Bin .../OuterClothing/Bio/janitor.rsi/meta.json | 27 + .../scientist.rsi}/equipped-OUTERCLOTHING.png | Bin .../scientist.rsi}/icon.png | Bin .../scientist.rsi}/inhand-left.png | Bin .../scientist.rsi}/inhand-right.png | Bin .../OuterClothing/Bio/scientist.rsi/meta.json | 27 + .../security.rsi}/equipped-OUTERCLOTHING.png | Bin .../security.rsi}/icon.png | Bin .../security.rsi}/inhand-left.png | Bin .../security.rsi}/inhand-right.png | Bin .../OuterClothing/Bio/security.rsi/meta.json | 27 + .../virology.rsi}/equipped-OUTERCLOTHING.png | Bin .../virology.rsi}/icon.png | Bin .../virology.rsi}/inhand-left.png | Bin .../virology.rsi}/inhand-right.png | Bin .../OuterClothing/Bio/virology.rsi/meta.json | 27 + .../bomber.rsi/equipped-OUTERCLOTHING.png | Bin .../bomber.rsi/icon-open.png} | Bin .../{ => Coats}/bomber.rsi/icon.png | Bin .../{ => Coats}/bomber.rsi/inhand-left.png | Bin .../{ => Coats}/bomber.rsi/inhand-right.png | Bin .../OuterClothing/Coats/bomber.rsi/meta.json | 43 + .../open-equipped-OUTERCLOTHING.png} | Bin .../bomber.rsi/open-inhand-left.png} | Bin .../bomber.rsi/open-inhand-right.png} | Bin .../detective.rsi/equipped-OUTERCLOTHING.png | Bin .../{ => Coats}/detective.rsi/icon.png | Bin .../{ => Coats}/detective.rsi/inhand-left.png | Bin .../detective.rsi/inhand-right.png | Bin .../Coats/detective.rsi/meta.json | 27 + .../gentlecoat.rsi/equipped-OUTERCLOTHING.png | Bin .../{ => Coats}/gentlecoat.rsi/icon.png | Bin .../gentlecoat.rsi/inhand-left.png | Bin .../gentlecoat.rsi/inhand-right.png | Bin .../Coats/gentlecoat.rsi/meta.json | 27 + .../equipped-OUTERCLOTHING.png | Bin .../hos_trenchcoat.rsi/icon.png} | Bin .../Coats/hos_trenchcoat.rsi/inhand-left.png | Bin 0 -> 377 bytes .../Coats/hos_trenchcoat.rsi/inhand-right.png | Bin 0 -> 397 bytes .../Coats/hos_trenchcoat.rsi/meta.json | 27 + .../insp_coat.rsi/equipped-OUTERCLOTHING.png | Bin .../{ => Coats}/insp_coat.rsi/icon.png | Bin .../{ => Coats}/insp_coat.rsi/inhand-left.png | Bin .../insp_coat.rsi/inhand-right.png | Bin .../Coats/insp_coat.rsi/meta.json | 27 + .../jensencoat.rsi/equipped-OUTERCLOTHING.png | Bin .../{ => Coats}/jensencoat.rsi/icon.png | Bin .../jensencoat.rsi/inhand-left.png | Bin .../jensencoat.rsi/inhand-right.png | Bin .../Coats/jensencoat.rsi/meta.json | 27 + .../labcoat.rsi/equipped-OUTERCLOTHING.png | Bin 0 -> 1289 bytes .../Coats/labcoat.rsi/icon-open.png | Bin 0 -> 490 bytes .../OuterClothing/Coats/labcoat.rsi/icon.png | Bin 0 -> 483 bytes .../{ => Coats}/labcoat.rsi/inhand-left.png | Bin .../{ => Coats}/labcoat.rsi/inhand-right.png | Bin .../OuterClothing/Coats/labcoat.rsi/meta.json | 43 + .../open-equipped-OUTERCLOTHING.png | Bin 0 -> 1199 bytes .../labcoat.rsi/open-inhand-left.png} | Bin .../labcoat.rsi/open-inhand-right.png} | Bin .../equipped-OUTERCLOTHING.png | Bin 0 -> 1345 bytes .../Coats/labcoat_chem.rsi/icon-open.png | Bin 0 -> 526 bytes .../Coats/labcoat_chem.rsi/icon.png | Bin 0 -> 518 bytes .../labcoat_chem.rsi/inhand-left.png | Bin .../labcoat_chem.rsi/inhand-right.png | Bin .../Coats/labcoat_chem.rsi/meta.json | 43 + .../open-equipped-OUTERCLOTHING.png | Bin 0 -> 1356 bytes .../labcoat_chem.rsi/open-inhand-left.png} | Bin .../labcoat_chem.rsi/open-inhand-right.png} | Bin .../equipped-OUTERCLOTHING.png | Bin 0 -> 1368 bytes .../Coats/labcoat_cmo.rsi/icon-open.png | Bin 0 -> 544 bytes .../Coats/labcoat_cmo.rsi/icon.png | Bin 0 -> 537 bytes .../Coats/labcoat_cmo.rsi/meta.json | 27 + .../open-equipped-OUTERCLOTHING.png | Bin 0 -> 1253 bytes .../pirate.rsi/equipped-OUTERCLOTHING.png | Bin .../{ => Coats}/pirate.rsi/icon.png | Bin .../{ => Coats}/pirate.rsi/inhand-left.png | Bin .../{ => Coats}/pirate.rsi/inhand-right.png | Bin .../OuterClothing/Coats/pirate.rsi/meta.json | 27 + .../warden.rsi/equipped-OUTERCLOTHING.png | Bin 0 -> 1610 bytes .../OuterClothing/Coats/warden.rsi/icon.png | Bin 0 -> 428 bytes .../Coats/warden.rsi/inhand-left.png} | Bin .../Coats/warden.rsi/inhand-right.png} | Bin .../OuterClothing/Coats/warden.rsi/meta.json | 27 + .../equipped-OUTERCLOTHING.png | Bin 0 -> 2014 bytes .../Hardsuits/atmospherics.rsi/icon.png | Bin 0 -> 829 bytes .../atmospherics.rsi}/inhand-left.png | Bin .../atmospherics.rsi}/inhand-right.png | Bin .../Hardsuits/atmospherics.rsi/meta.json | 27 + .../capspace.rsi/equipped-OUTERCLOTHING.png | Bin 0 -> 910 bytes .../Hardsuits/capspace.rsi/icon.png | Bin 0 -> 381 bytes .../Hardsuits/capspace.rsi/inhand-left.png | Bin 0 -> 669 bytes .../Hardsuits/capspace.rsi/inhand-right.png | Bin 0 -> 733 bytes .../Hardsuits/capspace.rsi/meta.json | 27 + .../deathsquad.rsi/equipped-OUTERCLOTHING.png | Bin .../{ => Hardsuits}/deathsquad.rsi/icon.png | Bin .../deathsquad.rsi/inhand-left.png | Bin .../deathsquad.rsi/inhand-right.png | Bin .../Hardsuits/deathsquad.rsi/meta.json | 27 + .../equipped-OUTERCLOTHING.png | Bin .../Hardsuits/engineering-white.rsi/icon.png | Bin 0 -> 1068 bytes .../engineering-white.rsi}/inhand-left.png | Bin .../engineering-white.rsi}/inhand-right.png | Bin .../Hardsuits/engineering-white.rsi/meta.json | 27 + .../equipped-OUTERCLOTHING.png | Bin .../Hardsuits/engineering.rsi/icon.png | Bin 0 -> 840 bytes .../engineering.rsi}/inhand-left.png | Bin .../engineering.rsi}/inhand-right.png | Bin .../Hardsuits/engineering.rsi/meta.json | 27 + .../ihsvoid.rsi}/equipped-OUTERCLOTHING.png | Bin .../ihsvoid.rsi}/icon.png | Bin .../ihsvoid.rsi}/inhand-left.png | Bin .../ihsvoid.rsi}/inhand-right.png | Bin .../Hardsuits/ihsvoid.rsi/meta.json | 27 + .../medical.rsi/equipped-OUTERCLOTHING.png | Bin 0 -> 1687 bytes .../Hardsuits/medical.rsi/icon.png | Bin 0 -> 341 bytes .../Hardsuits/medical.rsi/inhand-left.png | Bin 0 -> 648 bytes .../Hardsuits/medical.rsi/inhand-right.png | Bin 0 -> 698 bytes .../Hardsuits/medical.rsi/meta.json | 27 + .../rd.rsi/equipped-OUTERCLOTHING.png | Bin 0 -> 2070 bytes .../OuterClothing/Hardsuits/rd.rsi/icon.png | Bin 0 -> 801 bytes .../Hardsuits/rd.rsi}/inhand-left.png | Bin .../Hardsuits/rd.rsi}/inhand-right.png | Bin .../OuterClothing/Hardsuits/rd.rsi/meta.json | 27 + .../salvage.rsi}/equipped-OUTERCLOTHING.png | Bin .../Hardsuits/salvage.rsi/icon.png | Bin 0 -> 770 bytes .../salvage.rsi}/inhand-left.png | Bin .../salvage.rsi}/inhand-right.png | Bin .../Hardsuits/salvage.rsi/meta.json | 27 + .../equipped-OUTERCLOTHING.png | Bin 0 -> 1998 bytes .../Hardsuits/security-red.rsi/icon.png | Bin 0 -> 740 bytes .../security-red.rsi/inhand-left.png | Bin 0 -> 565 bytes .../security-red.rsi/inhand-right.png | Bin 0 -> 604 bytes .../Hardsuits/security-red.rsi/meta.json | 27 + .../Hardsuits/security.rsi/desktop.ini | 2 + .../security.rsi/equipped-OUTERCLOTHING.png | Bin 0 -> 2118 bytes .../Hardsuits/security.rsi/icon.png | Bin 0 -> 829 bytes .../Hardsuits/security.rsi/inhand-left.png | Bin 0 -> 565 bytes .../Hardsuits/security.rsi/inhand-right.png | Bin 0 -> 604 bytes .../Hardsuits/security.rsi/meta.json | 27 + .../syndicate.rsi}/equipped-OUTERCLOTHING.png | Bin .../Hardsuits/syndicate.rsi/icon.png | Bin 0 -> 768 bytes .../syndicate.rsi}/inhand-left.png | Bin .../syndicate.rsi}/inhand-right.png | Bin .../Hardsuits/syndicate.rsi/meta.json | 27 + .../wizard.rsi}/equipped-OUTERCLOTHING.png | Bin .../Hardsuits/wizard.rsi/icon.png | Bin 0 -> 932 bytes .../wizard.rsi}/inhand-left.png | Bin .../wizard.rsi}/inhand-right.png | Bin .../Hardsuits/wizard.rsi/meta.json | 27 + .../apron.rsi/equipped-OUTERCLOTHING.png | Bin .../{ => Misc}/apron.rsi/icon.png | Bin .../{ => Misc}/apron.rsi/inhand-left.png | Bin .../{ => Misc}/apron.rsi/inhand-right.png | Bin .../OuterClothing/Misc/apron.rsi/meta.json | 27 + .../apronchef.rsi/equipped-OUTERCLOTHING.png | Bin .../{ => Misc}/apronchef.rsi/icon.png | Bin .../{ => Misc}/apronchef.rsi/inhand-left.png | Bin .../{ => Misc}/apronchef.rsi/inhand-right.png | Bin .../Misc/apronchef.rsi/meta.json | 27 + .../equipped-OUTERCLOTHING.png | Bin .../black_hoodie.rsi/icon-open.png} | Bin .../{ => Misc}/black_hoodie.rsi/icon.png | Bin .../black_hoodie.rsi/inhand-left.png | Bin .../black_hoodie.rsi/inhand-right.png | Bin .../Misc/black_hoodie.rsi/meta.json | 43 + .../open-equipped-OUTERCLOTHING.png} | Bin .../black_hoodie.rsi/open-inhand-left.png} | Bin .../black_hoodie.rsi/open-inhand-right.png} | Bin .../cardborg.rsi/equipped-OUTERCLOTHING.png | Bin .../{ => Misc}/cardborg.rsi/icon.png | Bin .../{ => Misc}/cardborg.rsi/inhand-left.png | Bin .../{ => Misc}/cardborg.rsi/inhand-right.png | Bin .../OuterClothing/Misc/cardborg.rsi/meta.json | 27 + .../equipped-OUTERCLOTHING.png | Bin .../{ => Misc}/chaplain_hoodie.rsi/icon.png | Bin .../chaplain_hoodie.rsi/inhand-left.png | Bin .../chaplain_hoodie.rsi/inhand-right.png | Bin .../Misc/chaplain_hoodie.rsi/meta.json | 27 + .../chef.rsi/equipped-OUTERCLOTHING.png | Bin .../{ => Misc}/chef.rsi/icon.png | Bin .../{ => Misc}/chef.rsi/inhand-left.png | Bin .../{ => Misc}/chef.rsi/inhand-right.png | Bin .../OuterClothing/Misc/chef.rsi/meta.json | 27 + .../equipped-OUTERCLOTHING.png | Bin .../{ => Misc}/classicponcho.rsi/icon.png | Bin .../classicponcho.rsi/inhand-left.png | Bin .../classicponcho.rsi/inhand-right.png | Bin .../Misc/classicponcho.rsi/meta.json | 27 + .../cultrobes.rsi/equipped-OUTERCLOTHING.png | Bin .../{ => Misc}/cultrobes.rsi/icon.png | Bin .../{ => Misc}/cultrobes.rsi/inhand-left.png | Bin .../{ => Misc}/cultrobes.rsi/inhand-right.png | Bin .../Misc/cultrobes.rsi/meta.json | 27 + .../equipped-OUTERCLOTHING.png | Bin .../grey_hoodie.rsi/icon-open.png} | Bin .../{ => Misc}/grey_hoodie.rsi/icon.png | Bin .../grey_hoodie.rsi/inhand-left.png | Bin .../grey_hoodie.rsi/inhand-right.png | Bin .../Misc/grey_hoodie.rsi/meta.json | 43 + .../open-equipped-OUTERCLOTHING.png} | Bin .../grey_hoodie.rsi/open-inhand-left.png} | Bin .../grey_hoodie.rsi/open-inhand-right.png} | Bin .../judge.rsi/equipped-OUTERCLOTHING.png | Bin .../{ => Misc}/judge.rsi/icon.png | Bin .../{ => Misc}/judge.rsi/inhand-left.png | Bin .../{ => Misc}/judge.rsi/inhand-right.png | Bin .../OuterClothing/Misc/judge.rsi/meta.json | 27 + .../poncho.rsi/equipped-OUTERCLOTHING.png | Bin .../{ => Misc}/poncho.rsi/icon.png | Bin .../{ => Misc}/poncho.rsi/inhand-left.png | Bin .../{ => Misc}/poncho.rsi/inhand-right.png | Bin .../OuterClothing/Misc/poncho.rsi/meta.json | 27 + .../redwizard.rsi/equipped-OUTERCLOTHING.png | Bin .../{ => Misc}/redwizard.rsi/icon.png | Bin .../{ => Misc}/redwizard.rsi/inhand-left.png | Bin .../{ => Misc}/redwizard.rsi/inhand-right.png | Bin .../Misc/redwizard.rsi/meta.json | 27 + .../santa.rsi/equipped-OUTERCLOTHING.png | Bin .../{ => Misc}/santa.rsi/icon.png | Bin .../{ => Misc}/santa.rsi/inhand-left.png | Bin .../{ => Misc}/santa.rsi/inhand-right.png | Bin .../OuterClothing/Misc/santa.rsi/meta.json | 27 + .../skubbody.rsi/equipped-OUTERCLOTHING.png | Bin .../{ => Misc}/skubbody.rsi/icon.png | Bin .../OuterClothing/Misc/skubbody.rsi/meta.json | 19 + .../equipped-OUTERCLOTHING.png | Bin .../{ => Misc}/straight_jacket.rsi/icon.png | Bin .../straight_jacket.rsi/inhand-left.png | Bin .../straight_jacket.rsi/inhand-right.png | Bin .../Misc/straight_jacket.rsi/meta.json | 27 + .../equipped-OUTERCLOTHING.png | Bin .../{ => Misc}/violetwizard.rsi/icon.png | Bin .../violetwizard.rsi/inhand-left.png | Bin .../violetwizard.rsi/inhand-right.png | Bin .../Misc/violetwizard.rsi/meta.json | 27 + .../wizard.rsi/equipped-OUTERCLOTHING.png | Bin .../{ => Misc}/wizard.rsi/icon.png | Bin .../{ => Misc}/wizard.rsi/inhand-left.png | Bin .../{ => Misc}/wizard.rsi/inhand-right.png | Bin .../OuterClothing/Misc/wizard.rsi/meta.json | 27 + .../xenos.rsi/equipped-OUTERCLOTHING.png | Bin .../{ => Misc}/xenos.rsi/icon.png | Bin .../{ => Misc}/xenos.rsi/inhand-left.png | Bin .../{ => Misc}/xenos.rsi/inhand-right.png | Bin .../OuterClothing/Misc/xenos.rsi/meta.json | 27 + .../bombsuit.rsi}/equipped-OUTERCLOTHING.png | Bin .../bombsuit.rsi}/icon.png | Bin .../bombsuit.rsi}/inhand-left.png | Bin .../bombsuit.rsi}/inhand-right.png | Bin .../Suits/bombsuit.rsi/meta.json | 27 + .../chicken.rsi}/equipped-OUTERCLOTHING.png | Bin .../chicken.rsi}/icon.png | Bin .../chicken.rsi}/inhand-left.png | Bin .../chicken.rsi}/inhand-right.png | Bin .../OuterClothing/Suits/chicken.rsi/meta.json | 27 + .../emergency.rsi}/equipped-OUTERCLOTHING.png | Bin .../emergency.rsi}/icon.png | Bin .../emergency.rsi}/inhand-left.png | Bin .../emergency.rsi}/inhand-right.png | Bin .../Suits/emergency.rsi/meta.json | 27 + .../Suits/fire.rsi/equipped-OUTERCLOTHING.png | Bin 0 -> 2156 bytes .../OuterClothing/Suits/fire.rsi/icon.png | Bin 0 -> 867 bytes .../fire.rsi}/inhand-left.png | Bin .../fire.rsi}/inhand-right.png | Bin .../OuterClothing/Suits/fire.rsi/meta.json | 27 + .../monkey.rsi}/equipped-OUTERCLOTHING.png | Bin .../monkey.rsi}/icon.png | Bin .../monkey.rsi}/inhand-left.png | Bin .../monkey.rsi}/inhand-right.png | Bin .../OuterClothing/Suits/monkey.rsi/meta.json | 27 + .../Suits/rad.rsi/equipped-OUTERCLOTHING.png | Bin 0 -> 2080 bytes .../OuterClothing/Suits/rad.rsi/icon.png | Bin 0 -> 666 bytes .../Suits/rad.rsi/inhand-left.png | Bin 0 -> 460 bytes .../Suits/rad.rsi/inhand-right.png | Bin 0 -> 456 bytes .../OuterClothing/Suits/rad.rsi/meta.json | 27 + .../spaceninja.rsi/equipped-OUTERCLOTHING.png | Bin 0 -> 1413 bytes .../Suits/spaceninja.rsi/icon.png | Bin 0 -> 524 bytes .../spaceninja.rsi}/inhand-left.png | Bin .../spaceninja.rsi}/inhand-right.png | Bin .../Suits/spaceninja.rsi/meta.json | 27 + .../syndicate.rsi/equipped-OUTERCLOTHING.png | Bin 0 -> 2731 bytes .../Suits/syndicate.rsi/icon.png | Bin 0 -> 928 bytes .../{ => Suits}/syndicate.rsi/inhand-left.png | Bin .../syndicate.rsi/inhand-right.png | Bin .../Suits/syndicate.rsi/meta.json | 27 + .../detvest.rsi/equipped-OUTERCLOTHING.png | Bin .../{ => Vests}/detvest.rsi/icon.png | Bin .../{ => Vests}/detvest.rsi/inhand-left.png | Bin .../{ => Vests}/detvest.rsi/inhand-right.png | Bin .../detvest.rsi}/meta.json | 0 .../hazard.rsi/equipped-OUTERCLOTHING.png | Bin .../{ => Vests}/hazard.rsi/icon.png | Bin .../{ => Vests}/hazard.rsi/inhand-left.png | Bin .../{ => Vests}/hazard.rsi/inhand-right.png | Bin .../hazard.rsi}/meta.json | 0 .../kevlar.rsi}/equipped-OUTERCLOTHING.png | Bin .../{kvest.rsi => Vests/kevlar.rsi}/icon.png | Bin .../kevlar.rsi}/inhand-left.png | Bin .../kevlar.rsi}/inhand-right.png | Bin .../{apron.rsi => Vests/kevlar.rsi}/meta.json | 0 .../equipped-OUTERCLOTHING.png | Bin .../{ => Vests}/mercwebvest.rsi/icon.png | Bin .../mercwebvest.rsi/inhand-left.png | Bin .../mercwebvest.rsi/inhand-right.png | Bin .../mercwebvest.rsi}/meta.json | 0 .../armor-equipped-OUTERCLOTHING.png | Bin .../oldarmor.rsi}/armor.png | Bin .../oldarmor.rsi}/inhand-left.png | Bin .../oldarmor.rsi}/inhand-right.png | Bin .../oldarmor.rsi}/meta.json | 0 .../vest.rsi/equipped-OUTERCLOTHING.png | Bin .../{ => Vests}/vest.rsi/icon.png | Bin .../{ => Vests}/vest.rsi/inhand-left.png | Bin .../{ => Vests}/vest.rsi/inhand-right.png | Bin .../vest.rsi}/meta.json | 0 .../webvest.rsi/equipped-OUTERCLOTHING.png | Bin .../{ => Vests}/webvest.rsi/icon.png | Bin .../{ => Vests}/webvest.rsi/inhand-left.png | Bin .../{ => Vests}/webvest.rsi/inhand-right.png | Bin .../webvest.rsi}/meta.json | 0 .../acolyte.rsi/equipped-OUTERCLOTHING.png | Bin 1670 -> 0 bytes .../OuterClothing/acolyte.rsi/icon.png | Bin 690 -> 0 bytes .../OuterClothing/acolyte.rsi/inhand-left.png | Bin 772 -> 0 bytes .../acolyte.rsi/inhand-right.png | Bin 795 -> 0 bytes .../equipped-OUTERCLOTHING.png | Bin 2099 -> 0 bytes .../OuterClothing/anomaly_suit.rsi/icon.png | Bin 838 -> 0 bytes .../anomaly_suit.rsi/inhand-left.png | Bin 723 -> 0 bytes .../anomaly_suit.rsi/inhand-right.png | Bin 744 -> 0 bytes .../ass_jacket.rsi/equipped-OUTERCLOTHING.png | Bin 939 -> 0 bytes .../OuterClothing/ass_jacket.rsi/icon.png | Bin 402 -> 0 bytes .../ass_jacket.rsi/inhand-left.png | Bin 348 -> 0 bytes .../ass_jacket.rsi/inhand-right.png | Bin 349 -> 0 bytes .../bedsheet.rsi/equipped-OUTERCLOTHING.png | Bin 961 -> 0 bytes .../OuterClothing/bedsheet.rsi/icon.png | Bin 499 -> 0 bytes .../bedsheet.rsi/inhand-left.png | Bin 532 -> 0 bytes .../bedsheet.rsi/inhand-right.png | Bin 532 -> 0 bytes .../OuterClothing/bedsheet.rsi/meta.json | 1 - .../bio.rsi/equipped-OUTERCLOTHING.png | Bin 2480 -> 0 bytes .../Clothing/OuterClothing/bio.rsi/icon.png | Bin 900 -> 0 bytes .../OuterClothing/bio.rsi/inhand-left.png | Bin 767 -> 0 bytes .../OuterClothing/bio.rsi/inhand-right.png | Bin 725 -> 0 bytes .../Clothing/OuterClothing/bio.rsi/meta.json | 74 - .../OuterClothing/bio_cmo.rsi/meta.json | 1 - .../OuterClothing/bio_general.rsi/meta.json | 1 - .../OuterClothing/bio_janitor.rsi/meta.json | 1 - .../OuterClothing/bio_scientist.rsi/meta.json | 1 - .../OuterClothing/bio_security.rsi/meta.json | 1 - .../OuterClothing/bio_virology.rsi/meta.json | 1 - .../OuterClothing/black_hoodie.rsi/meta.json | 1 - .../black_hoodie_open.rsi/meta.json | 1 - .../OuterClothing/bomber.rsi/meta.json | 1 - .../OuterClothing/bomber_open.rsi/meta.json | 1 - .../bombsuit.rsi/equipped-OUTERCLOTHING.png | Bin 2542 -> 0 bytes .../OuterClothing/bombsuit.rsi/icon.png | Bin 906 -> 0 bytes .../bombsuit.rsi/inhand-left.png | Bin 771 -> 0 bytes .../bombsuit.rsi/inhand-right.png | Bin 749 -> 0 bytes .../OuterClothing/bombsuit.rsi/meta.json | 1 - .../equipped-OUTERCLOTHING.png | Bin 2565 -> 0 bytes .../OuterClothing/bombsuit_white.rsi/icon.png | Bin 923 -> 0 bytes .../bombsuit_white.rsi/inhand-left.png | Bin 715 -> 0 bytes .../bombsuit_white.rsi/inhand-right.png | Bin 700 -> 0 bytes .../bombsuit_white.rsi/meta.json | 1 - .../OuterClothing/bombsuitsec.rsi/meta.json | 1 - .../OuterClothing/bulletproof.rsi/meta.json | 1 - .../caparmor.rsi/equipped-OUTERCLOTHING.png | Bin 2121 -> 0 bytes .../OuterClothing/caparmor.rsi/icon.png | Bin 880 -> 0 bytes .../caparmor.rsi/inhand-left.png | Bin 656 -> 0 bytes .../caparmor.rsi/inhand-right.png | Bin 713 -> 0 bytes .../OuterClothing/caparmor.rsi/meta.json | 1 - .../OuterClothing/cardborg.rsi/meta.json | 1 - .../equipped-OUTERCLOTHING.png | Bin 1002 -> 0 bytes .../OuterClothing/cargo_jacket.rsi/icon.png | Bin 434 -> 0 bytes .../cargo_jacket.rsi/inhand-left.png | Bin 448 -> 0 bytes .../cargo_jacket.rsi/inhand-right.png | Bin 447 -> 0 bytes .../OuterClothing/cargo_jacket.rsi/meta.json | 1 - .../chaplain_hoodie.rsi/meta.json | 1 - .../Clothing/OuterClothing/chef.rsi/meta.json | 1 - .../OuterClothing/chickensuit.rsi/meta.json | 1 - .../equipped-OUTERCLOTHING.png | Bin 1193 -> 0 bytes .../OuterClothing/church_coat.rsi/icon.png | Bin 458 -> 0 bytes .../church_coat.rsi/inhand-left.png | Bin 553 -> 0 bytes .../church_coat.rsi/inhand-right.png | Bin 545 -> 0 bytes .../OuterClothing/church_coat.rsi/meta.json | 1 - .../OuterClothing/classicponcho.rsi/meta.json | 1 - .../OuterClothing/cult_armour.rsi/meta.json | 1 - .../OuterClothing/cultrobes.rsi/meta.json | 1 - .../custodian.rsi/equipped-OUTERCLOTHING.png | Bin 1674 -> 0 bytes .../OuterClothing/custodian.rsi/icon.png | Bin 727 -> 0 bytes .../custodian.rsi/inhand-left.png | Bin 755 -> 0 bytes .../custodian.rsi/inhand-right.png | Bin 785 -> 0 bytes .../OuterClothing/custodian.rsi/meta.json | 1 - .../OuterClothing/deathsquad.rsi/meta.json | 1 - .../OuterClothing/detective.rsi/meta.json | 1 - .../OuterClothing/detvest.rsi/meta.json | 1 - .../emergency_suit.rsi/meta.json | 1 - .../firesuit.rsi/equipped-OUTERCLOTHING.png | Bin 2542 -> 0 bytes .../OuterClothing/firesuit.rsi/icon.png | Bin 947 -> 0 bytes .../OuterClothing/firesuit.rsi/meta.json | 1 - .../OuterClothing/gentlecoat.rsi/meta.json | 1 - .../OuterClothing/grey_hoodie.rsi/meta.json | 1 - .../grey_hoodie_open.rsi/meta.json | 1 - .../equipped-OUTERCLOTHING.png | Bin 1978 -> 0 bytes .../OuterClothing/hardsuit_atmos.rsi/icon.png | Bin 736 -> 0 bytes .../hardsuit_atmos.rsi/meta.json | 1 - .../OuterClothing/hardsuit_ce.rsi/icon.png | Bin 862 -> 0 bytes .../OuterClothing/hardsuit_ce.rsi/meta.json | 1 - .../hardsuit_engineering.rsi/icon.png | Bin 872 -> 0 bytes .../hardsuit_engineering.rsi/meta.json | 1 - .../equipped-OUTERCLOTHING.png | Bin 2382 -> 0 bytes .../hardsuit_hazardhardsuit.rsi/icon.png | Bin 913 -> 0 bytes .../inhand-left.png | Bin 791 -> 0 bytes .../inhand-right.png | Bin 800 -> 0 bytes .../hardsuit_hazardhardsuit.rsi/meta.json | 1 - .../equipped-OUTERCLOTHING.png | Bin 1959 -> 0 bytes .../hardsuit_medical.rsi/icon.png | Bin 743 -> 0 bytes .../hardsuit_medical.rsi/inhand-left.png | Bin 664 -> 0 bytes .../hardsuit_medical.rsi/inhand-right.png | Bin 704 -> 0 bytes .../hardsuit_medical.rsi/meta.json | 1 - .../hardsuit_mining.rsi/icon.png | Bin 814 -> 0 bytes .../hardsuit_mining.rsi/meta.json | 1 - .../equipped-OUTERCLOTHING.png | Bin 2056 -> 0 bytes .../OuterClothing/hardsuit_sectg.rsi/icon.png | Bin 788 -> 0 bytes .../hardsuit_sectg.rsi/inhand-left.png | Bin 723 -> 0 bytes .../hardsuit_sectg.rsi/inhand-right.png | Bin 739 -> 0 bytes .../hardsuit_sectg.rsi/meta.json | 1 - .../hardsuit_syndie.rsi/icon.png | Bin 841 -> 0 bytes .../hardsuit_syndie.rsi/meta.json | 1 - .../OuterClothing/hardsuit_wiz.rsi/icon.png | Bin 967 -> 0 bytes .../OuterClothing/hardsuit_wiz.rsi/meta.json | 1 - .../OuterClothing/hazard.rsi/meta.json | 1 - .../OuterClothing/heavy.rsi/meta.json | 1 - .../equipped-OUTERCLOTHING.png | Bin 784 -> 0 bytes .../OuterClothing/hm_armorvest.rsi/icon.png | Bin 306 -> 0 bytes .../hm_armorvest.rsi/inhand-left.png | Bin 327 -> 0 bytes .../hm_armorvest.rsi/inhand-right.png | Bin 357 -> 0 bytes .../OuterClothing/hm_armorvest.rsi/meta.json | 1 - .../hos.rsi/equipped-OUTERCLOTHING.png | Bin 1376 -> 0 bytes .../Clothing/OuterClothing/hos.rsi/icon.png | Bin 590 -> 0 bytes .../OuterClothing/hos.rsi/inhand-left.png | Bin 579 -> 0 bytes .../OuterClothing/hos.rsi/inhand-right.png | Bin 579 -> 0 bytes .../Clothing/OuterClothing/hos.rsi/meta.json | 1 - .../hos_trenchcoat.rsi/meta.json | 1 - .../OuterClothing/ihvoidsuit.rsi/meta.json | 1 - .../OuterClothing/insp_coat.rsi/meta.json | 1 - .../OuterClothing/jensencoat.rsi/meta.json | 1 - .../OuterClothing/judge.rsi/meta.json | 1 - .../OuterClothing/kvest.rsi/meta.json | 1 - .../labcoat.rsi/equipped-OUTERCLOTHING.png | Bin 987 -> 0 bytes .../OuterClothing/labcoat.rsi/icon.png | Bin 451 -> 0 bytes .../OuterClothing/labcoat.rsi/meta.json | 1 - .../equipped-OUTERCLOTHING.png | Bin 1175 -> 0 bytes .../OuterClothing/labcoat_chem.rsi/icon.png | Bin 513 -> 0 bytes .../OuterClothing/labcoat_chem.rsi/meta.json | 1 - .../equipped-OUTERCLOTHING.png | Bin 1061 -> 0 bytes .../labcoat_chem_open.rsi/icon.png | Bin 427 -> 0 bytes .../labcoat_chem_open.rsi/meta.json | 1 - .../equipped-OUTERCLOTHING.png | Bin 1023 -> 0 bytes .../OuterClothing/labcoat_cmo.rsi/icon.png | Bin 480 -> 0 bytes .../labcoat_cmo.rsi/inhand-left.png | Bin 469 -> 0 bytes .../labcoat_cmo.rsi/inhand-right.png | Bin 465 -> 0 bytes .../OuterClothing/labcoat_cmo.rsi/meta.json | 1 - .../equipped-OUTERCLOTHING.png | Bin 954 -> 0 bytes .../labcoat_cmo_open.rsi/icon.png | Bin 399 -> 0 bytes .../labcoat_cmo_open.rsi/inhand-left.png | Bin 451 -> 0 bytes .../labcoat_cmo_open.rsi/inhand-right.png | Bin 444 -> 0 bytes .../labcoat_cmo_open.rsi/meta.json | 1 - .../equipped-OUTERCLOTHING.png | Bin 848 -> 0 bytes .../labcoat_medspec.rsi/icon.png | Bin 391 -> 0 bytes .../labcoat_medspec.rsi/inhand-left.png | Bin 341 -> 0 bytes .../labcoat_medspec.rsi/inhand-right.png | Bin 347 -> 0 bytes .../labcoat_medspec.rsi/meta.json | 1 - .../equipped-OUTERCLOTHING.png | Bin 804 -> 0 bytes .../labcoat_medspec_open.rsi/icon.png | Bin 356 -> 0 bytes .../labcoat_medspec_open.rsi/inhand-left.png | Bin 325 -> 0 bytes .../labcoat_medspec_open.rsi/inhand-right.png | Bin 325 -> 0 bytes .../labcoat_medspec_open.rsi/meta.json | 1 - .../equipped-OUTERCLOTHING.png | Bin 913 -> 0 bytes .../OuterClothing/labcoat_open.rsi/icon.png | Bin 385 -> 0 bytes .../OuterClothing/labcoat_open.rsi/meta.json | 1 - .../equipped-OUTERCLOTHING.png | Bin 804 -> 0 bytes .../OuterClothing/leather_jacket.rsi/icon.png | Bin 345 -> 0 bytes .../leather_jacket.rsi/inhand-left.png | Bin 382 -> 0 bytes .../leather_jacket.rsi/inhand-right.png | Bin 380 -> 0 bytes .../leather_jacket.rsi/meta.json | 1 - .../OuterClothing/magusblue.rsi/meta.json | 1 - .../OuterClothing/magusred.rsi/meta.json | 1 - .../OuterClothing/mercwebvest.rsi/meta.json | 1 - .../OuterClothing/monkeysuit.rsi/meta.json | 1 - .../OuterClothing/pirate.rsi/meta.json | 1 - .../OuterClothing/poncho.rsi/meta.json | 1 - .../qm_coat.rsi/equipped-OUTERCLOTHING.png | Bin 1298 -> 0 bytes .../OuterClothing/qm_coat.rsi/icon.png | Bin 484 -> 0 bytes .../OuterClothing/qm_coat.rsi/inhand-left.png | Bin 538 -> 0 bytes .../qm_coat.rsi/inhand-right.png | Bin 548 -> 0 bytes .../OuterClothing/qm_coat.rsi/meta.json | 1 - .../radsuit.rsi/equipped-OUTERCLOTHING.png | Bin 2298 -> 0 bytes .../OuterClothing/radsuit.rsi/icon.png | Bin 776 -> 0 bytes .../OuterClothing/radsuit.rsi/inhand-left.png | Bin 686 -> 0 bytes .../radsuit.rsi/inhand-right.png | Bin 649 -> 0 bytes .../OuterClothing/radsuit.rsi/meta.json | 1 - .../reactive.rsi/equipped-OUTERCLOTHING.png | Bin 2560 -> 0 bytes .../OuterClothing/reactive.rsi/icon.png | Bin 477 -> 0 bytes .../reactive.rsi/inhand-left.png | Bin 396 -> 0 bytes .../reactive.rsi/inhand-right.png | Bin 385 -> 0 bytes .../OuterClothing/reactive.rsi/meta.json | 1 - .../equipped-OUTERCLOTHING.png | Bin 1033 -> 0 bytes .../OuterClothing/reactiveoff.rsi/icon.png | Bin 423 -> 0 bytes .../reactiveoff.rsi/inhand-left.png | Bin 391 -> 0 bytes .../reactiveoff.rsi/inhand-right.png | Bin 379 -> 0 bytes .../OuterClothing/reactiveoff.rsi/meta.json | 1 - .../OuterClothing/redwizard.rsi/meta.json | 1 - .../Clothing/OuterClothing/riot.rsi/meta.json | 1 - .../s_ninja.rsi/equipped-OUTERCLOTHING.png | Bin 1499 -> 0 bytes .../OuterClothing/s_ninja.rsi/icon.png | Bin 623 -> 0 bytes .../OuterClothing/s_ninja.rsi/meta.json | 1 - .../OuterClothing/santa.rsi/meta.json | 1 - .../Clothing/OuterClothing/scaf.rsi/meta.json | 1 - .../OuterClothing/skubbody.rsi/meta.json | 38 - .../straight_jacket.rsi/meta.json | 1 - .../surgeon.rsi/equipped-OUTERCLOTHING.png | Bin 970 -> 0 bytes .../OuterClothing/surgeon.rsi/icon.png | Bin 389 -> 0 bytes .../OuterClothing/surgeon.rsi/inhand-left.png | Bin 358 -> 0 bytes .../surgeon.rsi/inhand-right.png | Bin 375 -> 0 bytes .../OuterClothing/surgeon.rsi/meta.json | 1 - .../swat.rsi/equipped-OUTERCLOTHING.png | Bin 1419 -> 0 bytes .../Clothing/OuterClothing/swat.rsi/icon.png | Bin 567 -> 0 bytes .../OuterClothing/swat.rsi/inhand-left.png | Bin 469 -> 0 bytes .../OuterClothing/swat.rsi/inhand-right.png | Bin 472 -> 0 bytes .../Clothing/OuterClothing/swat.rsi/meta.json | 1 - .../syndicate.rsi/equipped-OUTERCLOTHING.png | Bin 2792 -> 0 bytes .../OuterClothing/syndicate.rsi/icon.png | Bin 965 -> 0 bytes .../OuterClothing/syndicate.rsi/meta.json | 1 - .../OuterClothing/tdgreen.rsi/meta.json | 1 - .../OuterClothing/tdred.rsi/meta.json | 1 - .../Clothing/OuterClothing/vest.rsi/meta.json | 1 - .../OuterClothing/violetwizard.rsi/meta.json | 1 - .../void.rsi/equipped-OUTERCLOTHING.png | Bin 2719 -> 0 bytes .../Clothing/OuterClothing/void.rsi/icon.png | Bin 932 -> 0 bytes .../OuterClothing/void.rsi/inhand-left.png | Bin 551 -> 0 bytes .../OuterClothing/void.rsi/inhand-right.png | Bin 609 -> 0 bytes .../Clothing/OuterClothing/void.rsi/meta.json | 1 - .../OuterClothing/webvest.rsi/meta.json | 1 - .../OuterClothing/wizard.rsi/meta.json | 1 - .../OuterClothing/xenos.rsi/meta.json | 1 - .../jackboots.rsi/equipped-FEET.png | Bin .../Shoes/{ => Boots}/jackboots.rsi/icon.png | Bin .../{ => Boots}/jackboots.rsi/inhand-left.png | Bin .../jackboots.rsi/inhand-right.png | Bin .../Shoes/Boots/jackboots.rsi/meta.json | 27 + .../magboots.rsi/equipped-FEET.png | Bin .../{ => Boots}/magboots.rsi/icon-on.png | Bin .../Shoes/{ => Boots}/magboots.rsi/icon.png | Bin .../{ => Boots}/magboots.rsi/inhand-left.png | Bin .../{ => Boots}/magboots.rsi/inhand-right.png | Bin .../Shoes/Boots/magboots.rsi/meta.json | 43 + .../magboots.rsi/on-equipped-FEET.png | Bin .../magboots.rsi/on-inhand-left.png | Bin .../magboots.rsi/on-inhand-right.png | Bin .../workboots.rsi/equipped-FEET.png | Bin .../Shoes/{ => Boots}/workboots.rsi/icon.png | Bin .../{ => Boots}/workboots.rsi/inhand-left.png | Bin .../workboots.rsi/inhand-right.png | Bin .../Shoes/Boots/workboots.rsi/meta.json | 27 + .../{ => Color}/black.rsi/equipped-FEET.png | Bin .../Shoes/{ => Color}/black.rsi/icon.png | Bin .../{ => Color}/black.rsi/inhand-left.png | Bin .../{ => Color}/black.rsi/inhand-right.png | Bin .../Clothing/Shoes/Color/black.rsi/meta.json | 27 + .../{ => Color}/blue.rsi/equipped-FEET.png | Bin .../Shoes/{ => Color}/blue.rsi/icon.png | Bin .../{ => Color}/blue.rsi/inhand-left.png | Bin .../{ => Color}/blue.rsi/inhand-right.png | Bin .../Clothing/Shoes/Color/blue.rsi/meta.json | 27 + .../{ => Color}/brown.rsi/equipped-FEET.png | Bin .../Shoes/{ => Color}/brown.rsi/icon.png | Bin .../{ => Color}/brown.rsi/inhand-left.png | Bin .../{ => Color}/brown.rsi/inhand-right.png | Bin .../Clothing/Shoes/Color/brown.rsi/meta.json | 27 + .../{ => Color}/green.rsi/equipped-FEET.png | Bin .../Shoes/{ => Color}/green.rsi/icon.png | Bin .../{ => Color}/green.rsi/inhand-left.png | Bin .../{ => Color}/green.rsi/inhand-right.png | Bin .../Clothing/Shoes/Color/green.rsi/meta.json | 27 + .../{ => Color}/orange.rsi/equipped-FEET.png | Bin .../Shoes/{ => Color}/orange.rsi/icon.png | Bin .../{ => Color}/orange.rsi/inhand-left.png | Bin .../{ => Color}/orange.rsi/inhand-right.png | Bin .../Clothing/Shoes/Color/orange.rsi/meta.json | 27 + .../{ => Color}/purple.rsi/equipped-FEET.png | Bin .../Shoes/{ => Color}/purple.rsi/icon.png | Bin .../{ => Color}/purple.rsi/inhand-left.png | Bin .../{ => Color}/purple.rsi/inhand-right.png | Bin .../Clothing/Shoes/Color/purple.rsi/meta.json | 27 + .../{ => Color}/red.rsi/equipped-FEET.png | Bin .../Shoes/{ => Color}/red.rsi/icon.png | Bin .../Shoes/{ => Color}/red.rsi/inhand-left.png | Bin .../{ => Color}/red.rsi/inhand-right.png | Bin .../Clothing/Shoes/Color/red.rsi/meta.json | 27 + .../white.rsi}/equipped-FEET.png | Bin .../{mime.rsi => Color/white.rsi}/icon.png | Bin .../white.rsi}/inhand-left.png | Bin .../white.rsi}/inhand-right.png | Bin .../Clothing/Shoes/Color/white.rsi/meta.json | 27 + .../{ => Color}/yellow.rsi/equipped-FEET.png | Bin .../Shoes/{ => Color}/yellow.rsi/icon.png | Bin .../{ => Color}/yellow.rsi/inhand-left.png | Bin .../{ => Color}/yellow.rsi/inhand-right.png | Bin .../Clothing/Shoes/Color/yellow.rsi/meta.json | 27 + .../{ => Misc}/flippers.rsi/equipped-FEET.png | Bin .../Shoes/{ => Misc}/flippers.rsi/icon.png | Bin .../{ => Misc}/flippers.rsi/inhand-left.png | Bin .../{ => Misc}/flippers.rsi/inhand-right.png | Bin .../Shoes/Misc/flippers.rsi/meta.json | 27 + .../{ => Misc}/leather.rsi/equipped-FEET.png | Bin .../Shoes/{ => Misc}/leather.rsi/icon.png | Bin .../{ => Misc}/leather.rsi/inhand-left.png | Bin .../{ => Misc}/leather.rsi/inhand-right.png | Bin .../Clothing/Shoes/Misc/leather.rsi/meta.json | 27 + .../{ => Misc}/slippers.rsi/equipped-FEET.png | Bin .../Shoes/{ => Misc}/slippers.rsi/icon.png | Bin .../{ => Misc}/slippers.rsi/inhand-left.png | Bin .../{ => Misc}/slippers.rsi/inhand-right.png | Bin .../Shoes/Misc/slippers.rsi/meta.json | 27 + .../{ => Misc}/tourist.rsi/equipped-FEET.png | Bin .../Shoes/{ => Misc}/tourist.rsi/icon.png | Bin .../{ => Misc}/tourist.rsi/inhand-left.png | Bin .../{ => Misc}/tourist.rsi/inhand-right.png | Bin .../Clothing/Shoes/Misc/tourist.rsi/meta.json | 27 + .../{ => Specific}/chef.rsi/equipped-FEET.png | Bin .../Shoes/{ => Specific}/chef.rsi/icon.png | Bin .../{ => Specific}/chef.rsi/inhand-left.png | Bin .../{ => Specific}/chef.rsi/inhand-right.png | Bin .../Shoes/Specific/chef.rsi/meta.json | 27 + .../clown.rsi/equipped-FEET.png | Bin .../Shoes/{ => Specific}/clown.rsi/icon.png | Bin .../{ => Specific}/clown.rsi/inhand-left.png | Bin .../{ => Specific}/clown.rsi/inhand-right.png | Bin .../Shoes/Specific/clown.rsi/meta.json | 27 + .../{ => Specific}/cult.rsi/equipped-FEET.png | Bin .../Shoes/{ => Specific}/cult.rsi/icon.png | Bin .../{ => Specific}/cult.rsi/inhand-left.png | Bin .../{ => Specific}/cult.rsi/inhand-right.png | Bin .../Shoes/Specific/cult.rsi/meta.json | 27 + .../galoshes.rsi/equipped-FEET.png | Bin .../{ => Specific}/galoshes.rsi/icon.png | Bin .../galoshes.rsi/inhand-left.png | Bin .../galoshes.rsi/inhand-right.png | Bin .../Shoes/Specific/galoshes.rsi/meta.json | 27 + .../spaceninja.rsi}/equipped-FEET.png | Bin .../spaceninja.rsi}/icon.png | Bin .../spaceninja.rsi}/inhand-left.png | Bin .../spaceninja.rsi}/inhand-right.png | Bin .../Shoes/Specific/spaceninja.rsi/meta.json | 27 + .../{ => Specific}/swat.rsi/equipped-FEET.png | Bin .../Shoes/{ => Specific}/swat.rsi/icon.png | Bin .../{ => Specific}/swat.rsi/inhand-left.png | Bin .../{ => Specific}/swat.rsi/inhand-right.png | Bin .../Shoes/Specific/swat.rsi/meta.json | 27 + .../wizard.rsi/equipped-FEET.png | Bin .../Shoes/{ => Specific}/wizard.rsi/icon.png | Bin .../{ => Specific}/wizard.rsi/inhand-left.png | Bin .../wizard.rsi/inhand-right.png | Bin .../Shoes/Specific/wizard.rsi/meta.json | 27 + .../Clothing/Shoes/black.rsi/meta.json | 1 - .../Clothing/Shoes/blue.rsi/meta.json | 1 - .../Shoes/boots.rsi/equipped-FEET.png | Bin 561 -> 0 bytes .../Clothing/Shoes/boots.rsi/icon.png | Bin 300 -> 0 bytes .../Clothing/Shoes/boots.rsi/inhand-left.png | Bin 220 -> 0 bytes .../Clothing/Shoes/boots.rsi/inhand-right.png | Bin 227 -> 0 bytes .../Clothing/Shoes/boots.rsi/meta.json | 1 - .../Clothing/Shoes/brown.rsi/meta.json | 1 - .../Clothing/Shoes/chef.rsi/meta.json | 1 - .../Clothing/Shoes/clown.rsi/meta.json | 1 - .../Shoes/cowboy.rsi/equipped-FEET.png | Bin 511 -> 0 bytes .../Clothing/Shoes/cowboy.rsi/icon.png | Bin 268 -> 0 bytes .../Clothing/Shoes/cowboy.rsi/inhand-left.png | Bin 438 -> 0 bytes .../Shoes/cowboy.rsi/inhand-right.png | Bin 422 -> 0 bytes .../Clothing/Shoes/cowboy.rsi/meta.json | 1 - .../Clothing/Shoes/cult.rsi/meta.json | 1 - .../Shoes/detective.rsi/equipped-FEET.png | Bin 594 -> 0 bytes .../Clothing/Shoes/detective.rsi/icon.png | Bin 321 -> 0 bytes .../Shoes/detective.rsi/inhand-left.png | Bin 234 -> 0 bytes .../Shoes/detective.rsi/inhand-right.png | Bin 240 -> 0 bytes .../Clothing/Shoes/detective.rsi/meta.json | 1 - .../Clothing/Shoes/flippers.rsi/meta.json | 1 - .../Clothing/Shoes/galoshes.rsi/meta.json | 1 - .../Clothing/Shoes/green.rsi/meta.json | 1 - .../Clothing/Shoes/jackboots.rsi/meta.json | 60 - .../Clothing/Shoes/leather.rsi/meta.json | 1 - .../Clothing/Shoes/magboots.rsi/meta.json | 109 -- .../Clothing/Shoes/mime.rsi/meta.json | 1 - .../Clothing/Shoes/orange.rsi/meta.json | 1 - .../Clothing/Shoes/purple.rsi/meta.json | 1 - .../Textures/Clothing/Shoes/red.rsi/meta.json | 1 - .../Clothing/Shoes/s_ninja.rsi/meta.json | 1 - .../Clothing/Shoes/slippers.rsi/meta.json | 1 - .../Shoes/springjacks.rsi/equipped-FEET.png | Bin 776 -> 0 bytes .../Clothing/Shoes/springjacks.rsi/icon.png | Bin 347 -> 0 bytes .../Shoes/springjacks.rsi/inhand-left.png | Bin 644 -> 0 bytes .../Shoes/springjacks.rsi/inhand-right.png | Bin 656 -> 0 bytes .../Clothing/Shoes/springjacks.rsi/meta.json | 1 - .../Clothing/Shoes/swat.rsi/meta.json | 1 - .../Clothing/Shoes/tourist.rsi/meta.json | 1 - .../Shoes/white.rsi/equipped-FEET.png | Bin 520 -> 0 bytes .../Clothing/Shoes/white.rsi/icon.png | Bin 289 -> 0 bytes .../Clothing/Shoes/white.rsi/inhand-left.png | Bin 221 -> 0 bytes .../Clothing/Shoes/white.rsi/inhand-right.png | Bin 227 -> 0 bytes .../Clothing/Shoes/white.rsi/meta.json | 1 - .../Clothing/Shoes/wizard.rsi/meta.json | 1 - .../Clothing/Shoes/workboots.rsi/meta.json | 1 - .../Clothing/Shoes/yellow.rsi/meta.json | 1 - .../Socks/bee.rsi}/equipped-FEET.png | Bin .../Socks/bee.rsi}/icon.png | Bin .../Socks/bee.rsi}/meta.json | 17 +- .../Socks/coder.rsi}/equipped-FEET.png | Bin .../Socks/coder.rsi}/icon.png | Bin .../Socks/coder.rsi}/meta.json | 17 +- .../black.rsi/equipped-INNERCLOTHING.png} | Bin .../Color/black.rsi/icon.png} | Bin .../Color/black.rsi/inhand-left.png} | Bin .../Color/black.rsi/inhand-right.png} | Bin .../Jumpskirt/Color/black.rsi/meta.json | 27 + .../blue.rsi/equipped-INNERCLOTHING.png} | Bin .../Color/blue.rsi/icon.png} | Bin .../Color/blue.rsi/inhand-left.png} | Bin .../Color/blue.rsi/inhand-right.png} | Bin .../Jumpskirt/Color/blue.rsi/meta.json | 27 + .../brown.rsi/equipped-INNERCLOTHING.png} | Bin .../Color/brown.rsi/icon.png} | Bin .../Color/brown.rsi/inhand-left.png} | Bin .../Color/brown.rsi/inhand-right.png} | Bin .../Jumpskirt/Color/brown.rsi/meta.json | 27 + .../darkblue.rsi/equipped-INNERCLOTHING.png} | Bin .../Color/darkblue.rsi/icon.png} | Bin .../Color/darkblue.rsi/inhand-left.png} | Bin .../Color/darkblue.rsi/inhand-right.png} | Bin .../Jumpskirt/Color/darkblue.rsi/meta.json | 27 + .../darkgreen.rsi/equipped-INNERCLOTHING.png} | Bin .../Color/darkgreen.rsi/icon.png} | Bin .../Color/darkgreen.rsi/inhand-left.png} | Bin .../Color/darkgreen.rsi/inhand-right.png} | Bin .../Jumpskirt/Color/darkgreen.rsi/meta.json | 27 + .../green.rsi/equipped-INNERCLOTHING.png} | Bin .../Color/green.rsi/icon.png} | Bin .../Jumpskirt/Color/green.rsi/inhand-left.png | Bin 0 -> 284 bytes .../Color/green.rsi/inhand-right.png | Bin 0 -> 321 bytes .../Jumpskirt/Color/green.rsi/meta.json | 27 + .../grey.rsi/equipped-INNERCLOTHING.png} | Bin .../Color/grey.rsi/icon.png} | Bin .../Color/grey.rsi/inhand-left.png} | Bin .../Color/grey.rsi/inhand-right.png} | Bin .../Jumpskirt/Color/grey.rsi/meta.json | 27 + .../equipped-INNERCLOTHING.png} | Bin .../Color/lightbrown.rsi/icon.png} | Bin .../Color/lightbrown.rsi/inhand-left.png | Bin 0 -> 287 bytes .../Color/lightbrown.rsi/inhand-right.png | Bin 0 -> 318 bytes .../Jumpskirt/Color/lightbrown.rsi/meta.json | 27 + .../equipped-INNERCLOTHING.png} | Bin .../Color/lightpurple.rsi/icon.png} | Bin .../Color/lightpurple.rsi/inhand-left.png} | Bin .../Color/lightpurple.rsi/inhand-right.png} | Bin .../Jumpskirt/Color/lightpurple.rsi/meta.json | 27 + .../maroon.rsi/equipped-INNERCLOTHING.png} | Bin .../Color/maroon.rsi/icon.png} | Bin .../Color/maroon.rsi/inhand-left.png} | Bin .../Color/maroon.rsi/inhand-right.png} | Bin .../Jumpskirt/Color/maroon.rsi/meta.json | 27 + .../orange.rsi/equipped-INNERCLOTHING.png} | Bin .../Color/orange.rsi/icon.png} | Bin .../Color/orange.rsi/inhand-left.png} | Bin .../Color/orange.rsi/inhand-right.png} | Bin .../Jumpskirt/Color/orange.rsi/meta.json | 27 + .../pink.rsi/equipped-INNERCLOTHING.png} | Bin .../Color/pink.rsi/icon.png} | Bin .../Color/pink.rsi/inhand-left.png} | Bin .../Color/pink.rsi/inhand-right.png} | Bin .../Jumpskirt/Color/pink.rsi/meta.json | 27 + .../Color/red.rsi/equipped-INNERCLOTHING.png} | Bin .../Color/red.rsi/icon.png} | Bin .../Color/red.rsi/inhand-left.png} | Bin .../Color/red.rsi/inhand-right.png} | Bin .../Jumpskirt/Color/red.rsi/meta.json | 27 + .../teal.rsi/equipped-INNERCLOTHING.png} | Bin .../Color/teal.rsi/icon.png} | Bin .../Color/teal.rsi/inhand-left.png} | Bin .../Color/teal.rsi/inhand-right.png} | Bin .../Jumpskirt/Color/teal.rsi/meta.json | 27 + .../white.rsi/equipped-INNERCLOTHING.png} | Bin .../Color/white.rsi/icon.png} | Bin .../Color/white.rsi/inhand-left.png} | Bin .../Color/white.rsi/inhand-right.png} | Bin .../Jumpskirt/Color/white.rsi/meta.json | 27 + .../yellow.rsi/equipped-INNERCLOTHING.png} | Bin .../Color/yellow.rsi/icon.png} | Bin .../Color/yellow.rsi/inhand-left.png} | Bin .../Color/yellow.rsi/inhand-right.png} | Bin .../Jumpskirt/Color/yellow.rsi/meta.json | 27 + .../bartender.rsi/equipped-INNERCLOTHING.png} | Bin .../bartender.rsi/icon.png} | Bin .../bartender.rsi/inhand-left.png | Bin .../bartender.rsi/inhand-right.png | Bin .../Jumpskirt/bartender.rsi/meta.json | 27 + .../cargotech.rsi/equipped-INNERCLOTHING.png} | Bin .../cargotech.rsi/icon.png} | Bin .../cargotech.rsi}/inhand-left.png | Bin .../cargotech.rsi}/inhand-right.png | Bin .../Jumpskirt/cargotech.rsi/meta.json | 27 + .../ce.rsi/equipped-INNERCLOTHING.png} | Bin .../ce.rsi/icon.png} | Bin .../ce.rsi}/inhand-left.png | Bin .../ce.rsi}/inhand-right.png | Bin .../Uniforms/Jumpskirt/ce.rsi/meta.json | 27 + .../chaplain.rsi/equipped-INNERCLOTHING.png} | Bin .../chaplain.rsi/icon.png} | Bin .../chaplain.rsi}/inhand-left.png | Bin .../chaplain.rsi}/inhand-right.png | Bin .../Uniforms/Jumpskirt/chaplain.rsi/meta.json | 27 + .../chef.rsi/equipped-INNERCLOTHING.png} | Bin .../chef.rsi/icon.png} | Bin .../chef.rsi}/inhand-left.png | Bin .../chef.rsi}/inhand-right.png | Bin .../Uniforms/Jumpskirt/chef.rsi/meta.json | 27 + .../chemistry.rsi/equipped-INNERCLOTHING.png} | Bin .../chemistry.rsi/icon.png} | Bin .../chemistry.rsi}/inhand-left.png | Bin .../chemistry.rsi}/inhand-right.png | Bin .../Jumpskirt/chemistry.rsi/meta.json | 27 + .../cmo.rsi/equipped-INNERCLOTHING.png} | Bin .../cmo.rsi/icon.png} | Bin .../cmo.rsi}/inhand-left.png | Bin .../cmo.rsi}/inhand-right.png | Bin .../Uniforms/Jumpskirt/cmo.rsi/meta.json | 27 + .../detective.rsi/equipped-INNERCLOTHING.png} | Bin .../detective.rsi/icon.png} | Bin .../detective.rsi/inhand-left.png} | Bin .../detective.rsi/inhand-right.png} | Bin .../Jumpskirt/detective.rsi/meta.json | 27 + .../equipped-INNERCLOTHING.png} | Bin .../detective_grey.rsi/icon.png} | Bin .../detective_grey.rsi/inhand-left.png | Bin 0 -> 481 bytes .../detective_grey.rsi/inhand-right.png | Bin 0 -> 500 bytes .../Jumpskirt/detective_grey.rsi/meta.json | 27 + .../equipped-INNERCLOTHING.png} | Bin .../engineering.rsi/icon.png} | Bin .../engineering.rsi}/inhand-left.png | Bin .../engineering.rsi}/inhand-right.png | Bin .../Jumpskirt/engineering.rsi/meta.json | 27 + .../hop.rsi/equipped-INNERCLOTHING.png} | Bin .../hop.rsi/icon.png} | Bin .../hop.rsi}/inhand-left.png | Bin .../hop.rsi}/inhand-right.png | Bin .../Uniforms/Jumpskirt/hop.rsi/meta.json | 27 + .../hos.rsi/equipped-INNERCLOTHING.png} | Bin .../hos.rsi/icon.png} | Bin .../hos.rsi/inhand-left.png} | Bin .../hos.rsi/inhand-right.png} | Bin .../Uniforms/Jumpskirt/hos.rsi/meta.json | 27 + .../hos_alt.rsi/equipped-INNERCLOTHING.png} | Bin .../hos_alt.rsi/icon.png} | Bin .../hos_alt.rsi/inhand-left.png} | Bin .../hos_alt.rsi/inhand-right.png} | Bin .../Uniforms/Jumpskirt/hos_alt.rsi/meta.json | 27 + .../equipped-INNERCLOTHING.png} | Bin .../hos_parade.rsi/icon.png} | Bin .../Jumpskirt/hos_parade.rsi/inhand-left.png | Bin 0 -> 516 bytes .../Jumpskirt/hos_parade.rsi/inhand-right.png | Bin 0 -> 502 bytes .../Jumpskirt/hos_parade.rsi/meta.json | 27 + .../hydro.rsi/equipped-INNERCLOTHING.png} | Bin .../hydro.rsi/icon.png} | Bin .../hydro.rsi}/inhand-left.png | Bin .../hydro.rsi}/inhand-right.png | Bin .../Uniforms/Jumpskirt/hydro.rsi/meta.json | 27 + .../janitor.rsi/equipped-INNERCLOTHING.png} | Bin .../janitor.rsi/icon.png} | Bin .../janitor.rsi}/inhand-left.png | Bin .../janitor.rsi}/inhand-right.png | Bin .../Uniforms/Jumpskirt/janitor.rsi/meta.json | 27 + .../medical.rsi/equipped-INNERCLOTHING.png} | Bin .../medical.rsi/icon.png} | Bin .../medical.rsi}/inhand-left.png | Bin .../medical.rsi}/inhand-right.png | Bin .../Uniforms/Jumpskirt/medical.rsi/meta.json | 27 + .../mime.rsi/equipped-INNERCLOTHING.png} | Bin .../mime.rsi/icon.png} | Bin .../mime.rsi}/inhand-left.png | Bin .../mime.rsi}/inhand-right.png | Bin .../Uniforms/Jumpskirt/mime.rsi/meta.json | 27 + .../paramedic.rsi/equipped-INNERCLOTHING.png} | Bin .../paramedic.rsi/icon.png} | Bin .../paramedic.rsi}/inhand-left.png | Bin .../paramedic.rsi}/inhand-right.png | Bin .../Jumpskirt/paramedic.rsi/meta.json | 27 + .../prisoner.rsi/equipped-INNERCLOTHING.png} | Bin .../prisoner.rsi/icon.png} | Bin .../prisoner.rsi}/inhand-left.png | Bin .../prisoner.rsi}/inhand-right.png | Bin .../Uniforms/Jumpskirt/prisoner.rsi/meta.json | 27 + .../qm.rsi/equipped-INNERCLOTHING.png} | Bin .../qm.rsi/icon.png} | Bin .../qm.rsi}/inhand-left.png | Bin .../qm.rsi}/inhand-right.png | Bin .../Uniforms/Jumpskirt/qm.rsi/meta.json | 27 + .../rnd.rsi/equipped-INNERCLOTHING.png} | Bin .../rnd.rsi/icon.png} | Bin .../Jumpskirt/rnd.rsi/inhand-left.png | Bin 0 -> 692 bytes .../Jumpskirt/rnd.rsi/inhand-right.png | Bin 0 -> 695 bytes .../Uniforms/Jumpskirt/rnd.rsi/meta.json | 27 + .../scientist.rsi/equipped-INNERCLOTHING.png} | Bin .../scientist.rsi/icon.png} | Bin .../Jumpskirt/scientist.rsi/inhand-left.png | Bin 0 -> 472 bytes .../Jumpskirt/scientist.rsi/inhand-right.png | Bin 0 -> 455 bytes .../Jumpskirt/scientist.rsi/meta.json | 27 + .../security.rsi/equipped-INNERCLOTHING.png} | Bin .../security.rsi/icon.png} | Bin .../Jumpskirt/security.rsi/inhand-left.png | Bin 0 -> 516 bytes .../Jumpskirt/security.rsi/inhand-right.png | Bin 0 -> 502 bytes .../Uniforms/Jumpskirt/security.rsi/meta.json | 27 + .../warden.rsi/equipped-INNERCLOTHING.png} | Bin .../warden.rsi/icon.png} | Bin .../Jumpskirt/warden.rsi/inhand-left.png | Bin 0 -> 516 bytes .../Jumpskirt/warden.rsi/inhand-right.png | Bin 0 -> 502 bytes .../Uniforms/Jumpskirt/warden.rsi/meta.json | 27 + .../black.rsi/equipped-INNERCLOTHING.png} | Bin .../Color/black.rsi/icon.png} | Bin .../Jumpsuit/Color/black.rsi/inhand-left.png | Bin 0 -> 287 bytes .../Jumpsuit/Color/black.rsi/inhand-right.png | Bin 0 -> 321 bytes .../Jumpsuit/Color/black.rsi/meta.json | 27 + .../blue.rsi/equipped-INNERCLOTHING.png} | Bin .../Color/blue.rsi/icon.png} | Bin .../Jumpsuit/Color/blue.rsi/inhand-left.png | Bin 0 -> 497 bytes .../Jumpsuit/Color/blue.rsi/inhand-right.png | Bin 0 -> 504 bytes .../Jumpsuit/Color/blue.rsi/meta.json | 27 + .../brown.rsi/equipped-INNERCLOTHING.png} | Bin .../Color/brown.rsi/icon.png} | Bin .../Jumpsuit/Color/brown.rsi/inhand-left.png | Bin 0 -> 287 bytes .../Jumpsuit/Color/brown.rsi/inhand-right.png | Bin 0 -> 318 bytes .../Jumpsuit/Color/brown.rsi/meta.json | 27 + .../darkblue.rsi/equipped-INNERCLOTHING.png} | Bin .../Color/darkblue.rsi/icon.png} | Bin .../Color/darkblue.rsi/inhand-left.png | Bin 0 -> 500 bytes .../Color/darkblue.rsi/inhand-right.png | Bin 0 -> 506 bytes .../Jumpsuit/Color/darkblue.rsi/meta.json | 27 + .../darkgreen.rsi/equipped-INNERCLOTHING.png} | Bin .../Color/darkgreen.rsi/icon.png} | Bin .../Color/darkgreen.rsi/inhand-left.png | Bin 0 -> 284 bytes .../Color/darkgreen.rsi/inhand-right.png | Bin 0 -> 321 bytes .../Jumpsuit/Color/darkgreen.rsi/meta.json | 27 + .../green.rsi/equipped-INNERCLOTHING.png} | Bin .../Color/green.rsi/icon.png} | Bin .../Jumpsuit/Color/green.rsi/inhand-left.png | Bin 0 -> 284 bytes .../Jumpsuit/Color/green.rsi/inhand-right.png | Bin 0 -> 321 bytes .../Jumpsuit/Color/green.rsi/meta.json | 27 + .../grey.rsi/equipped-INNERCLOTHING.png} | Bin .../Color/grey.rsi/icon.png} | Bin .../Jumpsuit/Color/grey.rsi/inhand-left.png | Bin 0 -> 287 bytes .../Jumpsuit/Color/grey.rsi/inhand-right.png | Bin 0 -> 321 bytes .../Jumpsuit/Color/grey.rsi/meta.json | 27 + .../equipped-INNERCLOTHING.png} | Bin .../Color/lightbrown.rsi/icon.png} | Bin .../Color/lightbrown.rsi/inhand-left.png | Bin 0 -> 287 bytes .../Color/lightbrown.rsi/inhand-right.png | Bin 0 -> 318 bytes .../Jumpsuit/Color/lightbrown.rsi/meta.json | 27 + .../equipped-INNERCLOTHING.png} | Bin .../Color/lightpurple.rsi/icon.png} | Bin .../Color/lightpurple.rsi/inhand-left.png | Bin 0 -> 497 bytes .../Color/lightpurple.rsi/inhand-right.png | Bin 0 -> 508 bytes .../Jumpsuit/Color/lightpurple.rsi/meta.json | 27 + .../maroon.rsi/equipped-INNERCLOTHING.png} | Bin .../Color/maroon.rsi/icon.png} | Bin .../Jumpsuit/Color/maroon.rsi/inhand-left.png | Bin 0 -> 498 bytes .../Color/maroon.rsi/inhand-right.png | Bin 0 -> 499 bytes .../Jumpsuit/Color/maroon.rsi/meta.json | 27 + .../orange.rsi/equipped-INNERCLOTHING.png} | Bin .../Color/orange.rsi/icon.png} | Bin .../Jumpsuit/Color/orange.rsi/inhand-left.png | Bin 0 -> 478 bytes .../Color/orange.rsi/inhand-right.png | Bin 0 -> 484 bytes .../Jumpsuit/Color/orange.rsi/meta.json | 27 + .../pink.rsi/equipped-INNERCLOTHING.png} | Bin .../Color/pink.rsi/icon.png} | Bin .../Jumpsuit/Color/pink.rsi/inhand-left.png | Bin 0 -> 557 bytes .../Jumpsuit/Color/pink.rsi/inhand-right.png | Bin 0 -> 529 bytes .../Jumpsuit/Color/pink.rsi/meta.json | 27 + .../Color/red.rsi/equipped-INNERCLOTHING.png} | Bin .../Color/red.rsi/icon.png} | Bin .../Jumpsuit/Color/red.rsi/inhand-left.png | Bin 0 -> 294 bytes .../Jumpsuit/Color/red.rsi/inhand-right.png | Bin 0 -> 329 bytes .../Uniforms/Jumpsuit/Color/red.rsi/meta.json | 27 + .../teal.rsi/equipped-INNERCLOTHING.png} | Bin .../Color/teal.rsi/icon.png} | Bin .../Jumpsuit/Color/teal.rsi/inhand-left.png | Bin 0 -> 587 bytes .../Jumpsuit/Color/teal.rsi/inhand-right.png | Bin 0 -> 595 bytes .../Jumpsuit/Color/teal.rsi/meta.json | 27 + .../white.rsi/equipped-INNERCLOTHING.png} | Bin .../Color/white.rsi/icon.png} | Bin .../Jumpsuit/Color/white.rsi/inhand-left.png | Bin 0 -> 307 bytes .../Jumpsuit/Color/white.rsi/inhand-right.png | Bin 0 -> 310 bytes .../Jumpsuit/Color/white.rsi/meta.json | 27 + .../yellow.rsi/equipped-INNERCLOTHING.png} | Bin .../Color/yellow.rsi/icon.png} | Bin .../Jumpsuit/Color/yellow.rsi/inhand-left.png | Bin 0 -> 588 bytes .../Color/yellow.rsi/inhand-right.png | Bin 0 -> 596 bytes .../Jumpsuit/Color/yellow.rsi/meta.json | 27 + .../bartender.rsi/equipped-INNERCLOTHING.png | Bin .../{ => Jumpsuit}/bartender.rsi/icon.png | Bin .../Jumpsuit/bartender.rsi/inhand-left.png | Bin 0 -> 482 bytes .../Jumpsuit/bartender.rsi/inhand-right.png | Bin 0 -> 499 bytes .../Uniforms/Jumpsuit/bartender.rsi/meta.json | 27 + .../equipped-INNERCLOTHING.png} | Bin .../bartender_purple.rsi/icon.png} | Bin .../Jumpsuit/bartender_purple.rsi/meta.json | 19 + .../captain.rsi}/equipped-INNERCLOTHING.png | Bin .../captain.rsi/icon.png} | Bin .../captain.rsi}/inhand-left.png | Bin .../captain.rsi}/inhand-right.png | Bin .../Uniforms/Jumpsuit/captain.rsi/meta.json | 27 + .../cargotech.rsi}/equipped-INNERCLOTHING.png | Bin .../cargotech.rsi}/icon.png | Bin .../Jumpsuit/cargotech.rsi/inhand-left.png | Bin 0 -> 495 bytes .../Jumpsuit/cargotech.rsi/inhand-right.png | Bin 0 -> 516 bytes .../Uniforms/Jumpsuit/cargotech.rsi/meta.json | 27 + .../ce.rsi}/equipped-INNERCLOTHING.png | Bin .../ce.rsi}/icon.png | Bin .../ce.rsi/inhand-left.png} | Bin .../ce.rsi/inhand-right.png} | Bin .../Uniforms/Jumpsuit/ce.rsi/meta.json | 35 + .../ce.rsi}/s-equipped-INNERCLOTHING.png | Bin .../{color.rsi => Jumpsuit/ce.rsi}/s.png | Bin .../chaplain.rsi}/equipped-INNERCLOTHING.png | Bin .../chaplain.rsi}/icon.png | Bin .../Jumpsuit/chaplain.rsi/inhand-left.png | Bin 0 -> 497 bytes .../Jumpsuit/chaplain.rsi/inhand-right.png | Bin 0 -> 507 bytes .../Uniforms/Jumpsuit/chaplain.rsi/meta.json | 27 + .../chef.rsi}/equipped-INNERCLOTHING.png | Bin .../chef.rsi}/icon.png | Bin .../Jumpsuit/chef.rsi/inhand-left.png | Bin 0 -> 449 bytes .../Jumpsuit/chef.rsi/inhand-right.png | Bin 0 -> 467 bytes .../Uniforms/Jumpsuit/chef.rsi/meta.json | 27 + .../chemistry.rsi/equipped-INNERCLOTHING.png} | Bin .../chemistry.rsi/icon.png} | Bin .../Jumpsuit/chemistry.rsi/inhand-left.png | Bin 0 -> 472 bytes .../Jumpsuit/chemistry.rsi/inhand-right.png | Bin 0 -> 455 bytes .../Uniforms/Jumpsuit/chemistry.rsi/meta.json | 27 + .../clown.rsi}/equipped-INNERCLOTHING.png | Bin .../clown.rsi}/icon.png | Bin .../clown.rsi}/inhand-left.png | Bin .../clown.rsi}/inhand-right.png | Bin .../Uniforms/Jumpsuit/clown.rsi/meta.json | 27 + .../cmo.rsi}/equipped-INNERCLOTHING.png | Bin .../cmo.rsi}/icon.png | Bin .../Uniforms/Jumpsuit/cmo.rsi/inhand-left.png | Bin 0 -> 472 bytes .../Jumpsuit/cmo.rsi/inhand-right.png | Bin 0 -> 455 bytes .../Uniforms/Jumpsuit/cmo.rsi/meta.json | 27 + .../detective.rsi/equipped-INNERCLOTHING.png} | Bin .../detective.rsi/icon.png} | Bin .../Jumpsuit/detective.rsi/inhand-left.png | Bin 0 -> 481 bytes .../Jumpsuit/detective.rsi/inhand-right.png | Bin 0 -> 500 bytes .../Uniforms/Jumpsuit/detective.rsi/meta.json | 27 + .../equipped-INNERCLOTHING.png} | Bin .../detective_grey.rsi/icon.png} | Bin .../detective_grey.rsi/inhand-left.png | Bin 0 -> 481 bytes .../detective_grey.rsi/inhand-right.png | Bin 0 -> 500 bytes .../Jumpsuit/detective_grey.rsi/meta.json | 27 + .../equipped-INNERCLOTHING.png | Bin .../engineering.rsi}/icon.png | Bin .../Jumpsuit/engineering.rsi/inhand-left.png | Bin 0 -> 509 bytes .../Jumpsuit/engineering.rsi/inhand-right.png | Bin 0 -> 532 bytes .../Jumpsuit/engineering.rsi/meta.json | 27 + .../hop.rsi}/equipped-INNERCLOTHING.png | Bin .../hop.rsi}/icon.png | Bin .../Uniforms/Jumpsuit/hop.rsi/inhand-left.png | Bin 0 -> 502 bytes .../Jumpsuit/hop.rsi/inhand-right.png | Bin 0 -> 514 bytes .../Uniforms/Jumpsuit/hop.rsi/meta.json | 27 + .../hos.rsi}/equipped-INNERCLOTHING.png | Bin .../hos.rsi}/icon.png | Bin .../Uniforms/Jumpsuit/hos.rsi/inhand-left.png | Bin 0 -> 516 bytes .../Jumpsuit/hos.rsi/inhand-right.png | Bin 0 -> 502 bytes .../Uniforms/Jumpsuit/hos.rsi/meta.json | 27 + .../hos_alt.rsi/equipped-INNERCLOTHING.png} | Bin .../hos_alt.rsi/icon.png} | Bin .../Jumpsuit/hos_alt.rsi/inhand-left.png | Bin 0 -> 543 bytes .../Jumpsuit/hos_alt.rsi/inhand-right.png | Bin 0 -> 542 bytes .../Uniforms/Jumpsuit/hos_alt.rsi/meta.json | 27 + .../hos_blue.rsi/equipped-INNERCLOTHING.png} | Bin .../hos_blue.rsi/icon.png} | Bin .../hos_blue.rsi/inhand-left.png} | Bin .../hos_blue.rsi/inhand-right.png} | Bin .../Uniforms/Jumpsuit/hos_blue.rsi/meta.json | 27 + .../hos_grey.rsi/equipped-INNERCLOTHING.png} | Bin .../hos_grey.rsi/icon.png} | Bin .../hos_grey.rsi/inhand-left.png} | Bin .../hos_grey.rsi/inhand-right.png} | Bin .../Uniforms/Jumpsuit/hos_grey.rsi/meta.json | 27 + .../equipped-INNERCLOTHING.png} | Bin .../hos_parade.rsi/icon.png} | Bin .../Jumpsuit/hos_parade.rsi/inhand-left.png | Bin 0 -> 516 bytes .../Jumpsuit/hos_parade.rsi/inhand-right.png | Bin 0 -> 502 bytes .../Jumpsuit/hos_parade.rsi/meta.json | 27 + .../hydro.rsi}/equipped-INNERCLOTHING.png | Bin .../hydro.rsi}/icon.png | Bin .../Jumpsuit/hydro.rsi/inhand-left.png | Bin 0 -> 535 bytes .../Jumpsuit/hydro.rsi/inhand-right.png | Bin 0 -> 556 bytes .../Uniforms/Jumpsuit/hydro.rsi/meta.json | 27 + .../janitor.rsi}/equipped-INNERCLOTHING.png | Bin .../janitor.rsi}/icon.png | Bin .../Jumpsuit/janitor.rsi/inhand-left.png | Bin 0 -> 513 bytes .../Jumpsuit/janitor.rsi/inhand-right.png | Bin 0 -> 561 bytes .../Uniforms/Jumpsuit/janitor.rsi/meta.json | 27 + .../medical.rsi}/equipped-INNERCLOTHING.png | Bin .../medical.rsi}/icon.png | Bin .../Jumpsuit/medical.rsi/inhand-left.png | Bin 0 -> 472 bytes .../Jumpsuit/medical.rsi/inhand-right.png | Bin 0 -> 455 bytes .../Uniforms/Jumpsuit/medical.rsi/meta.json | 27 + .../mime.rsi}/equipped-INNERCLOTHING.png | Bin .../mime.rsi}/icon.png | Bin .../Jumpsuit/mime.rsi/inhand-left.png | Bin 0 -> 381 bytes .../Jumpsuit/mime.rsi/inhand-right.png | Bin 0 -> 380 bytes .../Uniforms/Jumpsuit/mime.rsi/meta.json | 27 + .../paramedic.rsi/equipped-INNERCLOTHING.png} | Bin .../paramedic.rsi/icon.png} | Bin .../Jumpsuit/paramedic.rsi/inhand-left.png | Bin 0 -> 472 bytes .../Jumpsuit/paramedic.rsi/inhand-right.png | Bin 0 -> 455 bytes .../Uniforms/Jumpsuit/paramedic.rsi/meta.json | 27 + .../prisoner.rsi}/equipped-INNERCLOTHING.png | Bin .../prisoner.rsi}/icon.png | Bin .../Jumpsuit/prisoner.rsi/inhand-left.png | Bin 0 -> 525 bytes .../Jumpsuit/prisoner.rsi/inhand-right.png | Bin 0 -> 546 bytes .../Uniforms/Jumpsuit/prisoner.rsi/meta.json | 27 + .../qm.rsi/equipped-INNERCLOTHING.png} | Bin .../qm.png => Jumpsuit/qm.rsi/icon.png} | Bin .../Uniforms/Jumpsuit/qm.rsi/inhand-left.png | Bin 0 -> 495 bytes .../Uniforms/Jumpsuit/qm.rsi/inhand-right.png | Bin 0 -> 516 bytes .../Uniforms/Jumpsuit/qm.rsi/meta.json | 27 + .../rainbow.rsi/equipped-INNERCLOTHING.png | Bin .../{ => Jumpsuit}/rainbow.rsi/icon.png | Bin .../rainbow.rsi/inhand-left.png | Bin .../rainbow.rsi/inhand-right.png | Bin .../Uniforms/Jumpsuit/rainbow.rsi/meta.json | 27 + .../rnd.rsi}/equipped-INNERCLOTHING.png | Bin .../rnd.rsi}/icon.png | Bin .../Uniforms/Jumpsuit/rnd.rsi/inhand-left.png | Bin 0 -> 692 bytes .../Jumpsuit/rnd.rsi/inhand-right.png | Bin 0 -> 695 bytes .../Uniforms/Jumpsuit/rnd.rsi/meta.json | 27 + .../scientist.rsi}/equipped-INNERCLOTHING.png | Bin .../scientist.rsi}/icon.png | Bin .../Jumpsuit/scientist.rsi/inhand-left.png | Bin 0 -> 472 bytes .../Jumpsuit/scientist.rsi/inhand-right.png | Bin 0 -> 455 bytes .../Uniforms/Jumpsuit/scientist.rsi/meta.json | 27 + .../security.rsi}/equipped-INNERCLOTHING.png | Bin .../security.rsi}/icon.png | Bin .../Jumpsuit/security.rsi/inhand-left.png | Bin 0 -> 516 bytes .../Jumpsuit/security.rsi/inhand-right.png | Bin 0 -> 502 bytes .../Uniforms/Jumpsuit/security.rsi/meta.json | 27 + .../equipped-INNERCLOTHING.png} | Bin .../security_blue.rsi/icon.png} | Bin .../security_blue.rsi/inhand-left.png | Bin 0 -> 487 bytes .../security_blue.rsi/inhand-right.png | Bin 0 -> 507 bytes .../Jumpsuit/security_blue.rsi/meta.json | 27 + .../equipped-INNERCLOTHING.png} | Bin .../security_grey.rsi/icon.png} | Bin .../security_grey.rsi/inhand-left.png | Bin 0 -> 487 bytes .../security_grey.rsi/inhand-right.png | Bin 0 -> 507 bytes .../Jumpsuit/security_grey.rsi/meta.json | 27 + .../warden.rsi/equipped-INNERCLOTHING.png} | Bin .../warden.rsi/icon.png} | Bin .../warden.rsi/inhand-left.png} | Bin .../warden.rsi/inhand-right.png} | Bin .../Uniforms/Jumpsuit/warden.rsi/meta.json | 27 + .../blue.rsi/equipped-INNERCLOTHING.png} | Bin .../blue.rsi/icon.png} | Bin .../Uniforms/Scrubs/blue.rsi/meta.json | 19 + .../green.rsi/equipped-INNERCLOTHING.png} | Bin .../green.rsi/icon.png} | Bin .../Uniforms/Scrubs/green.rsi/meta.json | 19 + .../purple.rsi/equipped-INNERCLOTHING.png} | Bin .../purple.rsi/icon.png} | Bin .../Uniforms/Scrubs/purple.rsi/meta.json | 19 + .../Uniforms/bartender.rsi/barman_d.png | Bin 1296 -> 0 bytes .../Clothing/Uniforms/bartender.rsi/meta.json | 144 -- .../black_d-equipped-INNERCLOTHING.png | Bin 264 -> 0 bytes .../blue_d-equipped-INNERCLOTHING.png | Bin 279 -> 0 bytes .../brown_d-equipped-INNERCLOTHING.png | Bin 281 -> 0 bytes .../darkblue_d-equipped-INNERCLOTHING.png | Bin 279 -> 0 bytes .../darkgreen_d-equipped-INNERCLOTHING.png | Bin 281 -> 0 bytes .../green_d-equipped-INNERCLOTHING.png | Bin 281 -> 0 bytes .../grey_d-equipped-INNERCLOTHING.png | Bin 286 -> 0 bytes .../lightbrown_d-equipped-INNERCLOTHING.png | Bin 281 -> 0 bytes .../lightpurple_d-equipped-INNERCLOTHING.png | Bin 281 -> 0 bytes .../maroon_d-equipped-INNERCLOTHING.png | Bin 281 -> 0 bytes .../Clothing/Uniforms/color.rsi/meta.json | 1721 ----------------- .../orange_d-equipped-INNERCLOTHING.png | Bin 281 -> 0 bytes .../pink_d-equipped-INNERCLOTHING.png | Bin 281 -> 0 bytes .../Uniforms/color.rsi/random_jumpsuit.png | Bin 606 -> 0 bytes .../red_d-equipped-INNERCLOTHING.png | Bin 281 -> 0 bytes .../teal_d-equipped-INNERCLOTHING.png | Bin 282 -> 0 bytes .../white_d-equipped-INNERCLOTHING.png | Bin 281 -> 0 bytes .../yellow_d-equipped-INNERCLOTHING.png | Bin 281 -> 0 bytes .../Clothing/Uniforms/rainbow.rsi/meta.json | 74 - .../uniform_assistant.rsi/assistant.png | Bin 426 -> 0 bytes .../equipped-INNERCLOTHING.png | Bin 1209 -> 0 bytes .../Uniforms/uniform_assistant.rsi/meta.json | 1 - .../Uniforms/uniform_captain.rsi/meta.json | 74 - .../uniform_cargotech.rsi/cargotech.png | Bin 486 -> 0 bytes .../Uniforms/uniform_cargotech.rsi/meta.json | 155 -- .../Clothing/Uniforms/uniform_ce.rsi/ce.png | Bin 530 -> 0 bytes .../Uniforms/uniform_ce.rsi/meta.json | 101 - .../Uniforms/uniform_chaplain.rsi/meta.json | 101 - .../Uniforms/uniform_chef.rsi/chef.png | Bin 419 -> 0 bytes .../Uniforms/uniform_chef.rsi/meta.json | 101 - .../Uniforms/uniform_clown.rsi/meta.json | 1 - .../Clothing/Uniforms/uniform_cmo.rsi/cmo.png | Bin 411 -> 0 bytes .../Uniforms/uniform_cmo.rsi/meta.json | 101 - .../detective_d-equipped-INNERCLOTHING.png | Bin 1359 -> 0 bytes ...greydetective_d-equipped-INNERCLOTHING.png | Bin 1288 -> 0 bytes .../Uniforms/uniform_detective.rsi/meta.json | 191 -- .../uniform_engineering.rsi/engine.png | Bin 446 -> 0 bytes .../uniform_engineering.rsi/meta.json | 101 - .../Clothing/Uniforms/uniform_hop.rsi/hop.png | Bin 426 -> 0 bytes .../Uniforms/uniform_hop.rsi/meta.json | 101 - .../Clothing/Uniforms/uniform_hos.rsi/hos.png | Bin 494 -> 0 bytes .../hos_grey_d-equipped-INNERCLOTHING.png | Bin 1436 -> 0 bytes ...osblueclothes_d-equipped-INNERCLOTHING.png | Bin 1267 -> 0 bytes .../hostanclothes-equipped-INNERCLOTHING.png | Bin 1343 -> 0 bytes .../uniform_hos.rsi/hostanclothes.png | Bin 467 -> 0 bytes .../Uniforms/uniform_hos.rsi/meta.json | 398 ---- .../Uniforms/uniform_hydro.rsi/meta.json | 101 - .../Uniforms/uniform_janitor.rsi/janitor.png | Bin 456 -> 0 bytes .../Uniforms/uniform_janitor.rsi/meta.json | 101 - .../Clothing/Uniforms/uniform_md.rsi/md.png | Bin 389 -> 0 bytes .../Uniforms/uniform_md.rsi/meta.json | 1 - .../equipped-INNERCLOTHING.png | Bin 1388 -> 0 bytes .../Uniforms/uniform_medical.rsi/meta.json | 290 --- .../Uniforms/uniform_mime.rsi/meta.json | 101 - .../Uniforms/uniform_prisoner.rsi/meta.json | 101 - .../uniform_rd.rsi/equipped-INNERCLOTHING.png | Bin 1385 -> 0 bytes .../Uniforms/uniform_rd.rsi/meta.json | 1 - .../Clothing/Uniforms/uniform_rd.rsi/rd.png | Bin 432 -> 0 bytes .../Uniforms/uniform_rnd.rsi/meta.json | 101 - .../Uniforms/uniform_scientist.rsi/meta.json | 101 - .../uniform_scientist.rsi/scientist.png | Bin 388 -> 0 bytes .../constable-equipped-INNERCLOTHING.png | Bin 1472 -> 0 bytes .../Uniforms/uniform_sec.rsi/constable.png | Bin 420 -> 0 bytes .../Uniforms/uniform_sec.rsi/meta.json | 344 ---- ...icerblueclothes-equipped-INNERCLOTHING.png | Bin 1370 -> 0 bytes .../uniform_sec.rsi/officerblueclothes.png | Bin 402 -> 0 bytes ...erblueclothes_d-equipped-INNERCLOTHING.png | Bin 1249 -> 0 bytes ...ficertanclothes-equipped-INNERCLOTHING.png | Bin 1382 -> 0 bytes .../uniform_sec.rsi/officertanclothes.png | Bin 405 -> 0 bytes .../spacepol-equipped-INNERCLOTHING.png | Bin 1142 -> 0 bytes .../Uniforms/uniform_sec.rsi/spacepol.png | Bin 412 -> 0 bytes ...police_families-equipped-INNERCLOTHING.png | Bin 1068 -> 0 bytes .../uniform_sec.rsi/spacepolice_families.png | Bin 418 -> 0 bytes .../Uniforms/uniform_warden.rsi/meta.json | 272 --- .../rwarden_d-equipped-INNERCLOTHING.png | Bin 1346 -> 0 bytes .../warden-equipped-INNERCLOTHING.png | Bin 1513 -> 0 bytes .../Uniforms/uniform_warden.rsi/warden.png | Bin 462 -> 0 bytes .../warden_d-equipped-INNERCLOTHING.png | Bin 1426 -> 0 bytes ...rdenblueclothes-equipped-INNERCLOTHING.png | Bin 1386 -> 0 bytes .../uniform_warden.rsi/wardenblueclothes.png | Bin 404 -> 0 bytes ...enblueclothes_d-equipped-INNERCLOTHING.png | Bin 1259 -> 0 bytes ...ardentanclothes-equipped-INNERCLOTHING.png | Bin 1381 -> 0 bytes .../uniform_warden.rsi/wardentanclothes.png | Bin 408 -> 0 bytes 3124 files changed, 16722 insertions(+), 17241 deletions(-) rename Resources/Prototypes/{Entities/Clothing/Belt/filled_belts.yml => Catalog/Fills/belt.yml} (72%) create mode 100644 Resources/Prototypes/Catalog/Fills/duffel.yml create mode 100644 Resources/Prototypes/Entities/Clothing/Belt/base.yml rename Resources/Prototypes/Entities/Clothing/{Earpieces => Ears}/headsets.yml (78%) rename Resources/Prototypes/Entities/Clothing/{Earpieces => Ears}/headsets_alt.yml (76%) create mode 100644 Resources/Prototypes/Entities/Clothing/Eyes/base.yml create mode 100644 Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml create mode 100644 Resources/Prototypes/Entities/Clothing/Eyes/hud.yml create mode 100644 Resources/Prototypes/Entities/Clothing/Eyes/misc.yml delete mode 100644 Resources/Prototypes/Entities/Clothing/Glasses/eyes.yml delete mode 100644 Resources/Prototypes/Entities/Clothing/Gloves/gloves.yml create mode 100644 Resources/Prototypes/Entities/Clothing/Hands/base.yml create mode 100644 Resources/Prototypes/Entities/Clothing/Hands/colored.yml create mode 100644 Resources/Prototypes/Entities/Clothing/Hands/gloves.yml create mode 100644 Resources/Prototypes/Entities/Clothing/Head/bandanas.yml create mode 100644 Resources/Prototypes/Entities/Clothing/Head/base.yml create mode 100644 Resources/Prototypes/Entities/Clothing/Head/hardhats.yml create mode 100644 Resources/Prototypes/Entities/Clothing/Head/soft.yml delete mode 100644 Resources/Prototypes/Entities/Clothing/Head/welding-masks.yml create mode 100644 Resources/Prototypes/Entities/Clothing/Head/welding.yml create mode 100644 Resources/Prototypes/Entities/Clothing/Masks/base.yml create mode 100644 Resources/Prototypes/Entities/Clothing/Neck/base.yml create mode 100644 Resources/Prototypes/Entities/Clothing/Neck/misc.yml delete mode 100644 Resources/Prototypes/Entities/Clothing/Neck/neck.yml create mode 100644 Resources/Prototypes/Entities/Clothing/Neck/scarfs.yml create mode 100644 Resources/Prototypes/Entities/Clothing/Neck/ties.yml create mode 100644 Resources/Prototypes/Entities/Clothing/OuterClothing/base.yml create mode 100644 Resources/Prototypes/Entities/Clothing/OuterClothing/bio.yml create mode 100644 Resources/Prototypes/Entities/Clothing/OuterClothing/vests.yml create mode 100644 Resources/Prototypes/Entities/Clothing/Shoes/base.yml create mode 100644 Resources/Prototypes/Entities/Clothing/Shoes/boots.yml delete mode 100644 Resources/Prototypes/Entities/Clothing/Shoes/clown.yml create mode 100644 Resources/Prototypes/Entities/Clothing/Shoes/color.yml create mode 100644 Resources/Prototypes/Entities/Clothing/Shoes/misc.yml delete mode 100644 Resources/Prototypes/Entities/Clothing/Shoes/shoes.yml create mode 100644 Resources/Prototypes/Entities/Clothing/Shoes/specific.yml create mode 100644 Resources/Prototypes/Entities/Clothing/Under/under.yml create mode 100644 Resources/Prototypes/Entities/Clothing/Under/will be filled out when implemented -S create mode 100644 Resources/Prototypes/Entities/Clothing/Uniforms/base.yml delete mode 100644 Resources/Prototypes/Entities/Clothing/Uniforms/color.yml create mode 100644 Resources/Prototypes/Entities/Clothing/Uniforms/jumpskirts.yml create mode 100644 Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml create mode 100644 Resources/Prototypes/Entities/Clothing/Uniforms/scrubs.yml delete mode 100644 Resources/Prototypes/Entities/Clothing/Uniforms/uniforms.yml rename Resources/Textures/Clothing/Back/Duffels/{duffel_cap.rsi => captain.rsi}/equipped-BACKPACK.png (100%) rename Resources/Textures/Clothing/Back/Duffels/{duffel_cap.rsi => captain.rsi}/icon.png (100%) rename Resources/Textures/Clothing/Back/Duffels/{duffel_cap.rsi => captain.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/Back/Duffels/{duffel_cap.rsi => captain.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Back/Duffels/captain.rsi/meta.json rename Resources/Textures/Clothing/Back/Duffels/{duffel_clown.rsi => clown.rsi}/equipped-BACKPACK.png (100%) rename Resources/Textures/Clothing/Back/Duffels/{duffel_clown.rsi => clown.rsi}/icon.png (100%) rename Resources/Textures/Clothing/Back/Duffels/{duffel_clown.rsi => clown.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/Back/Duffels/{duffel_clown.rsi => clown.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Back/Duffels/clown.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Back/Duffels/duffel_cap.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Back/Duffels/duffel_clown.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Back/Duffels/duffel_eng.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Back/Duffels/duffel_med.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Back/Duffels/duffel_sec.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Back/Duffels/duffel_syn.rsi/meta.json rename Resources/Textures/Clothing/Back/Duffels/{duffel_eng.rsi => engineering.rsi}/equipped-BACKPACK.png (100%) rename Resources/Textures/Clothing/Back/Duffels/{duffel_eng.rsi => engineering.rsi}/icon.png (100%) rename Resources/Textures/Clothing/Back/Duffels/{duffel_eng.rsi => engineering.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/Back/Duffels/{duffel_eng.rsi => engineering.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Back/Duffels/engineering.rsi/meta.json rename Resources/Textures/Clothing/Back/Duffels/{duffel_med.rsi => medical.rsi}/equipped-BACKPACK.png (100%) rename Resources/Textures/Clothing/Back/Duffels/{duffel_med.rsi => medical.rsi}/icon.png (100%) rename Resources/Textures/Clothing/Back/Duffels/{duffel_med.rsi => medical.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/Back/Duffels/{duffel_med.rsi => medical.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Back/Duffels/medical.rsi/meta.json rename Resources/Textures/Clothing/Back/Duffels/{duffel_sec.rsi => security.rsi}/equipped-BACKPACK.png (100%) rename Resources/Textures/Clothing/Back/Duffels/{duffel_sec.rsi => security.rsi}/icon.png (100%) rename Resources/Textures/Clothing/Back/Duffels/{duffel_sec.rsi => security.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/Back/Duffels/{duffel_sec.rsi => security.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Back/Duffels/security.rsi/meta.json rename Resources/Textures/Clothing/Back/Duffels/{duffel_syn.rsi => syndicate.rsi}/equipped-BACKPACK.png (100%) rename Resources/Textures/Clothing/Back/Duffels/{duffel_syn.rsi => syndicate.rsi}/icon.png (100%) rename Resources/Textures/Clothing/Back/Duffels/{duffel_syn.rsi => syndicate.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/Back/Duffels/{duffel_syn.rsi => syndicate.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Back/Duffels/syndicate.rsi/meta.json rename Resources/Textures/Clothing/Back/Satchels/{satchel_captain.rsi => captain.rsi}/equipped-BACKPACK.png (100%) rename Resources/Textures/Clothing/Back/Satchels/{satchel_captain.rsi => captain.rsi}/icon.png (100%) rename Resources/Textures/Clothing/Back/Satchels/{satchel_captain.rsi => captain.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/Back/Satchels/{satchel_captain.rsi => captain.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Back/Satchels/captain.rsi/meta.json rename Resources/Textures/Clothing/Back/Satchels/{satchel_chemistry.rsi => chemistry.rsi}/equipped-BACKPACK.png (100%) rename Resources/Textures/Clothing/Back/Satchels/{satchel_chemistry.rsi => chemistry.rsi}/icon.png (100%) rename Resources/Textures/Clothing/Back/Satchels/{satchel_chemistry.rsi => chemistry.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/Back/Satchels/{satchel_chemistry.rsi => chemistry.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Back/Satchels/chemistry.rsi/meta.json rename Resources/Textures/Clothing/Back/Satchels/{satchel_engineering.rsi => engineering.rsi}/equipped-BACKPACK.png (100%) rename Resources/Textures/Clothing/Back/Satchels/{satchel_engineering.rsi => engineering.rsi}/icon.png (100%) rename Resources/Textures/Clothing/Back/Satchels/{satchel_engineering.rsi => engineering.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/Back/Satchels/{satchel_engineering.rsi => engineering.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Back/Satchels/engineering.rsi/meta.json rename Resources/Textures/Clothing/Back/Satchels/{satchel_hydroponics.rsi => hydroponics.rsi}/equipped-BACKPACK.png (100%) rename Resources/Textures/Clothing/Back/Satchels/{satchel_hydroponics.rsi => hydroponics.rsi}/icon.png (100%) rename Resources/Textures/Clothing/Back/Satchels/{satchel_hydroponics.rsi => hydroponics.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/Back/Satchels/{satchel_hydroponics.rsi => hydroponics.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Back/Satchels/hydroponics.rsi/meta.json rename Resources/Textures/Clothing/Back/Satchels/{satchel_medical.rsi => medical.rsi}/equipped-BACKPACK.png (100%) rename Resources/Textures/Clothing/Back/Satchels/{satchel_medical.rsi => medical.rsi}/icon.png (100%) rename Resources/Textures/Clothing/Back/Satchels/{satchel_medical.rsi => medical.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/Back/Satchels/{satchel_medical.rsi => medical.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Back/Satchels/medical.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Back/Satchels/satchel_captain.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Back/Satchels/satchel_chemistry.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Back/Satchels/satchel_engineering.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Back/Satchels/satchel_hydroponics.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Back/Satchels/satchel_medical.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Back/Satchels/satchel_science.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Back/Satchels/satchel_security.rsi/meta.json rename Resources/Textures/Clothing/Back/Satchels/{satchel_science.rsi => science.rsi}/equipped-BACKPACK.png (100%) rename Resources/Textures/Clothing/Back/Satchels/{satchel_science.rsi => science.rsi}/icon.png (100%) rename Resources/Textures/Clothing/Back/Satchels/{satchel_science.rsi => science.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/Back/Satchels/{satchel_science.rsi => science.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Back/Satchels/science.rsi/meta.json rename Resources/Textures/Clothing/Back/Satchels/{satchel_security.rsi => security.rsi}/equipped-BACKPACK.png (100%) rename Resources/Textures/Clothing/Back/Satchels/{satchel_security.rsi => security.rsi}/icon.png (100%) rename Resources/Textures/Clothing/Back/Satchels/{satchel_security.rsi => security.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/Back/Satchels/{satchel_security.rsi => security.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Back/Satchels/security.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Ears/Headsets/base.rsi/cypherkey.png delete mode 100644 Resources/Textures/Clothing/Ears/Headsets/cargo.rsi/cargo_cypherkey.png delete mode 100644 Resources/Textures/Clothing/Ears/Headsets/cargo.rsi/qm_cypherkey.png delete mode 100644 Resources/Textures/Clothing/Ears/Headsets/centcom.rsi/cent_cypherkey.png delete mode 100644 Resources/Textures/Clothing/Ears/Headsets/command.rsi/com_cypherkey.png delete mode 100644 Resources/Textures/Clothing/Ears/Headsets/command.rsi/hop_cypherkey.png delete mode 100644 Resources/Textures/Clothing/Ears/Headsets/engineering.rsi/ce_cypherkey.png delete mode 100644 Resources/Textures/Clothing/Ears/Headsets/engineering.rsi/eng_cypherkey.png delete mode 100644 Resources/Textures/Clothing/Ears/Headsets/medical.rsi/cmo_cypherkey.png delete mode 100644 Resources/Textures/Clothing/Ears/Headsets/medical.rsi/med_cypherkey.png delete mode 100644 Resources/Textures/Clothing/Ears/Headsets/medicalscience.rsi/medsci_cypherkey.png delete mode 100644 Resources/Textures/Clothing/Ears/Headsets/mining.rsi/mine_cypherkey.png delete mode 100644 Resources/Textures/Clothing/Ears/Headsets/robotics.rsi/rob_cypherkey.png delete mode 100644 Resources/Textures/Clothing/Ears/Headsets/science.rsi/rd_cypherkey.png delete mode 100644 Resources/Textures/Clothing/Ears/Headsets/science.rsi/sci_cypherkey.png delete mode 100644 Resources/Textures/Clothing/Ears/Headsets/security.rsi/hos_cypherkey.png delete mode 100644 Resources/Textures/Clothing/Ears/Headsets/security.rsi/sec_cypherkey.png delete mode 100644 Resources/Textures/Clothing/Ears/Headsets/service.rsi/srv_cypherkey.png delete mode 100644 Resources/Textures/Clothing/Ears/Headsets/service.rsi/srvsec_cypherkey.png delete mode 100644 Resources/Textures/Clothing/Ears/Headsets/servicemedical.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Ears/Headsets/servicemedical.rsi/srvmed_cypherkey.png delete mode 100644 Resources/Textures/Clothing/Ears/Headsets/servicesecurity.rsi/srvsec_cypherkey.png delete mode 100644 Resources/Textures/Clothing/Ears/Headsets/syndicate.rsi/syn_cypherkey.png rename Resources/Textures/Clothing/{Glasses/sunglasses.rsi => Eyes/Glasses/beergoggles.rsi}/equipped-EYES.png (100%) create mode 100644 Resources/Textures/Clothing/Eyes/Glasses/beergoggles.rsi/icon.png create mode 100644 Resources/Textures/Clothing/Eyes/Glasses/beergoggles.rsi/meta.json create mode 100644 Resources/Textures/Clothing/Eyes/Glasses/gar.rsi/alt-equipped-EYES.png create mode 100644 Resources/Textures/Clothing/Eyes/Glasses/gar.rsi/alt-inhand-left.png create mode 100644 Resources/Textures/Clothing/Eyes/Glasses/gar.rsi/alt-inhand-right.png create mode 100644 Resources/Textures/Clothing/Eyes/Glasses/gar.rsi/equipped-EYES.png create mode 100644 Resources/Textures/Clothing/Eyes/Glasses/gar.rsi/icon-alt.png create mode 100644 Resources/Textures/Clothing/Eyes/Glasses/gar.rsi/icon-super.png create mode 100644 Resources/Textures/Clothing/Eyes/Glasses/gar.rsi/icon.png create mode 100644 Resources/Textures/Clothing/Eyes/Glasses/gar.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Eyes/Glasses/gar.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Eyes/Glasses/gar.rsi/meta.json create mode 100644 Resources/Textures/Clothing/Eyes/Glasses/gar.rsi/super-equipped-EYES.png create mode 100644 Resources/Textures/Clothing/Eyes/Glasses/gar.rsi/super-inhand-left.png create mode 100644 Resources/Textures/Clothing/Eyes/Glasses/gar.rsi/super-inhand-right.png create mode 100644 Resources/Textures/Clothing/Eyes/Glasses/glasses.rsi/equipped-EYES.png create mode 100644 Resources/Textures/Clothing/Eyes/Glasses/glasses.rsi/icon.png create mode 100644 Resources/Textures/Clothing/Eyes/Glasses/glasses.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Eyes/Glasses/glasses.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Eyes/Glasses/glasses.rsi/meta.json rename Resources/Textures/Clothing/{Glasses/meson_scanners.rsi => Eyes/Glasses/meson.rsi}/equipped-EYES.png (100%) rename Resources/Textures/Clothing/{Glasses/meson_scanners.rsi/meson.png => Eyes/Glasses/meson.rsi/icon.png} (100%) create mode 100644 Resources/Textures/Clothing/Eyes/Glasses/meson.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Eyes/Glasses/meson.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Eyes/Glasses/meson.rsi/meta.json rename Resources/Textures/Clothing/{Glasses/sunglasses_sec.rsi => Eyes/Glasses/secglasses.rsi}/equipped-EYES.png (100%) rename Resources/Textures/Clothing/{Glasses/sunglasses_sec.rsi => Eyes/Glasses/secglasses.rsi}/icon.png (100%) rename Resources/Textures/Clothing/{Glasses/sunglasses.rsi => Eyes/Glasses/secglasses.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/{Glasses/sunglasses.rsi => Eyes/Glasses/secglasses.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Eyes/Glasses/secglasses.rsi/meta.json create mode 100644 Resources/Textures/Clothing/Eyes/Glasses/sunglasses.rsi/equipped-EYES.png rename Resources/Textures/Clothing/{ => Eyes}/Glasses/sunglasses.rsi/icon.png (100%) rename Resources/Textures/Clothing/{Glasses/sunglasses_sec.rsi => Eyes/Glasses/sunglasses.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/{Glasses/sunglasses_sec.rsi => Eyes/Glasses/sunglasses.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Eyes/Glasses/sunglasses.rsi/meta.json create mode 100644 Resources/Textures/Clothing/Eyes/Glasses/thermal.rsi/equipped-EYES.png create mode 100644 Resources/Textures/Clothing/Eyes/Glasses/thermal.rsi/icon.png create mode 100644 Resources/Textures/Clothing/Eyes/Glasses/thermal.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Eyes/Glasses/thermal.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Eyes/Glasses/thermal.rsi/meta.json create mode 100644 Resources/Textures/Clothing/Eyes/Hud/diag.rsi/equipped-EYES.png create mode 100644 Resources/Textures/Clothing/Eyes/Hud/diag.rsi/icon.png create mode 100644 Resources/Textures/Clothing/Eyes/Hud/diag.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Eyes/Hud/diag.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Eyes/Hud/diag.rsi/meta.json create mode 100644 Resources/Textures/Clothing/Eyes/Hud/med.rsi/equipped-EYES.png create mode 100644 Resources/Textures/Clothing/Eyes/Hud/med.rsi/icon.png create mode 100644 Resources/Textures/Clothing/Eyes/Hud/med.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Eyes/Hud/med.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Eyes/Hud/med.rsi/meta.json create mode 100644 Resources/Textures/Clothing/Eyes/Hud/sec.rsi/equipped-EYES.png create mode 100644 Resources/Textures/Clothing/Eyes/Hud/sec.rsi/icon.png create mode 100644 Resources/Textures/Clothing/Eyes/Hud/sec.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Eyes/Hud/sec.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Eyes/Hud/sec.rsi/meta.json create mode 100644 Resources/Textures/Clothing/Eyes/Misc/eyepatch.rsi/equipped-EYES.png create mode 100644 Resources/Textures/Clothing/Eyes/Misc/eyepatch.rsi/icon.png create mode 100644 Resources/Textures/Clothing/Eyes/Misc/eyepatch.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Glasses/meson_scanners.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Glasses/sunglasses.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Glasses/sunglasses_sec.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Gloves/black.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Gloves/blue.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Gloves/boxing.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Gloves/boxingblue.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Gloves/boxinggreen.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Gloves/boxingyellow.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Gloves/brown.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Gloves/captain.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Gloves/gray.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Gloves/green.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Gloves/ihscombat.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Gloves/latex.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Gloves/leather.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Gloves/lightbrown.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Gloves/orange.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Gloves/powerglove.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Gloves/powerglove_active.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Gloves/purple.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Gloves/red.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Gloves/robohands.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Gloves/s_ninja.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Gloves/s_ninjak.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Gloves/s_ninjan.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Gloves/white.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Gloves/yellow.rsi/meta.json rename Resources/Textures/Clothing/{Gloves => Hands/Gloves/Color}/black.rsi/equipped-HAND.png (100%) rename Resources/Textures/Clothing/{Gloves => Hands/Gloves/Color}/black.rsi/icon.png (100%) rename Resources/Textures/Clothing/{Gloves => Hands/Gloves/Color}/black.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/{Gloves => Hands/Gloves/Color}/black.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Hands/Gloves/Color/black.rsi/meta.json rename Resources/Textures/Clothing/{Gloves => Hands/Gloves/Color}/blue.rsi/equipped-HAND.png (100%) rename Resources/Textures/Clothing/{Gloves => Hands/Gloves/Color}/blue.rsi/icon.png (100%) rename Resources/Textures/Clothing/{Gloves => Hands/Gloves/Color}/blue.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/{Gloves => Hands/Gloves/Color}/blue.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Hands/Gloves/Color/blue.rsi/meta.json rename Resources/Textures/Clothing/{Gloves => Hands/Gloves/Color}/brown.rsi/equipped-HAND.png (100%) rename Resources/Textures/Clothing/{Gloves => Hands/Gloves/Color}/brown.rsi/icon.png (100%) rename Resources/Textures/Clothing/{Gloves => Hands/Gloves/Color}/brown.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/{Gloves => Hands/Gloves/Color}/brown.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Hands/Gloves/Color/brown.rsi/meta.json rename Resources/Textures/Clothing/{Gloves => Hands/Gloves/Color}/gray.rsi/equipped-HAND.png (100%) rename Resources/Textures/Clothing/{Gloves => Hands/Gloves/Color}/gray.rsi/icon.png (100%) rename Resources/Textures/Clothing/{Gloves => Hands/Gloves/Color}/gray.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/{Gloves => Hands/Gloves/Color}/gray.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Hands/Gloves/Color/gray.rsi/meta.json rename Resources/Textures/Clothing/{Gloves => Hands/Gloves/Color}/green.rsi/equipped-HAND.png (100%) rename Resources/Textures/Clothing/{Gloves => Hands/Gloves/Color}/green.rsi/icon.png (100%) rename Resources/Textures/Clothing/{Gloves => Hands/Gloves/Color}/green.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/{Gloves => Hands/Gloves/Color}/green.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Hands/Gloves/Color/green.rsi/meta.json rename Resources/Textures/Clothing/{Gloves => Hands/Gloves/Color}/lightbrown.rsi/equipped-HAND.png (100%) rename Resources/Textures/Clothing/{Gloves => Hands/Gloves/Color}/lightbrown.rsi/icon.png (100%) rename Resources/Textures/Clothing/{Gloves => Hands/Gloves/Color}/lightbrown.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/{Gloves => Hands/Gloves/Color}/lightbrown.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Hands/Gloves/Color/lightbrown.rsi/meta.json rename Resources/Textures/Clothing/{Gloves => Hands/Gloves/Color}/orange.rsi/equipped-HAND.png (100%) rename Resources/Textures/Clothing/{Gloves => Hands/Gloves/Color}/orange.rsi/icon.png (100%) rename Resources/Textures/Clothing/{Gloves => Hands/Gloves/Color}/orange.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/{Gloves => Hands/Gloves/Color}/orange.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Hands/Gloves/Color/orange.rsi/meta.json rename Resources/Textures/Clothing/{Gloves => Hands/Gloves/Color}/purple.rsi/equipped-HAND.png (100%) rename Resources/Textures/Clothing/{Gloves => Hands/Gloves/Color}/purple.rsi/icon.png (100%) rename Resources/Textures/Clothing/{Gloves => Hands/Gloves/Color}/purple.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/{Gloves => Hands/Gloves/Color}/purple.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Hands/Gloves/Color/purple.rsi/meta.json rename Resources/Textures/Clothing/{Gloves => Hands/Gloves/Color}/red.rsi/equipped-HAND.png (100%) rename Resources/Textures/Clothing/{Gloves => Hands/Gloves/Color}/red.rsi/icon.png (100%) rename Resources/Textures/Clothing/{Gloves => Hands/Gloves/Color}/red.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/{Gloves => Hands/Gloves/Color}/red.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Hands/Gloves/Color/red.rsi/meta.json rename Resources/Textures/Clothing/{Gloves => Hands/Gloves/Color}/white.rsi/equipped-HAND.png (100%) rename Resources/Textures/Clothing/{Gloves => Hands/Gloves/Color}/white.rsi/icon.png (100%) rename Resources/Textures/Clothing/{Gloves => Hands/Gloves/Color}/white.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/{Gloves => Hands/Gloves/Color}/white.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Hands/Gloves/Color/white.rsi/meta.json rename Resources/Textures/Clothing/{Gloves => Hands/Gloves/Color}/yellow.rsi/equipped-HAND.png (100%) rename Resources/Textures/Clothing/{Gloves => Hands/Gloves/Color}/yellow.rsi/icon.png (100%) rename Resources/Textures/Clothing/{Gloves => Hands/Gloves/Color}/yellow.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/{Gloves => Hands/Gloves/Color}/yellow.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Hands/Gloves/Color/yellow.rsi/meta.json rename Resources/Textures/Clothing/{Gloves/boxingblue.rsi/equipped-HAND.png => Hands/Gloves/boxing.rsi/blue-equipped-HAND.png} (100%) rename Resources/Textures/Clothing/{Gloves/boxingblue.rsi/inhand-left.png => Hands/Gloves/boxing.rsi/blue-inhand-left.png} (100%) rename Resources/Textures/Clothing/{Gloves/boxingblue.rsi/inhand-right.png => Hands/Gloves/boxing.rsi/blue-inhand-right.png} (100%) rename Resources/Textures/Clothing/{ => Hands}/Gloves/boxing.rsi/equipped-HAND.png (100%) rename Resources/Textures/Clothing/{Gloves/boxinggreen.rsi/equipped-HAND.png => Hands/Gloves/boxing.rsi/green-equipped-HAND.png} (100%) rename Resources/Textures/Clothing/{Gloves/boxinggreen.rsi/inhand-left.png => Hands/Gloves/boxing.rsi/green-inhand-left.png} (100%) rename Resources/Textures/Clothing/{Gloves/boxinggreen.rsi/inhand-right.png => Hands/Gloves/boxing.rsi/green-inhand-right.png} (100%) rename Resources/Textures/Clothing/{Gloves/boxingblue.rsi/icon.png => Hands/Gloves/boxing.rsi/icon-blue.png} (100%) rename Resources/Textures/Clothing/{Gloves/boxinggreen.rsi/icon.png => Hands/Gloves/boxing.rsi/icon-green.png} (100%) rename Resources/Textures/Clothing/{Gloves/boxingyellow.rsi/icon.png => Hands/Gloves/boxing.rsi/icon-yellow.png} (100%) rename Resources/Textures/Clothing/{ => Hands}/Gloves/boxing.rsi/icon.png (100%) rename Resources/Textures/Clothing/{ => Hands}/Gloves/boxing.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/{ => Hands}/Gloves/boxing.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Hands/Gloves/boxing.rsi/meta.json rename Resources/Textures/Clothing/{Gloves/boxingyellow.rsi/equipped-HAND.png => Hands/Gloves/boxing.rsi/yellow-equipped-HAND.png} (100%) rename Resources/Textures/Clothing/{Gloves/boxingyellow.rsi/inhand-left.png => Hands/Gloves/boxing.rsi/yellow-inhand-left.png} (100%) rename Resources/Textures/Clothing/{Gloves/boxingyellow.rsi/inhand-right.png => Hands/Gloves/boxing.rsi/yellow-inhand-right.png} (100%) rename Resources/Textures/Clothing/{ => Hands}/Gloves/captain.rsi/equipped-HAND.png (100%) rename Resources/Textures/Clothing/{ => Hands}/Gloves/captain.rsi/icon.png (100%) rename Resources/Textures/Clothing/{ => Hands}/Gloves/captain.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/{ => Hands}/Gloves/captain.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Hands/Gloves/captain.rsi/meta.json rename Resources/Textures/Clothing/{ => Hands}/Gloves/ihscombat.rsi/equipped-HAND.png (100%) rename Resources/Textures/Clothing/{ => Hands}/Gloves/ihscombat.rsi/icon.png (100%) rename Resources/Textures/Clothing/{ => Hands}/Gloves/ihscombat.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/{ => Hands}/Gloves/ihscombat.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Hands/Gloves/ihscombat.rsi/meta.json rename Resources/Textures/Clothing/{ => Hands}/Gloves/latex.rsi/equipped-HAND.png (100%) rename Resources/Textures/Clothing/{ => Hands}/Gloves/latex.rsi/icon.png (100%) rename Resources/Textures/Clothing/{ => Hands}/Gloves/latex.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/{ => Hands}/Gloves/latex.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Hands/Gloves/latex.rsi/meta.json rename Resources/Textures/Clothing/{ => Hands}/Gloves/leather.rsi/equipped-HAND.png (100%) rename Resources/Textures/Clothing/{ => Hands}/Gloves/leather.rsi/icon.png (100%) rename Resources/Textures/Clothing/{ => Hands}/Gloves/leather.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/{ => Hands}/Gloves/leather.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Hands/Gloves/leather.rsi/meta.json rename Resources/Textures/Clothing/{ => Hands}/Gloves/powerglove.rsi/equipped-HAND.png (100%) rename Resources/Textures/Clothing/{Gloves/powerglove_active.rsi/icon.png => Hands/Gloves/powerglove.rsi/icon-on.png} (100%) rename Resources/Textures/Clothing/{ => Hands}/Gloves/powerglove.rsi/icon.png (100%) rename Resources/Textures/Clothing/{ => Hands}/Gloves/powerglove.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/{ => Hands}/Gloves/powerglove.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Hands/Gloves/powerglove.rsi/meta.json rename Resources/Textures/Clothing/{Gloves/powerglove_active.rsi/equipped-HAND.png => Hands/Gloves/powerglove.rsi/on-equipped-HAND.png} (100%) rename Resources/Textures/Clothing/{Gloves/powerglove_active.rsi/inhand-left.png => Hands/Gloves/powerglove.rsi/on-inhand-left.png} (100%) rename Resources/Textures/Clothing/{Gloves/powerglove_active.rsi/inhand-right.png => Hands/Gloves/powerglove.rsi/on-inhand-right.png} (100%) rename Resources/Textures/Clothing/{ => Hands}/Gloves/robohands.rsi/equipped-HAND.png (100%) rename Resources/Textures/Clothing/{ => Hands}/Gloves/robohands.rsi/icon.png (100%) rename Resources/Textures/Clothing/{ => Hands}/Gloves/robohands.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/{ => Hands}/Gloves/robohands.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Hands/Gloves/robohands.rsi/meta.json rename Resources/Textures/Clothing/{Gloves/s_ninja.rsi => Hands/Gloves/spaceninja.rsi}/equipped-HAND.png (100%) rename Resources/Textures/Clothing/{Gloves/s_ninjan.rsi/equipped-HAND.png => Hands/Gloves/spaceninja.rsi/green-equipped-HAND.png} (100%) rename Resources/Textures/Clothing/{Gloves/s_ninjan.rsi/inhand-left.png => Hands/Gloves/spaceninja.rsi/green-inhand-left.png} (100%) rename Resources/Textures/Clothing/{Gloves/s_ninjan.rsi/inhand-right.png => Hands/Gloves/spaceninja.rsi/green-inhand-right.png} (100%) rename Resources/Textures/Clothing/{Gloves/s_ninjan.rsi/icon.png => Hands/Gloves/spaceninja.rsi/icon-green.png} (100%) rename Resources/Textures/Clothing/{Gloves/s_ninjak.rsi/icon.png => Hands/Gloves/spaceninja.rsi/icon-red.png} (100%) rename Resources/Textures/Clothing/{Gloves/s_ninja.rsi => Hands/Gloves/spaceninja.rsi}/icon.png (100%) rename Resources/Textures/Clothing/{Gloves/s_ninja.rsi => Hands/Gloves/spaceninja.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/{Gloves/s_ninja.rsi => Hands/Gloves/spaceninja.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Hands/Gloves/spaceninja.rsi/meta.json rename Resources/Textures/Clothing/{Gloves/s_ninjak.rsi/equipped-HAND.png => Hands/Gloves/spaceninja.rsi/red-equipped-HAND.png} (100%) rename Resources/Textures/Clothing/{Gloves/s_ninjak.rsi/inhand-left.png => Hands/Gloves/spaceninja.rsi/red-inhand-left.png} (100%) rename Resources/Textures/Clothing/{Gloves/s_ninjak.rsi/inhand-right.png => Hands/Gloves/spaceninja.rsi/red-inhand-right.png} (100%) rename Resources/Textures/Clothing/Head/{ => Animals}/cat.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Animals}/cat.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Animals}/cat.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Animals}/cat.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Animals/cat.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Animals}/cat2.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Animals}/cat2.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Animals}/cat2.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Animals}/cat2.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Animals/cat2.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Animals}/cat3.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Animals}/cat3.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Animals}/cat3.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Animals}/cat3.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Animals/cat3.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Animals}/headslime.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Animals}/headslime.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Animals}/headslime.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Animals}/headslime.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Animals/headslime.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Animals}/monkey.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Animals}/monkey.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Animals}/monkey.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Animals}/monkey.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Animals/monkey.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Animals}/mouse_brown.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Animals}/mouse_brown.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Animals}/mouse_brown.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Animals}/mouse_brown.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Animals/mouse_brown.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Animals}/mouse_gray.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Animals}/mouse_gray.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Animals}/mouse_gray.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Animals}/mouse_gray.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Animals/mouse_gray.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Animals}/mouse_white.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Animals}/mouse_white.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Animals}/mouse_white.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Animals}/mouse_white.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Animals/mouse_white.rsi/meta.json create mode 100644 Resources/Textures/Clothing/Head/Bandanas/black.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/Clothing/Head/Bandanas/black.rsi/icon.png create mode 100644 Resources/Textures/Clothing/Head/Bandanas/black.rsi/icon_mask.png create mode 100644 Resources/Textures/Clothing/Head/Bandanas/black.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Head/Bandanas/black.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Head/Bandanas/black.rsi/mask-equipped-HELMET.png create mode 100644 Resources/Textures/Clothing/Head/Bandanas/black.rsi/meta.json create mode 100644 Resources/Textures/Clothing/Head/Bandanas/blue.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/Clothing/Head/Bandanas/blue.rsi/icon.png create mode 100644 Resources/Textures/Clothing/Head/Bandanas/blue.rsi/icon_mask.png create mode 100644 Resources/Textures/Clothing/Head/Bandanas/blue.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Head/Bandanas/blue.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Head/Bandanas/blue.rsi/mask-equipped-HELMET.png create mode 100644 Resources/Textures/Clothing/Head/Bandanas/blue.rsi/meta.json create mode 100644 Resources/Textures/Clothing/Head/Bandanas/botany.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/Clothing/Head/Bandanas/botany.rsi/icon.png create mode 100644 Resources/Textures/Clothing/Head/Bandanas/botany.rsi/icon_mask.png create mode 100644 Resources/Textures/Clothing/Head/Bandanas/botany.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Head/Bandanas/botany.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Head/Bandanas/botany.rsi/mask-equipped-HELMET.png create mode 100644 Resources/Textures/Clothing/Head/Bandanas/botany.rsi/meta.json create mode 100644 Resources/Textures/Clothing/Head/Bandanas/gold.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/Clothing/Head/Bandanas/gold.rsi/icon.png create mode 100644 Resources/Textures/Clothing/Head/Bandanas/gold.rsi/icon_mask.png create mode 100644 Resources/Textures/Clothing/Head/Bandanas/gold.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Head/Bandanas/gold.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Head/Bandanas/gold.rsi/mask-equipped-HELMET.png create mode 100644 Resources/Textures/Clothing/Head/Bandanas/gold.rsi/meta.json create mode 100644 Resources/Textures/Clothing/Head/Bandanas/green.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/Clothing/Head/Bandanas/green.rsi/icon.png create mode 100644 Resources/Textures/Clothing/Head/Bandanas/green.rsi/icon_mask.png create mode 100644 Resources/Textures/Clothing/Head/Bandanas/green.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Head/Bandanas/green.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Head/Bandanas/green.rsi/mask-equipped-HELMET.png create mode 100644 Resources/Textures/Clothing/Head/Bandanas/green.rsi/meta.json create mode 100644 Resources/Textures/Clothing/Head/Bandanas/grey.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/Clothing/Head/Bandanas/grey.rsi/icon.png create mode 100644 Resources/Textures/Clothing/Head/Bandanas/grey.rsi/icon_mask.png create mode 100644 Resources/Textures/Clothing/Head/Bandanas/grey.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Head/Bandanas/grey.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Head/Bandanas/grey.rsi/mask-equipped-HELMET.png create mode 100644 Resources/Textures/Clothing/Head/Bandanas/grey.rsi/meta.json create mode 100644 Resources/Textures/Clothing/Head/Bandanas/red.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/Clothing/Head/Bandanas/red.rsi/icon.png create mode 100644 Resources/Textures/Clothing/Head/Bandanas/red.rsi/icon_mask.png create mode 100644 Resources/Textures/Clothing/Head/Bandanas/red.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Head/Bandanas/red.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Head/Bandanas/red.rsi/mask-equipped-HELMET.png create mode 100644 Resources/Textures/Clothing/Head/Bandanas/red.rsi/meta.json create mode 100644 Resources/Textures/Clothing/Head/Bandanas/skull.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/Clothing/Head/Bandanas/skull.rsi/icon.png create mode 100644 Resources/Textures/Clothing/Head/Bandanas/skull.rsi/icon_mask.png create mode 100644 Resources/Textures/Clothing/Head/Bandanas/skull.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Head/Bandanas/skull.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Head/Bandanas/skull.rsi/mask-equipped-HELMET.png create mode 100644 Resources/Textures/Clothing/Head/Bandanas/skull.rsi/meta.json rename Resources/Textures/Clothing/Head/{hardhat_blue.rsi => Hardhats/blue.rsi}/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{hardhat_blue.rsi => Hardhats/blue.rsi}/icon.png (100%) rename Resources/Textures/Clothing/Head/{hardhat_blue.rsi => Hardhats/blue.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{hardhat_blue.rsi => Hardhats/blue.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Hardhats/blue.rsi/meta.json rename Resources/Textures/Clothing/Head/{hardhat_blue.rsi => Hardhats/blue.rsi}/on-equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{hardhat_blue.rsi => Hardhats/blue.rsi}/on-icon.png (100%) rename Resources/Textures/Clothing/Head/{hardhat_blue.rsi => Hardhats/blue.rsi}/on-inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{hardhat_blue.rsi => Hardhats/blue.rsi}/on-inhand-right.png (100%) rename Resources/Textures/Clothing/Head/{hardhat_orange.rsi => Hardhats/orange.rsi}/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{hardhat_orange.rsi => Hardhats/orange.rsi}/icon.png (100%) rename Resources/Textures/Clothing/Head/{hardhat_orange.rsi => Hardhats/orange.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{hardhat_orange.rsi => Hardhats/orange.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Hardhats/orange.rsi/meta.json rename Resources/Textures/Clothing/Head/{hardhat_orange.rsi => Hardhats/orange.rsi}/on-equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{hardhat_orange.rsi => Hardhats/orange.rsi}/on-icon.png (100%) rename Resources/Textures/Clothing/Head/{hardhat_orange.rsi => Hardhats/orange.rsi}/on-inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{hardhat_orange.rsi => Hardhats/orange.rsi}/on-inhand-right.png (100%) rename Resources/Textures/Clothing/Head/{hardhat_red.rsi => Hardhats/red.rsi}/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{hardhat_red.rsi => Hardhats/red.rsi}/icon.png (100%) rename Resources/Textures/Clothing/Head/{hardhat_red.rsi => Hardhats/red.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{hardhat_red.rsi => Hardhats/red.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Hardhats/red.rsi/meta.json rename Resources/Textures/Clothing/Head/{hardhat_red.rsi => Hardhats/red.rsi}/on-equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{hardhat_red.rsi => Hardhats/red.rsi}/on-icon.png (100%) rename Resources/Textures/Clothing/Head/{hardhat_red.rsi => Hardhats/red.rsi}/on-inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{hardhat_red.rsi => Hardhats/red.rsi}/on-inhand-right.png (100%) rename Resources/Textures/Clothing/Head/{hardhat_white.rsi => Hardhats/white.rsi}/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{hardhat_white.rsi => Hardhats/white.rsi}/icon.png (100%) rename Resources/Textures/Clothing/Head/{hardhat_white.rsi => Hardhats/white.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{hardhat_white.rsi => Hardhats/white.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Hardhats/white.rsi/meta.json rename Resources/Textures/Clothing/Head/{hardhat_white.rsi => Hardhats/white.rsi}/on-equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{hardhat_white.rsi => Hardhats/white.rsi}/on-icon.png (100%) rename Resources/Textures/Clothing/Head/{hardhat_white.rsi => Hardhats/white.rsi}/on-inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{hardhat_white.rsi => Hardhats/white.rsi}/on-inhand-right.png (100%) rename Resources/Textures/Clothing/Head/{hardhat_yellow.rsi => Hardhats/yellow.rsi}/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{hardhat_yellow.rsi => Hardhats/yellow.rsi}/icon.png (100%) rename Resources/Textures/Clothing/Head/{hardhat_yellow.rsi => Hardhats/yellow.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{hardhat_yellow.rsi => Hardhats/yellow.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Hardhats/yellow.rsi/meta.json rename Resources/Textures/Clothing/Head/{hardhat_yellow.rsi => Hardhats/yellow.rsi}/on-equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{hardhat_yellow.rsi => Hardhats/yellow.rsi}/on-icon.png (100%) rename Resources/Textures/Clothing/Head/{hardhat_yellow.rsi => Hardhats/yellow.rsi}/on-inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{hardhat_yellow.rsi => Hardhats/yellow.rsi}/on-inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/flash-equipped-HELMET.png create mode 100644 Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/icon-flash.png create mode 100644 Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/icon.png create mode 100644 Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Hardsuits}/capspace.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Hardsuits}/capspace.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Hardsuits}/capspace.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Hardsuits}/capspace.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Hardsuits}/deathsquad.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Hardsuits}/deathsquad.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Hardsuits}/deathsquad.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Hardsuits}/deathsquad.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Hardsuits/deathsquad.rsi/meta.json create mode 100644 Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/flash-equipped-HELMET.png create mode 100644 Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/icon-flash.png create mode 100644 Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/icon.png rename Resources/Textures/Clothing/Head/{hardsuit-white.rsi => Hardsuits/engineering-white.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{hardsuit-white.rsi => Hardsuits/engineering-white.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/meta.json rename Resources/Textures/Clothing/Head/{hardsuit-engineering.rsi => Hardsuits/engineering.rsi}/equipped-HELMET.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/flash-equipped-HELMET.png create mode 100644 Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/icon-flash.png create mode 100644 Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/icon.png rename Resources/Textures/Clothing/Head/{hardsuit-engineering.rsi => Hardsuits/engineering.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{hardsuit-engineering.rsi => Hardsuits/engineering.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/meta.json rename Resources/Textures/Clothing/Head/{ihsvoidhelm.rsi => Hardsuits/ihsvoid.rsi}/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ihsvoidhelm_on.rsi/icon.png => Hardsuits/ihsvoid.rsi/icon-on.png} (100%) rename Resources/Textures/Clothing/Head/{ihsvoidhelm.rsi => Hardsuits/ihsvoid.rsi}/icon.png (100%) rename Resources/Textures/Clothing/Head/{ihsvoidhelm.rsi => Hardsuits/ihsvoid.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ihsvoidhelm.rsi => Hardsuits/ihsvoid.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Hardsuits/ihsvoid.rsi/meta.json create mode 100644 Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/flash-equipped-HELMET.png create mode 100644 Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/icon-flash.png create mode 100644 Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/icon.png create mode 100644 Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/meta.json create mode 100644 Resources/Textures/Clothing/Head/Hardsuits/only put helmets that belong to hardsuits in here -swept create mode 100644 Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/flash-equipped-HELMET.png create mode 100644 Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/icon-flash.png create mode 100644 Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/icon.png create mode 100644 Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/meta.json create mode 100644 Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/flash-equipped-HELMET.png create mode 100644 Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/icon-flash.png create mode 100644 Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/icon.png create mode 100644 Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/meta.json create mode 100644 Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/flash-equipped-HELMET.png create mode 100644 Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/icon-flash.png create mode 100644 Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/icon.png create mode 100644 Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/meta.json create mode 100644 Resources/Textures/Clothing/Head/Hardsuits/security.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/Clothing/Head/Hardsuits/security.rsi/flash-equipped-HELMET.png create mode 100644 Resources/Textures/Clothing/Head/Hardsuits/security.rsi/icon-flash.png create mode 100644 Resources/Textures/Clothing/Head/Hardsuits/security.rsi/icon.png create mode 100644 Resources/Textures/Clothing/Head/Hardsuits/security.rsi/meta.json rename Resources/Textures/Clothing/Head/{hardsuit-syndie.rsi/equipped-HELMET.png => Hardsuits/syndicate.rsi/combat-equipped-HELMET.png} (100%) rename Resources/Textures/Clothing/Head/{hardsuit-syndie.rsi/combat-equipped-HELMET.png => Hardsuits/syndicate.rsi/equipped-HELMET.png} (100%) rename Resources/Textures/Clothing/Head/{hardsuit-syndie.rsi => Hardsuits/syndicate.rsi}/icon.png (100%) rename Resources/Textures/Clothing/Head/{hardsuit-syndie.rsi => Hardsuits/syndicate.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{hardsuit-syndie.rsi => Hardsuits/syndicate.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/meta.json rename Resources/Textures/Clothing/Head/{hardsuit-wiz.rsi => Hardsuits/wizard.rsi}/equipped-HELMET.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/flash-equipped-HELMET.png create mode 100644 Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/icon-flash.png rename Resources/Textures/Clothing/Head/{hardsuit-wiz.rsi => Hardsuits/wizard.rsi}/icon.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Hats}/beaver_hat.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/beaver_hat.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/beaver_hat.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/beaver_hat.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Hats/beaver_hat.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Hats}/beret.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/beret.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/beret.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/beret.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Hats/beret.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Hats}/beret_engineering.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/beret_engineering.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/beret_engineering.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/beret_engineering.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Hats/beret_engineering.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Hats}/beret_hos.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{beret_hos.rsi/beret_hos.png => Hats/beret_hos.rsi/icon.png} (100%) create mode 100644 Resources/Textures/Clothing/Head/Hats/beret_hos.rsi/meta.json create mode 100644 Resources/Textures/Clothing/Head/Hats/beret_warden.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/Clothing/Head/Hats/beret_warden.rsi/icon.png create mode 100644 Resources/Textures/Clothing/Head/Hats/beret_warden.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Hats}/bowler_hat.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/bowler_hat.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/bowler_hat.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/bowler_hat.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Hats/bowler_hat.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Hats}/brownfedora.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/brownfedora.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/brownfedora.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/brownfedora.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Hats/brownfedora.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Hats}/captain.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/captain.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/captain.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/captain.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Hats/captain.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Hats}/cardborg_h.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/cardborg_h.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/cardborg_h.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/cardborg_h.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Hats/cardborg_h.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Hats}/centcom.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/centcom.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/centcom.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/centcom.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Hats/centcom.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Hats}/chefhat.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/chefhat.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/chefhat.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/chefhat.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Hats/chefhat.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Hats}/fez.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/fez.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/fez.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/fez.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Hats/fez.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Hats}/greyfedora.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/greyfedora.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/greyfedora.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/greyfedora.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Hats/greyfedora.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Hats}/hopcap.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/hopcap.rsi/hopcap.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/hopcap.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/hopcap.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/hopcap.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Hats/hopcap.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Hats}/hoshat.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/hoshat.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/hoshat.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/hoshat.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Hats/hoshat.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Hats}/paper.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/paper.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/paper.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/paper.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Hats/paper.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Hats}/pirate.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/pirate.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/pirate.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/pirate.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Hats/pirate.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Hats}/plaguedoctor.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/plaguedoctor.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/plaguedoctor.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/plaguedoctor.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Hats/plaguedoctor.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Hats}/redwizard.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/redwizard.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/redwizard.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/redwizard.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Hats/redwizard.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Hats}/santahat.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/santahat.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/santahat.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/santahat.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Hats/santahat.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Hats}/sombrero.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/sombrero.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/sombrero.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/sombrero.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Hats/sombrero.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Hats}/surgcap_blue.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/surgcap_blue.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/surgcap_blue.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/surgcap_blue.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Hats/surgcap_blue.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Hats}/surgcap_green.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/surgcap_green.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/surgcap_green.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/surgcap_green.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Hats/surgcap_green.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Hats}/surgcap_purple.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/surgcap_purple.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/surgcap_purple.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/surgcap_purple.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Hats/surgcap_purple.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Hats}/tophat.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/tophat.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/tophat.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/tophat.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Hats/tophat.rsi/meta.json create mode 100644 Resources/Textures/Clothing/Head/Hats/ushanka.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/Clothing/Head/Hats/ushanka.rsi/icon-up.png create mode 100644 Resources/Textures/Clothing/Head/Hats/ushanka.rsi/icon.png create mode 100644 Resources/Textures/Clothing/Head/Hats/ushanka.rsi/meta.json create mode 100644 Resources/Textures/Clothing/Head/Hats/ushanka.rsi/up-equipped-HELMET.png rename Resources/Textures/Clothing/Head/{ => Hats}/violetwizard.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/violetwizard.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/violetwizard.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/violetwizard.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Hats/violetwizard.rsi/meta.json create mode 100644 Resources/Textures/Clothing/Head/Hats/warden.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/Clothing/Head/Hats/warden.rsi/icon.png create mode 100644 Resources/Textures/Clothing/Head/Hats/warden.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Hats}/witch.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/witch.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/witch.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/witch.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Hats/witch.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Hats}/witchhat.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/witchhat.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/witchhat.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/witchhat.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Hats/witchhat.rsi/meta.json rename Resources/Textures/Clothing/Head/{wizard-fake.rsi => Hats/wizard_fake.rsi}/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{wizard-fake.rsi => Hats/wizard_fake.rsi}/icon.png (100%) rename Resources/Textures/Clothing/Head/{wizard-fake.rsi => Hats/wizard_fake.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{wizard-fake.rsi => Hats/wizard_fake.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Hats/wizard_fake.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Hats}/wizardhat.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/wizardhat.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/wizardhat.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Hats}/wizardhat.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Hats/wizardhat.rsi/meta.json rename Resources/Textures/Clothing/Head/{xmashat.rsi => Hats/xmascrown.rsi}/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{xmashat.rsi => Hats/xmascrown.rsi}/icon.png (100%) rename Resources/Textures/Clothing/Head/{xmashat.rsi => Hats/xmascrown.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{xmashat.rsi => Hats/xmascrown.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Hats/xmascrown.rsi/meta.json rename Resources/Textures/Clothing/Head/{bombsuitsec.rsi => Helmets/bombsuit.rsi}/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{bombsuitsec.rsi => Helmets/bombsuit.rsi}/icon.png (100%) rename Resources/Textures/Clothing/Head/{bombsuitsec.rsi => Helmets/bombsuit.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{bombsuitsec.rsi => Helmets/bombsuit.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Helmets/bombsuit.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Helmets}/cosmonaut.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Helmets}/cosmonaut.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Helmets}/cosmonaut.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Helmets}/cosmonaut.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Helmets/cosmonaut.rsi/meta.json rename Resources/Textures/Clothing/Head/{cult_helmet.rsi => Helmets/cult.rsi}/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{cult_helmet.rsi => Helmets/cult.rsi}/icon.png (100%) rename Resources/Textures/Clothing/Head/{cult_helmet.rsi => Helmets/cult.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{cult_helmet.rsi => Helmets/cult.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Helmets/cult.rsi/meta.json rename Resources/Textures/Clothing/Head/{void.rsi => Helmets/ihvoid.rsi}/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{void.rsi => Helmets/ihvoid.rsi}/icon.png (100%) rename Resources/Textures/Clothing/Head/{void.rsi => Helmets/ihvoid.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{void.rsi => Helmets/ihvoid.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Helmets/ihvoid.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Helmets}/light_riot.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{light_riot.rsi/on-icon.png => Helmets/light_riot.rsi/icon-on.png} (100%) rename Resources/Textures/Clothing/Head/{ => Helmets}/light_riot.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Helmets}/light_riot.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Helmets}/light_riot.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Helmets/light_riot.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Helmets}/light_riot.rsi/on-equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Helmets}/light_riot.rsi/on-inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Helmets}/light_riot.rsi/on-inhand-right.png (100%) rename Resources/Textures/Clothing/Head/{ => Helmets}/scaf.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Helmets}/scaf.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Helmets}/scaf.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Helmets}/scaf.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Helmets/scaf.rsi/meta.json rename Resources/Textures/Clothing/Head/{helmet.rsi => Helmets/security.rsi}/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{helmet.rsi => Helmets/security.rsi}/icon.png (100%) rename Resources/Textures/Clothing/Head/{helmet.rsi => Helmets/security.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{helmet.rsi => Helmets/security.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Helmets/security.rsi/meta.json create mode 100644 Resources/Textures/Clothing/Head/Helmets/securityold.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/Clothing/Head/Helmets/securityold.rsi/icon.png rename Resources/Textures/Clothing/Head/{helmetold.rsi => Helmets/securityold.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{helmetold.rsi => Helmets/securityold.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Helmets/securityold.rsi/light-equipped-HELMET.png create mode 100644 Resources/Textures/Clothing/Head/Helmets/securityold.rsi/lighton-equipped-HELMET.png create mode 100644 Resources/Textures/Clothing/Head/Helmets/securityold.rsi/meta.json rename Resources/Textures/Clothing/Head/{s-ninja.rsi => Helmets/spaceninja.rsi}/equipped-HELMET.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/icon.png rename Resources/Textures/Clothing/Head/{s-ninja.rsi => Helmets/spaceninja.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{s-ninja.rsi => Helmets/spaceninja.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Helmets}/syndicate.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Helmets}/syndicate.rsi/headlight-equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Helmets}/syndicate.rsi/headlight-inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Helmets}/syndicate.rsi/headlight-inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/headlight.png create mode 100644 Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/icon.png rename Resources/Textures/Clothing/Head/{ => Helmets}/syndicate.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Helmets}/syndicate.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Helmets}/syndicate.rsi/visorlit-equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Helmets}/syndicate.rsi/visorlit-inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Helmets}/syndicate.rsi/visorlit-inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/visorlit.png create mode 100644 Resources/Textures/Clothing/Head/Helmets/templar.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/Clothing/Head/Helmets/templar.rsi/icon.png create mode 100644 Resources/Textures/Clothing/Head/Helmets/templar.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Helmets}/thunderdome.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Helmets}/thunderdome.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Helmets}/thunderdome.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Helmets}/thunderdome.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Helmets/thunderdome.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Helmets}/wizardhelm.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Helmets}/wizardhelm.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Helmets}/wizardhelm.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Helmets}/wizardhelm.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Helmets/wizardhelm.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Hoods/Bio}/bio.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Hoods/Bio}/bio.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Hoods/Bio}/bio.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Hoods/Bio}/bio.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Hoods/Bio/bio.rsi/meta.json rename Resources/Textures/Clothing/Head/{bio_cmo.rsi => Hoods/Bio/cmo.rsi}/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{bio_cmo.rsi => Hoods/Bio/cmo.rsi}/icon.png (100%) rename Resources/Textures/Clothing/Head/{bio_cmo.rsi => Hoods/Bio/cmo.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{bio_cmo.rsi => Hoods/Bio/cmo.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Hoods/Bio/cmo.rsi/meta.json rename Resources/Textures/Clothing/Head/{bio_general.rsi => Hoods/Bio/general.rsi}/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{bio_general.rsi => Hoods/Bio/general.rsi}/icon.png (100%) rename Resources/Textures/Clothing/Head/{bio_general.rsi => Hoods/Bio/general.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{bio_general.rsi => Hoods/Bio/general.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Hoods/Bio/general.rsi/meta.json rename Resources/Textures/Clothing/Head/{bio_janitor.rsi => Hoods/Bio/janitor.rsi}/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{bio_janitor.rsi => Hoods/Bio/janitor.rsi}/icon.png (100%) rename Resources/Textures/Clothing/Head/{bio_janitor.rsi => Hoods/Bio/janitor.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{bio_janitor.rsi => Hoods/Bio/janitor.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Hoods/Bio/janitor.rsi/meta.json rename Resources/Textures/Clothing/Head/{bio_scientist.rsi => Hoods/Bio/scientist.rsi}/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{bio_scientist.rsi => Hoods/Bio/scientist.rsi}/icon.png (100%) rename Resources/Textures/Clothing/Head/{bio_scientist.rsi => Hoods/Bio/scientist.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{bio_scientist.rsi => Hoods/Bio/scientist.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Hoods/Bio/scientist.rsi/meta.json rename Resources/Textures/Clothing/Head/{bio_security.rsi => Hoods/Bio/security.rsi}/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{bio_security.rsi => Hoods/Bio/security.rsi}/icon.png (100%) rename Resources/Textures/Clothing/Head/{bio_security.rsi => Hoods/Bio/security.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{bio_security.rsi => Hoods/Bio/security.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/meta.json rename Resources/Textures/Clothing/Head/{bio_virology.rsi => Hoods/Bio/virology.rsi}/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{bio_virology.rsi => Hoods/Bio/virology.rsi}/icon.png (100%) rename Resources/Textures/Clothing/Head/{bio_virology.rsi => Hoods/Bio/virology.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{bio_virology.rsi => Hoods/Bio/virology.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Hoods/Bio/virology.rsi/meta.json rename Resources/Textures/Clothing/Head/{chaplain_hood.rsi => Hoods/chaplain.rsi}/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{chaplain_hood.rsi => Hoods/chaplain.rsi}/icon.png (100%) rename Resources/Textures/Clothing/Head/{chaplain_hood.rsi => Hoods/chaplain.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{chaplain_hood.rsi => Hoods/chaplain.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Hoods/chaplain.rsi/meta.json rename Resources/Textures/Clothing/Head/{culthood.rsi => Hoods/cult.rsi}/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{culthood.rsi => Hoods/cult.rsi}/icon.png (100%) rename Resources/Textures/Clothing/Head/{culthood.rsi => Hoods/cult.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{culthood.rsi => Hoods/cult.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Hoods/cult.rsi/meta.json rename Resources/Textures/Clothing/Head/{nun_hood.rsi => Hoods/nun.rsi}/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{nun_hood.rsi => Hoods/nun.rsi}/icon.png (100%) rename Resources/Textures/Clothing/Head/{nun_hood.rsi => Hoods/nun.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{nun_hood.rsi => Hoods/nun.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Hoods/nun.rsi/meta.json create mode 100644 Resources/Textures/Clothing/Head/Hoods/rad.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/Clothing/Head/Hoods/rad.rsi/icon.png create mode 100644 Resources/Textures/Clothing/Head/Hoods/rad.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Misc}/bearpelt.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Misc}/bearpelt.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Misc}/bearpelt.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Misc}/bearpelt.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Misc/bearpelt.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Misc}/bunny.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Misc}/bunny.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Misc}/bunny.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Misc}/bunny.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Misc/bunny.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Misc}/cake.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{cake.rsi/on-icon.png => Misc/cake.rsi/icon-on.png} (100%) rename Resources/Textures/Clothing/Head/{ => Misc}/cake.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Misc}/cake.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Misc}/cake.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Misc/cake.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Misc}/cake.rsi/on-equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Misc}/cake.rsi/on-inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Misc}/cake.rsi/on-inhand-right.png (100%) rename Resources/Textures/Clothing/Head/{ => Misc}/chickenhead.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Misc}/chickenhead.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Misc}/chickenhead.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Misc}/chickenhead.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Misc/chickenhead.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Misc}/hairflower.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Misc}/hairflower.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Misc}/hairflower.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Misc}/hairflower.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Misc/hairflower.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Misc}/pumpkin.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{pumpkin.rsi/on-icon.png => Misc/pumpkin.rsi/icon-on.png} (100%) rename Resources/Textures/Clothing/Head/{ => Misc}/pumpkin.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Misc}/pumpkin.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Misc}/pumpkin.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Misc/pumpkin.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Misc}/pumpkin.rsi/on-equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Misc}/pumpkin.rsi/on-inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Misc}/pumpkin.rsi/on-inhand-right.png (100%) rename Resources/Textures/Clothing/Head/{ => Misc}/pwig.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Misc}/pwig.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Misc}/pwig.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Misc}/pwig.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Misc/pwig.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Misc}/richard.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Misc}/richard.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Misc}/richard.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Misc}/richard.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Misc/richard.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Misc}/skubhead.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Misc}/skubhead.rsi/icon.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Misc/skubhead.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Misc}/xenom.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Misc}/xenom.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Misc}/xenom.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Misc}/xenom.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Misc/xenom.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Misc}/xenos.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Misc}/xenos.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Misc}/xenos.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Misc}/xenos.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Misc/xenos.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Soft}/bluesoft.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Soft}/bluesoft.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Soft}/bluesoft.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Soft}/bluesoft.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Soft/bluesoft.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Soft}/bluesoft_flipped.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Soft}/bluesoft_flipped.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Soft}/bluesoft_flipped.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Soft}/bluesoft_flipped.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Soft/bluesoft_flipped.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Soft}/cargosoft.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Soft}/cargosoft.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Soft}/cargosoft.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Soft}/cargosoft.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Soft/cargosoft.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Soft}/cargosoft_flipped.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Soft}/cargosoft_flipped.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Soft}/cargosoft_flipped.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Soft}/cargosoft_flipped.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Soft/cargosoft_flipped.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Soft}/corpsoft.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Soft}/corpsoft.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Soft}/corpsoft.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Soft}/corpsoft.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Soft/corpsoft.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Soft}/corpsoft_flipped.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Soft}/corpsoft_flipped.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Soft}/corpsoft_flipped.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Soft}/corpsoft_flipped.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Soft/corpsoft_flipped.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Soft}/greensoft.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Soft}/greensoft.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Soft}/greensoft.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Soft}/greensoft.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Soft/greensoft.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Soft}/greensoft_flipped.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Soft}/greensoft_flipped.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Soft}/greensoft_flipped.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Soft}/greensoft_flipped.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Soft/greensoft_flipped.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Soft}/greysoft.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Soft}/greysoft.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Soft}/greysoft.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Soft}/greysoft.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Soft/greysoft.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Soft}/greysoft_flipped.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Soft}/greysoft_flipped.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Soft}/greysoft_flipped.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Soft}/greysoft_flipped.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Soft/greysoft_flipped.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Soft}/mimesoft.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Soft}/mimesoft.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Soft}/mimesoft.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Soft}/mimesoft.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Soft/mimesoft.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Soft}/mimesoft_flipped.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Soft}/mimesoft_flipped.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Soft}/mimesoft_flipped.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Soft}/mimesoft_flipped.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Soft/mimesoft_flipped.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Soft}/orangesoft.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Soft}/orangesoft.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Soft}/orangesoft.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Soft}/orangesoft.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Soft/orangesoft.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Soft}/orangesoft_flipped.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Soft}/orangesoft_flipped.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Soft}/orangesoft_flipped.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Soft}/orangesoft_flipped.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Soft/orangesoft_flipped.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Soft}/purplesoft.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Soft}/purplesoft.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Soft}/purplesoft.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Soft}/purplesoft.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Soft/purplesoft.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Soft}/purplesoft_flipped.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Soft}/purplesoft_flipped.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Soft}/purplesoft_flipped.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Soft}/purplesoft_flipped.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Soft/purplesoft_flipped.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Soft}/redsoft.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Soft}/redsoft.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Soft}/redsoft.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Soft}/redsoft.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Soft/redsoft.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Soft}/redsoft_flipped.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Soft}/redsoft_flipped.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Soft}/redsoft_flipped.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Soft}/redsoft_flipped.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Soft/redsoft_flipped.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Soft}/secsoft.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Soft}/secsoft.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Soft}/secsoft.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Soft}/secsoft.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Soft/secsoft.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Soft}/secsoft_flipped.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Soft}/secsoft_flipped.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Soft}/secsoft_flipped.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Soft}/secsoft_flipped.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Soft/secsoft_flipped.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Soft}/yellowsoft.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Soft}/yellowsoft.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Soft}/yellowsoft.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Soft}/yellowsoft.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Soft/yellowsoft.rsi/meta.json rename Resources/Textures/Clothing/Head/{ => Soft}/yellowsoft_flipped.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{ => Soft}/yellowsoft_flipped.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Soft}/yellowsoft_flipped.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Soft}/yellowsoft_flipped.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Soft/yellowsoft_flipped.rsi/meta.json rename Resources/Textures/Clothing/Head/{blue_flame_welding_mask_1.rsi => Welding/blue_flame_welding_mask.rsi}/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{blue_flame_welding_mask_1up.rsi/icon.png => Welding/blue_flame_welding_mask.rsi/icon-up.png} (100%) rename Resources/Textures/Clothing/Head/{blue_flame_welding_mask_1.rsi => Welding/blue_flame_welding_mask.rsi}/icon.png (100%) rename Resources/Textures/Clothing/Head/{blue_flame_welding_mask_1.rsi => Welding/blue_flame_welding_mask.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{blue_flame_welding_mask_1.rsi => Welding/blue_flame_welding_mask.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Welding/blue_flame_welding_mask.rsi/meta.json rename Resources/Textures/Clothing/Head/{blue_flame_welding_mask_1up.rsi/equipped-HELMET.png => Welding/blue_flame_welding_mask.rsi/up-equipped-HELMET.png} (100%) rename Resources/Textures/Clothing/Head/{blue_flame_welding_mask_1up.rsi/inhand-left.png => Welding/blue_flame_welding_mask.rsi/up-inhand-left.png} (100%) rename Resources/Textures/Clothing/Head/{blue_flame_welding_mask_1up.rsi/inhand-right.png => Welding/blue_flame_welding_mask.rsi/up-inhand-right.png} (100%) rename Resources/Textures/Clothing/Head/{fire_welding_mask_1.rsi => Welding/flame_welding_mask.rsi}/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{fire_welding_mask_1up.rsi/icon.png => Welding/flame_welding_mask.rsi/icon-up.png} (100%) rename Resources/Textures/Clothing/Head/{fire_welding_mask_1.rsi => Welding/flame_welding_mask.rsi}/icon.png (100%) rename Resources/Textures/Clothing/Head/{fire_welding_mask_1.rsi => Welding/flame_welding_mask.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{fire_welding_mask_1.rsi => Welding/flame_welding_mask.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Welding/flame_welding_mask.rsi/meta.json rename Resources/Textures/Clothing/Head/{fire_welding_mask_1up.rsi/equipped-HELMET.png => Welding/flame_welding_mask.rsi/up-equipped-HELMET.png} (100%) rename Resources/Textures/Clothing/Head/{fire_welding_mask_1up.rsi/inhand-left.png => Welding/flame_welding_mask.rsi/up-inhand-left.png} (100%) rename Resources/Textures/Clothing/Head/{fire_welding_mask_1up.rsi/inhand-right.png => Welding/flame_welding_mask.rsi/up-inhand-right.png} (100%) rename Resources/Textures/Clothing/Head/{ => Welding}/paintedwelding.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{paintedweldingup.rsi/icon.png => Welding/paintedwelding.rsi/icon-up.png} (100%) rename Resources/Textures/Clothing/Head/{ => Welding}/paintedwelding.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Welding}/paintedwelding.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Welding}/paintedwelding.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Welding/paintedwelding.rsi/meta.json rename Resources/Textures/Clothing/Head/{paintedweldingup.rsi/equipped-HELMET.png => Welding/paintedwelding.rsi/up-equipped-HELMET.png} (100%) rename Resources/Textures/Clothing/Head/{paintedweldingup.rsi/inhand-left.png => Welding/paintedwelding.rsi/up-inhand-left.png} (100%) rename Resources/Textures/Clothing/Head/{paintedweldingup.rsi/inhand-right.png => Welding/paintedwelding.rsi/up-inhand-right.png} (100%) rename Resources/Textures/Clothing/Head/{ => Welding}/welding.rsi/equipped-HELMET.png (100%) rename Resources/Textures/Clothing/Head/{weldingup.rsi/icon.png => Welding/welding.rsi/icon-up.png} (100%) rename Resources/Textures/Clothing/Head/{ => Welding}/welding.rsi/icon.png (100%) rename Resources/Textures/Clothing/Head/{ => Welding}/welding.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Head/{ => Welding}/welding.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Head/Welding/welding.rsi/meta.json rename Resources/Textures/Clothing/Head/{weldingup.rsi/equipped-HELMET.png => Welding/welding.rsi/up-equipped-HELMET.png} (100%) rename Resources/Textures/Clothing/Head/{weldingup.rsi/inhand-left.png => Welding/welding.rsi/up-inhand-left.png} (100%) rename Resources/Textures/Clothing/Head/{weldingup.rsi/inhand-right.png => Welding/welding.rsi/up-inhand-right.png} (100%) delete mode 100644 Resources/Textures/Clothing/Head/atmos_helm.rsi/equipped-HELMET.png delete mode 100644 Resources/Textures/Clothing/Head/atmos_helm.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/Head/atmos_helm.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/Head/atmos_helm.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/Head/atmos_helm.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/bandana.rsi/equipped-HELMET.png delete mode 100644 Resources/Textures/Clothing/Head/bandana.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/Head/bandana.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/Head/bandana.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/Head/bandana.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/bandblack.rsi/equipped-HELMET.png delete mode 100644 Resources/Textures/Clothing/Head/bandblack.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/Head/bandblack.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/Head/bandblack.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/Head/bandblack.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/bandblue.rsi/equipped-HELMET.png delete mode 100644 Resources/Textures/Clothing/Head/bandblue.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/Head/bandblue.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/Head/bandblue.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/Head/bandblue.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/bandbotany.rsi/equipped-HELMET.png delete mode 100644 Resources/Textures/Clothing/Head/bandbotany.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/Head/bandbotany.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/Head/bandbotany.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/Head/bandbotany.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/bandcamo.rsi/equipped-HELMET.png delete mode 100644 Resources/Textures/Clothing/Head/bandcamo.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/Head/bandcamo.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/Head/bandcamo.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/Head/bandcamo.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/bandgold.rsi/equipped-HELMET.png delete mode 100644 Resources/Textures/Clothing/Head/bandgold.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/Head/bandgold.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/Head/bandgold.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/Head/bandgold.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/bandgreen.rsi/equipped-HELMET.png delete mode 100644 Resources/Textures/Clothing/Head/bandgreen.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/Head/bandgreen.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/Head/bandgreen.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/Head/bandgreen.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/bandorange.rsi/equipped-HELMET.png delete mode 100644 Resources/Textures/Clothing/Head/bandorange.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/Head/bandorange.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/Head/bandorange.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/Head/bandorange.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/bandpurple.rsi/equipped-HELMET.png delete mode 100644 Resources/Textures/Clothing/Head/bandpurple.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/Head/bandpurple.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/Head/bandpurple.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/Head/bandpurple.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/bandred.rsi/equipped-HELMET.png delete mode 100644 Resources/Textures/Clothing/Head/bandred.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/Head/bandred.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/Head/bandred.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/Head/bandred.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/bandskull.rsi/equipped-HELMET.png delete mode 100644 Resources/Textures/Clothing/Head/bandskull.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/Head/bandskull.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/Head/bandskull.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/Head/bandskull.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/bearpelt.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/beaver_hat.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/beret.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/beret_engineering.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/beret_hos.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/beret_warden.rsi/equipped-HELMET.png delete mode 100644 Resources/Textures/Clothing/Head/beret_warden.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/Head/beret_warden.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/Head/beret_warden.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/Head/beret_warden.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/bio.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/bio_cmo.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/bio_general.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/bio_janitor.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/bio_scientist.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/bio_security.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/bio_virology.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/blue_flame_welding_mask_1.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/blue_flame_welding_mask_1up.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/bluesoft.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/bluesoft_flipped.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/boater_hat.rsi/equipped-HELMET.png delete mode 100644 Resources/Textures/Clothing/Head/boater_hat.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/Head/boater_hat.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/Head/boater_hat.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/Head/boater_hat.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/bombsuit.rsi/equipped-HELMET.png delete mode 100644 Resources/Textures/Clothing/Head/bombsuit.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/Head/bombsuit.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/Head/bombsuit.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/Head/bombsuit.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/bombsuit_white.rsi/equipped-HELMET.png delete mode 100644 Resources/Textures/Clothing/Head/bombsuit_white.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/Head/bombsuit_white.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/Head/bombsuit_white.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/Head/bombsuit_white.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/bombsuitsec.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/bowler.rsi/equipped-HELMET.png delete mode 100644 Resources/Textures/Clothing/Head/bowler.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/Head/bowler.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/Head/bowler.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/Head/bowler.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/bowler_hat.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/brownfedora.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/bunny.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/cake.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/capcap.rsi/equipped-HELMET.png delete mode 100644 Resources/Textures/Clothing/Head/capcap.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/Head/capcap.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/Head/capcap.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/Head/capcap.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/capspace.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/captain.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/cardborg_h.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/cargosoft.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/cargosoft_flipped.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/cat.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/cat2.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/cat3.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/centcom.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/chaplain_hood.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/chefhat.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/chickenhead.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/corpsoft.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/corpsoft_flipped.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/cosmonaut.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/cowboy.rsi/equipped-HELMET.png delete mode 100644 Resources/Textures/Clothing/Head/cowboy.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/Head/cowboy.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/Head/cowboy.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/Head/cowboy.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/cult_helmet.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/culthood.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/deathsquad.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/fez.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/fire_welding_mask_1.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/fire_welding_mask_1up.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/gladiator.rsi/equipped-HELMET.png delete mode 100644 Resources/Textures/Clothing/Head/gladiator.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/Head/gladiator.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/Head/gladiator.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/Head/gladiator.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/greenbandana.rsi/equipped-HELMET.png delete mode 100644 Resources/Textures/Clothing/Head/greenbandana.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/Head/greenbandana.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/Head/greenbandana.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/Head/greenbandana.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/greensoft.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/greensoft_flipped.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/greyfedora.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/greysoft.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/greysoft_flipped.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/hairflower.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/hardhat_blue.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/hardhat_orange.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/hardhat_red.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/hardhat_white.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/hardhat_yellow.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/hardsuit-atmos.rsi/equipped-HELMET.png delete mode 100644 Resources/Textures/Clothing/Head/hardsuit-atmos.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/Head/hardsuit-atmos.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/Head/hardsuit-atmos.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/Head/hardsuit-atmos.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/hardsuit-engineering.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/Head/hardsuit-engineering.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/hardsuit-hazardhardsuit.rsi/equipped-HELMET.png delete mode 100644 Resources/Textures/Clothing/Head/hardsuit-hazardhardsuit.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/Head/hardsuit-hazardhardsuit.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/Head/hardsuit-hazardhardsuit.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/Head/hardsuit-hazardhardsuit.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/hardsuit-medical.rsi/equipped-HELMET.png delete mode 100644 Resources/Textures/Clothing/Head/hardsuit-medical.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/Head/hardsuit-medical.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/Head/hardsuit-medical.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/Head/hardsuit-medical.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/hardsuit-mining.rsi/equipped-HELMET.png delete mode 100644 Resources/Textures/Clothing/Head/hardsuit-mining.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/Head/hardsuit-mining.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/Head/hardsuit-mining.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/Head/hardsuit-mining.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/hardsuit-old.rsi/equipped-HELMET.png delete mode 100644 Resources/Textures/Clothing/Head/hardsuit-old.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/Head/hardsuit-old.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/Head/hardsuit-old.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/Head/hardsuit-old.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/hardsuit-sectg.rsi/equipped-HELMET.png delete mode 100644 Resources/Textures/Clothing/Head/hardsuit-sectg.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/Head/hardsuit-sectg.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/Head/hardsuit-sectg.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/Head/hardsuit-sectg.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/hardsuit-syndie.rsi/combat-inhand-left.png delete mode 100644 Resources/Textures/Clothing/Head/hardsuit-syndie.rsi/combat-inhand-right.png delete mode 100644 Resources/Textures/Clothing/Head/hardsuit-syndie.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/hardsuit-white.rsi/equipped-HELMET.png delete mode 100644 Resources/Textures/Clothing/Head/hardsuit-white.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/Head/hardsuit-white.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/hardsuit-wiz.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/Head/hardsuit-wiz.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/Head/hardsuit-wiz.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/hardsuit0-atmos.rsi/equipped-HELMET.png delete mode 100644 Resources/Textures/Clothing/Head/hardsuit0-atmos.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/Head/hardsuit0-atmos.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/Head/hardsuit0-atmos.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/Head/hardsuit0-atmos.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/hardsuit0-engineering.rsi/equipped-HELMET.png delete mode 100644 Resources/Textures/Clothing/Head/hardsuit0-engineering.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/Head/hardsuit0-engineering.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/Head/hardsuit0-engineering.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/Head/hardsuit0-engineering.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/hardsuit0-hazardhardsuit.rsi/equipped-HELMET.png delete mode 100644 Resources/Textures/Clothing/Head/hardsuit0-hazardhardsuit.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/Head/hardsuit0-hazardhardsuit.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/Head/hardsuit0-hazardhardsuit.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/Head/hardsuit0-hazardhardsuit.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/hardsuit0-medical.rsi/equipped-HELMET.png delete mode 100644 Resources/Textures/Clothing/Head/hardsuit0-medical.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/Head/hardsuit0-medical.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/Head/hardsuit0-medical.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/Head/hardsuit0-medical.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/hardsuit0-mining.rsi/equipped-HELMET.png delete mode 100644 Resources/Textures/Clothing/Head/hardsuit0-mining.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/Head/hardsuit0-mining.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/Head/hardsuit0-mining.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/Head/hardsuit0-mining.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/hardsuit0-sectg.rsi/equipped-HELMET.png delete mode 100644 Resources/Textures/Clothing/Head/hardsuit0-sectg.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/Head/hardsuit0-sectg.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/Head/hardsuit0-sectg.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/Head/hardsuit0-sectg.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/hardsuit0-syndie.rsi/equipped-HELMET.png delete mode 100644 Resources/Textures/Clothing/Head/hardsuit0-syndie.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/Head/hardsuit0-syndie.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/Head/hardsuit0-syndie.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/Head/hardsuit0-syndie.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/hardsuit0-white.rsi/equipped-HELMET.png delete mode 100644 Resources/Textures/Clothing/Head/hardsuit0-white.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/Head/hardsuit0-white.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/Head/hardsuit0-white.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/Head/hardsuit0-white.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/hardsuit0-wiz.rsi/equipped-HELMET.png delete mode 100644 Resources/Textures/Clothing/Head/hardsuit0-wiz.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/Head/hardsuit0-wiz.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/Head/hardsuit0-wiz.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/Head/hardsuit0-wiz.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/headslime.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/helmet.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/helmetold.rsi/equipped-HELMET.png delete mode 100644 Resources/Textures/Clothing/Head/helmetold.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/Head/helmetold.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/hopcap.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/hoshat.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/ihsvoidhelm.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/ihsvoidhelm_on.rsi/equipped-HELMET.png delete mode 100644 Resources/Textures/Clothing/Head/ihsvoidhelm_on.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/Head/ihsvoidhelm_on.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/Head/ihsvoidhelm_on.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/light_riot.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/medical_helm.rsi/equipped-HELMET.png delete mode 100644 Resources/Textures/Clothing/Head/medical_helm.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/Head/medical_helm.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/Head/medical_helm.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/Head/medical_helm.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/mimesoft.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/mimesoft_flipped.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/monkey.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/mouse_brown.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/mouse_gray.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/mouse_white.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/nightvis.rsi/equipped-HELMET.png delete mode 100644 Resources/Textures/Clothing/Head/nightvis.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/Head/nightvis.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/Head/nightvis.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/Head/nightvis.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/nun_hood.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/nursehat.rsi/equipped-HELMET.png delete mode 100644 Resources/Textures/Clothing/Head/nursehat.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/Head/nursehat.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/Head/nursehat.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/Head/nursehat.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/nymph.rsi/equipped-HELMET.png delete mode 100644 Resources/Textures/Clothing/Head/nymph.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/Head/nymph.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/Head/nymph.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/Head/nymph.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/orange_bandana.rsi/equipped-HELMET.png delete mode 100644 Resources/Textures/Clothing/Head/orange_bandana.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/Head/orange_bandana.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/Head/orange_bandana.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/Head/orange_bandana.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/orangesoft.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/orangesoft_flipped.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/pai-cat.rsi/equipped-HELMET.png delete mode 100644 Resources/Textures/Clothing/Head/pai-cat.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/Head/pai-cat.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/Head/pai-cat.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/Head/pai-cat.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/pai-monkey.rsi/equipped-HELMET.png delete mode 100644 Resources/Textures/Clothing/Head/pai-monkey.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/Head/pai-monkey.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/Head/pai-monkey.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/Head/pai-monkey.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/pai-mouse.rsi/equipped-HELMET.png delete mode 100644 Resources/Textures/Clothing/Head/pai-mouse.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/Head/pai-mouse.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/Head/pai-mouse.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/Head/pai-mouse.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/pai-repairbot.rsi/equipped-HELMET.png delete mode 100644 Resources/Textures/Clothing/Head/pai-repairbot.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/Head/pai-repairbot.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/Head/pai-repairbot.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/Head/pai-repairbot.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/paintedwelding.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/paintedweldingup.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/paper.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/philosopher_wig.rsi/equipped-HELMET.png delete mode 100644 Resources/Textures/Clothing/Head/philosopher_wig.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/Head/philosopher_wig.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/Head/philosopher_wig.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/Head/philosopher_wig.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/pirate.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/plaguedoctor.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/pumpkin.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/purplesoft.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/purplesoft_flipped.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/pwig.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/rad.rsi/equipped-HELMET.png delete mode 100644 Resources/Textures/Clothing/Head/rad.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/Head/rad.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/Head/rad.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/Head/rad.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/redsoft.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/redsoft_flipped.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/redwizard.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/richard.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/s-ninja.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/Head/s-ninja.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/santahat.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/scaf.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/secsoft.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/secsoft_flipped.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/security.rsi/equipped-HELMET.png delete mode 100644 Resources/Textures/Clothing/Head/security.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/Head/security.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/Head/security.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/Head/security.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/skubhead.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/sombrero.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/surgcap_blue.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/surgcap_green.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/surgcap_purple.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/syndicate.rsi/headlight.png delete mode 100644 Resources/Textures/Clothing/Head/syndicate.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/Head/syndicate.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/syndicate.rsi/visorlit.png delete mode 100644 Resources/Textures/Clothing/Head/thunderdome.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/tophat.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/ushankadown.rsi/equipped-HELMET.png delete mode 100644 Resources/Textures/Clothing/Head/ushankadown.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/Head/ushankadown.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/Head/ushankadown.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/Head/ushankadown.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/ushankaup.rsi/equipped-HELMET.png delete mode 100644 Resources/Textures/Clothing/Head/ushankaup.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/Head/ushankaup.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/Head/ushankaup.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/Head/ushankaup.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/violetwizard.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/void.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/welding.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/weldingup.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/witch.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/witchhat.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/wizard-fake.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/wizardhat.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/wizardhelm.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/xenom.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/xenos.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/xmashat.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/yellowsoft.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/yellowsoft_flipped.rsi/meta.json rename Resources/Textures/Clothing/{Masks/mask_breath.rsi => Mask/breath.rsi}/equipped-MASK.png (100%) rename Resources/Textures/Clothing/{Masks/mask_breath.rsi => Mask/breath.rsi}/icon.png (100%) create mode 100644 Resources/Textures/Clothing/Mask/breath.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Mask/breath.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Mask/breath.rsi/meta.json rename Resources/Textures/Clothing/{Masks/mask_clown.rsi => Mask/clown.rsi}/equipped-MASK.png (100%) rename Resources/Textures/Clothing/{Masks/mask_clown.rsi => Mask/clown.rsi}/icon.png (100%) rename Resources/Textures/Clothing/{Masks/mask_clown.rsi => Mask/clown.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/{Masks/mask_clown.rsi => Mask/clown.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Mask/clown.rsi/meta.json rename Resources/Textures/Clothing/{Masks/mask_gasalt.rsi => Mask/gas.rsi}/equipped-MASK.png (100%) rename Resources/Textures/Clothing/{Masks/mask_gasalt.rsi => Mask/gas.rsi}/icon.png (100%) rename Resources/Textures/Clothing/{Masks/mask_gasalt.rsi => Mask/gas.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/{Masks/mask_gasalt.rsi => Mask/gas.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Mask/gas.rsi/meta.json rename Resources/Textures/Clothing/{Masks/mask_joy.rsi => Mask/joy.rsi}/equipped-MASK.png (100%) rename Resources/Textures/Clothing/{Masks/mask_joy.rsi => Mask/joy.rsi}/icon.png (100%) create mode 100644 Resources/Textures/Clothing/Mask/joy.rsi/meta.json rename Resources/Textures/Clothing/{Masks/mask_mime.rsi => Mask/mime.rsi}/equipped-MASK.png (100%) rename Resources/Textures/Clothing/{Masks/mask_mime.rsi => Mask/mime.rsi}/icon.png (100%) create mode 100644 Resources/Textures/Clothing/Mask/mime.rsi/meta.json rename Resources/Textures/Clothing/{Masks/mask_sterile.rsi => Mask/sterile.rsi}/equipped-MASK.png (100%) rename Resources/Textures/Clothing/{Masks/mask_sterile.rsi => Mask/sterile.rsi}/icon.png (100%) create mode 100644 Resources/Textures/Clothing/Mask/sterile.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Mask/sterile.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Mask/sterile.rsi/meta.json rename Resources/Textures/Clothing/{Masks/mask_sterile.rsi => Mask/sterile.rsi}/up-equipped-MASK.png (100%) delete mode 100644 Resources/Textures/Clothing/Masks/mask_breath.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Masks/mask_clown.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Masks/mask_gas.rsi/equipped-MASK.png delete mode 100644 Resources/Textures/Clothing/Masks/mask_gas.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/Masks/mask_gas.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/Masks/mask_gas.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/Masks/mask_gas.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Masks/mask_gasalt.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Masks/mask_joy.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Masks/mask_mime.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Masks/mask_sterile.rsi/meta.json rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_NT.rsi/sheetNT-equipped-NECK.png => NT.rsi/equipped-NECK.png} (100%) rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_NT.rsi/sheetNT-inhand-left.png => NT.rsi/inhand-left.png} (100%) rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_NT.rsi/sheetNT-inhand-right.png => NT.rsi/inhand-right.png} (100%) create mode 100644 Resources/Textures/Clothing/Neck/Bedsheets/NT.rsi/meta.json rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_USA.rsi/sheetUSA-equipped-NECK.png => USA.rsi/equipped-NECK.png} (100%) rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_USA.rsi/sheetUSA-inhand-left.png => USA.rsi/inhand-left.png} (100%) rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_USA.rsi/sheetUSA-inhand-right.png => USA.rsi/inhand-right.png} (100%) create mode 100644 Resources/Textures/Clothing/Neck/Bedsheets/USA.rsi/meta.json rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_black.rsi/sheetblack-equipped-NECK.png => black.rsi/equipped-NECK.png} (100%) rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_black.rsi/sheetblack-inhand-left.png => black.rsi/inhand-left.png} (100%) rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_black.rsi/sheetblack-inhand-right.png => black.rsi/inhand-right.png} (100%) create mode 100644 Resources/Textures/Clothing/Neck/Bedsheets/black.rsi/meta.json rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_blue.rsi/sheetblue-equipped-NECK.png => blue.rsi/equipped-NECK.png} (100%) rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_blue.rsi/sheetblue-inhand-left.png => blue.rsi/inhand-left.png} (100%) rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_blue.rsi/sheetblue-inhand-right.png => blue.rsi/inhand-right.png} (100%) create mode 100644 Resources/Textures/Clothing/Neck/Bedsheets/blue.rsi/meta.json rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_brown.rsi/sheetbrown-equipped-NECK.png => brown.rsi/equipped-NECK.png} (100%) rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_brown.rsi/sheetbrown-inhand-left.png => brown.rsi/inhand-left.png} (100%) rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_brown.rsi/sheetbrown-inhand-right.png => brown.rsi/inhand-right.png} (100%) create mode 100644 Resources/Textures/Clothing/Neck/Bedsheets/brown.rsi/meta.json rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_captain.rsi/sheetcaptain-equipped-NECK.png => captain.rsi/equipped-NECK.png} (100%) rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_captain.rsi/sheetcaptain-inhand-left.png => captain.rsi/inhand-left.png} (100%) rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_captain.rsi/sheetcaptain-inhand-right.png => captain.rsi/inhand-right.png} (100%) create mode 100644 Resources/Textures/Clothing/Neck/Bedsheets/captain.rsi/meta.json rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_ce.rsi/sheetce-equipped-NECK.png => ce.rsi/equipped-NECK.png} (100%) rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_ce.rsi/sheetce-inhand-left.png => ce.rsi/inhand-left.png} (100%) rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_ce.rsi/sheetce-inhand-right.png => ce.rsi/inhand-right.png} (100%) create mode 100644 Resources/Textures/Clothing/Neck/Bedsheets/ce.rsi/meta.json rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_centcom.rsi/sheetcentcom-equipped-NECK.png => centcom.rsi/equipped-NECK.png} (100%) rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_centcom.rsi/sheetcentcom-inhand-left.png => centcom.rsi/inhand-left.png} (100%) rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_centcom.rsi/sheetcentcom-inhand-right.png => centcom.rsi/inhand-right.png} (100%) create mode 100644 Resources/Textures/Clothing/Neck/Bedsheets/centcom.rsi/meta.json rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_clown.rsi/sheetclown-equipped-NECK.png => clown.rsi/equipped-NECK.png} (100%) create mode 100644 Resources/Textures/Clothing/Neck/Bedsheets/clown.rsi/meta.json rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_cmo.rsi/sheetcmo-equipped-NECK.png => cmo.rsi/equipped-NECK.png} (100%) rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_cmo.rsi/sheetcmo-inhand-left.png => cmo.rsi/inhand-left.png} (100%) rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_cmo.rsi/sheetcmo-inhand-right.png => cmo.rsi/inhand-right.png} (100%) create mode 100644 Resources/Textures/Clothing/Neck/Bedsheets/cmo.rsi/meta.json rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_cosmos.rsi/sheetcosmos-equipped-NECK.png => cosmos.rsi/equipped-NECK.png} (100%) rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_cosmos.rsi/sheetcosmos-inhand-left.png => cosmos.rsi/inhand-left.png} (100%) rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_cosmos.rsi/sheetcosmos-inhand-right.png => cosmos.rsi/inhand-right.png} (100%) rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_cosmos.rsi => cosmos.rsi}/meta.json (84%) rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_cult.rsi/sheetcult-equipped-NECK.png => cult.rsi/equipped-NECK.png} (100%) rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_cult.rsi/sheetcult-inhand-left.png => cult.rsi/inhand-left.png} (100%) rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_cult.rsi/sheetcult-inhand-right.png => cult.rsi/inhand-right.png} (100%) rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_wiz.rsi => cult.rsi}/meta.json (50%) rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_green.rsi/sheetgreen-equipped-NECK.png => green.rsi/equipped-NECK.png} (100%) rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_green.rsi/sheetgreen-inhand-left.png => green.rsi/inhand-left.png} (100%) rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_green.rsi/sheetgreen-inhand-right.png => green.rsi/inhand-right.png} (100%) create mode 100644 Resources/Textures/Clothing/Neck/Bedsheets/green.rsi/meta.json rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_grey.rsi/sheetgrey-equipped-NECK.png => grey.rsi/equipped-NECK.png} (100%) rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_grey.rsi/sheetgrey-inhand-left.png => grey.rsi/inhand-left.png} (100%) rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_grey.rsi/sheetgrey-inhand-right.png => grey.rsi/inhand-right.png} (100%) create mode 100644 Resources/Textures/Clothing/Neck/Bedsheets/grey.rsi/meta.json rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_hop.rsi/sheethop-equipped-NECK.png => hop.rsi/equipped-NECK.png} (100%) rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_hop.rsi/sheethop-inhand-left.png => hop.rsi/inhand-left.png} (100%) rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_hop.rsi/sheethop-inhand-right.png => hop.rsi/inhand-right.png} (100%) create mode 100644 Resources/Textures/Clothing/Neck/Bedsheets/hop.rsi/meta.json rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_hos.rsi/sheethos-equipped-NECK.png => hos.rsi/equipped-NECK.png} (100%) rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_hos.rsi/sheethos-inhand-left.png => hos.rsi/inhand-left.png} (100%) rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_hos.rsi/sheethos-inhand-right.png => hos.rsi/inhand-right.png} (100%) create mode 100644 Resources/Textures/Clothing/Neck/Bedsheets/hos.rsi/meta.json rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_ian.rsi/sheetian-equipped-NECK.png => ian.rsi/equipped-NECK.png} (100%) rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_ian.rsi/sheetian-inhand-left.png => ian.rsi/inhand-left.png} (100%) rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_ian.rsi/sheetian-inhand-right.png => ian.rsi/inhand-right.png} (100%) create mode 100644 Resources/Textures/Clothing/Neck/Bedsheets/ian.rsi/meta.json rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_medical.rsi/sheetmedical-equipped-NECK.png => medical.rsi/equipped-NECK.png} (100%) rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_medical.rsi/sheetmedical-inhand-left.png => medical.rsi/inhand-left.png} (100%) rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_medical.rsi/sheetmedical-inhand-right.png => medical.rsi/inhand-right.png} (100%) create mode 100644 Resources/Textures/Clothing/Neck/Bedsheets/medical.rsi/meta.json rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_mime.rsi/sheetmime-equipped-NECK.png => mime.rsi/equipped-NECK.png} (100%) rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_mime.rsi/sheetmime-inhand-left.png => mime.rsi/inhand-left.png} (100%) rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_mime.rsi/sheetmime-inhand-right.png => mime.rsi/inhand-right.png} (100%) create mode 100644 Resources/Textures/Clothing/Neck/Bedsheets/mime.rsi/meta.json rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_orange.rsi/sheetorange-equipped-NECK.png => orange.rsi/equipped-NECK.png} (100%) rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_orange.rsi/sheetorange-inhand-left.png => orange.rsi/inhand-left.png} (100%) rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_orange.rsi/sheetorange-inhand-right.png => orange.rsi/inhand-right.png} (100%) create mode 100644 Resources/Textures/Clothing/Neck/Bedsheets/orange.rsi/meta.json rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_purple.rsi/sheetpurple-equipped-NECK.png => purple.rsi/equipped-NECK.png} (100%) rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_purple.rsi/sheetpurple-inhand-left.png => purple.rsi/inhand-left.png} (100%) rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_purple.rsi/sheetpurple-inhand-right.png => purple.rsi/inhand-right.png} (100%) create mode 100644 Resources/Textures/Clothing/Neck/Bedsheets/purple.rsi/meta.json rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_qm.rsi/sheetqm-equipped-NECK.png => qm.rsi/equipped-NECK.png} (100%) rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_qm.rsi/sheetqm-inhand-left.png => qm.rsi/inhand-left.png} (100%) rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_qm.rsi/sheetqm-inhand-right.png => qm.rsi/inhand-right.png} (100%) create mode 100644 Resources/Textures/Clothing/Neck/Bedsheets/qm.rsi/meta.json rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_rainbow.rsi/sheetrainbow-equipped-NECK.png => rainbow.rsi/equipped-NECK.png} (100%) rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_rainbow.rsi/sheetrainbow-inhand-left.png => rainbow.rsi/inhand-left.png} (100%) rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_rainbow.rsi/sheetrainbow-inhand-right.png => rainbow.rsi/inhand-right.png} (100%) create mode 100644 Resources/Textures/Clothing/Neck/Bedsheets/rainbow.rsi/meta.json rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_rd.rsi/sheetrd-equipped-NECK.png => rd.rsi/equipped-NECK.png} (100%) rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_rd.rsi/sheetrd-inhand-left.png => rd.rsi/inhand-left.png} (100%) rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_rd.rsi/sheetrd-inhand-right.png => rd.rsi/inhand-right.png} (100%) create mode 100644 Resources/Textures/Clothing/Neck/Bedsheets/rd.rsi/meta.json rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_red.rsi/sheetred-equipped-NECK.png => red.rsi/equipped-NECK.png} (100%) rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_red.rsi/sheetred-inhand-left.png => red.rsi/inhand-left.png} (100%) rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_red.rsi/sheetred-inhand-right.png => red.rsi/inhand-right.png} (100%) create mode 100644 Resources/Textures/Clothing/Neck/Bedsheets/red.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Neck/Bedsheets/sheet_NT.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Neck/Bedsheets/sheet_USA.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Neck/Bedsheets/sheet_black.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Neck/Bedsheets/sheet_blue.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Neck/Bedsheets/sheet_brown.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Neck/Bedsheets/sheet_captain.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Neck/Bedsheets/sheet_ce.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Neck/Bedsheets/sheet_centcom.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Neck/Bedsheets/sheet_clown.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Neck/Bedsheets/sheet_cmo.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Neck/Bedsheets/sheet_cult.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Neck/Bedsheets/sheet_green.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Neck/Bedsheets/sheet_grey.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Neck/Bedsheets/sheet_hop.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Neck/Bedsheets/sheet_hos.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Neck/Bedsheets/sheet_ian.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Neck/Bedsheets/sheet_medical.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Neck/Bedsheets/sheet_mime.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Neck/Bedsheets/sheet_orange.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Neck/Bedsheets/sheet_purple.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Neck/Bedsheets/sheet_qm.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Neck/Bedsheets/sheet_rainbow.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Neck/Bedsheets/sheet_rd.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Neck/Bedsheets/sheet_red.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Neck/Bedsheets/sheet_syndie.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Neck/Bedsheets/sheet_white.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Neck/Bedsheets/sheet_yellow.rsi/meta.json rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_syndie.rsi/sheetsyndie-equipped-NECK.png => syndie.rsi/equipped-NECK.png} (100%) rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_syndie.rsi/sheetsyndie-inhand-left.png => syndie.rsi/inhand-left.png} (100%) rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_syndie.rsi/sheetsyndie-inhand-right.png => syndie.rsi/inhand-right.png} (100%) create mode 100644 Resources/Textures/Clothing/Neck/Bedsheets/syndie.rsi/meta.json rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_white.rsi/sheetwhite-equipped-NECK.png => white.rsi/equipped-NECK.png} (100%) rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_white.rsi/sheetwhite-inhand-left.png => white.rsi/inhand-left.png} (100%) rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_white.rsi/sheetwhite-inhand-right.png => white.rsi/inhand-right.png} (100%) create mode 100644 Resources/Textures/Clothing/Neck/Bedsheets/white.rsi/meta.json rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_wiz.rsi/sheetwiz-equipped-NECK.png => wiz.rsi/equipped-NECK.png} (100%) rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_wiz.rsi/sheetwiz-inhand-left.png => wiz.rsi/inhand-left.png} (100%) rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_wiz.rsi/sheetwiz-inhand-right.png => wiz.rsi/inhand-right.png} (100%) create mode 100644 Resources/Textures/Clothing/Neck/Bedsheets/wiz.rsi/meta.json rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_yellow.rsi/sheetyellow-equipped-NECK.png => yellow.rsi/equipped-NECK.png} (100%) rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_yellow.rsi/sheetyellow-inhand-left.png => yellow.rsi/inhand-left.png} (100%) rename Resources/Textures/Clothing/Neck/Bedsheets/{sheet_yellow.rsi/sheetyellow-inhand-right.png => yellow.rsi/inhand-right.png} (100%) create mode 100644 Resources/Textures/Clothing/Neck/Bedsheets/yellow.rsi/meta.json rename Resources/Textures/Clothing/Neck/Cloaks/{cap_cloak.rsi/capcloak-equipped-NECK.png => cap.rsi/equipped-NECK.png} (100%) rename Resources/Textures/Clothing/Neck/Cloaks/{cap_cloak.rsi/capcloak.png => cap.rsi/icon.png} (100%) create mode 100644 Resources/Textures/Clothing/Neck/Cloaks/cap.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Neck/Cloaks/cap_cloak.rsi/meta.json rename Resources/Textures/Clothing/Neck/Cloaks/{ce_cloak.rsi/cecloak-equipped-NECK.png => ce.rsi/equipped-NECK.png} (100%) rename Resources/Textures/Clothing/Neck/Cloaks/{ce_cloak.rsi/cecloak.png => ce.rsi/icon.png} (100%) create mode 100644 Resources/Textures/Clothing/Neck/Cloaks/ce.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Neck/Cloaks/ce_cloak.rsi/meta.json rename Resources/Textures/Clothing/Neck/Cloaks/{cmo_cloak.rsi/cmocloak-equipped-NECK.png => cmo.rsi/equipped-NECK.png} (100%) rename Resources/Textures/Clothing/Neck/Cloaks/{cmo_cloak.rsi/cmocloak.png => cmo.rsi/icon.png} (100%) create mode 100644 Resources/Textures/Clothing/Neck/Cloaks/cmo.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Neck/Cloaks/cmo_cloak.rsi/meta.json rename Resources/Textures/Clothing/Neck/Cloaks/{herald_cloak.rsi/heraldcloak-equipped-NECK.png => herald.rsi/equipped-NECK.png} (100%) rename Resources/Textures/Clothing/Neck/Cloaks/{herald_cloak.rsi/heraldcloak.png => herald.rsi/icon.png} (100%) create mode 100644 Resources/Textures/Clothing/Neck/Cloaks/herald.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Neck/Cloaks/herald_cloak.rsi/meta.json rename Resources/Textures/Clothing/Neck/Cloaks/{hop_cloak.rsi/hopcloak-equipped-NECK.png => hop.rsi/equipped-NECK.png} (100%) rename Resources/Textures/Clothing/Neck/Cloaks/{hop_cloak.rsi/hopcloak.png => hop.rsi/icon.png} (100%) create mode 100644 Resources/Textures/Clothing/Neck/Cloaks/hop.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Neck/Cloaks/hop_cloak.rsi/meta.json rename Resources/Textures/Clothing/Neck/Cloaks/{hos_cloak.rsi/hoscloak-equipped-NECK.png => hos.rsi/equipped-NECK.png} (100%) rename Resources/Textures/Clothing/Neck/Cloaks/{hos_cloak.rsi/hoscloak.png => hos.rsi/icon.png} (100%) create mode 100644 Resources/Textures/Clothing/Neck/Cloaks/hos.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Neck/Cloaks/hos_cloak.rsi/meta.json rename Resources/Textures/Clothing/Neck/Cloaks/{qm_cloak.rsi/qmcloak-equipped-NECK.png => qm.rsi/equipped-NECK.png} (100%) rename Resources/Textures/Clothing/Neck/Cloaks/{qm_cloak.rsi/qmcloak.png => qm.rsi/icon.png} (100%) create mode 100644 Resources/Textures/Clothing/Neck/Cloaks/qm.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Neck/Cloaks/qm_cloak.rsi/meta.json rename Resources/Textures/Clothing/Neck/Cloaks/{rd_cloak.rsi/rdcloak-equipped-NECK.png => rd.rsi/equipped-NECK.png} (100%) rename Resources/Textures/Clothing/Neck/Cloaks/{rd_cloak.rsi/rdcloak.png => rd.rsi/icon.png} (100%) create mode 100644 Resources/Textures/Clothing/Neck/Cloaks/rd.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Neck/Cloaks/rd_cloak.rsi/meta.json rename Resources/Textures/Clothing/Neck/{bling.rsi/bling-equipped-NECK.png => Misc/bling.rsi/equipped-NECK.png} (100%) rename Resources/Textures/Clothing/Neck/{bling.rsi/bling.png => Misc/bling.rsi/icon.png} (100%) create mode 100644 Resources/Textures/Clothing/Neck/Misc/bling.rsi/meta.json rename Resources/Textures/Clothing/Neck/{headphones.rsi/headphones_off-equipped-NECK.png => Misc/headphones.rsi/equipped-NECK.png} (100%) rename Resources/Textures/Clothing/Neck/{headphones.rsi/headphones_off.png => Misc/headphones.rsi/icon-on.png} (100%) rename Resources/Textures/Clothing/Neck/{headphones.rsi/headphones_on.png => Misc/headphones.rsi/icon.png} (100%) rename Resources/Textures/Clothing/Neck/{headphones.rsi/headphones_on-inhand-left.png => Misc/headphones.rsi/inhand-left.png} (100%) rename Resources/Textures/Clothing/Neck/{headphones.rsi/headphones_on-inhand-right.png => Misc/headphones.rsi/inhand-right.png} (100%) create mode 100644 Resources/Textures/Clothing/Neck/Misc/headphones.rsi/meta.json rename Resources/Textures/Clothing/Neck/{headphones.rsi/headphones_on-equipped-NECK.png => Misc/headphones.rsi/on-equipped-NECK.png} (100%) rename Resources/Textures/Clothing/Neck/{stethoscope.rsi/stethoscope-equipped-NECK.png => Misc/stethoscope.rsi/equipped-NECK.png} (100%) rename Resources/Textures/Clothing/Neck/{stethoscope.rsi/stethoscope.png => Misc/stethoscope.rsi/icon.png} (100%) create mode 100644 Resources/Textures/Clothing/Neck/Misc/stethoscope.rsi/meta.json rename Resources/Textures/Clothing/Neck/Scarfs/{blue_scarf.rsi/stripedbluescarf-equipped-NECK.png => blue.rsi/equipped-NECK.png} (100%) rename Resources/Textures/Clothing/Neck/Scarfs/{blue_scarf.rsi/stripedbluescarf.png => blue.rsi/icon.png} (100%) create mode 100644 Resources/Textures/Clothing/Neck/Scarfs/blue.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Neck/Scarfs/blue_scarf.rsi/meta.json rename Resources/Textures/Clothing/Neck/Scarfs/{green_scarf.rsi/stripedgreenscarf-equipped-NECK.png => green.rsi/equipped-NECK.png} (100%) rename Resources/Textures/Clothing/Neck/Scarfs/{green_scarf.rsi/stripedgreenscarf.png => green.rsi/icon.png} (100%) create mode 100644 Resources/Textures/Clothing/Neck/Scarfs/green.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Neck/Scarfs/green_scarf.rsi/meta.json rename Resources/Textures/Clothing/Neck/Scarfs/{red_scarf.rsi/stripedredscarf-equipped-NECK.png => red.rsi/equipped-NECK.png} (100%) rename Resources/Textures/Clothing/Neck/Scarfs/{red_scarf.rsi/stripedredscarf.png => red.rsi/icon.png} (100%) create mode 100644 Resources/Textures/Clothing/Neck/Scarfs/red.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Neck/Scarfs/red_scarf.rsi/meta.json rename Resources/Textures/Clothing/Neck/Scarfs/{zebra_scarf.rsi/zebrascarf-equipped-NECK.png => zebra.rsi/equipped-NECK.png} (100%) rename Resources/Textures/Clothing/Neck/Scarfs/{zebra_scarf.rsi/zebrascarf.png => zebra.rsi/icon.png} (100%) create mode 100644 Resources/Textures/Clothing/Neck/Scarfs/zebra.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Neck/Scarfs/zebra_scarf.rsi/meta.json rename Resources/Textures/Clothing/Neck/{dettie.rsi/dettie-equipped-NECK.png => Ties/dettie.rsi/equipped-NECK.png} (100%) rename Resources/Textures/Clothing/Neck/{dettie.rsi/dettie.png => Ties/dettie.rsi/icon.png} (100%) create mode 100644 Resources/Textures/Clothing/Neck/Ties/dettie.rsi/meta.json rename Resources/Textures/Clothing/Neck/{redtie.rsi/redtie-equipped-NECK.png => Ties/redtie.rsi/equipped-NECK.png} (100%) rename Resources/Textures/Clothing/Neck/{redtie.rsi/redtie.png => Ties/redtie.rsi/icon.png} (100%) create mode 100644 Resources/Textures/Clothing/Neck/Ties/redtie.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Neck/bling.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Neck/dettie.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Neck/headphones.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Neck/redtie.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Neck/stethoscope.rsi/meta.json rename Resources/Textures/Clothing/OuterClothing/{ => Armor}/armor_reflec.rsi/equipped-OUTERCLOTHING.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Armor}/armor_reflec.rsi/icon.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Armor}/armor_reflec.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Armor}/armor_reflec.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/OuterClothing/Armor/armor_reflec.rsi/meta.json rename Resources/Textures/Clothing/OuterClothing/{ => Armor}/bulletproof.rsi/equipped-OUTERCLOTHING.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Armor}/bulletproof.rsi/icon.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Armor}/bulletproof.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Armor}/bulletproof.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/OuterClothing/Armor/bulletproof.rsi/meta.json rename Resources/Textures/Clothing/OuterClothing/{ => Armor}/cult_armour.rsi/equipped-OUTERCLOTHING.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Armor}/cult_armour.rsi/icon.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Armor}/cult_armour.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Armor}/cult_armour.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/OuterClothing/Armor/cult_armour.rsi/meta.json rename Resources/Textures/Clothing/OuterClothing/{ => Armor}/heavy.rsi/equipped-OUTERCLOTHING.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Armor}/heavy.rsi/icon.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Armor}/heavy.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Armor}/heavy.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/OuterClothing/Armor/heavy.rsi/meta.json rename Resources/Textures/Clothing/OuterClothing/{tdgreen.rsi => Armor/heavygreen.rsi}/equipped-OUTERCLOTHING.png (100%) rename Resources/Textures/Clothing/OuterClothing/{tdgreen.rsi => Armor/heavygreen.rsi}/icon.png (100%) rename Resources/Textures/Clothing/OuterClothing/{tdgreen.rsi => Armor/heavygreen.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/OuterClothing/{tdgreen.rsi => Armor/heavygreen.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/OuterClothing/Armor/heavygreen.rsi/meta.json rename Resources/Textures/Clothing/OuterClothing/{tdred.rsi => Armor/heavyred.rsi}/equipped-OUTERCLOTHING.png (100%) rename Resources/Textures/Clothing/OuterClothing/{tdred.rsi => Armor/heavyred.rsi}/icon.png (100%) rename Resources/Textures/Clothing/OuterClothing/{tdred.rsi => Armor/heavyred.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/OuterClothing/{tdred.rsi => Armor/heavyred.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/OuterClothing/Armor/heavyred.rsi/meta.json rename Resources/Textures/Clothing/OuterClothing/{ => Armor}/magusblue.rsi/equipped-OUTERCLOTHING.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Armor}/magusblue.rsi/icon.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Armor}/magusblue.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Armor}/magusblue.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/OuterClothing/Armor/magusblue.rsi/meta.json rename Resources/Textures/Clothing/OuterClothing/{ => Armor}/magusred.rsi/equipped-OUTERCLOTHING.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Armor}/magusred.rsi/icon.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Armor}/magusred.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Armor}/magusred.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/OuterClothing/Armor/magusred.rsi/meta.json rename Resources/Textures/Clothing/OuterClothing/{ => Armor}/riot.rsi/equipped-OUTERCLOTHING.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Armor}/riot.rsi/icon.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Armor}/riot.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Armor}/riot.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/OuterClothing/Armor/riot.rsi/meta.json rename Resources/Textures/Clothing/OuterClothing/{ => Armor}/scaf.rsi/equipped-OUTERCLOTHING.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Armor}/scaf.rsi/icon.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Armor}/scaf.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Armor}/scaf.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/OuterClothing/Armor/scaf.rsi/meta.json rename Resources/Textures/Clothing/OuterClothing/{bio_cmo.rsi => Bio/cmo.rsi}/equipped-OUTERCLOTHING.png (100%) rename Resources/Textures/Clothing/OuterClothing/{bio_cmo.rsi => Bio/cmo.rsi}/icon.png (100%) rename Resources/Textures/Clothing/OuterClothing/{bio_cmo.rsi => Bio/cmo.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/OuterClothing/{bio_cmo.rsi => Bio/cmo.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/OuterClothing/Bio/cmo.rsi/meta.json rename Resources/Textures/Clothing/OuterClothing/{bio_general.rsi => Bio/general.rsi}/equipped-OUTERCLOTHING.png (100%) rename Resources/Textures/Clothing/OuterClothing/{bio_general.rsi => Bio/general.rsi}/icon.png (100%) rename Resources/Textures/Clothing/OuterClothing/{bio_general.rsi => Bio/general.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/OuterClothing/{bio_general.rsi => Bio/general.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/OuterClothing/Bio/general.rsi/meta.json rename Resources/Textures/Clothing/OuterClothing/{bio_janitor.rsi => Bio/janitor.rsi}/equipped-OUTERCLOTHING.png (100%) rename Resources/Textures/Clothing/OuterClothing/{bio_janitor.rsi => Bio/janitor.rsi}/icon.png (100%) rename Resources/Textures/Clothing/OuterClothing/{bio_janitor.rsi => Bio/janitor.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/OuterClothing/{bio_janitor.rsi => Bio/janitor.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/OuterClothing/Bio/janitor.rsi/meta.json rename Resources/Textures/Clothing/OuterClothing/{bio_scientist.rsi => Bio/scientist.rsi}/equipped-OUTERCLOTHING.png (100%) rename Resources/Textures/Clothing/OuterClothing/{bio_scientist.rsi => Bio/scientist.rsi}/icon.png (100%) rename Resources/Textures/Clothing/OuterClothing/{bio_scientist.rsi => Bio/scientist.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/OuterClothing/{bio_scientist.rsi => Bio/scientist.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/OuterClothing/Bio/scientist.rsi/meta.json rename Resources/Textures/Clothing/OuterClothing/{bio_security.rsi => Bio/security.rsi}/equipped-OUTERCLOTHING.png (100%) rename Resources/Textures/Clothing/OuterClothing/{bio_security.rsi => Bio/security.rsi}/icon.png (100%) rename Resources/Textures/Clothing/OuterClothing/{bio_security.rsi => Bio/security.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/OuterClothing/{bio_security.rsi => Bio/security.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/meta.json rename Resources/Textures/Clothing/OuterClothing/{bio_virology.rsi => Bio/virology.rsi}/equipped-OUTERCLOTHING.png (100%) rename Resources/Textures/Clothing/OuterClothing/{bio_virology.rsi => Bio/virology.rsi}/icon.png (100%) rename Resources/Textures/Clothing/OuterClothing/{bio_virology.rsi => Bio/virology.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/OuterClothing/{bio_virology.rsi => Bio/virology.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/OuterClothing/Bio/virology.rsi/meta.json rename Resources/Textures/Clothing/OuterClothing/{ => Coats}/bomber.rsi/equipped-OUTERCLOTHING.png (100%) rename Resources/Textures/Clothing/OuterClothing/{bomber_open.rsi/icon.png => Coats/bomber.rsi/icon-open.png} (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Coats}/bomber.rsi/icon.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Coats}/bomber.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Coats}/bomber.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/OuterClothing/Coats/bomber.rsi/meta.json rename Resources/Textures/Clothing/OuterClothing/{bomber_open.rsi/equipped-OUTERCLOTHING.png => Coats/bomber.rsi/open-equipped-OUTERCLOTHING.png} (100%) rename Resources/Textures/Clothing/OuterClothing/{bomber_open.rsi/inhand-left.png => Coats/bomber.rsi/open-inhand-left.png} (100%) rename Resources/Textures/Clothing/OuterClothing/{bomber_open.rsi/inhand-right.png => Coats/bomber.rsi/open-inhand-right.png} (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Coats}/detective.rsi/equipped-OUTERCLOTHING.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Coats}/detective.rsi/icon.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Coats}/detective.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Coats}/detective.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/OuterClothing/Coats/detective.rsi/meta.json rename Resources/Textures/Clothing/OuterClothing/{ => Coats}/gentlecoat.rsi/equipped-OUTERCLOTHING.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Coats}/gentlecoat.rsi/icon.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Coats}/gentlecoat.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Coats}/gentlecoat.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/OuterClothing/Coats/gentlecoat.rsi/meta.json rename Resources/Textures/Clothing/OuterClothing/{ => Coats}/hos_trenchcoat.rsi/equipped-OUTERCLOTHING.png (100%) rename Resources/Textures/Clothing/OuterClothing/{hos_trenchcoat.rsi/hos_trenchcoat.png => Coats/hos_trenchcoat.rsi/icon.png} (100%) create mode 100644 Resources/Textures/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/meta.json rename Resources/Textures/Clothing/OuterClothing/{ => Coats}/insp_coat.rsi/equipped-OUTERCLOTHING.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Coats}/insp_coat.rsi/icon.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Coats}/insp_coat.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Coats}/insp_coat.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/OuterClothing/Coats/insp_coat.rsi/meta.json rename Resources/Textures/Clothing/OuterClothing/{ => Coats}/jensencoat.rsi/equipped-OUTERCLOTHING.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Coats}/jensencoat.rsi/icon.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Coats}/jensencoat.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Coats}/jensencoat.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/OuterClothing/Coats/jensencoat.rsi/meta.json create mode 100644 Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/equipped-OUTERCLOTHING.png create mode 100644 Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/icon-open.png create mode 100644 Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/icon.png rename Resources/Textures/Clothing/OuterClothing/{ => Coats}/labcoat.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Coats}/labcoat.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/meta.json create mode 100644 Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/open-equipped-OUTERCLOTHING.png rename Resources/Textures/Clothing/OuterClothing/{labcoat_open.rsi/inhand-left.png => Coats/labcoat.rsi/open-inhand-left.png} (100%) rename Resources/Textures/Clothing/OuterClothing/{labcoat_open.rsi/inhand-right.png => Coats/labcoat.rsi/open-inhand-right.png} (100%) create mode 100644 Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/equipped-OUTERCLOTHING.png create mode 100644 Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/icon-open.png create mode 100644 Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/icon.png rename Resources/Textures/Clothing/OuterClothing/{ => Coats}/labcoat_chem.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Coats}/labcoat_chem.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/meta.json create mode 100644 Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/open-equipped-OUTERCLOTHING.png rename Resources/Textures/Clothing/OuterClothing/{labcoat_chem_open.rsi/inhand-left.png => Coats/labcoat_chem.rsi/open-inhand-left.png} (100%) rename Resources/Textures/Clothing/OuterClothing/{labcoat_chem_open.rsi/inhand-right.png => Coats/labcoat_chem.rsi/open-inhand-right.png} (100%) create mode 100644 Resources/Textures/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/equipped-OUTERCLOTHING.png create mode 100644 Resources/Textures/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/icon-open.png create mode 100644 Resources/Textures/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/icon.png create mode 100644 Resources/Textures/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/meta.json create mode 100644 Resources/Textures/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/open-equipped-OUTERCLOTHING.png rename Resources/Textures/Clothing/OuterClothing/{ => Coats}/pirate.rsi/equipped-OUTERCLOTHING.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Coats}/pirate.rsi/icon.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Coats}/pirate.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Coats}/pirate.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/OuterClothing/Coats/pirate.rsi/meta.json create mode 100644 Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/equipped-OUTERCLOTHING.png create mode 100644 Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/icon.png rename Resources/Textures/Clothing/{Uniforms/uniform_hos.rsi/inhand-left hand.png => OuterClothing/Coats/warden.rsi/inhand-left.png} (100%) rename Resources/Textures/Clothing/{Uniforms/uniform_hos.rsi/inhand-right hand.png => OuterClothing/Coats/warden.rsi/inhand-right.png} (100%) create mode 100644 Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/meta.json create mode 100644 Resources/Textures/Clothing/OuterClothing/Hardsuits/atmospherics.rsi/equipped-OUTERCLOTHING.png create mode 100644 Resources/Textures/Clothing/OuterClothing/Hardsuits/atmospherics.rsi/icon.png rename Resources/Textures/Clothing/OuterClothing/{hardsuit_atmos.rsi => Hardsuits/atmospherics.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/OuterClothing/{hardsuit_atmos.rsi => Hardsuits/atmospherics.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/OuterClothing/Hardsuits/atmospherics.rsi/meta.json create mode 100644 Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/equipped-OUTERCLOTHING.png create mode 100644 Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/icon.png create mode 100644 Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/meta.json rename Resources/Textures/Clothing/OuterClothing/{ => Hardsuits}/deathsquad.rsi/equipped-OUTERCLOTHING.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Hardsuits}/deathsquad.rsi/icon.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Hardsuits}/deathsquad.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Hardsuits}/deathsquad.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/OuterClothing/Hardsuits/deathsquad.rsi/meta.json rename Resources/Textures/Clothing/OuterClothing/{hardsuit_ce.rsi => Hardsuits/engineering-white.rsi}/equipped-OUTERCLOTHING.png (100%) create mode 100644 Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-white.rsi/icon.png rename Resources/Textures/Clothing/OuterClothing/{hardsuit_ce.rsi => Hardsuits/engineering-white.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/OuterClothing/{hardsuit_ce.rsi => Hardsuits/engineering-white.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-white.rsi/meta.json rename Resources/Textures/Clothing/OuterClothing/{hardsuit_engineering.rsi => Hardsuits/engineering.rsi}/equipped-OUTERCLOTHING.png (100%) create mode 100644 Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering.rsi/icon.png rename Resources/Textures/Clothing/OuterClothing/{hardsuit_engineering.rsi => Hardsuits/engineering.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/OuterClothing/{hardsuit_engineering.rsi => Hardsuits/engineering.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering.rsi/meta.json rename Resources/Textures/Clothing/OuterClothing/{ihvoidsuit.rsi => Hardsuits/ihsvoid.rsi}/equipped-OUTERCLOTHING.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ihvoidsuit.rsi => Hardsuits/ihsvoid.rsi}/icon.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ihvoidsuit.rsi => Hardsuits/ihsvoid.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ihvoidsuit.rsi => Hardsuits/ihsvoid.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/OuterClothing/Hardsuits/ihsvoid.rsi/meta.json create mode 100644 Resources/Textures/Clothing/OuterClothing/Hardsuits/medical.rsi/equipped-OUTERCLOTHING.png create mode 100644 Resources/Textures/Clothing/OuterClothing/Hardsuits/medical.rsi/icon.png create mode 100644 Resources/Textures/Clothing/OuterClothing/Hardsuits/medical.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/OuterClothing/Hardsuits/medical.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/OuterClothing/Hardsuits/medical.rsi/meta.json create mode 100644 Resources/Textures/Clothing/OuterClothing/Hardsuits/rd.rsi/equipped-OUTERCLOTHING.png create mode 100644 Resources/Textures/Clothing/OuterClothing/Hardsuits/rd.rsi/icon.png rename Resources/Textures/Clothing/{Uniforms/uniform_rnd.rsi => OuterClothing/Hardsuits/rd.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/{Uniforms/uniform_rnd.rsi => OuterClothing/Hardsuits/rd.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/OuterClothing/Hardsuits/rd.rsi/meta.json rename Resources/Textures/Clothing/OuterClothing/{hardsuit_mining.rsi => Hardsuits/salvage.rsi}/equipped-OUTERCLOTHING.png (100%) create mode 100644 Resources/Textures/Clothing/OuterClothing/Hardsuits/salvage.rsi/icon.png rename Resources/Textures/Clothing/OuterClothing/{hardsuit_mining.rsi => Hardsuits/salvage.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/OuterClothing/{hardsuit_mining.rsi => Hardsuits/salvage.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/OuterClothing/Hardsuits/salvage.rsi/meta.json create mode 100644 Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.rsi/equipped-OUTERCLOTHING.png create mode 100644 Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.rsi/icon.png create mode 100644 Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.rsi/meta.json create mode 100644 Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/desktop.ini create mode 100644 Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/equipped-OUTERCLOTHING.png create mode 100644 Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/icon.png create mode 100644 Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/meta.json rename Resources/Textures/Clothing/OuterClothing/{hardsuit_syndie.rsi => Hardsuits/syndicate.rsi}/equipped-OUTERCLOTHING.png (100%) create mode 100644 Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate.rsi/icon.png rename Resources/Textures/Clothing/OuterClothing/{hardsuit_syndie.rsi => Hardsuits/syndicate.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/OuterClothing/{hardsuit_syndie.rsi => Hardsuits/syndicate.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate.rsi/meta.json rename Resources/Textures/Clothing/OuterClothing/{hardsuit_wiz.rsi => Hardsuits/wizard.rsi}/equipped-OUTERCLOTHING.png (100%) create mode 100644 Resources/Textures/Clothing/OuterClothing/Hardsuits/wizard.rsi/icon.png rename Resources/Textures/Clothing/OuterClothing/{hardsuit_wiz.rsi => Hardsuits/wizard.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/OuterClothing/{hardsuit_wiz.rsi => Hardsuits/wizard.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/OuterClothing/Hardsuits/wizard.rsi/meta.json rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/apron.rsi/equipped-OUTERCLOTHING.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/apron.rsi/icon.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/apron.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/apron.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/OuterClothing/Misc/apron.rsi/meta.json rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/apronchef.rsi/equipped-OUTERCLOTHING.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/apronchef.rsi/icon.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/apronchef.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/apronchef.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/OuterClothing/Misc/apronchef.rsi/meta.json rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/black_hoodie.rsi/equipped-OUTERCLOTHING.png (100%) rename Resources/Textures/Clothing/OuterClothing/{black_hoodie_open.rsi/icon.png => Misc/black_hoodie.rsi/icon-open.png} (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/black_hoodie.rsi/icon.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/black_hoodie.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/black_hoodie.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/OuterClothing/Misc/black_hoodie.rsi/meta.json rename Resources/Textures/Clothing/OuterClothing/{black_hoodie_open.rsi/equipped-OUTERCLOTHING.png => Misc/black_hoodie.rsi/open-equipped-OUTERCLOTHING.png} (100%) rename Resources/Textures/Clothing/OuterClothing/{black_hoodie_open.rsi/inhand-left.png => Misc/black_hoodie.rsi/open-inhand-left.png} (100%) rename Resources/Textures/Clothing/OuterClothing/{black_hoodie_open.rsi/inhand-right.png => Misc/black_hoodie.rsi/open-inhand-right.png} (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/cardborg.rsi/equipped-OUTERCLOTHING.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/cardborg.rsi/icon.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/cardborg.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/cardborg.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/OuterClothing/Misc/cardborg.rsi/meta.json rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/chaplain_hoodie.rsi/equipped-OUTERCLOTHING.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/chaplain_hoodie.rsi/icon.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/chaplain_hoodie.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/chaplain_hoodie.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/OuterClothing/Misc/chaplain_hoodie.rsi/meta.json rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/chef.rsi/equipped-OUTERCLOTHING.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/chef.rsi/icon.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/chef.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/chef.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/OuterClothing/Misc/chef.rsi/meta.json rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/classicponcho.rsi/equipped-OUTERCLOTHING.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/classicponcho.rsi/icon.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/classicponcho.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/classicponcho.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/OuterClothing/Misc/classicponcho.rsi/meta.json rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/cultrobes.rsi/equipped-OUTERCLOTHING.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/cultrobes.rsi/icon.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/cultrobes.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/cultrobes.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/OuterClothing/Misc/cultrobes.rsi/meta.json rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/grey_hoodie.rsi/equipped-OUTERCLOTHING.png (100%) rename Resources/Textures/Clothing/OuterClothing/{grey_hoodie_open.rsi/icon.png => Misc/grey_hoodie.rsi/icon-open.png} (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/grey_hoodie.rsi/icon.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/grey_hoodie.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/grey_hoodie.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/OuterClothing/Misc/grey_hoodie.rsi/meta.json rename Resources/Textures/Clothing/OuterClothing/{grey_hoodie_open.rsi/equipped-OUTERCLOTHING.png => Misc/grey_hoodie.rsi/open-equipped-OUTERCLOTHING.png} (100%) rename Resources/Textures/Clothing/OuterClothing/{grey_hoodie_open.rsi/inhand-left.png => Misc/grey_hoodie.rsi/open-inhand-left.png} (100%) rename Resources/Textures/Clothing/OuterClothing/{grey_hoodie_open.rsi/inhand-right.png => Misc/grey_hoodie.rsi/open-inhand-right.png} (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/judge.rsi/equipped-OUTERCLOTHING.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/judge.rsi/icon.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/judge.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/judge.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/OuterClothing/Misc/judge.rsi/meta.json rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/poncho.rsi/equipped-OUTERCLOTHING.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/poncho.rsi/icon.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/poncho.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/poncho.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/OuterClothing/Misc/poncho.rsi/meta.json rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/redwizard.rsi/equipped-OUTERCLOTHING.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/redwizard.rsi/icon.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/redwizard.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/redwizard.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/OuterClothing/Misc/redwizard.rsi/meta.json rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/santa.rsi/equipped-OUTERCLOTHING.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/santa.rsi/icon.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/santa.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/santa.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/OuterClothing/Misc/santa.rsi/meta.json rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/skubbody.rsi/equipped-OUTERCLOTHING.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/skubbody.rsi/icon.png (100%) create mode 100644 Resources/Textures/Clothing/OuterClothing/Misc/skubbody.rsi/meta.json rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/straight_jacket.rsi/equipped-OUTERCLOTHING.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/straight_jacket.rsi/icon.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/straight_jacket.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/straight_jacket.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/OuterClothing/Misc/straight_jacket.rsi/meta.json rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/violetwizard.rsi/equipped-OUTERCLOTHING.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/violetwizard.rsi/icon.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/violetwizard.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/violetwizard.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/OuterClothing/Misc/violetwizard.rsi/meta.json rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/wizard.rsi/equipped-OUTERCLOTHING.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/wizard.rsi/icon.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/wizard.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/wizard.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/OuterClothing/Misc/wizard.rsi/meta.json rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/xenos.rsi/equipped-OUTERCLOTHING.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/xenos.rsi/icon.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/xenos.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Misc}/xenos.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/OuterClothing/Misc/xenos.rsi/meta.json rename Resources/Textures/Clothing/OuterClothing/{bombsuitsec.rsi => Suits/bombsuit.rsi}/equipped-OUTERCLOTHING.png (100%) rename Resources/Textures/Clothing/OuterClothing/{bombsuitsec.rsi => Suits/bombsuit.rsi}/icon.png (100%) rename Resources/Textures/Clothing/OuterClothing/{bombsuitsec.rsi => Suits/bombsuit.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/OuterClothing/{bombsuitsec.rsi => Suits/bombsuit.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/OuterClothing/Suits/bombsuit.rsi/meta.json rename Resources/Textures/Clothing/OuterClothing/{chickensuit.rsi => Suits/chicken.rsi}/equipped-OUTERCLOTHING.png (100%) rename Resources/Textures/Clothing/OuterClothing/{chickensuit.rsi => Suits/chicken.rsi}/icon.png (100%) rename Resources/Textures/Clothing/OuterClothing/{chickensuit.rsi => Suits/chicken.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/OuterClothing/{chickensuit.rsi => Suits/chicken.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/OuterClothing/Suits/chicken.rsi/meta.json rename Resources/Textures/Clothing/OuterClothing/{emergency_suit.rsi => Suits/emergency.rsi}/equipped-OUTERCLOTHING.png (100%) rename Resources/Textures/Clothing/OuterClothing/{emergency_suit.rsi => Suits/emergency.rsi}/icon.png (100%) rename Resources/Textures/Clothing/OuterClothing/{emergency_suit.rsi => Suits/emergency.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/OuterClothing/{emergency_suit.rsi => Suits/emergency.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/OuterClothing/Suits/emergency.rsi/meta.json create mode 100644 Resources/Textures/Clothing/OuterClothing/Suits/fire.rsi/equipped-OUTERCLOTHING.png create mode 100644 Resources/Textures/Clothing/OuterClothing/Suits/fire.rsi/icon.png rename Resources/Textures/Clothing/OuterClothing/{firesuit.rsi => Suits/fire.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/OuterClothing/{firesuit.rsi => Suits/fire.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/OuterClothing/Suits/fire.rsi/meta.json rename Resources/Textures/Clothing/OuterClothing/{monkeysuit.rsi => Suits/monkey.rsi}/equipped-OUTERCLOTHING.png (100%) rename Resources/Textures/Clothing/OuterClothing/{monkeysuit.rsi => Suits/monkey.rsi}/icon.png (100%) rename Resources/Textures/Clothing/OuterClothing/{monkeysuit.rsi => Suits/monkey.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/OuterClothing/{monkeysuit.rsi => Suits/monkey.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/OuterClothing/Suits/monkey.rsi/meta.json create mode 100644 Resources/Textures/Clothing/OuterClothing/Suits/rad.rsi/equipped-OUTERCLOTHING.png create mode 100644 Resources/Textures/Clothing/OuterClothing/Suits/rad.rsi/icon.png create mode 100644 Resources/Textures/Clothing/OuterClothing/Suits/rad.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/OuterClothing/Suits/rad.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/OuterClothing/Suits/rad.rsi/meta.json create mode 100644 Resources/Textures/Clothing/OuterClothing/Suits/spaceninja.rsi/equipped-OUTERCLOTHING.png create mode 100644 Resources/Textures/Clothing/OuterClothing/Suits/spaceninja.rsi/icon.png rename Resources/Textures/Clothing/OuterClothing/{s_ninja.rsi => Suits/spaceninja.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/OuterClothing/{s_ninja.rsi => Suits/spaceninja.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/OuterClothing/Suits/spaceninja.rsi/meta.json create mode 100644 Resources/Textures/Clothing/OuterClothing/Suits/syndicate.rsi/equipped-OUTERCLOTHING.png create mode 100644 Resources/Textures/Clothing/OuterClothing/Suits/syndicate.rsi/icon.png rename Resources/Textures/Clothing/OuterClothing/{ => Suits}/syndicate.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Suits}/syndicate.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/OuterClothing/Suits/syndicate.rsi/meta.json rename Resources/Textures/Clothing/OuterClothing/{ => Vests}/detvest.rsi/equipped-OUTERCLOTHING.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Vests}/detvest.rsi/icon.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Vests}/detvest.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Vests}/detvest.rsi/inhand-right.png (100%) rename Resources/Textures/Clothing/OuterClothing/{acolyte.rsi => Vests/detvest.rsi}/meta.json (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Vests}/hazard.rsi/equipped-OUTERCLOTHING.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Vests}/hazard.rsi/icon.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Vests}/hazard.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Vests}/hazard.rsi/inhand-right.png (100%) rename Resources/Textures/Clothing/OuterClothing/{anomaly_suit.rsi => Vests/hazard.rsi}/meta.json (100%) rename Resources/Textures/Clothing/OuterClothing/{kvest.rsi => Vests/kevlar.rsi}/equipped-OUTERCLOTHING.png (100%) rename Resources/Textures/Clothing/OuterClothing/{kvest.rsi => Vests/kevlar.rsi}/icon.png (100%) rename Resources/Textures/Clothing/OuterClothing/{kvest.rsi => Vests/kevlar.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/OuterClothing/{kvest.rsi => Vests/kevlar.rsi}/inhand-right.png (100%) rename Resources/Textures/Clothing/OuterClothing/{apron.rsi => Vests/kevlar.rsi}/meta.json (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Vests}/mercwebvest.rsi/equipped-OUTERCLOTHING.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Vests}/mercwebvest.rsi/icon.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Vests}/mercwebvest.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Vests}/mercwebvest.rsi/inhand-right.png (100%) rename Resources/Textures/Clothing/OuterClothing/{apronchef.rsi => Vests/mercwebvest.rsi}/meta.json (100%) rename Resources/Textures/Clothing/OuterClothing/{armor.rsi => Vests/oldarmor.rsi}/armor-equipped-OUTERCLOTHING.png (100%) rename Resources/Textures/Clothing/OuterClothing/{armor.rsi => Vests/oldarmor.rsi}/armor.png (100%) rename Resources/Textures/Clothing/OuterClothing/{armor.rsi => Vests/oldarmor.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/OuterClothing/{armor.rsi => Vests/oldarmor.rsi}/inhand-right.png (100%) rename Resources/Textures/Clothing/OuterClothing/{armor.rsi => Vests/oldarmor.rsi}/meta.json (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Vests}/vest.rsi/equipped-OUTERCLOTHING.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Vests}/vest.rsi/icon.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Vests}/vest.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Vests}/vest.rsi/inhand-right.png (100%) rename Resources/Textures/Clothing/OuterClothing/{armor_reflec.rsi => Vests/vest.rsi}/meta.json (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Vests}/webvest.rsi/equipped-OUTERCLOTHING.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Vests}/webvest.rsi/icon.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Vests}/webvest.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ => Vests}/webvest.rsi/inhand-right.png (100%) rename Resources/Textures/Clothing/OuterClothing/{ass_jacket.rsi => Vests/webvest.rsi}/meta.json (100%) delete mode 100644 Resources/Textures/Clothing/OuterClothing/acolyte.rsi/equipped-OUTERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/acolyte.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/acolyte.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/acolyte.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/anomaly_suit.rsi/equipped-OUTERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/anomaly_suit.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/anomaly_suit.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/anomaly_suit.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/ass_jacket.rsi/equipped-OUTERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/ass_jacket.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/ass_jacket.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/ass_jacket.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/bedsheet.rsi/equipped-OUTERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/bedsheet.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/bedsheet.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/bedsheet.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/bedsheet.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/bio.rsi/equipped-OUTERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/bio.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/bio.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/bio.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/bio.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/bio_cmo.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/bio_general.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/bio_janitor.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/bio_scientist.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/bio_security.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/bio_virology.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/black_hoodie.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/black_hoodie_open.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/bomber.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/bomber_open.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/bombsuit.rsi/equipped-OUTERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/bombsuit.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/bombsuit.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/bombsuit.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/bombsuit.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/bombsuit_white.rsi/equipped-OUTERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/bombsuit_white.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/bombsuit_white.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/bombsuit_white.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/bombsuit_white.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/bombsuitsec.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/bulletproof.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/caparmor.rsi/equipped-OUTERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/caparmor.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/caparmor.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/caparmor.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/caparmor.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/cardborg.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/cargo_jacket.rsi/equipped-OUTERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/cargo_jacket.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/cargo_jacket.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/cargo_jacket.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/cargo_jacket.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/chaplain_hoodie.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/chef.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/chickensuit.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/church_coat.rsi/equipped-OUTERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/church_coat.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/church_coat.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/church_coat.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/church_coat.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/classicponcho.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/cult_armour.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/cultrobes.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/custodian.rsi/equipped-OUTERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/custodian.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/custodian.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/custodian.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/custodian.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/deathsquad.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/detective.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/detvest.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/emergency_suit.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/firesuit.rsi/equipped-OUTERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/firesuit.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/firesuit.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/gentlecoat.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/grey_hoodie.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/grey_hoodie_open.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/hardsuit_atmos.rsi/equipped-OUTERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/hardsuit_atmos.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/hardsuit_atmos.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/hardsuit_ce.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/hardsuit_ce.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/hardsuit_engineering.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/hardsuit_engineering.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/hardsuit_hazardhardsuit.rsi/equipped-OUTERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/hardsuit_hazardhardsuit.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/hardsuit_hazardhardsuit.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/hardsuit_hazardhardsuit.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/hardsuit_hazardhardsuit.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/hardsuit_medical.rsi/equipped-OUTERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/hardsuit_medical.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/hardsuit_medical.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/hardsuit_medical.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/hardsuit_medical.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/hardsuit_mining.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/hardsuit_mining.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/hardsuit_sectg.rsi/equipped-OUTERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/hardsuit_sectg.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/hardsuit_sectg.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/hardsuit_sectg.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/hardsuit_sectg.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/hardsuit_syndie.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/hardsuit_syndie.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/hardsuit_wiz.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/hardsuit_wiz.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/hazard.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/heavy.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/hm_armorvest.rsi/equipped-OUTERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/hm_armorvest.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/hm_armorvest.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/hm_armorvest.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/hm_armorvest.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/hos.rsi/equipped-OUTERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/hos.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/hos.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/hos.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/hos.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/hos_trenchcoat.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/ihvoidsuit.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/insp_coat.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/jensencoat.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/judge.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/kvest.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/labcoat.rsi/equipped-OUTERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/labcoat.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/labcoat.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/labcoat_chem.rsi/equipped-OUTERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/labcoat_chem.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/labcoat_chem.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/labcoat_chem_open.rsi/equipped-OUTERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/labcoat_chem_open.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/labcoat_chem_open.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/labcoat_cmo.rsi/equipped-OUTERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/labcoat_cmo.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/labcoat_cmo.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/labcoat_cmo.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/labcoat_cmo.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/labcoat_cmo_open.rsi/equipped-OUTERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/labcoat_cmo_open.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/labcoat_cmo_open.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/labcoat_cmo_open.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/labcoat_cmo_open.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/labcoat_medspec.rsi/equipped-OUTERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/labcoat_medspec.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/labcoat_medspec.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/labcoat_medspec.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/labcoat_medspec.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/labcoat_medspec_open.rsi/equipped-OUTERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/labcoat_medspec_open.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/labcoat_medspec_open.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/labcoat_medspec_open.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/labcoat_medspec_open.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/labcoat_open.rsi/equipped-OUTERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/labcoat_open.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/labcoat_open.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/leather_jacket.rsi/equipped-OUTERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/leather_jacket.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/leather_jacket.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/leather_jacket.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/leather_jacket.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/magusblue.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/magusred.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/mercwebvest.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/monkeysuit.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/pirate.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/poncho.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/qm_coat.rsi/equipped-OUTERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/qm_coat.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/qm_coat.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/qm_coat.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/qm_coat.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/radsuit.rsi/equipped-OUTERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/radsuit.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/radsuit.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/radsuit.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/radsuit.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/reactive.rsi/equipped-OUTERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/reactive.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/reactive.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/reactive.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/reactive.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/reactiveoff.rsi/equipped-OUTERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/reactiveoff.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/reactiveoff.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/reactiveoff.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/reactiveoff.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/redwizard.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/riot.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/s_ninja.rsi/equipped-OUTERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/s_ninja.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/s_ninja.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/santa.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/scaf.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/skubbody.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/straight_jacket.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/surgeon.rsi/equipped-OUTERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/surgeon.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/surgeon.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/surgeon.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/surgeon.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/swat.rsi/equipped-OUTERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/swat.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/swat.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/swat.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/swat.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/syndicate.rsi/equipped-OUTERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/syndicate.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/syndicate.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/tdgreen.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/tdred.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/vest.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/violetwizard.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/void.rsi/equipped-OUTERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/void.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/void.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/void.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/void.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/webvest.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/wizard.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/OuterClothing/xenos.rsi/meta.json rename Resources/Textures/Clothing/Shoes/{ => Boots}/jackboots.rsi/equipped-FEET.png (100%) rename Resources/Textures/Clothing/Shoes/{ => Boots}/jackboots.rsi/icon.png (100%) rename Resources/Textures/Clothing/Shoes/{ => Boots}/jackboots.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Shoes/{ => Boots}/jackboots.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Shoes/Boots/jackboots.rsi/meta.json rename Resources/Textures/Clothing/Shoes/{ => Boots}/magboots.rsi/equipped-FEET.png (100%) rename Resources/Textures/Clothing/Shoes/{ => Boots}/magboots.rsi/icon-on.png (100%) rename Resources/Textures/Clothing/Shoes/{ => Boots}/magboots.rsi/icon.png (100%) rename Resources/Textures/Clothing/Shoes/{ => Boots}/magboots.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Shoes/{ => Boots}/magboots.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/meta.json rename Resources/Textures/Clothing/Shoes/{ => Boots}/magboots.rsi/on-equipped-FEET.png (100%) rename Resources/Textures/Clothing/Shoes/{ => Boots}/magboots.rsi/on-inhand-left.png (100%) rename Resources/Textures/Clothing/Shoes/{ => Boots}/magboots.rsi/on-inhand-right.png (100%) rename Resources/Textures/Clothing/Shoes/{ => Boots}/workboots.rsi/equipped-FEET.png (100%) rename Resources/Textures/Clothing/Shoes/{ => Boots}/workboots.rsi/icon.png (100%) rename Resources/Textures/Clothing/Shoes/{ => Boots}/workboots.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Shoes/{ => Boots}/workboots.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Shoes/Boots/workboots.rsi/meta.json rename Resources/Textures/Clothing/Shoes/{ => Color}/black.rsi/equipped-FEET.png (100%) rename Resources/Textures/Clothing/Shoes/{ => Color}/black.rsi/icon.png (100%) rename Resources/Textures/Clothing/Shoes/{ => Color}/black.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Shoes/{ => Color}/black.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Shoes/Color/black.rsi/meta.json rename Resources/Textures/Clothing/Shoes/{ => Color}/blue.rsi/equipped-FEET.png (100%) rename Resources/Textures/Clothing/Shoes/{ => Color}/blue.rsi/icon.png (100%) rename Resources/Textures/Clothing/Shoes/{ => Color}/blue.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Shoes/{ => Color}/blue.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Shoes/Color/blue.rsi/meta.json rename Resources/Textures/Clothing/Shoes/{ => Color}/brown.rsi/equipped-FEET.png (100%) rename Resources/Textures/Clothing/Shoes/{ => Color}/brown.rsi/icon.png (100%) rename Resources/Textures/Clothing/Shoes/{ => Color}/brown.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Shoes/{ => Color}/brown.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Shoes/Color/brown.rsi/meta.json rename Resources/Textures/Clothing/Shoes/{ => Color}/green.rsi/equipped-FEET.png (100%) rename Resources/Textures/Clothing/Shoes/{ => Color}/green.rsi/icon.png (100%) rename Resources/Textures/Clothing/Shoes/{ => Color}/green.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Shoes/{ => Color}/green.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Shoes/Color/green.rsi/meta.json rename Resources/Textures/Clothing/Shoes/{ => Color}/orange.rsi/equipped-FEET.png (100%) rename Resources/Textures/Clothing/Shoes/{ => Color}/orange.rsi/icon.png (100%) rename Resources/Textures/Clothing/Shoes/{ => Color}/orange.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Shoes/{ => Color}/orange.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Shoes/Color/orange.rsi/meta.json rename Resources/Textures/Clothing/Shoes/{ => Color}/purple.rsi/equipped-FEET.png (100%) rename Resources/Textures/Clothing/Shoes/{ => Color}/purple.rsi/icon.png (100%) rename Resources/Textures/Clothing/Shoes/{ => Color}/purple.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Shoes/{ => Color}/purple.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Shoes/Color/purple.rsi/meta.json rename Resources/Textures/Clothing/Shoes/{ => Color}/red.rsi/equipped-FEET.png (100%) rename Resources/Textures/Clothing/Shoes/{ => Color}/red.rsi/icon.png (100%) rename Resources/Textures/Clothing/Shoes/{ => Color}/red.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Shoes/{ => Color}/red.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Shoes/Color/red.rsi/meta.json rename Resources/Textures/Clothing/Shoes/{mime.rsi => Color/white.rsi}/equipped-FEET.png (100%) rename Resources/Textures/Clothing/Shoes/{mime.rsi => Color/white.rsi}/icon.png (100%) rename Resources/Textures/Clothing/Shoes/{mime.rsi => Color/white.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/Shoes/{mime.rsi => Color/white.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Shoes/Color/white.rsi/meta.json rename Resources/Textures/Clothing/Shoes/{ => Color}/yellow.rsi/equipped-FEET.png (100%) rename Resources/Textures/Clothing/Shoes/{ => Color}/yellow.rsi/icon.png (100%) rename Resources/Textures/Clothing/Shoes/{ => Color}/yellow.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Shoes/{ => Color}/yellow.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Shoes/Color/yellow.rsi/meta.json rename Resources/Textures/Clothing/Shoes/{ => Misc}/flippers.rsi/equipped-FEET.png (100%) rename Resources/Textures/Clothing/Shoes/{ => Misc}/flippers.rsi/icon.png (100%) rename Resources/Textures/Clothing/Shoes/{ => Misc}/flippers.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Shoes/{ => Misc}/flippers.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Shoes/Misc/flippers.rsi/meta.json rename Resources/Textures/Clothing/Shoes/{ => Misc}/leather.rsi/equipped-FEET.png (100%) rename Resources/Textures/Clothing/Shoes/{ => Misc}/leather.rsi/icon.png (100%) rename Resources/Textures/Clothing/Shoes/{ => Misc}/leather.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Shoes/{ => Misc}/leather.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Shoes/Misc/leather.rsi/meta.json rename Resources/Textures/Clothing/Shoes/{ => Misc}/slippers.rsi/equipped-FEET.png (100%) rename Resources/Textures/Clothing/Shoes/{ => Misc}/slippers.rsi/icon.png (100%) rename Resources/Textures/Clothing/Shoes/{ => Misc}/slippers.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Shoes/{ => Misc}/slippers.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Shoes/Misc/slippers.rsi/meta.json rename Resources/Textures/Clothing/Shoes/{ => Misc}/tourist.rsi/equipped-FEET.png (100%) rename Resources/Textures/Clothing/Shoes/{ => Misc}/tourist.rsi/icon.png (100%) rename Resources/Textures/Clothing/Shoes/{ => Misc}/tourist.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Shoes/{ => Misc}/tourist.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Shoes/Misc/tourist.rsi/meta.json rename Resources/Textures/Clothing/Shoes/{ => Specific}/chef.rsi/equipped-FEET.png (100%) rename Resources/Textures/Clothing/Shoes/{ => Specific}/chef.rsi/icon.png (100%) rename Resources/Textures/Clothing/Shoes/{ => Specific}/chef.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Shoes/{ => Specific}/chef.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Shoes/Specific/chef.rsi/meta.json rename Resources/Textures/Clothing/Shoes/{ => Specific}/clown.rsi/equipped-FEET.png (100%) rename Resources/Textures/Clothing/Shoes/{ => Specific}/clown.rsi/icon.png (100%) rename Resources/Textures/Clothing/Shoes/{ => Specific}/clown.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Shoes/{ => Specific}/clown.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Shoes/Specific/clown.rsi/meta.json rename Resources/Textures/Clothing/Shoes/{ => Specific}/cult.rsi/equipped-FEET.png (100%) rename Resources/Textures/Clothing/Shoes/{ => Specific}/cult.rsi/icon.png (100%) rename Resources/Textures/Clothing/Shoes/{ => Specific}/cult.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Shoes/{ => Specific}/cult.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Shoes/Specific/cult.rsi/meta.json rename Resources/Textures/Clothing/Shoes/{ => Specific}/galoshes.rsi/equipped-FEET.png (100%) rename Resources/Textures/Clothing/Shoes/{ => Specific}/galoshes.rsi/icon.png (100%) rename Resources/Textures/Clothing/Shoes/{ => Specific}/galoshes.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Shoes/{ => Specific}/galoshes.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Shoes/Specific/galoshes.rsi/meta.json rename Resources/Textures/Clothing/Shoes/{s_ninja.rsi => Specific/spaceninja.rsi}/equipped-FEET.png (100%) rename Resources/Textures/Clothing/Shoes/{s_ninja.rsi => Specific/spaceninja.rsi}/icon.png (100%) rename Resources/Textures/Clothing/Shoes/{s_ninja.rsi => Specific/spaceninja.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/Shoes/{s_ninja.rsi => Specific/spaceninja.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Shoes/Specific/spaceninja.rsi/meta.json rename Resources/Textures/Clothing/Shoes/{ => Specific}/swat.rsi/equipped-FEET.png (100%) rename Resources/Textures/Clothing/Shoes/{ => Specific}/swat.rsi/icon.png (100%) rename Resources/Textures/Clothing/Shoes/{ => Specific}/swat.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Shoes/{ => Specific}/swat.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Shoes/Specific/swat.rsi/meta.json rename Resources/Textures/Clothing/Shoes/{ => Specific}/wizard.rsi/equipped-FEET.png (100%) rename Resources/Textures/Clothing/Shoes/{ => Specific}/wizard.rsi/icon.png (100%) rename Resources/Textures/Clothing/Shoes/{ => Specific}/wizard.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Shoes/{ => Specific}/wizard.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Shoes/Specific/wizard.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Shoes/black.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Shoes/blue.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Shoes/boots.rsi/equipped-FEET.png delete mode 100644 Resources/Textures/Clothing/Shoes/boots.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/Shoes/boots.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/Shoes/boots.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/Shoes/boots.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Shoes/brown.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Shoes/chef.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Shoes/clown.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Shoes/cowboy.rsi/equipped-FEET.png delete mode 100644 Resources/Textures/Clothing/Shoes/cowboy.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/Shoes/cowboy.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/Shoes/cowboy.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/Shoes/cowboy.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Shoes/cult.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Shoes/detective.rsi/equipped-FEET.png delete mode 100644 Resources/Textures/Clothing/Shoes/detective.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/Shoes/detective.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/Shoes/detective.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/Shoes/detective.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Shoes/flippers.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Shoes/galoshes.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Shoes/green.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Shoes/jackboots.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Shoes/leather.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Shoes/magboots.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Shoes/mime.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Shoes/orange.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Shoes/purple.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Shoes/red.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Shoes/s_ninja.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Shoes/slippers.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Shoes/springjacks.rsi/equipped-FEET.png delete mode 100644 Resources/Textures/Clothing/Shoes/springjacks.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/Shoes/springjacks.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/Shoes/springjacks.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/Shoes/springjacks.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Shoes/swat.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Shoes/tourist.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Shoes/white.rsi/equipped-FEET.png delete mode 100644 Resources/Textures/Clothing/Shoes/white.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/Shoes/white.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/Shoes/white.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/Shoes/white.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Shoes/wizard.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Shoes/workboots.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Shoes/yellow.rsi/meta.json rename Resources/Textures/Clothing/{Shoes/beesocks.rsi => Under/Socks/bee.rsi}/equipped-FEET.png (100%) rename Resources/Textures/Clothing/{Shoes/beesocks.rsi => Under/Socks/bee.rsi}/icon.png (100%) rename Resources/Textures/Clothing/{Shoes/beesocks.rsi => Under/Socks/bee.rsi}/meta.json (56%) rename Resources/Textures/Clothing/{Shoes/codersocks.rsi => Under/Socks/coder.rsi}/equipped-FEET.png (100%) rename Resources/Textures/Clothing/{Shoes/codersocks.rsi => Under/Socks/coder.rsi}/icon.png (100%) rename Resources/Textures/Clothing/{Shoes/codersocks.rsi => Under/Socks/coder.rsi}/meta.json (56%) rename Resources/Textures/Clothing/Uniforms/{color.rsi/black_skirt-equipped-INNERCLOTHING.png => Jumpskirt/Color/black.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{color.rsi/black_skirt.png => Jumpskirt/Color/black.rsi/icon.png} (100%) rename Resources/Textures/Clothing/Uniforms/{color.rsi/black-inhand-left.png => Jumpskirt/Color/black.rsi/inhand-left.png} (100%) rename Resources/Textures/Clothing/Uniforms/{color.rsi/black-inhand-right.png => Jumpskirt/Color/black.rsi/inhand-right.png} (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/black.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{color.rsi/blue_skirt-equipped-INNERCLOTHING.png => Jumpskirt/Color/blue.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{color.rsi/blue_skirt.png => Jumpskirt/Color/blue.rsi/icon.png} (100%) rename Resources/Textures/Clothing/Uniforms/{color.rsi/blue-inhand-left.png => Jumpskirt/Color/blue.rsi/inhand-left.png} (100%) rename Resources/Textures/Clothing/Uniforms/{color.rsi/blue-inhand-right.png => Jumpskirt/Color/blue.rsi/inhand-right.png} (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/blue.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{color.rsi/brown_skirt-equipped-INNERCLOTHING.png => Jumpskirt/Color/brown.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{color.rsi/brown_skirt.png => Jumpskirt/Color/brown.rsi/icon.png} (100%) rename Resources/Textures/Clothing/Uniforms/{color.rsi/lightbrown-inhand-left.png => Jumpskirt/Color/brown.rsi/inhand-left.png} (100%) rename Resources/Textures/Clothing/Uniforms/{color.rsi/lightbrown-inhand-right.png => Jumpskirt/Color/brown.rsi/inhand-right.png} (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/brown.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{color.rsi/darkblue_skirt-equipped-INNERCLOTHING.png => Jumpskirt/Color/darkblue.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{color.rsi/darkblue_skirt.png => Jumpskirt/Color/darkblue.rsi/icon.png} (100%) rename Resources/Textures/Clothing/Uniforms/{color.rsi/darkblue-inhand-left.png => Jumpskirt/Color/darkblue.rsi/inhand-left.png} (100%) rename Resources/Textures/Clothing/Uniforms/{color.rsi/darkblue-inhand-right.png => Jumpskirt/Color/darkblue.rsi/inhand-right.png} (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/darkblue.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{color.rsi/darkgreen_skirt-equipped-INNERCLOTHING.png => Jumpskirt/Color/darkgreen.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{color.rsi/darkgreen_skirt.png => Jumpskirt/Color/darkgreen.rsi/icon.png} (100%) rename Resources/Textures/Clothing/Uniforms/{color.rsi/green-inhand-left.png => Jumpskirt/Color/darkgreen.rsi/inhand-left.png} (100%) rename Resources/Textures/Clothing/Uniforms/{color.rsi/green-inhand-right.png => Jumpskirt/Color/darkgreen.rsi/inhand-right.png} (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/darkgreen.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{color.rsi/green_skirt-equipped-INNERCLOTHING.png => Jumpskirt/Color/green.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{color.rsi/green_skirt.png => Jumpskirt/Color/green.rsi/icon.png} (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/green.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/green.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/green.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{color.rsi/grey_skirt-equipped-INNERCLOTHING.png => Jumpskirt/Color/grey.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{color.rsi/grey_skirt.png => Jumpskirt/Color/grey.rsi/icon.png} (100%) rename Resources/Textures/Clothing/Uniforms/{color.rsi/grey-inhand-left.png => Jumpskirt/Color/grey.rsi/inhand-left.png} (100%) rename Resources/Textures/Clothing/Uniforms/{color.rsi/grey-inhand-right.png => Jumpskirt/Color/grey.rsi/inhand-right.png} (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/grey.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{color.rsi/lightbrown_skirt-equipped-INNERCLOTHING.png => Jumpskirt/Color/lightbrown.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{color.rsi/lightbrown_skirt.png => Jumpskirt/Color/lightbrown.rsi/icon.png} (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/lightbrown.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/lightbrown.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/lightbrown.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{color.rsi/lightpurple_skirt-equipped-INNERCLOTHING.png => Jumpskirt/Color/lightpurple.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{color.rsi/lightpurple_skirt.png => Jumpskirt/Color/lightpurple.rsi/icon.png} (100%) rename Resources/Textures/Clothing/Uniforms/{color.rsi/lightpurple-inhand-left.png => Jumpskirt/Color/lightpurple.rsi/inhand-left.png} (100%) rename Resources/Textures/Clothing/Uniforms/{color.rsi/lightpurple-inhand-right.png => Jumpskirt/Color/lightpurple.rsi/inhand-right.png} (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/lightpurple.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{color.rsi/maroon_skirt-equipped-INNERCLOTHING.png => Jumpskirt/Color/maroon.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{color.rsi/maroon_skirt.png => Jumpskirt/Color/maroon.rsi/icon.png} (100%) rename Resources/Textures/Clothing/Uniforms/{color.rsi/maroon-inhand-left.png => Jumpskirt/Color/maroon.rsi/inhand-left.png} (100%) rename Resources/Textures/Clothing/Uniforms/{color.rsi/maroon-inhand-right.png => Jumpskirt/Color/maroon.rsi/inhand-right.png} (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/maroon.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{color.rsi/orange_skirt-equipped-INNERCLOTHING.png => Jumpskirt/Color/orange.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{color.rsi/orange_skirt.png => Jumpskirt/Color/orange.rsi/icon.png} (100%) rename Resources/Textures/Clothing/Uniforms/{color.rsi/orange-inhand-left.png => Jumpskirt/Color/orange.rsi/inhand-left.png} (100%) rename Resources/Textures/Clothing/Uniforms/{color.rsi/orange-inhand-right.png => Jumpskirt/Color/orange.rsi/inhand-right.png} (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/orange.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{color.rsi/pink_skirt-equipped-INNERCLOTHING.png => Jumpskirt/Color/pink.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{color.rsi/pink_skirt.png => Jumpskirt/Color/pink.rsi/icon.png} (100%) rename Resources/Textures/Clothing/Uniforms/{color.rsi/pink-inhand-left.png => Jumpskirt/Color/pink.rsi/inhand-left.png} (100%) rename Resources/Textures/Clothing/Uniforms/{color.rsi/pink-inhand-right.png => Jumpskirt/Color/pink.rsi/inhand-right.png} (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/pink.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{color.rsi/red_skirt-equipped-INNERCLOTHING.png => Jumpskirt/Color/red.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{color.rsi/red_skirt.png => Jumpskirt/Color/red.rsi/icon.png} (100%) rename Resources/Textures/Clothing/Uniforms/{color.rsi/red-inhand-left.png => Jumpskirt/Color/red.rsi/inhand-left.png} (100%) rename Resources/Textures/Clothing/Uniforms/{color.rsi/red-inhand-right.png => Jumpskirt/Color/red.rsi/inhand-right.png} (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/red.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{color.rsi/teal_skirt-equipped-INNERCLOTHING.png => Jumpskirt/Color/teal.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{color.rsi/teal_skirt.png => Jumpskirt/Color/teal.rsi/icon.png} (100%) rename Resources/Textures/Clothing/Uniforms/{color.rsi/teal-inhand-left.png => Jumpskirt/Color/teal.rsi/inhand-left.png} (100%) rename Resources/Textures/Clothing/Uniforms/{color.rsi/teal-inhand-right.png => Jumpskirt/Color/teal.rsi/inhand-right.png} (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/teal.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{color.rsi/white_skirt-equipped-INNERCLOTHING.png => Jumpskirt/Color/white.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{color.rsi/white_skirt.png => Jumpskirt/Color/white.rsi/icon.png} (100%) rename Resources/Textures/Clothing/Uniforms/{color.rsi/white-inhand-left.png => Jumpskirt/Color/white.rsi/inhand-left.png} (100%) rename Resources/Textures/Clothing/Uniforms/{color.rsi/white-inhand-right.png => Jumpskirt/Color/white.rsi/inhand-right.png} (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/white.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{color.rsi/yellow_skirt-equipped-INNERCLOTHING.png => Jumpskirt/Color/yellow.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{color.rsi/yellow_skirt.png => Jumpskirt/Color/yellow.rsi/icon.png} (100%) rename Resources/Textures/Clothing/Uniforms/{color.rsi/yellow-inhand-left.png => Jumpskirt/Color/yellow.rsi/inhand-left.png} (100%) rename Resources/Textures/Clothing/Uniforms/{color.rsi/yellow-inhand-right.png => Jumpskirt/Color/yellow.rsi/inhand-right.png} (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/yellow.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{bartender.rsi/skirt-equipped-INNERCLOTHING.png => Jumpskirt/bartender.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{bartender.rsi/skirt.png => Jumpskirt/bartender.rsi/icon.png} (100%) rename Resources/Textures/Clothing/Uniforms/{ => Jumpskirt}/bartender.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Uniforms/{ => Jumpskirt}/bartender.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpskirt/bartender.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{uniform_cargotech.rsi/cargo_skirt-equipped-INNERCLOTHING.png => Jumpskirt/cargotech.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_cargotech.rsi/cargo_skirt.png => Jumpskirt/cargotech.rsi/icon.png} (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_cargotech.rsi => Jumpskirt/cargotech.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_cargotech.rsi => Jumpskirt/cargotech.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpskirt/cargotech.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{uniform_ce.rsi/chief_skirt-equipped-INNERCLOTHING.png => Jumpskirt/ce.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_ce.rsi/chief_skirt.png => Jumpskirt/ce.rsi/icon.png} (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_ce.rsi => Jumpskirt/ce.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_ce.rsi => Jumpskirt/ce.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpskirt/ce.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{uniform_chaplain.rsi/chaplain_skirt-equipped-INNERCLOTHING.png => Jumpskirt/chaplain.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_chaplain.rsi/chaplain_skirt.png => Jumpskirt/chaplain.rsi/icon.png} (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_chaplain.rsi => Jumpskirt/chaplain.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_chaplain.rsi => Jumpskirt/chaplain.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpskirt/chaplain.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{uniform_chef.rsi/chef_skirt-equipped-INNERCLOTHING.png => Jumpskirt/chef.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_chef.rsi/chef_skirt.png => Jumpskirt/chef.rsi/icon.png} (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_chef.rsi => Jumpskirt/chef.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_chef.rsi => Jumpskirt/chef.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpskirt/chef.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{uniform_medical.rsi/chemistry_skirt-equipped-INNERCLOTHING.png => Jumpskirt/chemistry.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_medical.rsi/chemistry_skirt.png => Jumpskirt/chemistry.rsi/icon.png} (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_cmo.rsi => Jumpskirt/chemistry.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_cmo.rsi => Jumpskirt/chemistry.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpskirt/chemistry.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{uniform_cmo.rsi/cmo_skirt-equipped-INNERCLOTHING.png => Jumpskirt/cmo.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_cmo.rsi/cmo_skirt.png => Jumpskirt/cmo.rsi/icon.png} (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_md.rsi => Jumpskirt/cmo.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_md.rsi => Jumpskirt/cmo.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpskirt/cmo.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{uniform_detective.rsi/detective_skirt-equipped-INNERCLOTHING.png => Jumpskirt/detective.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_detective.rsi/detective_skirt.png => Jumpskirt/detective.rsi/icon.png} (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_detective.rsi/detective-inhand-left hand.png => Jumpskirt/detective.rsi/inhand-left.png} (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_detective.rsi/detective-inhand-right hand.png => Jumpskirt/detective.rsi/inhand-right.png} (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpskirt/detective.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{uniform_detective.rsi/greydetective_skirt-equipped-INNERCLOTHING.png => Jumpskirt/detective_grey.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_detective.rsi/greydetective_skirt.png => Jumpskirt/detective_grey.rsi/icon.png} (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpskirt/detective_grey.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpskirt/detective_grey.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpskirt/detective_grey.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{uniform_engineering.rsi/engine_skirt-equipped-INNERCLOTHING.png => Jumpskirt/engineering.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_engineering.rsi/engine_skirt.png => Jumpskirt/engineering.rsi/icon.png} (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_engineering.rsi => Jumpskirt/engineering.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_engineering.rsi => Jumpskirt/engineering.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpskirt/engineering.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{uniform_hop.rsi/hop_skirt-equipped-INNERCLOTHING.png => Jumpskirt/hop.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_hop.rsi/hop_skirt.png => Jumpskirt/hop.rsi/icon.png} (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_hop.rsi => Jumpskirt/hop.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_hop.rsi => Jumpskirt/hop.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpskirt/hop.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{uniform_hos.rsi/hos_skirt-equipped-INNERCLOTHING.png => Jumpskirt/hos.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_hos.rsi/hos_skirt.png => Jumpskirt/hos.rsi/icon.png} (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_sec.rsi/inhand-left hand.png => Jumpskirt/hos.rsi/inhand-left.png} (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_sec.rsi/inhand-right hand.png => Jumpskirt/hos.rsi/inhand-right.png} (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpskirt/hos.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{uniform_hos.rsi/hosalt_skirt-equipped-INNERCLOTHING.png => Jumpskirt/hos_alt.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_hos.rsi/hosalt_skirt.png => Jumpskirt/hos_alt.rsi/icon.png} (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_hos.rsi/hosalt-inhand-left.png => Jumpskirt/hos_alt.rsi/inhand-left.png} (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_hos.rsi/hosalt-inhand-right.png => Jumpskirt/hos_alt.rsi/inhand-right.png} (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpskirt/hos_alt.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{uniform_hos.rsi/hos_parade_fem-equipped-INNERCLOTHING.png => Jumpskirt/hos_parade.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_hos.rsi/hos_parade_fem.png => Jumpskirt/hos_parade.rsi/icon.png} (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpskirt/hos_parade.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpskirt/hos_parade.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpskirt/hos_parade.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{uniform_hydro.rsi/hydro_skirt-equipped-INNERCLOTHING.png => Jumpskirt/hydro.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_hydro.rsi/hydro_skirt.png => Jumpskirt/hydro.rsi/icon.png} (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_hydro.rsi => Jumpskirt/hydro.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_hydro.rsi => Jumpskirt/hydro.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpskirt/hydro.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{uniform_janitor.rsi/jan_skirt-equipped-INNERCLOTHING.png => Jumpskirt/janitor.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_janitor.rsi/jan_skirt.png => Jumpskirt/janitor.rsi/icon.png} (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_janitor.rsi => Jumpskirt/janitor.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_janitor.rsi => Jumpskirt/janitor.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpskirt/janitor.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{uniform_medical.rsi/medical_skirt-equipped-INNERCLOTHING.png => Jumpskirt/medical.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_medical.rsi/medical_skirt.png => Jumpskirt/medical.rsi/icon.png} (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_medical.rsi => Jumpskirt/medical.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_medical.rsi => Jumpskirt/medical.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpskirt/medical.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{uniform_mime.rsi/mime_skirt-equipped-INNERCLOTHING.png => Jumpskirt/mime.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_mime.rsi/mime_skirt.png => Jumpskirt/mime.rsi/icon.png} (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_mime.rsi => Jumpskirt/mime.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_mime.rsi => Jumpskirt/mime.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpskirt/mime.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{uniform_medical.rsi/paramedic_skirt-equipped-INNERCLOTHING.png => Jumpskirt/paramedic.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_medical.rsi/paramedic_skirt.png => Jumpskirt/paramedic.rsi/icon.png} (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_scientist.rsi => Jumpskirt/paramedic.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_scientist.rsi => Jumpskirt/paramedic.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpskirt/paramedic.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{uniform_prisoner.rsi/prisoner_skirt-equipped-INNERCLOTHING.png => Jumpskirt/prisoner.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_prisoner.rsi/prisoner_skirt.png => Jumpskirt/prisoner.rsi/icon.png} (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_prisoner.rsi => Jumpskirt/prisoner.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_prisoner.rsi => Jumpskirt/prisoner.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpskirt/prisoner.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{uniform_cargotech.rsi/qm_skirt-equipped-INNERCLOTHING.png => Jumpskirt/qm.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_cargotech.rsi/qm_skirt.png => Jumpskirt/qm.rsi/icon.png} (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_rd.rsi => Jumpskirt/qm.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_rd.rsi => Jumpskirt/qm.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpskirt/qm.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{uniform_rnd.rsi/rnd_skirt-equipped-INNERCLOTHING.png => Jumpskirt/rnd.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_rnd.rsi/rnd_skirt.png => Jumpskirt/rnd.rsi/icon.png} (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpskirt/rnd.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpskirt/rnd.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpskirt/rnd.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{uniform_scientist.rsi/sci_skirt-equipped-INNERCLOTHING.png => Jumpskirt/scientist.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_scientist.rsi/sci_skirt.png => Jumpskirt/scientist.rsi/icon.png} (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpskirt/scientist.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpskirt/scientist.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpskirt/scientist.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{uniform_sec.rsi/sec_skirt-equipped-INNERCLOTHING.png => Jumpskirt/security.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_sec.rsi/sec_skirt.png => Jumpskirt/security.rsi/icon.png} (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpskirt/security.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpskirt/security.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpskirt/security.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{uniform_warden.rsi/rwarden_skirt-equipped-INNERCLOTHING.png => Jumpskirt/warden.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_warden.rsi/rwarden_skirt.png => Jumpskirt/warden.rsi/icon.png} (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpskirt/warden.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpskirt/warden.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpskirt/warden.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{color.rsi/black-equipped-INNERCLOTHING.png => Jumpsuit/Color/black.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{color.rsi/black.png => Jumpsuit/Color/black.rsi/icon.png} (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/black.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/black.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/black.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{color.rsi/blue-equipped-INNERCLOTHING.png => Jumpsuit/Color/blue.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{color.rsi/blue.png => Jumpsuit/Color/blue.rsi/icon.png} (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/blue.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/blue.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/blue.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{color.rsi/brown-equipped-INNERCLOTHING.png => Jumpsuit/Color/brown.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{color.rsi/brown.png => Jumpsuit/Color/brown.rsi/icon.png} (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/brown.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/brown.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/brown.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{color.rsi/darkblue-equipped-INNERCLOTHING.png => Jumpsuit/Color/darkblue.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{color.rsi/darkblue.png => Jumpsuit/Color/darkblue.rsi/icon.png} (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/darkblue.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/darkblue.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/darkblue.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{color.rsi/darkgreen-equipped-INNERCLOTHING.png => Jumpsuit/Color/darkgreen.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{color.rsi/darkgreen.png => Jumpsuit/Color/darkgreen.rsi/icon.png} (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/darkgreen.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/darkgreen.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/darkgreen.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{color.rsi/green-equipped-INNERCLOTHING.png => Jumpsuit/Color/green.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{color.rsi/green.png => Jumpsuit/Color/green.rsi/icon.png} (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/green.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/green.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/green.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{color.rsi/grey-equipped-INNERCLOTHING.png => Jumpsuit/Color/grey.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{color.rsi/grey.png => Jumpsuit/Color/grey.rsi/icon.png} (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/grey.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/grey.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/grey.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{color.rsi/lightbrown-equipped-INNERCLOTHING.png => Jumpsuit/Color/lightbrown.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{color.rsi/lightbrown.png => Jumpsuit/Color/lightbrown.rsi/icon.png} (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/lightbrown.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/lightbrown.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/lightbrown.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{color.rsi/lightpurple-equipped-INNERCLOTHING.png => Jumpsuit/Color/lightpurple.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{color.rsi/lightpurple.png => Jumpsuit/Color/lightpurple.rsi/icon.png} (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/lightpurple.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/lightpurple.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/lightpurple.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{color.rsi/maroon-equipped-INNERCLOTHING.png => Jumpsuit/Color/maroon.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{color.rsi/maroon.png => Jumpsuit/Color/maroon.rsi/icon.png} (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/maroon.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/maroon.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/maroon.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{color.rsi/orange-equipped-INNERCLOTHING.png => Jumpsuit/Color/orange.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{color.rsi/orange.png => Jumpsuit/Color/orange.rsi/icon.png} (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/orange.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/orange.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/orange.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{color.rsi/pink-equipped-INNERCLOTHING.png => Jumpsuit/Color/pink.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{color.rsi/pink.png => Jumpsuit/Color/pink.rsi/icon.png} (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/pink.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/pink.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/pink.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{color.rsi/red-equipped-INNERCLOTHING.png => Jumpsuit/Color/red.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{color.rsi/red.png => Jumpsuit/Color/red.rsi/icon.png} (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/red.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/red.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/red.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{color.rsi/teal-equipped-INNERCLOTHING.png => Jumpsuit/Color/teal.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{color.rsi/teal.png => Jumpsuit/Color/teal.rsi/icon.png} (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/teal.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/teal.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/teal.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{color.rsi/white-equipped-INNERCLOTHING.png => Jumpsuit/Color/white.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{color.rsi/white.png => Jumpsuit/Color/white.rsi/icon.png} (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/white.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/white.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/white.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{color.rsi/yellow-equipped-INNERCLOTHING.png => Jumpsuit/Color/yellow.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{color.rsi/yellow.png => Jumpsuit/Color/yellow.rsi/icon.png} (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/yellow.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/yellow.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/yellow.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{ => Jumpsuit}/bartender.rsi/equipped-INNERCLOTHING.png (100%) rename Resources/Textures/Clothing/Uniforms/{ => Jumpsuit}/bartender.rsi/icon.png (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/bartender.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/bartender.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/bartender.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{bartender.rsi/purple-equipped-INNERCLOTHING.png => Jumpsuit/bartender_purple.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{bartender.rsi/purple.png => Jumpsuit/bartender_purple.rsi/icon.png} (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/bartender_purple.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{uniform_captain.rsi => Jumpsuit/captain.rsi}/equipped-INNERCLOTHING.png (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_captain.rsi/captain.png => Jumpsuit/captain.rsi/icon.png} (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_captain.rsi => Jumpsuit/captain.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_captain.rsi => Jumpsuit/captain.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/captain.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{uniform_cargotech.rsi => Jumpsuit/cargotech.rsi}/equipped-INNERCLOTHING.png (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_cargotech.rsi => Jumpsuit/cargotech.rsi}/icon.png (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/cargotech.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/cargotech.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/cargotech.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{uniform_ce.rsi => Jumpsuit/ce.rsi}/equipped-INNERCLOTHING.png (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_ce.rsi => Jumpsuit/ce.rsi}/icon.png (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_hos.rsi/gy_suit-inhand-left hand.png => Jumpsuit/ce.rsi/inhand-left.png} (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_hos.rsi/gy_suit-inhand-right hand.png => Jumpsuit/ce.rsi/inhand-right.png} (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{color.rsi => Jumpsuit/ce.rsi}/s-equipped-INNERCLOTHING.png (100%) rename Resources/Textures/Clothing/Uniforms/{color.rsi => Jumpsuit/ce.rsi}/s.png (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_chaplain.rsi => Jumpsuit/chaplain.rsi}/equipped-INNERCLOTHING.png (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_chaplain.rsi => Jumpsuit/chaplain.rsi}/icon.png (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/chaplain.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/chaplain.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/chaplain.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{uniform_chef.rsi => Jumpsuit/chef.rsi}/equipped-INNERCLOTHING.png (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_chef.rsi => Jumpsuit/chef.rsi}/icon.png (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/chef.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/chef.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/chef.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{uniform_medical.rsi/chemistry-equipped-INNERCLOTHING.png => Jumpsuit/chemistry.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_medical.rsi/chemistry.png => Jumpsuit/chemistry.rsi/icon.png} (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/chemistry.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/chemistry.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/chemistry.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{uniform_clown.rsi => Jumpsuit/clown.rsi}/equipped-INNERCLOTHING.png (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_clown.rsi => Jumpsuit/clown.rsi}/icon.png (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_clown.rsi => Jumpsuit/clown.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_clown.rsi => Jumpsuit/clown.rsi}/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/clown.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{uniform_cmo.rsi => Jumpsuit/cmo.rsi}/equipped-INNERCLOTHING.png (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_cmo.rsi => Jumpsuit/cmo.rsi}/icon.png (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/cmo.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/cmo.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/cmo.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{uniform_detective.rsi/detective-equipped-INNERCLOTHING.png => Jumpsuit/detective.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_detective.rsi/detective.png => Jumpsuit/detective.rsi/icon.png} (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/detective.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/detective.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/detective.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{uniform_detective.rsi/greydetective-equipped-INNERCLOTHING.png => Jumpsuit/detective_grey.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_detective.rsi/greydetective.png => Jumpsuit/detective_grey.rsi/icon.png} (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/detective_grey.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/detective_grey.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/detective_grey.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{uniform_engineering.rsi => Jumpsuit/engineering.rsi}/equipped-INNERCLOTHING.png (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_engineering.rsi => Jumpsuit/engineering.rsi}/icon.png (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/engineering.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/engineering.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/engineering.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{uniform_hop.rsi => Jumpsuit/hop.rsi}/equipped-INNERCLOTHING.png (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_hop.rsi => Jumpsuit/hop.rsi}/icon.png (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/hop.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/hop.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/hop.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{uniform_hos.rsi => Jumpsuit/hos.rsi}/equipped-INNERCLOTHING.png (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_hos.rsi => Jumpsuit/hos.rsi}/icon.png (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/hos.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/hos.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/hos.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{uniform_hos.rsi/hosalt-equipped-INNERCLOTHING.png => Jumpsuit/hos_alt.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_hos.rsi/hosalt.png => Jumpsuit/hos_alt.rsi/icon.png} (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_alt.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_alt.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_alt.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{uniform_hos.rsi/hosblueclothes-equipped-INNERCLOTHING.png => Jumpsuit/hos_blue.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_hos.rsi/hosblueclothes.png => Jumpsuit/hos_blue.rsi/icon.png} (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_sec.rsi/gy_suit-inhand-left hand.png => Jumpsuit/hos_blue.rsi/inhand-left.png} (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_sec.rsi/gy_suit-inhand-right hand.png => Jumpsuit/hos_blue.rsi/inhand-right.png} (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_blue.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{uniform_hos.rsi/hos_grey-equipped-INNERCLOTHING.png => Jumpsuit/hos_grey.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_hos.rsi/hos_grey.png => Jumpsuit/hos_grey.rsi/icon.png} (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_warden.rsi/gy_suit-inhand-left hand.png => Jumpsuit/hos_grey.rsi/inhand-left.png} (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_warden.rsi/gy_suit-inhand-right hand.png => Jumpsuit/hos_grey.rsi/inhand-right.png} (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_grey.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{uniform_hos.rsi/hos_parade_male-equipped-INNERCLOTHING.png => Jumpsuit/hos_parade.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_hos.rsi/hos_parade_male.png => Jumpsuit/hos_parade.rsi/icon.png} (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_parade.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_parade.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_parade.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{uniform_hydro.rsi => Jumpsuit/hydro.rsi}/equipped-INNERCLOTHING.png (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_hydro.rsi => Jumpsuit/hydro.rsi}/icon.png (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/hydro.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/hydro.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/hydro.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{uniform_janitor.rsi => Jumpsuit/janitor.rsi}/equipped-INNERCLOTHING.png (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_janitor.rsi => Jumpsuit/janitor.rsi}/icon.png (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/janitor.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/janitor.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/janitor.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{uniform_md.rsi => Jumpsuit/medical.rsi}/equipped-INNERCLOTHING.png (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_medical.rsi => Jumpsuit/medical.rsi}/icon.png (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/medical.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/medical.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/medical.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{uniform_mime.rsi => Jumpsuit/mime.rsi}/equipped-INNERCLOTHING.png (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_mime.rsi => Jumpsuit/mime.rsi}/icon.png (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/mime.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/mime.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/mime.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{uniform_medical.rsi/paramedic-equipped-INNERCLOTHING.png => Jumpsuit/paramedic.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_medical.rsi/paramedic.png => Jumpsuit/paramedic.rsi/icon.png} (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{uniform_prisoner.rsi => Jumpsuit/prisoner.rsi}/equipped-INNERCLOTHING.png (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_prisoner.rsi => Jumpsuit/prisoner.rsi}/icon.png (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/prisoner.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/prisoner.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/prisoner.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{uniform_cargotech.rsi/qm-equipped-INNERCLOTHING.png => Jumpsuit/qm.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_cargotech.rsi/qm.png => Jumpsuit/qm.rsi/icon.png} (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/qm.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/qm.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/qm.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{ => Jumpsuit}/rainbow.rsi/equipped-INNERCLOTHING.png (100%) rename Resources/Textures/Clothing/Uniforms/{ => Jumpsuit}/rainbow.rsi/icon.png (100%) rename Resources/Textures/Clothing/Uniforms/{ => Jumpsuit}/rainbow.rsi/inhand-left.png (100%) rename Resources/Textures/Clothing/Uniforms/{ => Jumpsuit}/rainbow.rsi/inhand-right.png (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/rainbow.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{uniform_rnd.rsi => Jumpsuit/rnd.rsi}/equipped-INNERCLOTHING.png (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_rnd.rsi => Jumpsuit/rnd.rsi}/icon.png (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/rnd.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/rnd.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/rnd.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{uniform_scientist.rsi => Jumpsuit/scientist.rsi}/equipped-INNERCLOTHING.png (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_scientist.rsi => Jumpsuit/scientist.rsi}/icon.png (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/scientist.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/scientist.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/scientist.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{uniform_sec.rsi => Jumpsuit/security.rsi}/equipped-INNERCLOTHING.png (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_sec.rsi => Jumpsuit/security.rsi}/icon.png (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/security.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/security.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/security.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{uniform_sec.rsi/blueshift-equipped-INNERCLOTHING.png => Jumpsuit/security_blue.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_sec.rsi/blueshift.png => Jumpsuit/security_blue.rsi/icon.png} (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/security_blue.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/security_blue.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/security_blue.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{uniform_sec.rsi/security_grey-equipped-INNERCLOTHING.png => Jumpsuit/security_grey.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_sec.rsi/security_grey.png => Jumpsuit/security_grey.rsi/icon.png} (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/security_grey.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/security_grey.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/security_grey.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{uniform_warden.rsi/rwarden-equipped-INNERCLOTHING.png => Jumpsuit/warden.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_warden.rsi/rwarden.png => Jumpsuit/warden.rsi/icon.png} (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_warden.rsi/rwarden-inhand-left hand.png => Jumpsuit/warden.rsi/inhand-left.png} (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_warden.rsi/rwarden-inhand-right hand.png => Jumpsuit/warden.rsi/inhand-right.png} (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/warden.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{uniform_medical.rsi/scrubsblue-equipped-INNERCLOTHING.png => Scrubs/blue.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_medical.rsi/scrubsblue.png => Scrubs/blue.rsi/icon.png} (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Scrubs/blue.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{uniform_medical.rsi/scrubsgreen-equipped-INNERCLOTHING.png => Scrubs/green.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_medical.rsi/scrubsgreen.png => Scrubs/green.rsi/icon.png} (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Scrubs/green.rsi/meta.json rename Resources/Textures/Clothing/Uniforms/{uniform_medical.rsi/scrubspurple-equipped-INNERCLOTHING.png => Scrubs/purple.rsi/equipped-INNERCLOTHING.png} (100%) rename Resources/Textures/Clothing/Uniforms/{uniform_medical.rsi/scrubspurple.png => Scrubs/purple.rsi/icon.png} (100%) create mode 100644 Resources/Textures/Clothing/Uniforms/Scrubs/purple.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Uniforms/bartender.rsi/barman_d.png delete mode 100644 Resources/Textures/Clothing/Uniforms/bartender.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Uniforms/color.rsi/black_d-equipped-INNERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/Uniforms/color.rsi/blue_d-equipped-INNERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/Uniforms/color.rsi/brown_d-equipped-INNERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/Uniforms/color.rsi/darkblue_d-equipped-INNERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/Uniforms/color.rsi/darkgreen_d-equipped-INNERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/Uniforms/color.rsi/green_d-equipped-INNERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/Uniforms/color.rsi/grey_d-equipped-INNERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/Uniforms/color.rsi/lightbrown_d-equipped-INNERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/Uniforms/color.rsi/lightpurple_d-equipped-INNERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/Uniforms/color.rsi/maroon_d-equipped-INNERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/Uniforms/color.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Uniforms/color.rsi/orange_d-equipped-INNERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/Uniforms/color.rsi/pink_d-equipped-INNERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/Uniforms/color.rsi/random_jumpsuit.png delete mode 100644 Resources/Textures/Clothing/Uniforms/color.rsi/red_d-equipped-INNERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/Uniforms/color.rsi/teal_d-equipped-INNERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/Uniforms/color.rsi/white_d-equipped-INNERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/Uniforms/color.rsi/yellow_d-equipped-INNERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/Uniforms/rainbow.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Uniforms/uniform_assistant.rsi/assistant.png delete mode 100644 Resources/Textures/Clothing/Uniforms/uniform_assistant.rsi/equipped-INNERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/Uniforms/uniform_assistant.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Uniforms/uniform_captain.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Uniforms/uniform_cargotech.rsi/cargotech.png delete mode 100644 Resources/Textures/Clothing/Uniforms/uniform_cargotech.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Uniforms/uniform_ce.rsi/ce.png delete mode 100644 Resources/Textures/Clothing/Uniforms/uniform_ce.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Uniforms/uniform_chaplain.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Uniforms/uniform_chef.rsi/chef.png delete mode 100644 Resources/Textures/Clothing/Uniforms/uniform_chef.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Uniforms/uniform_clown.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Uniforms/uniform_cmo.rsi/cmo.png delete mode 100644 Resources/Textures/Clothing/Uniforms/uniform_cmo.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Uniforms/uniform_detective.rsi/detective_d-equipped-INNERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/Uniforms/uniform_detective.rsi/greydetective_d-equipped-INNERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/Uniforms/uniform_detective.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Uniforms/uniform_engineering.rsi/engine.png delete mode 100644 Resources/Textures/Clothing/Uniforms/uniform_engineering.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Uniforms/uniform_hop.rsi/hop.png delete mode 100644 Resources/Textures/Clothing/Uniforms/uniform_hop.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Uniforms/uniform_hos.rsi/hos.png delete mode 100644 Resources/Textures/Clothing/Uniforms/uniform_hos.rsi/hos_grey_d-equipped-INNERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/Uniforms/uniform_hos.rsi/hosblueclothes_d-equipped-INNERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/Uniforms/uniform_hos.rsi/hostanclothes-equipped-INNERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/Uniforms/uniform_hos.rsi/hostanclothes.png delete mode 100644 Resources/Textures/Clothing/Uniforms/uniform_hos.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Uniforms/uniform_hydro.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Uniforms/uniform_janitor.rsi/janitor.png delete mode 100644 Resources/Textures/Clothing/Uniforms/uniform_janitor.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Uniforms/uniform_md.rsi/md.png delete mode 100644 Resources/Textures/Clothing/Uniforms/uniform_md.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Uniforms/uniform_medical.rsi/equipped-INNERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/Uniforms/uniform_medical.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Uniforms/uniform_mime.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Uniforms/uniform_prisoner.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Uniforms/uniform_rd.rsi/equipped-INNERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/Uniforms/uniform_rd.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Uniforms/uniform_rd.rsi/rd.png delete mode 100644 Resources/Textures/Clothing/Uniforms/uniform_rnd.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Uniforms/uniform_scientist.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Uniforms/uniform_scientist.rsi/scientist.png delete mode 100644 Resources/Textures/Clothing/Uniforms/uniform_sec.rsi/constable-equipped-INNERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/Uniforms/uniform_sec.rsi/constable.png delete mode 100644 Resources/Textures/Clothing/Uniforms/uniform_sec.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Uniforms/uniform_sec.rsi/officerblueclothes-equipped-INNERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/Uniforms/uniform_sec.rsi/officerblueclothes.png delete mode 100644 Resources/Textures/Clothing/Uniforms/uniform_sec.rsi/officerblueclothes_d-equipped-INNERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/Uniforms/uniform_sec.rsi/officertanclothes-equipped-INNERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/Uniforms/uniform_sec.rsi/officertanclothes.png delete mode 100644 Resources/Textures/Clothing/Uniforms/uniform_sec.rsi/spacepol-equipped-INNERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/Uniforms/uniform_sec.rsi/spacepol.png delete mode 100644 Resources/Textures/Clothing/Uniforms/uniform_sec.rsi/spacepolice_families-equipped-INNERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/Uniforms/uniform_sec.rsi/spacepolice_families.png delete mode 100644 Resources/Textures/Clothing/Uniforms/uniform_warden.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Uniforms/uniform_warden.rsi/rwarden_d-equipped-INNERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/Uniforms/uniform_warden.rsi/warden-equipped-INNERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/Uniforms/uniform_warden.rsi/warden.png delete mode 100644 Resources/Textures/Clothing/Uniforms/uniform_warden.rsi/warden_d-equipped-INNERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/Uniforms/uniform_warden.rsi/wardenblueclothes-equipped-INNERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/Uniforms/uniform_warden.rsi/wardenblueclothes.png delete mode 100644 Resources/Textures/Clothing/Uniforms/uniform_warden.rsi/wardenblueclothes_d-equipped-INNERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/Uniforms/uniform_warden.rsi/wardentanclothes-equipped-INNERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/Uniforms/uniform_warden.rsi/wardentanclothes.png diff --git a/Content.IntegrationTests/Tests/InventoryHelpersTest.cs b/Content.IntegrationTests/Tests/InventoryHelpersTest.cs index 177f856e3d..096e464c7b 100644 --- a/Content.IntegrationTests/Tests/InventoryHelpersTest.cs +++ b/Content.IntegrationTests/Tests/InventoryHelpersTest.cs @@ -53,11 +53,11 @@ namespace Content.IntegrationTests.Tests Assert.That(inventory.HasSlot(Slots.INNERCLOTHING)); Assert.That(inventory.HasSlot(Slots.IDCARD)); - Assert.That(inventory.SpawnItemInSlot(Slots.INNERCLOTHING, "UniformJanitor", true)); + Assert.That(inventory.SpawnItemInSlot(Slots.INNERCLOTHING, "ClothingUniformJumpsuitJanitor", true)); // Do we actually have the uniform equipped? Assert.That(inventory.TryGetSlotItem(Slots.INNERCLOTHING, out ItemComponent uniform)); - Assert.That(uniform.Owner.Prototype != null && uniform.Owner.Prototype.ID == "UniformJanitor"); + Assert.That(uniform.Owner.Prototype != null && uniform.Owner.Prototype.ID == "ClothingUniformJumpsuitJanitor"); stun.Stun(1f); diff --git a/Resources/Maps/saltern.yml b/Resources/Maps/saltern.yml index ab4aa3775f..0c77b3caab 100644 --- a/Resources/Maps/saltern.yml +++ b/Resources/Maps/saltern.yml @@ -1,7 +1,7 @@ meta: format: 2 - name: DemoStation - author: Space-Wizards + name: Saltern + author: Buncha sickass mfers postmapinit: false tilemap: 0: space @@ -474,7 +474,7 @@ entities: rot: -1.5707963267948966 rad type: Transform - uid: 52 - type: ShoesCoder + type: ClothingUnderSocksCoder components: - parent: 855 pos: 47.437466,-6.6893435 @@ -490,14 +490,14 @@ entities: - useSound: /Audio/Items/jaws_pry.ogg type: Tool - uid: 54 - type: GlovesLatex + type: ClothingHandsGlovesLatex components: - parent: 855 pos: 22.086878,-4.4133806 rot: -1.5707963267948966 rad type: Transform - uid: 55 - type: GlovesLatex + type: ClothingHandsGlovesLatex components: - parent: 855 pos: 21.618128,-4.4133806 @@ -712,14 +712,14 @@ entities: rot: -1.5707963267948966 rad type: Transform - uid: 82 - type: Bling + type: ClothingNeckBling components: - parent: 855 pos: -2.861164,18.612366 rot: -1.5707963267948966 rad type: Transform - uid: 83 - type: Bling + type: ClothingNeckBling components: - parent: 855 pos: -2.564289,18.643616 @@ -971,19 +971,19 @@ entities: type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer - uid: 117 - type: HatHardhatYellow + type: ClothingHeadHatHardhatYellow components: - parent: 855 pos: 31.357727,-4.36431 type: Transform - uid: 118 - type: HatHardhatWhite + type: ClothingHeadHatHardhatWhite components: - parent: 855 pos: 31.623352,-4.14556 type: Transform - uid: 119 - type: HatHardhatRed + type: ClothingHeadHatHardhatRed components: - parent: 855 pos: 31.201477,-4.05181 @@ -47190,7 +47190,7 @@ entities: rot: -1.5707963267948966 rad type: Transform - uid: 4144 - type: MaskJoy + type: ClothingMaskJoy components: - parent: 855 pos: 13.418978,24.555822 diff --git a/Resources/Maps/stationstation.yml b/Resources/Maps/stationstation.yml index 509128acc1..9a52655710 100644 --- a/Resources/Maps/stationstation.yml +++ b/Resources/Maps/stationstation.yml @@ -1977,7 +1977,7 @@ entities: - anchored: False type: Physics - uid: 225 - type: OuterclothingVest + type: ClothingOuterVest components: - parent: 216 pos: 1.412994,7.507263 @@ -2973,7 +2973,7 @@ entities: rot: -1.5707963267949 rad type: Transform - uid: 361 - type: OuterclothingVest + type: ClothingOuterVest components: - parent: 216 pos: 0.5223687,7.507263 @@ -3874,7 +3874,7 @@ entities: - anchored: False type: Physics - uid: 473 - type: UniformEngineering + type: ClothingUniformJumpsuitEngineering components: - parent: 216 pos: -0.6474335,-10.27245 @@ -3883,7 +3883,7 @@ entities: - anchored: False type: Physics - uid: 474 - type: GasMaskClothing + type: ClothingMaskGas components: - parent: 216 pos: -0.2880585,-10.69432 @@ -3892,7 +3892,7 @@ entities: - anchored: False type: Physics - uid: 475 - type: OuterclothingVest + type: ClothingOuterVest components: - parent: 216 pos: -0.9130585,-10.66307 @@ -3901,7 +3901,7 @@ entities: - anchored: False type: Physics - uid: 476 - type: UtilityBeltClothingFilled + type: ClothingBeltUtilityFilled components: - parent: 216 pos: -1.895102,-10.33495 @@ -3914,7 +3914,7 @@ entities: type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer - uid: 477 - type: UtilityBeltClothingFilled + type: ClothingBeltUtilityFilled components: - parent: 216 pos: -1.770102,-10.63182 @@ -3972,7 +3972,7 @@ entities: type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer - uid: 481 - type: BackpackClothing + type: ClothingBackpack components: - parent: 216 pos: -5.089887,7.591276 @@ -3985,7 +3985,7 @@ entities: type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer - uid: 482 - type: BackpackClothing + type: ClothingBackpack components: - parent: 216 pos: -4.683637,7.606901 @@ -3998,7 +3998,7 @@ entities: type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer - uid: 483 - type: GlovesBlack + type: ClothingHandsGlovesColorBlack components: - parent: 216 pos: -3.386762,7.466276 @@ -4348,7 +4348,7 @@ entities: rot: -1.5707963267949 rad type: Transform - uid: 527 - type: GlovesLeather + type: ClothingHandsGlovesLeather components: - parent: 216 pos: -4.332221,4.64238 @@ -4357,7 +4357,7 @@ entities: - anchored: False type: Physics - uid: 528 - type: GlovesLeather + type: ClothingHandsGlovesLeather components: - parent: 216 pos: -3.519721,4.64238 @@ -4366,7 +4366,7 @@ entities: - anchored: False type: Physics - uid: 529 - type: GlovesLeather + type: ClothingHandsGlovesLeather components: - parent: 216 pos: -2.597846,4.61113 diff --git a/Resources/Prototypes/Catalog/Fills/backpack.yml b/Resources/Prototypes/Catalog/Fills/backpack.yml index d97dc2c03e..842d8a12d9 100644 --- a/Resources/Prototypes/Catalog/Fills/backpack.yml +++ b/Resources/Prototypes/Catalog/Fills/backpack.yml @@ -1,7 +1,7 @@ - type: entity abstract: true - parent: BackpackClothing - id: BackpackClothingFilled + parent: ClothingBackpack + id: ClothingBackpackFilled components: - type: StorageFill contents: @@ -9,8 +9,8 @@ - type: entity abstract: true - parent: ClownPack - id: ClownPackFilled + parent: ClothingBackpackClown + id: ClothingBackpackClownFilled components: - type: StorageFill contents: @@ -18,8 +18,8 @@ - type: entity abstract: true - parent: SecPack - id: SecPackFilled + parent: ClothingBackpackSecurity + id: ClothingBackpackSecurityFilled components: - type: StorageFill contents: @@ -29,8 +29,8 @@ - type: entity abstract: true - parent: BackpackMedical - id: BackpackMedicalFilled + parent: ClothingBackpackMedical + id: ClothingBackpackMedicalFilled components: - type: StorageFill contents: @@ -38,8 +38,8 @@ - type: entity abstract: true - parent: BackpackCaptain - id: BackpackCaptainFilled + parent: ClothingBackpackCaptain + id: ClothingBackpackCaptainFilled components: - type: StorageFill contents: @@ -49,8 +49,8 @@ - type: entity abstract: true - parent: BackpackEngineering - id: BackpackEngineeringFilled + parent: ClothingBackpackEngineering + id: ClothingBackpackEngineeringFilled components: - type: StorageFill contents: diff --git a/Resources/Prototypes/Entities/Clothing/Belt/filled_belts.yml b/Resources/Prototypes/Catalog/Fills/belt.yml similarity index 72% rename from Resources/Prototypes/Entities/Clothing/Belt/filled_belts.yml rename to Resources/Prototypes/Catalog/Fills/belt.yml index 4959eac56f..e24225aeea 100644 --- a/Resources/Prototypes/Entities/Clothing/Belt/filled_belts.yml +++ b/Resources/Prototypes/Catalog/Fills/belt.yml @@ -1,6 +1,6 @@ - type: entity - id: UtilityBeltClothingFilled #Change to ClothingBeltUtilityFilled - parent: UtilityBeltClothing #Change to ClothingBeltUtility + id: ClothingBeltUtilityFilled + parent: ClothingBeltUtility description: "Holds tools." suffix: Filled components: @@ -13,17 +13,6 @@ - name: Welder - name: Multitool -- type: entity - id: UtilityBeltClothingFilledEvent - parent: UtilityBeltClothing - suffix: Filled - components: - - type: StorageFill - contents: - - name: Crowbar - - name: Screwdriver - - name: Multitool - - type: entity id: ClothingBeltChiefEngineerFilled parent: ClothingBeltChiefEngineer @@ -44,7 +33,6 @@ components: - type: StorageFill contents: - - name: SecGlasses - name: GrenadeFlashBang - name: GrenadeFlashBang - name: Stunbaton @@ -60,6 +48,6 @@ contents: - name: Soap #Make a soap group and pick between when i'm not lazy - name: SprayBottleSpaceCleaner - - name: # GrenadeChem - - name: # GrenadeChem + #- name: GrenadeChem + #- name: GrenadeChem - name: FlashlightLantern diff --git a/Resources/Prototypes/Catalog/Fills/duffel.yml b/Resources/Prototypes/Catalog/Fills/duffel.yml new file mode 100644 index 0000000000..b86c279f9d --- /dev/null +++ b/Resources/Prototypes/Catalog/Fills/duffel.yml @@ -0,0 +1,16 @@ +- type: entity + parent: ClothingBackpackDuffelMedical + id: ClothingBackpackDuffelSurgeryFilled + name: surgical duffel bag + description: "A large duffel bag for holding extra medical supplies - this one seems to be designed for holding surgical tools." + components: + - type: StorageFill + contents: + - name: Hemostat + - name: BoneSaw + - name: Drill + - name: Cautery + - name: Retractor + - name: Scalpel + - type: Storage + capacity: 30 diff --git a/Resources/Prototypes/Catalog/Fills/lockers.yml b/Resources/Prototypes/Catalog/Fills/lockers.yml index 1be31aef1b..f2b3c447b9 100644 --- a/Resources/Prototypes/Catalog/Fills/lockers.yml +++ b/Resources/Prototypes/Catalog/Fills/lockers.yml @@ -5,7 +5,7 @@ components: - type: StorageFill contents: - - name: OuterclothingHazard + - name: ClothingOuterVestHazard prob: 0.4 - name: FlashlightLantern prob: 0.7 @@ -21,11 +21,11 @@ prob: 0.7 - name: Multitool prob: 0.2 - - name: UtilityBeltClothing + - name: ClothingBeltUtility prob: 0.2 - - name: GlovesYellow + - name: ClothingHandsGlovesColorYellow prob: 0.05 - - name: HatHardhatRed + - name: ClothingHeadHatHardhatRed prob: 0.4 - name: ApcExtensionCableStack prob: 0.3 @@ -43,9 +43,9 @@ contents: - name: ToolboxEmergencyFilled prob: 0.4 - - name: BreathMaskClothing + - name: ClothingMaskBreath prob: 0.4 - - name: BreathMaskClothing + - name: ClothingMaskBreath prob: 0.25 - name: EmergencyOxygenTankFilled prob: 0.4 @@ -79,9 +79,9 @@ components: - type: StorageFill contents: - - name: HelmetHardsuitCE - - name: HardsuitCE - - name: BreathMaskClothing + - name: ClothingHeadHelmetHardsuitEngineeringWhite + - name: ClothingOuterHardsuitEngineeringWhite + - name: ClothingMaskBreath - name: OxygenTankFilled - type: entity @@ -101,9 +101,9 @@ components: - type: StorageFill contents: - - name: HelmetHardsuitAtmos - - name: HardsuitAtmos - - name: BreathMaskClothing + - name: ClothingHeadHelmetHardsuitAtmos + - name: ClothingOuterHardsuitAtmos + - name: ClothingMaskBreath - name: OxygenTankFilled - type: entity @@ -113,9 +113,9 @@ components: - type: StorageFill contents: - - name: HelmetHardsuitEngineering - - name: HardsuitEngineering - - name: BreathMaskClothing + - name: ClothingHeadHelmetHardsuitEngineering + - name: ClothingOuterHardsuitEngineering + - name: ClothingMaskBreath - name: OxygenTankFilled - type: entity @@ -135,7 +135,7 @@ components: - type: StorageFill contents: - - name: GlovesLatex + - name: ClothingHandsGlovesLatex prob: 0.4 - type: entity @@ -241,7 +241,7 @@ components: - type: StorageFill contents: - - name: GlovesLatex + - name: ClothingHandsGlovesLatex prob: 0.4 - type: entity @@ -328,7 +328,7 @@ contents: - name: RedOxygenTankFilled prob: 0.6 - - name: OuterclothingFiresuit + - name: ClothingOuterSuitFire prob: 0.75 - type: entity diff --git a/Resources/Prototypes/Catalog/VendingMachines/chapel.yml b/Resources/Prototypes/Catalog/VendingMachines/chapel.yml index 62b47d6caa..594b10002c 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/chapel.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/chapel.yml @@ -4,13 +4,10 @@ description: "A vending machine containing religious supplies and clothing. A label reads: \"A holy vendor for a pious man.\"" spriteName: chapel startingInventory: - OuterclothingChaplainhoodie: 1 - OuterclothingAcolyte: 4 - OuterclothingBedsheet: 4 - OuterclothingBlackhoodie: 1 - OuterclothingChurchcoat: 1 - OuterclothingCultrobes: 1 - OuterclothingCultarmour: 1 - HatChaplainHood: 1 - HatCulthood: 1 - HatCultHelmet: 1 + ClothingOuterHoodieChaplain: 1 + ClothingOuterHoodieBlack: 1 + ClothingOuterRobesCult: 1 + ClothingOuterArmorCult: 1 + ClothingHeadHatHoodChaplainHood: 1 + ClothingHeadHatHoodCulthood: 1 + ClothingHeadHelmetCult: 1 diff --git a/Resources/Prototypes/Catalog/VendingMachines/engivend.yml b/Resources/Prototypes/Catalog/VendingMachines/engivend.yml index 827161b9f8..9db79d4ed0 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/engivend.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/engivend.yml @@ -5,6 +5,6 @@ animationDuration: 2.1 spriteName: engivend startingInventory: - MesonGlasses: 4 + ClothingEyesGlassesMeson: 4 Multitool: 4 PowerCellSmallHigh: 5 diff --git a/Resources/Prototypes/Catalog/VendingMachines/hats.yml b/Resources/Prototypes/Catalog/VendingMachines/hats.yml index 05b4783a4c..0d670016fe 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/hats.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/hats.yml @@ -4,22 +4,19 @@ description: A vending machine containing hats. spriteName: hats startingInventory: - HatBandana: 3 - HatBandblack: 3 - HatBandblue: 3 - HatBandbotany: 3 - HatBandcamo: 3 - HatBandgreen: 3 - HatBandred: 3 - HatBandskull: 3 - HatBearpelt: 3 - HatBeret: 3 - HatBluesoft: 3 - HatBluesoftFlipped: 3 - HatBowler: 3 - HatBunny: 3 - HatCake: 3 - HatCargosoft: 3 - HatCentcom: 3 - HatChefhat: 3 - HatCowboy: 3 + HatBandBlack: 3 + HatBandBlue: 3 + HatBandBotany: 3 + HatBandGreen: 3 + HatBandRed: 3 + HatBandSkull: 3 + ClothingHeadHatBearpelt: 3 + ClothingHeadHatBeret: 3 + ClothingHeadHatBluesoft: 3 + ClothingHeadHatBluesoftFlipped: 3 + ClothingHeadHatBowlerHat: 3 + ClothingHeadHatBunny: 3 + ClothingHeadHatCake: 3 + ClothingHeadHatCargosoft: 3 + ClothingHeadHatCentcom: 3 + ClothingHeadHatChef: 3 diff --git a/Resources/Prototypes/Catalog/VendingMachines/shoes.yml b/Resources/Prototypes/Catalog/VendingMachines/shoes.yml index fc7a4b35bf..fa80b492bf 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/shoes.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/shoes.yml @@ -4,7 +4,7 @@ description: A vending machine containing footwear. spriteName: shoes startingInventory: - ShoesWhite: 3 - ShoesClown: 3 - ShoesJackboots: 3 - ShoesBrown: 3 + ClothingShoesColorWhite: 3 + ClothingShoesClown: 3 + ClothingShoesBootsJack: 3 + ClothingShoesColorBrown: 3 diff --git a/Resources/Prototypes/Catalog/VendingMachines/suits.yml b/Resources/Prototypes/Catalog/VendingMachines/suits.yml index e4f2ab5631..676338d6a2 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/suits.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/suits.yml @@ -4,12 +4,11 @@ description: A vending machine containing jumpsuits and dress garments. spriteName: suits startingInventory: - UniformJanitor: 3 - UniformColorGrey: 3 - UniformEngineering: 3 - UniformAssistant: 3 - UniformClown: 3 - UniformSec: 3 - UniformChef: 3 - UniformCaptain: 3 + ClothingUniformJumpsuitJanitor: 3 + ClothingUniformJumpsuitColorGrey: 3 + ClothingUniformJumpsuitEngineering: 3 + ClothingUniformJumpsuitClown: 3 + ClothingUniformJumpsuitSec: 3 + ClothingUniformJumpsuitChef: 3 + ClothingUniformJumpsuitCaptain: 3 diff --git a/Resources/Prototypes/Entities/Clothing/Back/backpacks.yml b/Resources/Prototypes/Entities/Clothing/Back/backpacks.yml index 53daf4f114..4ce83ff158 100644 --- a/Resources/Prototypes/Entities/Clothing/Back/backpacks.yml +++ b/Resources/Prototypes/Entities/Clothing/Back/backpacks.yml @@ -1,6 +1,6 @@ - type: entity parent: Clothing - id: BackpackClothing + id: ClothingBackpack name: backpack description: You wear this on your back and put items into it. components: @@ -17,106 +17,96 @@ capacity: 100 - type: entity - parent: BackpackClothing - id: ClownPack + parent: ClothingBackpack + id: ClothingBackpackClown name: giggles von honkerton description: It's a backpack made by Honk! Co. components: - type: Sprite sprite: Clothing/Back/Backpacks/clown.rsi - state: icon - type: Clothing sprite: Clothing/Back/Backpacks/clown.rsi - type: entity - parent: BackpackClothing - id: SecPack + parent: ClothingBackpack + id: ClothingBackpackSecurity name: security backpack description: It's a very robust backpack. components: - type: Sprite sprite: Clothing/Back/Backpacks/security.rsi - state: icon - type: Clothing sprite: Clothing/Back/Backpacks/security.rsi - type: entity - parent: BackpackClothing - id: BackpackEngineering + parent: ClothingBackpack + id: ClothingBackpackEngineering name: engineering backpack description: It's a tough backpack for the daily grind of station life. components: - type: Sprite sprite: Clothing/Back/Backpacks/engineering.rsi - state: icon - type: Clothing sprite: Clothing/Back/Backpacks/engineering.rsi - type: entity - parent: BackpackClothing - id: BackpackMedical + parent: ClothingBackpack + id: ClothingBackpackMedical name: medical backpack description: It's a backpack especially designed for use in a sterile environment. components: - type: Sprite sprite: Clothing/Back/Backpacks/medical.rsi - state: icon - type: Clothing sprite: Clothing/Back/Backpacks/medical.rsi - type: entity - parent: BackpackClothing - id: BackpackCaptain + parent: ClothingBackpack + id: ClothingBackpackCaptain name: captain's backpack description: It's a special backpack made exclusively for Nanotrasen officers. components: - type: Sprite sprite: Clothing/Back/Backpacks/captain.rsi - state: icon - type: Clothing sprite: Clothing/Back/Backpacks/captain.rsi -# Inhands/On mob aren't working until I refactor this file -Swept - - type: entity - parent: BackpackClothing - id: BackpackMime + parent: ClothingBackpack + id: ClothingBackpackMime name: mime backpack description: A silent backpack made for those silent workers. Silence Co. components: - type: Sprite sprite: Clothing/Back/Backpacks/mime.rsi - state: icon - type: Clothing sprite: Clothing/Back/Backpacks/mime.rsi - type: entity - parent: BackpackClothing - id: BackpackChemistry + parent: ClothingBackpack + id: ClothingBackpackChemistry name: chemistry backpack description: A backpack specially designed to repel stains and hazardous liquids. components: - type: Sprite sprite: Clothing/Back/Backpacks/chemistry.rsi - state: icon - type: Clothing sprite: Clothing/Back/Backpacks/chemistry.rsi - type: entity - parent: BackpackClothing - id: BackpackBotany + parent: ClothingBackpack + id: ClothingBackpackBotany name: botany backpack description: It's a backpack made of all-natural fibers. components: - type: Sprite sprite: Clothing/Back/Backpacks/botany.rsi - state: icon - type: Clothing sprite: Clothing/Back/Backpacks/botany.rsi - type: entity - parent: BackpackClothing - id: BackpackHolding + parent: ClothingBackpack + id: ClothingBackpackHolding name: bag of holding description: A backpack that opens into a localized pocket of bluespace. components: diff --git a/Resources/Prototypes/Entities/Clothing/Back/duffel.yml b/Resources/Prototypes/Entities/Clothing/Back/duffel.yml index 53113042e4..b9a4cfee00 100644 --- a/Resources/Prototypes/Entities/Clothing/Back/duffel.yml +++ b/Resources/Prototypes/Entities/Clothing/Back/duffel.yml @@ -1,7 +1,7 @@ - type: entity parent: Clothing - id: Duffelbag - name: duffelbag + id: ClothingBackpackDuffel + name: duffel bag description: "A large duffel bag for holding extra things." components: - type: Sprite @@ -17,97 +17,67 @@ capacity: 100 - type: entity - parent: Duffelbag - id: DuffelbagEngineering - name: engineering duffelbag + parent: ClothingBackpackDuffel + id: ClothingBackpackDuffelEngineering + name: engineering duffel bag description: components: - type: Sprite - sprite: Clothing/Back/Duffels/duffel_eng.rsi - state: icon + sprite: Clothing/Back/Duffels/engineering.rsi - type: Clothing - sprite: Clothing/Back/Duffels/duffel_eng.rsi + sprite: Clothing/Back/Duffels/engineering.rsi - type: entity - parent: Duffelbag - id: DuffelbagMedical - name: medical duffelbag + parent: ClothingBackpackDuffel + id: ClothingBackpackDuffelMedical + name: medical duffel bag description: "A large duffel bag for holding extra medical supplies." components: - type: Sprite - sprite: Clothing/Back/Duffels/duffel_med.rsi - state: icon + sprite: Clothing/Back/Duffels/medical.rsi - type: Clothing - sprite: Clothing/Back/Duffels/duffel_med.rsi + sprite: Clothing/Back/Duffels/medical.rsi - type: entity - parent: Duffelbag - id: DuffelbagCaptain - name: captain duffelbag + parent: ClothingBackpackDuffel + id: ClothingBackpackDuffelCaptain + name: captain's duffel bag description: "A large duffel bag for holding extra captainly goods." components: - type: Sprite - sprite: Clothing/Back/Duffels/duffel_cap.rsi - state: icon + sprite: Clothing/Back/Duffels/captain.rsi - type: Clothing - sprite: Clothing/Back/Duffels/duffel_cap.rsi + sprite: Clothing/Back/Duffels/captain.rsi - type: entity - parent: Duffelbag - id: DuffelbagClown - name: clown duffelbag + parent: ClothingBackpackDuffel + id: ClothingBackpackDuffelClown + name: clown duffel bag description: "A large duffel bag for holding extra honk goods." components: - type: Sprite - sprite: Clothing/Back/Duffels/duffel_clown.rsi - state: icon + sprite: Clothing/Back/Duffels/clown.rsi - type: Clothing - sprite: Clothing/Back/Duffels/duffel_clown.rsi + sprite: Clothing/Back/Duffels/clown.rsi - type: entity - parent: Duffelbag - id: DuffelbagSecurity - name: security duffelbag + parent: ClothingBackpackDuffel + id: ClothingBackpackDuffelSecurity + name: security duffel bag description: "A large duffel bag for holding extra security related goods." components: - type: Sprite - sprite: Clothing/Back/Duffels/duffel_sec.rsi - state: icon + sprite: Clothing/Back/Duffels/security.rsi - type: Clothing - sprite: Clothing/Back/Duffels/duffel_sec.rsi + sprite: Clothing/Back/Duffels/security.rsi - type: entity - parent: Duffelbag - id: DuffelbagSyndicate - name: syndicate duffelbag + parent: ClothingBackpackDuffel + id: ClothingBackpackDuffelSyndicate + name: syndicate duffel bag description: "A large duffel bag for holding various traitor goods." components: - type: Sprite - sprite: Clothing/Back/Duffels/duffel_syn.rsi - state: icon + sprite: Clothing/Back/Duffels/syndicate.rsi - type: Clothing - sprite: Clothing/Back/Duffels/duffel_syn.rsi - -# FILLED - -- type: entity - parent: Duffelbag - id: DuffelbagSurgeryFilled - name: surgical duffelbag - description: "A large duffel bag for holding extra medical supplies - this one seems to be designed for holding surgical tools." - components: - - type: Sprite - sprite: Clothing/Back/Duffels/duffel_med.rsi - state: icon - - type: Clothing - sprite: Clothing/Back/Duffels/duffel_med.rsi - - type: StorageFill - contents: - - name: Hemostat - - name: BoneSaw - - name: Drill - - name: Cautery - - name: Retractor - - name: Scalpel - - type: Storage - capacity: 30 + sprite: Clothing/Back/Duffels/syndicate.rsi diff --git a/Resources/Prototypes/Entities/Clothing/Back/gas_tanks.yml b/Resources/Prototypes/Entities/Clothing/Back/gas_tanks.yml index 489c820463..6164e8cc28 100644 --- a/Resources/Prototypes/Entities/Clothing/Back/gas_tanks.yml +++ b/Resources/Prototypes/Entities/Clothing/Back/gas_tanks.yml @@ -29,7 +29,6 @@ components: - type: Sprite sprite: Objects/Tanks/oxygen.rsi - state: icon - type: GasTank outputPressure: 21.27825 air: @@ -65,7 +64,6 @@ components: - type: Sprite sprite: Objects/Tanks/yellow.rsi - state: icon - type: Clothing sprite: Objects/Tanks/yellow.rsi Slots: @@ -81,7 +79,6 @@ components: - type: Sprite sprite: Objects/Tanks/yellow.rsi - state: icon - type: Clothing sprite: Objects/Tanks/yellow.rsi Slots: @@ -97,7 +94,6 @@ components: - type: Sprite sprite: Objects/Tanks/red.rsi - state: icon - type: Clothing sprite: Objects/Tanks/red.rsi Slots: @@ -113,7 +109,6 @@ components: - type: Sprite sprite: Objects/Tanks/red.rsi - state: icon - type: Clothing sprite: Objects/Tanks/red.rsi Slots: @@ -129,7 +124,6 @@ components: - type: Sprite sprite: Objects/Tanks/emergency.rsi - state: icon - type: GasTank outputPressure: 21.27825 air: @@ -166,7 +160,6 @@ components: - type: Sprite sprite: Objects/Tanks/emergency_yellow.rsi - state: icon - type: GasTank outputPressure: 21.27825 air: @@ -203,7 +196,6 @@ components: - type: Sprite sprite: Objects/Tanks/emergency_double.rsi - state: icon - type: GasTank outputPressure: 21.27825 air: @@ -240,7 +232,6 @@ components: - type: Sprite sprite: Objects/Tanks/generic.rsi - state: icon - type: GasTank outputPressure: 101.325 air: @@ -261,7 +252,6 @@ components: - type: Sprite sprite: Objects/Tanks/generic.rsi - state: icon - type: GasTank outputPressure: 101.325 air: @@ -285,7 +275,6 @@ components: - type: Sprite sprite: Objects/Tanks/phoron.rsi - state: icon - type: GasTank outputPressure: 101.325 air: diff --git a/Resources/Prototypes/Entities/Clothing/Back/satchel.yml b/Resources/Prototypes/Entities/Clothing/Back/satchel.yml index 6fcbe928c4..25ee88fc3b 100644 --- a/Resources/Prototypes/Entities/Clothing/Back/satchel.yml +++ b/Resources/Prototypes/Entities/Clothing/Back/satchel.yml @@ -1,6 +1,6 @@ - type: entity parent: Clothing - id: SatchelBase + id: ClothingBackpackSatchel name: satchel description: A trendy looking satchel. components: @@ -17,85 +17,78 @@ capacity: 100 - type: entity - parent: SatchelBase - id: SatchelEngineering + parent: ClothingBackpackSatchel + id: ClothingBackpackSatchelEngineering name: engineering satchel description: A tough satchel with extra pockets. components: - type: Sprite - sprite: Clothing/Back/Satchels/satchel_engineering.rsi - state: icon + sprite: Clothing/Back/Satchels/engineering.rsi - type: Clothing - sprite: Clothing/Back/Satchels/satchel_engineering.rsi + sprite: Clothing/Back/Satchels/engineering.rsi - type: entity - parent: SatchelBase - id: SatchelMedical + parent: ClothingBackpackSatchel + id: ClothingBackpackSatchelMedical name: medical satchel description: A sterile satchel used in medical departments. components: - type: Sprite - sprite: Clothing/Back/Satchels/satchel_medical.rsi - state: icon + sprite: Clothing/Back/Satchels/medical.rsi - type: Clothing - sprite: Clothing/Back/Satchels/satchel_medical.rsi + sprite: Clothing/Back/Satchels/medical.rsi - type: entity - parent: SatchelBase - id: SatchelChemistry + parent: ClothingBackpackSatchel + id: ClothingBackpackSatchelChemistry name: chemistry satchel description: A sterile satchel with chemist colours. components: - type: Sprite - sprite: Clothing/Back/Satchels/satchel_chemistry.rsi - state: icon + sprite: Clothing/Back/Satchels/chemistry.rsi - type: Clothing - sprite: Clothing/Back/Satchels/satchel_chemistry.rsi + sprite: Clothing/Back/Satchels/chemistry.rsi - type: entity - parent: SatchelBase - id: SatchelScience + parent: ClothingBackpackSatchel + id: ClothingBackpackSatchelScience name: science satchel description: Useful for holding research materials. components: - type: Sprite - sprite: Clothing/Back/Satchels/satchel_science.rsi - state: icon + sprite: Clothing/Back/Satchels/science.rsi - type: Clothing - sprite: Clothing/Back/Satchels/satchel_science.rsi + sprite: Clothing/Back/Satchels/science.rsi - type: entity - parent: SatchelBase - id: SatchelSecurity + parent: ClothingBackpackSatchel + id: ClothingBackpackSatchelSecurity name: security satchel description: A robust satchel for security related needs. components: - type: Sprite - sprite: Clothing/Back/Satchels/satchel_security.rsi - state: icon + sprite: Clothing/Back/Satchels/security.rsi - type: Clothing - sprite: Clothing/Back/Satchels/satchel_security.rsi + sprite: Clothing/Back/Satchels/security.rsi - type: entity - parent: SatchelBase - id: SatchelCaptain + parent: ClothingBackpackSatchel + id: ClothingBackpackSatchelCaptain name: captain's satchel description: An exclusive satchel for Nanotrasen officers. components: - type: Sprite - sprite: Clothing/Back/Satchels/satchel_captain.rsi - state: icon + sprite: Clothing/Back/Satchels/captain.rsi - type: Clothing - sprite: Clothing/Back/Satchels/satchel_captain.rsi + sprite: Clothing/Back/Satchels/captain.rsi - type: entity - parent: SatchelBase - id: SatchelHydroponics + parent: ClothingBackpackSatchel + id: ClothingBackpackSatchelHydroponics name: hydroponics satchel description: A satchel made of all natural fibers. components: - type: Sprite - sprite: Clothing/Back/Satchels/satchel_hydroponics.rsi - state: icon + sprite: Clothing/Back/Satchels/hydroponics.rsi - type: Clothing - sprite: Clothing/Back/Satchels/satchel_hydroponics.rsi + sprite: Clothing/Back/Satchels/hydroponics.rsi diff --git a/Resources/Prototypes/Entities/Clothing/Belt/base.yml b/Resources/Prototypes/Entities/Clothing/Belt/base.yml new file mode 100644 index 0000000000..47cb05ceb3 --- /dev/null +++ b/Resources/Prototypes/Entities/Clothing/Belt/base.yml @@ -0,0 +1,11 @@ +- type: entity + parent: Clothing + id: ClothingBeltBase + abstract: true + components: + - type: Sprite + state: icon + - type: Clothing + Slots: [belt] + size: 50 + QuickEquip: false diff --git a/Resources/Prototypes/Entities/Clothing/Belt/belts.yml b/Resources/Prototypes/Entities/Clothing/Belt/belts.yml index 201ed2fe0e..e7af7db6e1 100644 --- a/Resources/Prototypes/Entities/Clothing/Belt/belts.yml +++ b/Resources/Prototypes/Entities/Clothing/Belt/belts.yml @@ -1,17 +1,3 @@ -# BASE -- type: entity - parent: Clothing - id: ClothingBeltBase - abstract: true - components: - - type: Sprite - state: icon - - type: Clothing - Slots: [belt] - size: 50 - QuickEquip: false - -# CONTENT - type: entity parent: ClothingBeltBase id: ClothingBeltAssault @@ -41,7 +27,7 @@ - type: entity parent: ClothingBeltBase id: ClothingBeltChiefEngineer - name: the Chief Engineer's toolbelt + name: chief's toolbelt description: "Holds tools, looks snazzy." components: - type: Sprite @@ -168,7 +154,7 @@ - type: entity parent: ClothingBeltBase - id: UtilityBeltClothing #Change to ClothingBeltUtility + id: ClothingBeltUtility name: utility belt description: "Can hold various things." components: diff --git a/Resources/Prototypes/Entities/Clothing/Earpieces/headsets.yml b/Resources/Prototypes/Entities/Clothing/Ears/headsets.yml similarity index 78% rename from Resources/Prototypes/Entities/Clothing/Earpieces/headsets.yml rename to Resources/Prototypes/Entities/Clothing/Ears/headsets.yml index c67116c7e7..d4f9a8106a 100644 --- a/Resources/Prototypes/Entities/Clothing/Earpieces/headsets.yml +++ b/Resources/Prototypes/Entities/Clothing/Ears/headsets.yml @@ -1,123 +1,113 @@ - type: entity parent: Clothing - id: HeadsetBase + id: ClothingHeadset name: headset abstract: true description: An updated, modular intercom that fits over the head. Takes encryption keys. components: - type: Headset + - type: Sprite + state: icon - type: Clothing Slots: - ears sprite: Clothing/Ears/Headsets/base.rsi - - type: entity - parent: HeadsetBase - id: HeadsetCargo + parent: ClothingHeadset + id: ClothingHeadsetCargo name: cargo headset description: A headset used by the quartermaster and his slaves. components: - type: Sprite sprite: Clothing/Ears/Headsets/cargo.rsi - state: icon - type: entity - parent: HeadsetBase - id: HeadsetCentCom + parent: ClothingHeadset + id: ClothingHeadsetCentCom name: centcomm headset description: A headset used by the upper echelons of Nanotrasen. components: - type: Sprite sprite: Clothing/Ears/Headsets/centcom.rsi - state: icon - type: entity - parent: HeadsetBase - id: HeadsetCommand + parent: ClothingHeadset + id: ClothingHeadsetCommand name: command headset description: A headset with a commanding channel. components: - type: Sprite sprite: Clothing/Ears/Headsets/command.rsi - state: icon - type: entity - parent: HeadsetBase - id: HeadsetEngineering + parent: ClothingHeadset + id: ClothingHeadsetEngineering name: engineering headset description: When the engineers wish to chat like girls. components: - type: Sprite sprite: Clothing/Ears/Headsets/engineering.rsi - state: icon - type: entity - parent: HeadsetBase - id: HeadsetMedical + parent: ClothingHeadset + id: ClothingHeadsetMedical name: medical headset description: A headset for the trained staff of the medbay. components: - type: Sprite sprite: Clothing/Ears/Headsets/medical.rsi - state: icon - type: entity - parent: HeadsetBase - id: HeadsetMedicalScience + parent: ClothingHeadset + id: ClothingHeadsetMedicalScience name: medical research headset description: A headset that is a result of the mating between medical and science. components: - type: Sprite sprite: Clothing/Ears/Headsets/medicalscience.rsi - state: icon - type: entity - parent: HeadsetBase - id: HeadsetMining + parent: ClothingHeadset + id: ClothingHeadsetMining name: mining headset description: Headset used by shaft miners. components: - type: Sprite sprite: Clothing/Ears/Headsets/mining.rsi - state: icon - type: entity - parent: HeadsetBase - id: HeadsetRobotics + parent: ClothingHeadset + id: ClothingHeadsetRobotics name: robotics headset description: Made specifically for the roboticists, who cannot decide between departments. components: - type: Sprite sprite: Clothing/Ears/Headsets/robotics.rsi - state: icon - type: entity - parent: HeadsetBase - id: HeadsetScience + parent: ClothingHeadset + id: ClothingHeadsetScience name: science headset description: A sciency headset. Like usual. components: - type: Sprite sprite: Clothing/Ears/Headsets/science.rsi - state: icon - type: entity - parent: HeadsetBase - id: HeadsetSecurity + parent: ClothingHeadset + id: ClothingHeadsetSecurity name: security headset description: This is used by your elite security force. components: - type: Sprite sprite: Clothing/Ears/Headsets/security.rsi - state: icon - type: entity - parent: HeadsetBase - id: HeadsetService + parent: ClothingHeadset + id: ClothingHeadsetService name: service headset description: Headset used by the service staff, tasked with keeping the station full, happy and clean. components: - type: Sprite sprite: Clothing/Ears/Headsets/service.rsi - state: icon diff --git a/Resources/Prototypes/Entities/Clothing/Earpieces/headsets_alt.yml b/Resources/Prototypes/Entities/Clothing/Ears/headsets_alt.yml similarity index 76% rename from Resources/Prototypes/Entities/Clothing/Earpieces/headsets_alt.yml rename to Resources/Prototypes/Entities/Clothing/Ears/headsets_alt.yml index 9783dee4af..c896f599b3 100644 --- a/Resources/Prototypes/Entities/Clothing/Earpieces/headsets_alt.yml +++ b/Resources/Prototypes/Entities/Clothing/Ears/headsets_alt.yml @@ -1,61 +1,54 @@ - type: entity parent: Clothing - id: HeadsetBaseAlt + id: ClothingHeadsetAlt name: headset abstract: true description: An updated, modular intercom that fits over the head. Takes encryption keys. components: - type: Headset + - type: Sprite + state: icon_alt + - type: Clothing + Slots: + - ears - type: entity - parent: HeadsetBaseAlt - id: HeadsetCommandAlt + parent: ClothingHeadsetAlt + id: ClothingHeadsetAltCommand name: command overear-headset components: - type: Sprite sprite: Clothing/Ears/Headsets/command.rsi - state: icon_alt - type: Clothing - Slots: - - ears sprite: Clothing/Ears/Headsets/command.rsi - type: entity - parent: HeadsetBaseAlt - id: HeadsetMedicalAlt + parent: ClothingHeadsetAlt + id: ClothingHeadsetAltMedical name: medical overear-headset components: - type: Sprite sprite: Clothing/Ears/Headsets/medical.rsi - state: icon_alt - type: Clothing - Slots: - - ears sprite: Clothing/Ears/Headsets/medical.rsi - type: entity - parent: HeadsetBaseAlt - id: HeadsetSecurityAlt + parent: ClothingHeadsetAlt + id: ClothingHeadsetAltSecurity name: security overear-headset components: - type: Sprite sprite: Clothing/Ears/Headsets/security.rsi - state: icon_alt - type: Clothing - Slots: - - ears sprite: Clothing/Ears/Headsets/security.rsi - type: entity - parent: HeadsetBaseAlt - id: HeadsetSyndicateAlt + parent: ClothingHeadsetAlt + id: ClothingHeadsetAltSyndicate name: syndicate overear-headset description: A syndicate headset that can be used to hear all radio frequencies. Protects ears from flashbangs. components: - type: Sprite sprite: Clothing/Ears/Headsets/syndicate.rsi - state: icon_alt - type: Clothing - Slots: - - ears sprite: Clothing/Ears/Headsets/syndicate.rsi diff --git a/Resources/Prototypes/Entities/Clothing/Eyes/base.yml b/Resources/Prototypes/Entities/Clothing/Eyes/base.yml new file mode 100644 index 0000000000..42d2c9bf83 --- /dev/null +++ b/Resources/Prototypes/Entities/Clothing/Eyes/base.yml @@ -0,0 +1,9 @@ +- type: entity + parent: Clothing + id: ClothingEyesBase + abstract: true + components: + - type: Sprite + state: icon + - type: Clothing + Slots: [eyes] diff --git a/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml b/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml new file mode 100644 index 0000000000..f69ebf0b50 --- /dev/null +++ b/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml @@ -0,0 +1,103 @@ +- type: entity + parent: ClothingEyesBase + id: ClothingEyesGlassesBeer + name: beer goggles + description: A pair of sunglasses outfitted with apparatus to scan reagents, as well as providing an innate understanding of liquid viscosity while in motion. + components: + - type: Sprite + sprite: Clothing/Eyes/Glasses/beergoggles.rsi + - type: Clothing + sprite: Clothing/Eyes/Glasses/beergoggles.rsi + +- type: entity + parent: ClothingEyesBase + id: ClothingEyesGlassesGar + name: gar glasses + description: Go beyond impossible and kick reason to the curb! + components: + - type: Sprite + sprite: Clothing/Eyes/Glasses/gar.rsi + - type: Clothing + sprite: Clothing/Eyes/Glasses/gar.rsi + +- type: entity + parent: ClothingEyesBase + id: ClothingEyesGlassesGarOrange + name: orange gar glasses + description: Just who the hell do you think I am?! + components: + - type: Sprite + sprite: Clothing/Eyes/Glasses/gar.rsi + state: icon-alt + - type: Clothing + sprite: Clothing/Eyes/Glasses/gar.rsi + HeldPrefix: alt + +- type: entity + parent: ClothingEyesBase + id: ClothingEyesGlassesGarGiga + name: giga gar glasses + description: We evolve past the person we were a minute before. Little by little we advance with each turn. That's how a drill works! + components: + - type: Sprite + sprite: Clothing/Eyes/Glasses/gar.rsi + state: icon-super + - type: Clothing + sprite: Clothing/Eyes/Glasses/gar.rsi + HeldPrefix: super + +- type: entity + parent: ClothingEyesBase + id: ClothingEyesGlassesMeson + name: optical meson scanners + description: The pinnacle of modern science, wallhacks in real life + components: + - type: Sprite + sprite: Clothing/Eyes/Glasses/meson.rsi + - type: Clothing + sprite: Clothing/Eyes/Glasses/meson.rsi + +- type: entity + parent: ClothingEyesBase + id: ClothingEyesGlasses + name: glasses + description: You want to wear glasses in a game? Imagine rping as physically disabled. + components: + - type: Sprite + sprite: Clothing/Eyes/Glasses/glasses.rsi + - type: Clothing + sprite: Clothing/Eyes/Glasses/glasses.rsi + +- type: entity + parent: ClothingEyesBase + id: ClothingEyesGlassesSunglasses + name: sun glasses + description: Useful both for security and cargonia + components: + - type: Sprite + sprite: Clothing/Eyes/Glasses/sunglasses.rsi + - type: Clothing + sprite: Clothing/Eyes/Glasses/sunglasses.rsi + +- type: entity + parent: ClothingEyesBase + id: ClothingEyesGlassesSecurity + name: security sunglasses + description: Strangely ancient technology used to help provide rudimentary eye cover. Enhanced shielding blocks many flashes. Often worn by budget security officers. + components: + - type: Sprite + sprite: Clothing/Eyes/Glasses/secglasses.rsi + - type: Clothing + sprite: Clothing/Eyes/Glasses/secglasses.rsi + +#Make a scanner category when these actually function and we get the trayson +- type: entity + parent: ClothingEyesBase + id: ClothingEyesGlassesThermal + name: optical thermal scanner + description: Thermals in the shape of glasses. + components: + - type: Sprite + sprite: Clothing/Eyes/Glasses/thermal.rsi + - type: Clothing + sprite: Clothing/Eyes/Glasses/thermal.rsi diff --git a/Resources/Prototypes/Entities/Clothing/Eyes/hud.yml b/Resources/Prototypes/Entities/Clothing/Eyes/hud.yml new file mode 100644 index 0000000000..1493c321b9 --- /dev/null +++ b/Resources/Prototypes/Entities/Clothing/Eyes/hud.yml @@ -0,0 +1,32 @@ +- type: entity + parent: ClothingEyesBase + id: ClothingEyesHudDiagnostic + name: diagnostic hud + description: A heads-up display capable of analyzing the integrity and status of robotics and exosuits. + components: + - type: Sprite + sprite: Clothing/Eyes/Hud/diag.rsi + - type: Clothing + sprite: Clothing/Eyes/Hud/diag.rsi + +- type: entity + parent: ClothingEyesBase + id: ClothingEyesHudMedical + name: medical hud + description: A heads-up display that scans the humanoids in view and provides accurate data about their health status. + components: + - type: Sprite + sprite: Clothing/Eyes/Hud/med.rsi + - type: Clothing + sprite: Clothing/Eyes/Hud/med.rsi + +- type: entity + parent: ClothingEyesBase + id: ClothingEyesHudSecurity + name: security hud + description: A heads-up display that scans the humanoids in view and provides accurate data about their ID status and security records. + components: + - type: Sprite + sprite: Clothing/Eyes/Hud/sec.rsi + - type: Clothing + sprite: Clothing/Eyes/Hud/sec.rsi diff --git a/Resources/Prototypes/Entities/Clothing/Eyes/misc.yml b/Resources/Prototypes/Entities/Clothing/Eyes/misc.yml new file mode 100644 index 0000000000..2d0634d589 --- /dev/null +++ b/Resources/Prototypes/Entities/Clothing/Eyes/misc.yml @@ -0,0 +1,10 @@ +- type: entity + parent: ClothingEyesBase + id: ClothingEyesEyepatch + name: eyepatch + description: Yarr. + components: + - type: Sprite + sprite: Clothing/Eyes/Misc/eyepatch.rsi + - type: Clothing + sprite: Clothing/Eyes/Misc/eyepatch.rsi diff --git a/Resources/Prototypes/Entities/Clothing/Glasses/eyes.yml b/Resources/Prototypes/Entities/Clothing/Glasses/eyes.yml deleted file mode 100644 index a1c8326d53..0000000000 --- a/Resources/Prototypes/Entities/Clothing/Glasses/eyes.yml +++ /dev/null @@ -1,46 +0,0 @@ -- type: entity - parent: Clothing - id: GlassesBase - abstract: true - components: - - type: Clothing - Slots: [eyes] - -- type: entity - parent: GlassesBase - id: MesonGlasses - name: optical meson scanners - description: The pinnacle of modern science, wallhacks in real life - components: - - type: Sprite - sprite: Clothing/Glasses/meson_scanners.rsi - state: meson - - - type: Clothing - sprite: Clothing/Glasses/meson_scanners.rsi - -- type: entity - parent: GlassesBase - id: SunGlasses - name: sun glasses - description: Useful both for security and cargonia - components: - - type: Sprite - sprite: Clothing/Glasses/sunglasses.rsi - state: icon - - - type: Clothing - sprite: Clothing/Glasses/sunglasses.rsi - -- type: entity - parent: GlassesBase - id: SecGlasses - name: security sunglasses - description: Strangely ancient technology used to help provide rudimentary eye cover. Enhanced shielding blocks many flashes. Often worn by budget security officers. - components: - - type: Sprite - sprite: Clothing/Glasses/sunglasses_sec.rsi - state: icon - - - type: Clothing - sprite: Clothing/Glasses/sunglasses_sec.rsi diff --git a/Resources/Prototypes/Entities/Clothing/Gloves/gloves.yml b/Resources/Prototypes/Entities/Clothing/Gloves/gloves.yml deleted file mode 100644 index 4cbfea652e..0000000000 --- a/Resources/Prototypes/Entities/Clothing/Gloves/gloves.yml +++ /dev/null @@ -1,312 +0,0 @@ -- type: entity - parent: Clothing - id: GlovesBase - abstract: true - components: - - type: Sprite - state: icon - - - type: Clothing - Slots: - - gloves - -- type: entity - parent: GlovesBase - id: GlovesBlack - name: black gloves - description: Regular black gloves that do not keep you from frying. - components: - - type: Sprite - sprite: Clothing/Gloves/black.rsi - - - type: Clothing - sprite: Clothing/Gloves/black.rsi - -- type: entity - parent: GlovesBase - id: GlovesBlue - name: blue gloves - description: Regular blue gloves that do not keep you from frying. - components: - - type: Sprite - sprite: Clothing/Gloves/blue.rsi - - - type: Clothing - sprite: Clothing/Gloves/blue.rsi - -- type: entity - parent: GlovesBase - id: GlovesBoxingRed - name: boxing gloves (red) - description: Red gloves for competitive boxing. - components: - - type: Sprite - sprite: Clothing/Gloves/boxing.rsi - - - type: Clothing - sprite: Clothing/Gloves/boxing.rsi - -- type: entity - parent: GlovesBase - id: GlovesBoxingBlue - name: boxing gloves (blue) - description: Blue gloves for competitive boxing. - components: - - type: Sprite - sprite: Clothing/Gloves/boxingblue.rsi - - - type: Clothing - sprite: Clothing/Gloves/boxingblue.rsi - -- type: entity - parent: GlovesBase - id: GlovesBoxingGreen - name: boxing gloves (green) - description: Green gloves for competitive boxing. - components: - - type: Sprite - sprite: Clothing/Gloves/boxinggreen.rsi - - - type: Clothing - sprite: Clothing/Gloves/boxinggreen.rsi - -- type: entity - parent: GlovesBase - id: GlovesBoxingYellow - name: boxing gloves (yellow) - description: Yellow gloves for competitive boxing. - components: - - type: Sprite - sprite: Clothing/Gloves/boxingyellow.rsi - - - type: Clothing - sprite: Clothing/Gloves/boxingyellow.rsi - -- type: entity - parent: GlovesBase - id: GlovesBrown - name: brown gloves - description: Regular brown gloves that do not keep you from frying. - components: - - type: Sprite - sprite: Clothing/Gloves/brown.rsi - - - type: Clothing - sprite: Clothing/Gloves/brown.rsi - -- type: entity - parent: GlovesBase - id: GlovesCaptain - name: captain gloves - description: Regal blue gloves, with a nice gold trim. Swanky. - components: - - type: Sprite - sprite: Clothing/Gloves/captain.rsi - - - type: Clothing - sprite: Clothing/Gloves/captain.rsi - -- type: entity - parent: GlovesBase - id: GlovesGray - name: grey gloves - description: Regular grey gloves that do not keep you from frying. - components: - - type: Sprite - sprite: Clothing/Gloves/gray.rsi - - - type: Clothing - sprite: Clothing/Gloves/gray.rsi - -- type: entity - parent: GlovesBase - id: GlovesGreen - name: green gloves - description: Regular green gloves that do not keep you from frying. - components: - - type: Sprite - sprite: Clothing/Gloves/green.rsi - - - type: Clothing - sprite: Clothing/Gloves/green.rsi - -- type: entity - parent: GlovesBase - id: GlovesIhscombat - name: IHS combat gloves - description: These tactical gloves are somewhat fire and impact resistant. - components: - - type: Sprite - sprite: Clothing/Gloves/ihscombat.rsi - - - type: Clothing - sprite: Clothing/Gloves/ihscombat.rsi - -- type: entity - parent: GlovesBase - id: GlovesLatex - name: latex gloves - description: Thin sterile latex gloves. - components: - - type: Sprite - sprite: Clothing/Gloves/latex.rsi - - - type: Clothing - sprite: Clothing/Gloves/latex.rsi - -- type: entity - parent: GlovesBase - id: GlovesLeather - name: "botanist's leather gloves" - description: "These leather gloves protect against thorns, barbs, prickles, spikes and other harmful objects of floral origin. They're also quite warm." - components: - - type: Sprite - sprite: Clothing/Gloves/leather.rsi - - - type: Clothing - sprite: Clothing/Gloves/leather.rsi - HeatResistance: 1400 - -- type: entity - parent: GlovesBase - id: GlovesLightBrown - name: light brown gloves - description: Regular light brown gloves that do not keep you from frying. - components: - - type: Sprite - sprite: Clothing/Gloves/lightbrown.rsi - - - type: Clothing - sprite: Clothing/Gloves/lightbrown.rsi - -- type: entity - parent: GlovesBase - id: GlovesOrange - name: orange gloves - description: Regular orange gloves that do not keep you from frying. - components: - - type: Sprite - sprite: Clothing/Gloves/orange.rsi - - - type: Clothing - sprite: Clothing/Gloves/orange.rsi - -- type: entity - parent: GlovesBase - id: GlovesPowerglove - name: power gloves - description: Now I'm playin' with power! Wait, they are turned off. - components: - - type: Sprite - sprite: Clothing/Gloves/powerglove.rsi - - - type: Clothing - sprite: Clothing/Gloves/powerglove.rsi - -- type: entity - parent: GlovesBase - id: GlovesPowergloveActive - name: powergloves (active) - description: Now I'm playin' with power! BAM! - components: - - type: Sprite - sprite: Clothing/Gloves/powerglove_active.rsi - - - type: Clothing - sprite: Clothing/Gloves/powerglove_active.rsi - -- type: entity - parent: GlovesBase - id: GlovesPurple - name: purple gloves - description: Regular purple gloves that do not keep you from frying. - components: - - type: Sprite - sprite: Clothing/Gloves/purple.rsi - - - type: Clothing - sprite: Clothing/Gloves/purple.rsi - -- type: entity - parent: GlovesBase - id: GlovesRed - name: red gloves - description: Regular red gloves that do not keep you from frying. - components: - - type: Sprite - sprite: Clothing/Gloves/red.rsi - - - type: Clothing - sprite: Clothing/Gloves/red.rsi - -- type: entity - parent: GlovesBase - id: GlovesRobohands - name: robohands gloves - description: Beep boop borp! - components: - - type: Sprite - sprite: Clothing/Gloves/robohands.rsi - - - type: Clothing - sprite: Clothing/Gloves/robohands.rsi - -- type: entity - parent: GlovesBase - id: GlovesSNinja - name: S ninja gloves - description: These black nano-enhanced gloves insulate from electricity and provide fire resistance. - components: - - type: Sprite - sprite: Clothing/Gloves/s_ninja.rsi - - - type: Clothing - sprite: Clothing/Gloves/s_ninja.rsi - -- type: entity - parent: GlovesBase - id: GlovesSNinjak - name: S ninjak gloves - description: These black and red nano-enhanced gloves insulate from electricity and provide fire resistance. - components: - - type: Sprite - sprite: Clothing/Gloves/s_ninjak.rsi - - - type: Clothing - sprite: Clothing/Gloves/s_ninjak.rsi - -- type: entity - parent: GlovesBase - id: GlovesSNinjan - name: S ninjan gloves - description: These black and green nano-enhanced gloves insulate from electricity and provide fire resistance. - components: - - type: Sprite - sprite: Clothing/Gloves/s_ninjan.rsi - - - type: Clothing - sprite: Clothing/Gloves/s_ninjan.rsi - -- type: entity - parent: GlovesBase - id: GlovesWhite - name: white gloves - description: Those gloves look fancy. - components: - - type: Sprite - sprite: Clothing/Gloves/white.rsi - - - type: Clothing - sprite: Clothing/Gloves/white.rsi - -- type: entity - parent: GlovesBase - id: GlovesYellow - name: insulated gloves - description: These gloves will protect the wearer from electric shocks. - components: - - type: Sprite - sprite: Clothing/Gloves/yellow.rsi - - - type: Clothing - sprite: Clothing/Gloves/yellow.rsi diff --git a/Resources/Prototypes/Entities/Clothing/Hands/base.yml b/Resources/Prototypes/Entities/Clothing/Hands/base.yml new file mode 100644 index 0000000000..0374ad0919 --- /dev/null +++ b/Resources/Prototypes/Entities/Clothing/Hands/base.yml @@ -0,0 +1,9 @@ +- type: entity + parent: Clothing + id: ClothingHandsBase + abstract: true + components: + - type: Sprite + state: icon + - type: Clothing + Slots: [gloves] diff --git a/Resources/Prototypes/Entities/Clothing/Hands/colored.yml b/Resources/Prototypes/Entities/Clothing/Hands/colored.yml new file mode 100644 index 0000000000..4720a49182 --- /dev/null +++ b/Resources/Prototypes/Entities/Clothing/Hands/colored.yml @@ -0,0 +1,120 @@ +- type: entity + parent: ClothingHandsBase + id: ClothingHandsGlovesColorPurple + name: purple gloves + description: Regular purple gloves that do not keep you from frying. + components: + - type: Sprite + sprite: Clothing/Hands/Gloves/Color/purple.rsi + - type: Clothing + sprite: Clothing/Hands/Gloves/Color/purple.rsi + +- type: entity + parent: ClothingHandsBase + id: ClothingHandsGlovesColorRed + name: red gloves + description: Regular red gloves that do not keep you from frying. + components: + - type: Sprite + sprite: Clothing/Hands/Gloves/Color/red.rsi + - type: Clothing + sprite: Clothing/Hands/Gloves/Color/red.rsi + +- type: entity + parent: ClothingHandsBase + id: ClothingHandsGlovesColorBlack + name: black gloves + description: Regular black gloves that do not keep you from frying. + components: + - type: Sprite + sprite: Clothing/Hands/Gloves/Color/black.rsi + - type: Clothing + sprite: Clothing/Hands/Gloves/Color/black.rsi + +- type: entity + parent: ClothingHandsBase + id: ClothingHandsGlovesColorBlue + name: blue gloves + description: Regular blue gloves that do not keep you from frying. + components: + - type: Sprite + sprite: Clothing/Hands/Gloves/Color/blue.rsi + - type: Clothing + sprite: Clothing/Hands/Gloves/Color/blue.rsi + +- type: entity + parent: ClothingHandsBase + id: ClothingHandsGlovesColorBrown + name: brown gloves + description: Regular brown gloves that do not keep you from frying. + components: + - type: Sprite + sprite: Clothing/Hands/Gloves/Color/brown.rsi + - type: Clothing + sprite: Clothing/Hands/Gloves/Color/brown.rsi + +- type: entity + parent: ClothingHandsBase + id: ClothingHandsGlovesColorGray + name: grey gloves + description: Regular grey gloves that do not keep you from frying. + components: + - type: Sprite + sprite: Clothing/Hands/Gloves/Color/gray.rsi + - type: Clothing + sprite: Clothing/Hands/Gloves/Color/gray.rsi + +- type: entity + parent: ClothingHandsBase + id: ClothingHandsGlovesColorGreen + name: green gloves + description: Regular green gloves that do not keep you from frying. + components: + - type: Sprite + sprite: Clothing/Hands/Gloves/Color/green.rsi + - type: Clothing + sprite: Clothing/Hands/Gloves/Color/green.rsi + +- type: entity + parent: ClothingHandsBase + id: ClothingHandsGlovesColorLightBrown + name: light brown gloves + description: Regular light brown gloves that do not keep you from frying. + components: + - type: Sprite + sprite: Clothing/Hands/Gloves/Color/lightbrown.rsi + - type: Clothing + sprite: Clothing/Hands/Gloves/Color/lightbrown.rsi + +- type: entity + parent: ClothingHandsBase + id: ClothingHandsGlovesColorOrange + name: orange gloves + description: Regular orange gloves that do not keep you from frying. + components: + - type: Sprite + sprite: Clothing/Hands/Gloves/Color/orange.rsi + - type: Clothing + sprite: Clothing/Hands/Gloves/Color/orange.rsi + +- type: entity + parent: ClothingHandsBase + id: ClothingHandsGlovesColorWhite + name: white gloves + description: Those gloves look fancy. + components: + - type: Sprite + sprite: Clothing/Hands/Gloves/Color/white.rsi + - type: Clothing + sprite: Clothing/Hands/Gloves/Color/white.rsi + +- type: entity + parent: ClothingHandsBase + id: ClothingHandsGlovesColorYellow + name: insulated gloves + description: These gloves will protect the wearer from electric shocks. + components: + - type: Sprite + sprite: Clothing/Hands/Gloves/Color/yellow.rsi + - type: Clothing + sprite: Clothing/Hands/Gloves/Color/yellow.rsi diff --git a/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml b/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml new file mode 100644 index 0000000000..34489d77ae --- /dev/null +++ b/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml @@ -0,0 +1,127 @@ +- type: entity + parent: ClothingHandsBase + id: ClothingHandsGlovesBoxingRed + name: boxing gloves + description: Red gloves for competitive boxing. + components: + - type: Sprite + sprite: Clothing/Hands/Gloves/boxing.rsi + - type: Clothing + sprite: Clothing/Hands/Gloves/boxing.rsi + +- type: entity + parent: ClothingHandsBase + id: ClothingHandsGlovesBoxingBlue + name: blue boxing gloves + description: Blue gloves for competitive boxing. + components: + - type: Sprite + sprite: Clothing/Hands/Gloves/boxing.rsi + state: icon-blue + - type: Clothing + sprite: Clothing/Hands/Gloves/boxing.rsi + HeldPrefix: blue + +- type: entity + parent: ClothingHandsBase + id: ClothingHandsGlovesBoxingGreen + name: green boxing gloves + description: Green gloves for competitive boxing. + components: + - type: Sprite + sprite: Clothing/Hands/Gloves/boxing.rsi + state: icon-green + - type: Clothing + sprite: Clothing/Hands/Gloves/boxing.rsi + HeldPrefix: green + +- type: entity + parent: ClothingHandsBase + id: ClothingHandsGlovesBoxingYellow + name: yellow boxing gloves + description: Yellow gloves for competitive boxing. + components: + - type: Sprite + sprite: Clothing/Hands/Gloves/boxing.rsi + state: icon-yellow + - type: Clothing + sprite: Clothing/Hands/Gloves/boxing.rsi + HeldPrefix: yellow + +- type: entity + parent: ClothingHandsBase + id: ClothingHandsGlovesCaptain + name: captain gloves + description: Regal blue gloves, with a nice gold trim. Swanky. + components: + - type: Sprite + sprite: Clothing/Hands/Gloves/captain.rsi + - type: Clothing + sprite: Clothing/Hands/Gloves/captain.rsi + +- type: entity + parent: ClothingHandsBase + id: ClothingHandsGlovesIhscombat + name: IHS combat gloves + description: These tactical gloves are somewhat fire and impact resistant. + components: + - type: Sprite + sprite: Clothing/Hands/Gloves/ihscombat.rsi + - type: Clothing + sprite: Clothing/Hands/Gloves/ihscombat.rsi + +- type: entity + parent: ClothingHandsBase + id: ClothingHandsGlovesLatex + name: latex gloves + description: Thin sterile latex gloves. + components: + - type: Sprite + sprite: Clothing/Hands/Gloves/latex.rsi + - type: Clothing + sprite: Clothing/Hands/Gloves/latex.rsi + +- type: entity + parent: ClothingHandsBase + id: ClothingHandsGlovesLeather + name: "botanist's leather gloves" + description: "These leather gloves protect against thorns, barbs, prickles, spikes and other harmful objects of floral origin. They're also quite warm." + components: + - type: Sprite + sprite: Clothing/Hands/Gloves/leather.rsi + - type: Clothing + sprite: Clothing/Hands/Gloves/leather.rsi + HeatResistance: 1400 + +- type: entity + parent: ClothingHandsBase + id: ClothingHandsGlovesPowerglove + name: power gloves + description: Now I'm playin' with power! Wait, they are turned off. # Use "Now I'm playin' with power! BAM!" for when they're turned on + components: + - type: Sprite + sprite: Clothing/Hands/Gloves/powerglove.rsi + - type: Clothing + sprite: Clothing/Hands/Gloves/powerglove.rsi + +- type: entity + parent: ClothingHandsBase + id: ClothingHandsGlovesRobohands + name: robohands gloves + description: Beep boop borp! + components: + - type: Sprite + sprite: Clothing/Hands/Gloves/robohands.rsi + - type: Clothing + sprite: Clothing/Hands/Gloves/robohands.rsi + +- type: entity + parent: ClothingHandsBase + id: ClothingHandsGlovesSpaceNinja + name: space ninja gloves + description: These black nano-enhanced gloves insulate from electricity and provide fire resistance. + components: + - type: Sprite + sprite: Clothing/Hands/Gloves/spaceninja.rsi + - type: Clothing + sprite: Clothing/Hands/Gloves/spaceninja.rsi diff --git a/Resources/Prototypes/Entities/Clothing/Head/animals.yml b/Resources/Prototypes/Entities/Clothing/Head/animals.yml index a0b8b35713..4405f7fce3 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/animals.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/animals.yml @@ -1,131 +1,87 @@ - type: entity - parent: HatBase - id: HatMonkey - name: monkey - description: That's a monkey head. It has a hole on a mouth to eat bananas. - components: - - type: Sprite - sprite: Clothing/Head/monkey.rsi - - - type: Clothing - sprite: Clothing/Head/monkey.rsi - -- type: entity - parent: HatBase - id: HatMouseBrown - name: mouse brown - description: This is a head of a brown mouse. Squeak! - components: - - type: Sprite - sprite: Clothing/Head/mouse_brown.rsi - - - type: Clothing - sprite: Clothing/Head/mouse_brown.rsi - -- type: entity - parent: HatBase - id: HatMouseGray - name: mouse gray - description: This is a head of a grey mouse. Squeak! - components: - - type: Sprite - sprite: Clothing/Head/mouse_gray.rsi - - - type: Clothing - sprite: Clothing/Head/mouse_gray.rsi - -- type: entity - parent: HatBase - id: HatMouseWhite - name: mouse white - description: This is a head of a white mouse. Squeak! - components: - - type: Sprite - sprite: Clothing/Head/mouse_white.rsi - - - type: Clothing - sprite: Clothing/Head/mouse_white.rsi - -- type: entity - parent: HatBase - id: HatNymph - name: nymph - description: It's a nymph. You can put it on your head. - components: - - type: Sprite - sprite: Clothing/Head/nymph.rsi - - - type: Clothing - sprite: Clothing/Head/nymph.rsi - -- type: entity - parent: HatBase - id: HatPai-cat - name: pai-cat - description: Personal AI in a cat form. - components: - - type: Sprite - sprite: Clothing/Head/pai-cat.rsi - - - type: Clothing - sprite: Clothing/Head/pai-cat.rsi - -- type: entity - parent: HatBase - id: HatPai-monkey - name: pai-monkey - description: Personal AI in a monkey form. - components: - - type: Sprite - sprite: Clothing/Head/pai-monkey.rsi - - - type: Clothing - sprite: Clothing/Head/pai-monkey.rsi - -- type: entity - parent: HatBase - id: HatPai-mouse - name: pai-mouse - description: Personal AI in a mouse form. - components: - - type: Sprite - sprite: Clothing/Head/pai-mouse.rsi - - - type: Clothing - sprite: Clothing/Head/pai-mouse.rsi - -- type: entity - parent: HatBase - id: HatCatGrey + parent: ClothingHeadBase + id: ClothingHeadHatAnimalCat name: grey cat description: A cute and fluffy head of a grey cat. components: - type: Sprite - sprite: Clothing/Head/cat.rsi - + sprite: Clothing/Head/Animals/cat.rsi - type: Clothing - sprite: Clothing/Head/cat.rsi + sprite: Clothing/Head/Animals/cat.rsi - type: entity - parent: HatBase - id: HatCatBrown + parent: ClothingHeadBase + id: ClothingHeadHatAnimalCatBrown name: brown cat description: A cute and fluffy head of a brown cat. components: - type: Sprite - sprite: Clothing/Head/cat2.rsi - + sprite: Clothing/Head/Animals/cat2.rsi - type: Clothing - sprite: Clothing/Head/cat2.rsi + sprite: Clothing/Head/Animals/cat2.rsi - type: entity - parent: HatBase - id: HatCatBlack + parent: ClothingHeadBase + id: ClothingHeadHatAnimalCatBlack name: black cat description: A cute and fluffy head of a black cat. components: - type: Sprite - sprite: Clothing/Head/cat3.rsi - + sprite: Clothing/Head/Animals/cat3.rsi - type: Clothing - sprite: Clothing/Head/cat3.rsi + sprite: Clothing/Head/Animals/cat3.rsi + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatAnimalHeadslime + name: headslime + description: A green, sticky headslime, you put it on your head. + components: + - type: Sprite + sprite: Clothing/Head/Animals/headslime.rsi + - type: Clothing + sprite: Clothing/Head/Animals/headslime.rsi + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatAnimalMonkey + name: monkey + description: That's a monkey head. It has a hole on a mouth to eat bananas. + components: + - type: Sprite + sprite: Clothing/Head/Animals/monkey.rsi + - type: Clothing + sprite: Clothing/Head/Animals/monkey.rsi + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatAnimalMouseBrown + name: mouse brown + description: This is a head of a brown mouse. Squeak! + components: + - type: Sprite + sprite: Clothing/Head/Animals/mouse_brown.rsi + - type: Clothing + sprite: Clothing/Head/Animals/mouse_brown.rsi + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatAnimalMouseGray + name: mouse gray + description: This is a head of a grey mouse. Squeak! + components: + - type: Sprite + sprite: Clothing/Head/Animals/mouse_gray.rsi + - type: Clothing + sprite: Clothing/Head/Animals/mouse_gray.rsi + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatAnimalMouseWhite + name: mouse white + description: This is a head of a white mouse. Squeak! + components: + - type: Sprite + sprite: Clothing/Head/Animals/mouse_white.rsi + - type: Clothing + sprite: Clothing/Head/Animals/mouse_white.rsi diff --git a/Resources/Prototypes/Entities/Clothing/Head/bandanas.yml b/Resources/Prototypes/Entities/Clothing/Head/bandanas.yml new file mode 100644 index 0000000000..93e1dbb836 --- /dev/null +++ b/Resources/Prototypes/Entities/Clothing/Head/bandanas.yml @@ -0,0 +1,87 @@ +- type: entity + parent: ClothingHeadBase + id: HatBandBlack + name: black bandana + description: A black bandana to make you look cool. + components: + - type: Sprite + sprite: Clothing/Head/Bandanas/black.rsi + - type: Clothing + sprite: Clothing/Head/Bandanas/black.rsi + +- type: entity + parent: ClothingHeadBase + id: HatBandBlue + name: blue bandana + description: A blue bandana to make you look cool. + components: + - type: Sprite + sprite: Clothing/Head/Bandanas/blue.rsi + - type: Clothing + sprite: Clothing/Head/Bandanas/blue.rsi + +- type: entity + parent: ClothingHeadBase + id: HatBandBotany + name: botany bandana + description: A botany bandana to make you look cool, made from natural fibers. + components: + - type: Sprite + sprite: Clothing/Head/Bandanas/botany.rsi + - type: Clothing + sprite: Clothing/Head/Bandanas/botany.rsi + +- type: entity + parent: ClothingHeadBase + id: HatBandGold + name: gold bandana + description: A gold bandana to make you look cool. + components: + - type: Sprite + sprite: Clothing/Head/Bandanas/gold.rsi + - type: Clothing + sprite: Clothing/Head/Bandanas/gold.rsi + +- type: entity + parent: ClothingHeadBase + id: HatBandGreen + name: green bandana + description: A green bandana to make you look cool. + components: + - type: Sprite + sprite: Clothing/Head/Bandanas/green.rsi + - type: Clothing + sprite: Clothing/Head/Bandanas/green.rsi + +- type: entity + parent: ClothingHeadBase + id: HatBandGrey + name: grey bandana + description: A grey bandana to make you look cool. + components: + - type: Sprite + sprite: Clothing/Head/Bandanas/grey.rsi + - type: Clothing + sprite: Clothing/Head/Bandanas/grey.rsi + +- type: entity + parent: ClothingHeadBase + id: HatBandRed + name: red bandana + description: A red bandana to make you look cool. + components: + - type: Sprite + sprite: Clothing/Head/Bandanas/red.rsi + - type: Clothing + sprite: Clothing/Head/Bandanas/red.rsi + +- type: entity + parent: ClothingHeadBase + id: HatBandSkull + name: skull bandana + description: A bandana with a skull to make you look even cooler. + components: + - type: Sprite + sprite: Clothing/Head/Bandanas/skull.rsi + - type: Clothing + sprite: Clothing/Head/Bandanas/skull.rsi diff --git a/Resources/Prototypes/Entities/Clothing/Head/base.yml b/Resources/Prototypes/Entities/Clothing/Head/base.yml new file mode 100644 index 0000000000..d35da8e880 --- /dev/null +++ b/Resources/Prototypes/Entities/Clothing/Head/base.yml @@ -0,0 +1,31 @@ +- type: entity + parent: Clothing + id: ClothingHeadBase + abstract: true + components: + - type: Clothing + Slots: + - Helmet + - type: Sprite + state: icon + +- type: entity + parent: Clothing + id: HatBase + abstract: true + components: + - type: Clothing + Slots: + - Helmet + - type: Sprite + state: icon + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHardsuitBase + name: base hardsuit helmet + abstract: true + components: + - type: PressureProtection + highPressureMultiplier: 0.5 + lowPressureMultiplier: 100 diff --git a/Resources/Prototypes/Entities/Clothing/Head/hardhats.yml b/Resources/Prototypes/Entities/Clothing/Head/hardhats.yml new file mode 100644 index 0000000000..11b8830005 --- /dev/null +++ b/Resources/Prototypes/Entities/Clothing/Head/hardhats.yml @@ -0,0 +1,54 @@ +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatHardhatBlue + name: blue hard hat + description: A hard hat, painted in blue, used in dangerous working conditions to protect the head. Comes with a built-in flashlight. + components: + - type: Sprite + sprite: Clothing/Head/Hardhats/blue.rsi + - type: Clothing + sprite: Clothing/Head/Hardhats/blue.rsi + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatHardhatOrange + name: orange hard hat + description: A hard hat, painted in orange, used in dangerous working conditions to protect the head. Comes with a built-in flashlight. + components: + - type: Sprite + sprite: Clothing/Head/Hardhats/orange.rsi + - type: Clothing + sprite: Clothing/Head/Hardhats/orange.rsi + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatHardhatRed + name: red hard hat + description: A hard hat, painted in red, used in dangerous working conditions to protect the head. Comes with a built-in flashlight. + components: + - type: Sprite + sprite: Clothing/Head/Hardhats/red.rsi + - type: Clothing + sprite: Clothing/Head/Hardhats/red.rsi + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatHardhatWhite + name: white hard hat + description: A hard hat, painted in white, used in dangerous working conditions to protect the head. Comes with a built-in flashlight. + components: + - type: Sprite + sprite: Clothing/Head/Hardhats/white.rsi + - type: Clothing + sprite: Clothing/Head/Hardhats/white.rsi + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatHardhatYellow + name: yellow hard hat + description: A hard hat, painted in yellow, used in dangerous working conditions to protect the head. Comes with a built-in flashlight. + components: + - type: Sprite + sprite: Clothing/Head/Hardhats/yellow.rsi + - type: Clothing + sprite: Clothing/Head/Hardhats/yellow.rsi diff --git a/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml b/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml index 80968bc20a..f663e3ffd6 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml @@ -1,158 +1,163 @@ - type: entity - parent: HatBase - id: HelmetHardsuitBase - name: base hardsuit helmet - abstract: true - components: - - type: PressureProtection - highPressureMultiplier: 0.75 - lowPressureMultiplier: 100 - -- type: entity - parent: HelmetHardsuitBase - id: HatHardsuitOld - name: old hardsuit helmet - description: An old helmet from a hardsuit. Still functional, for now. - components: - - type: Sprite - sprite: Clothing/Head/hardsuit-old.rsi - - - type: Clothing - sprite: Clothing/Head/hardsuit-old.rsi - - type: PressureProtection - highPressureMultiplier: 0.85 - lowPressureMultiplier: 45 - - -- type: entity - parent: HelmetHardsuitBase - id: HelmetHardsuitAtmos + parent: ClothingHeadHardsuitBase + id: ClothingHeadHelmetHardsuitAtmos name: atmos hardsuit helmet description: A special hardsuit helmet designed for working in low-pressure, high thermal environments. components: - type: Sprite - sprite: Clothing/Head/hardsuit-atmos.rsi - + sprite: Clothing/Head/Hardsuits/atmospherics.rsi - type: Clothing - sprite: Clothing/Head/hardsuit-atmos.rsi - - type: PressureProtection - highPressureMultiplier: 0.5 - lowPressureMultiplier: 100 + sprite: Clothing/Head/Hardsuits/atmospherics.rsi - type: entity - parent: HelmetHardsuitBase - id: HelmetHardsuitEngineering + parent: ClothingHeadHardsuitBase + id: ClothingHeadHelmetHardsuitCap + name: captain's hardsuit helmet + description: Special hardsuit helmet, made for the captain of the station. + components: + - type: Sprite + sprite: Clothing/Head/Hardsuits/capspace.rsi + - type: Clothing + sprite: Clothing/Head/Hardsuits/capspace.rsi + +- type: entity + parent: HatBase + id: ClothingHeadHelmetHardsuitDeathsquad + name: deathsquad + description: A robust helmet for special operations. + components: + - type: Sprite + sprite: Clothing/Head/Hardsuits/deathsquad.rsi + - type: Clothing + sprite: Clothing/Head/Hardsuits/deathsquad.rsi + +- type: entity + parent: ClothingHeadHardsuitBase + id: ClothingHeadHelmetHardsuitEngineering name: engineering hardsuit helmet description: An engineering hardsuit helmet designed for working in low-pressure, high radioactive environments. components: - type: Sprite - sprite: Clothing/Head/hardsuit-engineering.rsi - + sprite: Clothing/Head/Hardsuits/engineering.rsi - type: Clothing - sprite: Clothing/Head/hardsuit-engineering.rsi + sprite: Clothing/Head/Hardsuits/engineering.rsi - type: PressureProtection - highPressureMultiplier: 0.65 + highPressureMultiplier: 0.40 lowPressureMultiplier: 100 - type: entity - parent: HelmetHardsuitBase - id: HelmetHardsuitHazard - name: hazard hardsuit helmet - description: Robust hardsuit helmet made for dangerous and hazardous situations. + parent: ClothingHeadHardsuitBase + id: ClothingHeadHelmetHardsuitEngineeringWhite + name: CE hardsuit helmet + description: Special hardsuit helmet, made for the chief engineer of the station. components: - type: Sprite - sprite: Clothing/Head/hardsuit-hazardhardsuit.rsi - + sprite: Clothing/Head/Hardsuits/engineering-white.rsi - type: Clothing - sprite: Clothing/Head/hardsuit-hazardhardsuit.rsi + sprite: Clothing/Head/Hardsuits/engineering-white.rsi - type: entity - parent: HelmetHardsuitBase - id: HelmetHardsuitMedical + parent: HatBase + id: ClothingHeadHelmetIHSVoidHelm + name: IHS voidhelm + description: A robust, tactical IHS helmet. + components: + - type: Sprite + sprite: Clothing/Head/Hardsuits/ihsvoid.rsi + - type: Clothing + sprite: Clothing/Head/Hardsuits/ihsvoid.rsi + - type: PressureProtection + highPressureMultiplier: 0.60 + lowPressureMultiplier: 100 + +- type: entity + parent: ClothingHeadHardsuitBase + id: ClothingHeadHelmetHardsuitMedical name: medical hardsuit helmet description: Lightweight medical hardsuit helmet that doesn't restrict your head movements. components: - type: Sprite - sprite: Clothing/Head/hardsuit-medical.rsi - + sprite: Clothing/Head/Hardsuits/medical.rsi - type: Clothing - sprite: Clothing/Head/hardsuit-medical.rsi + sprite: Clothing/Head/Hardsuits/medical.rsi - type: PressureProtection highPressureMultiplier: 0.80 lowPressureMultiplier: 55 - type: entity - parent: HelmetHardsuitBase - id: HelmetHardsuitMining - name: mining hardsuit helmet + parent: ClothingHeadHardsuitBase + id: ClothingHeadHelmetHardsuitRd + name: rd hardsuit helmet + description: Lightweight hardsuit helmet that doesn't restrict your head movements. + components: + - type: Sprite + sprite: Clothing/Head/Hardsuits/rd.rsi + - type: Clothing + sprite: Clothing/Head/Hardsuits/rd.rsi + - type: PressureProtection + highPressureMultiplier: 0.80 + lowPressureMultiplier: 55 + +- type: entity + parent: ClothingHeadHardsuitBase + id: ClothingHeadHelmetHardsuitSalvage + name: salvage hardsuit helmet description: A special helmet designed for work in a hazardous, low pressure environment. Has reinforced plating for wildlife encounters and dual floodlights. components: - type: Sprite - sprite: Clothing/Head/hardsuit-mining.rsi - + sprite: Clothing/Head/Hardsuits/salvage.rsi - type: Clothing - sprite: Clothing/Head/hardsuit-mining.rsi + sprite: Clothing/Head/Hardsuits/salvage.rsi - type: PressureProtection highPressureMultiplier: 0.70 lowPressureMultiplier: 100 - type: entity - parent: HelmetHardsuitBase - id: HelmetHardsuitSecurity + parent: ClothingHeadHardsuitBase + id: ClothingHeadHelmetHardsuitSecurity name: security hardsuit helmet description: Armored hardsuit helmet for security needs. components: - type: Sprite - sprite: Clothing/Head/hardsuit-sectg.rsi - + sprite: Clothing/Head/Hardsuits/security.rsi - type: Clothing - sprite: Clothing/Head/hardsuit-sectg.rsi + sprite: Clothing/Head/Hardsuits/security.rsi - type: PressureProtection highPressureMultiplier: 0.70 lowPressureMultiplier: 100 - type: entity - parent: HelmetHardsuitBase - id: HelmetHardsuitSyndie + parent: ClothingHeadHardsuitBase + id: ClothingHeadHelmetHardsuitSecurityRed + name: hos hardsuit helmet + description: Red armored hardsuit helmet for security needs. Belongs to the HoS. + components: + - type: Sprite + sprite: Clothing/Head/Hardsuits/security-red.rsi + - type: Clothing + sprite: Clothing/Head/Hardsuits/security-red.rsi + - type: PressureProtection + highPressureMultiplier: 0.60 + lowPressureMultiplier: 100 + +- type: entity + parent: ClothingHeadHardsuitBase + id: ClothingHeadHelmetHardsuitSyndie name: blood red hardsuit helmet description: An advanced red hardsuit helmet designed for work in special operations. components: - type: Sprite - sprite: Clothing/Head/hardsuit-syndie.rsi - state: icon - + sprite: Clothing/Head/Hardsuits/syndicate.rsi - type: Clothing - sprite: Clothing/Head/hardsuit-syndie.rsi - - type: PressureProtection - highPressureMultiplier: 0.45 - lowPressureMultiplier: 100 + sprite: Clothing/Head/Hardsuits/syndicate.rsi - type: entity - parent: HelmetHardsuitBase - id: HelmetHardsuitCE - name: CE hardsuit helmet - description: Special hardsuit helmet, made for the chief engineer of the station. - components: - - type: Sprite - sprite: Clothing/Head/hardsuit-white.rsi - - - type: Clothing - sprite: Clothing/Head/hardsuit-white.rsi - - type: PressureProtection - highPressureMultiplier: 0.5 - lowPressureMultiplier: 100 - -- type: entity - parent: HelmetHardsuitBase - id: HelmetHardsuitWizard + parent: ClothingHeadHardsuitBase + id: ClothingHeadHelmetHardsuitWizard name: wizard hardsuit helmet description: A bizarre gem-encrusted helmet that radiates magical energies. components: - type: Sprite - sprite: Clothing/Head/hardsuit-wiz.rsi - + sprite: Clothing/Head/Hardsuits/wizard.rsi - type: Clothing - sprite: Clothing/Head/hardsuit-wiz.rsi - - type: PressureProtection - highPressureMultiplier: 0.45 - lowPressureMultiplier: 100 + sprite: Clothing/Head/Hardsuits/wizard.rsi diff --git a/Resources/Prototypes/Entities/Clothing/Head/hats.yml b/Resources/Prototypes/Entities/Clothing/Head/hats.yml index c812f0e4b8..1de485dd3f 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/hats.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/hats.yml @@ -1,1199 +1,362 @@ - type: entity - parent: Clothing - id: HatBase - abstract: true - components: - - type: Clothing - Slots: - - Helmet - - type: Sprite - state: icon - - -- type: entity - parent: HatBase - id: HatBandana - name: bandana - description: A bandana. You wear it on your head. - components: - - type: Sprite - sprite: Clothing/Head/bandana.rsi - - - type: Clothing - sprite: Clothing/Head/bandana.rsi - -- type: entity - parent: HatBase - id: HatBandblack - name: bandana black - description: A black bandana to make you look cool. - components: - - type: Sprite - sprite: Clothing/Head/bandblack.rsi - - - type: Clothing - sprite: Clothing/Head/bandblack.rsi - -- type: entity - parent: HatBase - id: HatBandblue - name: bandana blue - description: A blue bandana to make you look cool. - components: - - type: Sprite - sprite: Clothing/Head/bandblue.rsi - - - type: Clothing - sprite: Clothing/Head/bandblue.rsi - -- type: entity - parent: HatBase - id: HatBandbotany - name: bandana botany - description: A botany bandana to make you look cool, made from natural fibers. - components: - - type: Sprite - sprite: Clothing/Head/bandbotany.rsi - - - type: Clothing - sprite: Clothing/Head/bandbotany.rsi - -- type: entity - parent: HatBase - id: HatBandcamo - name: bandana camo - description: A camo bandana to make you look cool. No stealth bonus provided. - components: - - type: Sprite - sprite: Clothing/Head/bandcamo.rsi - - - type: Clothing - sprite: Clothing/Head/bandcamo.rsi - -- type: entity - parent: HatBase - id: HatBandgold - name: bandana gold - description: A gold bandana to make you look cool. - components: - - type: Sprite - sprite: Clothing/Head/bandgold.rsi - - - type: Clothing - sprite: Clothing/Head/bandgold.rsi - -- type: entity - parent: HatBase - id: HatBandgreen - name: bandana green - description: A green bandana to make you look cool. - components: - - type: Sprite - sprite: Clothing/Head/bandgreen.rsi - - - type: Clothing - sprite: Clothing/Head/bandgreen.rsi - -- type: entity - parent: HatBase - id: HatBandorange - name: bandana orange - description: An orange bandana to make you look cool. - components: - - type: Sprite - sprite: Clothing/Head/bandorange.rsi - - - type: Clothing - sprite: Clothing/Head/bandorange.rsi - -- type: entity - parent: HatBase - id: HatBandpurple - name: bandana purple - description: A purple bandana to make you look cool. - components: - - type: Sprite - sprite: Clothing/Head/bandpurple.rsi - - - type: Clothing - sprite: Clothing/Head/bandpurple.rsi - -- type: entity - parent: HatBase - id: HatBandred - name: bandana red - description: A red bandana to make you look cool. - components: - - type: Sprite - sprite: Clothing/Head/bandred.rsi - - - type: Clothing - sprite: Clothing/Head/bandred.rsi - -- type: entity - parent: HatBase - id: HatBandskull - name: bandana skull - description: A bandana with a skull to make you look even cooler. - components: - - type: Sprite - sprite: Clothing/Head/bandskull.rsi - - - type: Clothing - sprite: Clothing/Head/bandskull.rsi - -- type: entity - parent: HatBase - id: HatBearpelt - name: bear pelt - description: It's a cute bear pelt. - components: - - type: Sprite - sprite: Clothing/Head/bearpelt.rsi - - - type: Clothing - sprite: Clothing/Head/bearpelt.rsi - -- type: entity - parent: HatBase - id: HatBeaverHat + parent: ClothingHeadBase + id: ClothingHeadHatBeaverHat name: beaver hat description: 'Gentlemen?' components: - type: Sprite - sprite: Clothing/Head/beaver_hat.rsi - + sprite: Clothing/Head/Hats/beaver_hat.rsi - type: Clothing - sprite: Clothing/Head/beaver_hat.rsi + sprite: Clothing/Head/Hats/beaver_hat.rsi - type: entity - parent: HatBase - id: HatBeret + parent: ClothingHeadBase + id: ClothingHeadHatBeret name: beret description: A beret, an artists favorite headwear. components: - type: Sprite - sprite: Clothing/Head/beret.rsi - + sprite: Clothing/Head/Hats/beret.rsi - type: Clothing - sprite: Clothing/Head/beret.rsi + sprite: Clothing/Head/Hats/beret.rsi - type: entity - parent: HatBase - id: HatBeretEngineering + parent: ClothingHeadBase + id: ClothingHeadHatBeretEngineering name: beret engineering description: A beret with the engineering insignia emblazoned on it. For engineers that are more inclined towards style than safety. components: - type: Sprite - sprite: Clothing/Head/beret_engineering.rsi - + sprite: Clothing/Head/Hats/beret_engineering.rsi - type: Clothing - sprite: Clothing/Head/beret_engineering.rsi + sprite: Clothing/Head/Hats/beret_engineering.rsi - type: entity - parent: HatBase - id: HatBeretHoS + parent: ClothingHeadBase + id: ClothingHeadHatBeretHoS name: beret HoS description: A black beret with a commander's rank emblem. For officers that are more inclined towards style than safety. components: - type: Sprite - sprite: Clothing/Head/beret_hos.rsi - state: beret_hos - + sprite: Clothing/Head/Hats/beret_hos.rsi - type: Clothing - sprite: Clothing/Head/beret_hos.rsi + sprite: Clothing/Head/Hats/beret_hos.rsi - type: entity - parent: HatBase - id: HatBeretWarden + parent: ClothingHeadBase + id: ClothingHeadHatBeretWarden name: beret warden - description: A corporate red beret with a warden's rank emblem. For officers that are more inclined towards style than safety. + description: A corporate blue beret with a warden's rank emblem. For officers that are more inclined towards style than safety. components: - type: Sprite - sprite: Clothing/Head/beret_warden.rsi - + sprite: Clothing/Head/Hats/beret_warden.rsi - type: Clothing - sprite: Clothing/Head/beret_warden.rsi + sprite: Clothing/Head/Hats/beret_warden.rsi - type: entity - parent: HatBase - id: HatBluesoft - name: bluesoft - description: "It's a baseball hat in a tasteless blue colour." - components: - - type: Sprite - sprite: Clothing/Head/bluesoft.rsi - - - type: Clothing - sprite: Clothing/Head/bluesoft.rsi - -- type: entity - parent: HatBase - id: HatBluesoftFlipped - name: bluesoft flipped - description: "It's a baseball hat in a tasteless blue colour. Flipped." - components: - - type: Sprite - sprite: Clothing/Head/bluesoft_flipped.rsi - - - type: Clothing - sprite: Clothing/Head/bluesoft_flipped.rsi - -- type: entity - parent: HatBase - id: HatBoaterHat - name: boater hat - description: Stylish boater hat. - components: - - type: Sprite - sprite: Clothing/Head/boater_hat.rsi - - - type: Clothing - sprite: Clothing/Head/boater_hat.rsi - -- type: entity - parent: HatBase - id: HatBowler - name: bowler - description: Stylish bowler hat. - components: - - type: Sprite - sprite: Clothing/Head/bowler.rsi - - - type: Clothing - sprite: Clothing/Head/bowler.rsi - -- type: entity - parent: HatBase - id: HatBowlerHat + parent: ClothingHeadBase + id: ClothingHeadHatBowlerHat name: bowler hat description: Stylish bowler hat. components: - type: Sprite - sprite: Clothing/Head/bowler_hat.rsi - + sprite: Clothing/Head/Hats/bowler_hat.rsi - type: Clothing - sprite: Clothing/Head/bowler_hat.rsi + sprite: Clothing/Head/Hats/bowler_hat.rsi - type: entity - parent: HatBase - id: HatBunny - name: bunny - description: Cute bunny ears. - components: - - type: Sprite - sprite: Clothing/Head/bunny.rsi - - - type: Clothing - sprite: Clothing/Head/bunny.rsi - -- type: entity - parent: HatBase - id: HatCake - name: cake hat - description: You put the cake on your head. Brilliant. - components: - - type: Sprite - sprite: Clothing/Head/cake.rsi - - - type: Clothing - sprite: Clothing/Head/cake.rsi - -- type: entity - parent: HatBase - id: HatPumpkin - name: pumpkin hat - description: A jack o' lantern! Believed to ward off evil spirits. - components: - - type: Sprite - sprite: Clothing/Head/pumpkin.rsi - - - type: Clothing - sprite: Clothing/Head/pumpkin.rsi - -- type: entity - parent: HatBase - id: HatCapcap - name: cap cap - description: An usual cap, nothing special about it. - components: - - type: Sprite - sprite: Clothing/Head/capcap.rsi - - - type: Clothing - sprite: Clothing/Head/capcap.rsi - -- type: entity - parent: HatBase - id: HatCapspace - name: cap space - description: A blue cap for patrolling the daily beat. - components: - - type: Sprite - sprite: Clothing/Head/capspace.rsi - - - type: Clothing - sprite: Clothing/Head/capspace.rsi - -- type: entity - parent: HatBase - id: HatCaptain + parent: ClothingHeadBase + id: ClothingHeadHatCaptain name: captain description: It's good being the king. components: - type: Sprite - sprite: Clothing/Head/captain.rsi - + sprite: Clothing/Head/Hats/captain.rsi - type: Clothing - sprite: Clothing/Head/captain.rsi + sprite: Clothing/Head/Hats/captain.rsi - type: entity - parent: HatBase - id: HatCardborgH - name: cardborg h - description: A helmet made out of a box. + parent: ClothingHeadBase + id: ClothingHeadHatCardborg + name: cardborg + description: A hat made out of a box. components: - type: Sprite - sprite: Clothing/Head/cardborg_h.rsi - + sprite: Clothing/Head/Hats/cardborg_h.rsi - type: Clothing - sprite: Clothing/Head/cardborg_h.rsi + sprite: Clothing/Head/Hats/cardborg_h.rsi - type: entity - parent: HatBase - id: HatCargosoft - name: cargosoft - description: "It's a baseball hat painted in Cargo colours." - components: - - type: Sprite - sprite: Clothing/Head/cargosoft.rsi - - - type: Clothing - sprite: Clothing/Head/cargosoft.rsi - -- type: entity - parent: HatBase - id: HatCargosoftFlipped - name: cargosoft flipped - description: "It's a baseball hat painted in Cargo colours. Flipped." - components: - - type: Sprite - sprite: Clothing/Head/cargosoft_flipped.rsi - - - type: Clothing - sprite: Clothing/Head/cargosoft_flipped.rsi - -- type: entity - parent: HatBase - id: HatCentcom + parent: ClothingHeadBase + id: ClothingHeadHatCentcom name: centcom description: "It's good to be the emperor." components: - type: Sprite - sprite: Clothing/Head/centcom.rsi - + sprite: Clothing/Head/Hats/centcom.rsi - type: Clothing - sprite: Clothing/Head/centcom.rsi + sprite: Clothing/Head/Hats/centcom.rsi - type: entity - parent: HatBase - id: HatChefhat + parent: ClothingHeadBase + id: ClothingHeadHatChef name: chef hat description: "It's a hat used by chefs to keep hair out of your food. Judging by the food in the mess, they don't work." components: - type: Sprite - sprite: Clothing/Head/chefhat.rsi - + sprite: Clothing/Head/Hats/chefhat.rsi - type: Clothing - sprite: Clothing/Head/chefhat.rsi + sprite: Clothing/Head/Hats/chefhat.rsi - type: entity - parent: HatBase - id: HatChickenhead - name: chicken head - description: "It's a chicken head. Bok bok bok!" - components: - - type: Sprite - sprite: Clothing/Head/chickenhead.rsi - - - type: Clothing - sprite: Clothing/Head/chickenhead.rsi - -- type: entity - parent: HatBase - id: HatCorpsoft - name: corpsoft - description: A baseball bat in corporation colors. - components: - - type: Sprite - sprite: Clothing/Head/corpsoft.rsi - - - type: Clothing - sprite: Clothing/Head/corpsoft.rsi - -- type: entity - parent: HatBase - id: HatCorpsoftFlipped - name: corpsoft flipped - description: A baseball bat in corporation colors. Flipped. - components: - - type: Sprite - sprite: Clothing/Head/corpsoft_flipped.rsi - - - type: Clothing - sprite: Clothing/Head/corpsoft_flipped.rsi - -- type: entity - parent: HatBase - id: HatCosmonaut - name: cosmonaut - description: A cosmonaut helmet. Does not provide protection from vacuum. - components: - - type: Sprite - sprite: Clothing/Head/cosmonaut.rsi - - - type: Clothing - sprite: Clothing/Head/cosmonaut.rsi - -- type: entity - parent: HatBase - id: HatCowboy - name: cowboy - description: A cowboy hat, for a real cowboy. - components: - - type: Sprite - sprite: Clothing/Head/cowboy.rsi - - - type: Clothing - sprite: Clothing/Head/cowboy.rsi - -- type: entity - parent: HatBase - id: HatDeathsquad - name: deathsquad - description: A robust red helmet for special operations. - components: - - type: Sprite - sprite: Clothing/Head/deathsquad.rsi - - - type: Clothing - sprite: Clothing/Head/deathsquad.rsi - -- type: entity - parent: HatBase - id: HatFedoraBrown + parent: ClothingHeadBase + id: ClothingHeadHatFedoraBrown name: brown fedora description: It's a brown fedora. components: - type: Sprite - sprite: Clothing/Head/brownfedora.rsi - + sprite: Clothing/Head/Hats/brownfedora.rsi - type: Clothing - sprite: Clothing/Head/brownfedora.rsi + sprite: Clothing/Head/Hats/brownfedora.rsi - type: entity - parent: HatBase - id: HatFedoraGrey + parent: ClothingHeadBase + id: ClothingHeadHatFedoraGrey name: grey fedora description: It's a grey fedora. components: - type: Sprite - sprite: Clothing/Head/greyfedora.rsi - + sprite: Clothing/Head/Hats/greyfedora.rsi - type: Clothing - sprite: Clothing/Head/greyfedora.rsi + sprite: Clothing/Head/Hats/greyfedora.rsi - type: entity - parent: HatBase - id: HatFez + parent: ClothingHeadBase + id: ClothingHeadHatFez name: fez description: A red fez. components: - type: Sprite - sprite: Clothing/Head/fez.rsi - + sprite: Clothing/Head/Hats/fez.rsi - type: Clothing - sprite: Clothing/Head/fez.rsi + sprite: Clothing/Head/Hats/fez.rsi - type: entity - parent: HatBase - id: HatGladiator - name: gladiator - description: "Are you not entertained?" - components: - - type: Sprite - sprite: Clothing/Head/gladiator.rsi - - - type: Clothing - sprite: Clothing/Head/gladiator.rsi - -- type: entity - parent: HatBase - id: HatGreenbandana - name: greenbandana - description: A black bandana to make you look cool. - components: - - type: Sprite - sprite: Clothing/Head/greenbandana.rsi - - - type: Clothing - sprite: Clothing/Head/greenbandana.rsi - -- type: entity - parent: HatBase - id: HatGreensoft - name: greensoft - description: "It's a baseball hat in a tasteless green colour." - components: - - type: Sprite - sprite: Clothing/Head/greensoft.rsi - - - type: Clothing - sprite: Clothing/Head/greensoft.rsi - -- type: entity - parent: HatBase - id: HatGreensoftFlipped - name: greensoft flipped - description: "It's a baseball hat in a tasteless green colour. Flipped." - components: - - type: Sprite - sprite: Clothing/Head/greensoft_flipped.rsi - - - type: Clothing - sprite: Clothing/Head/greensoft_flipped.rsi - -- type: entity - parent: HatBase - id: HatGreysoft - name: greysoft - description: "It's a baseball hat in a tasteless grey colour." - components: - - type: Sprite - sprite: Clothing/Head/greysoft.rsi - - - type: Clothing - sprite: Clothing/Head/greysoft.rsi - -- type: entity - parent: HatBase - id: HatGreysoftFlipped - name: greysoft flipped - description: "It's a baseball hat in a tasteless grey colour. Flipped." - components: - - type: Sprite - sprite: Clothing/Head/greysoft_flipped.rsi - - - type: Clothing - sprite: Clothing/Head/greysoft_flipped.rsi - -- type: entity - parent: HatBase - id: HatHairflower - name: hairflower - description: A red rose for beautiful ladies. - components: - - type: Sprite - sprite: Clothing/Head/hairflower.rsi - - - type: Clothing - sprite: Clothing/Head/hairflower.rsi - -- type: entity - parent: HatBase - id: HatHeadslime - name: headslime - description: A green, sticky lime, you put it on your head. - components: - - type: Sprite - sprite: Clothing/Head/headslime.rsi - - - type: Clothing - sprite: Clothing/Head/headslime.rsi - -- type: entity - parent: HatBase - id: HatHelmet - name: helmet - description: A usual helmet. - components: - - type: Sprite - sprite: Clothing/Head/helmet.rsi - - - type: Clothing - sprite: Clothing/Head/helmet.rsi - -- type: entity - parent: HatBase - id: HatHelmetold - name: helmet old - description: An old usual helmet. - components: - - type: Sprite - sprite: Clothing/Head/helmetold.rsi - - - type: Clothing - sprite: Clothing/Head/helmetold.rsi - -- type: entity - parent: HatBase - id: HatHopcap + parent: ClothingHeadBase + id: ClothingHeadHatHopcap name: hop cap description: A grand, stylish captain cap. components: - type: Sprite - sprite: Clothing/Head/hopcap.rsi - + sprite: Clothing/Head/Hats/hopcap.rsi - type: Clothing - sprite: Clothing/Head/hopcap.rsi + sprite: Clothing/Head/Hats/hopcap.rsi - type: entity - parent: HatBase - id: HatHoshat + parent: ClothingHeadBase + id: ClothingHeadHatHoshat name: HoS hat description: "There's a new sheriff in station." components: - type: Sprite - sprite: Clothing/Head/hoshat.rsi - + sprite: Clothing/Head/Hats/hoshat.rsi - type: Clothing - sprite: Clothing/Head/hoshat.rsi + sprite: Clothing/Head/Hats/hoshat.rsi - type: entity - parent: HatBase - id: HatIhsvoidhelm - name: IHS voidhelm - description: A robust, tactical IHS helmet. - components: - - type: Sprite - sprite: Clothing/Head/ihsvoidhelm.rsi - - - type: Clothing - sprite: Clothing/Head/ihsvoidhelm.rsi - -- type: entity - parent: HatBase - id: HatIhsvoidhelmOn - name: IHS voidhelm (on) - description: A robust, tactical IHS helmet. - components: - - type: Sprite - sprite: Clothing/Head/ihsvoidhelm_on.rsi - - - type: Clothing - sprite: Clothing/Head/ihsvoidhelm_on.rsi - -- type: entity - parent: HatBase - id: HatWitch1 + parent: ClothingHeadBase + id: ClothingHeadHatWitch1 name: witch hat description: A witch hat. components: - type: Sprite - sprite: Clothing/Head/witchhat.rsi - + sprite: Clothing/Head/Hats/witchhat.rsi - type: Clothing - sprite: Clothing/Head/witchhat.rsi + sprite: Clothing/Head/Hats/witchhat.rsi - type: entity - parent: HatBase - id: HatWizardHelm - name: wizard helm - description: "Strange-looking helmet that most certainly belongs to a real magic user." - components: - - type: Sprite - sprite: Clothing/Head/wizardhelm.rsi - - - type: Clothing - sprite: Clothing/Head/wizardhelm.rsi - -- type: entity - parent: HatBase - id: HatMimesoft - name: mimesoft - description: "It's a baseball hat in a tasteless white colour." - components: - - type: Sprite - sprite: Clothing/Head/mimesoft.rsi - - - type: Clothing - sprite: Clothing/Head/mimesoft.rsi - -- type: entity - parent: HatBase - id: HatMimesoftFlipped - name: mimesoft flipped - description: It's a baseball hat in a tasteless white colour. Flipped. - components: - - type: Sprite - sprite: Clothing/Head/mimesoft_flipped.rsi - - - type: Clothing - sprite: Clothing/Head/mimesoft_flipped.rsi - -- type: entity - parent: HatBase - id: HatNursehat - name: nurse hat - description: A sterile nurse hat. - components: - - type: Sprite - sprite: Clothing/Head/nursehat.rsi - - - type: Clothing - sprite: Clothing/Head/nursehat.rsi - -- type: entity - parent: HatBase - id: HatOrangesoft - name: orangesoft - description: It's a baseball hat in a good-looking orange colour. - components: - - type: Sprite - sprite: Clothing/Head/orangesoft.rsi - - - type: Clothing - sprite: Clothing/Head/orangesoft.rsi - -- type: entity - parent: HatBase - id: HatOrangesoftFlipped - name: orangesoft flipped - description: It's a baseball hat in a good-looking orange colour. Flipped. - components: - - type: Sprite - sprite: Clothing/Head/orangesoft_flipped.rsi - - - type: Clothing - sprite: Clothing/Head/orangesoft_flipped.rsi - -- type: entity - parent: HatBase - id: HatOrangeBandana - name: orange bandana - description: An orange bandata with a yellow stripe. - components: - - type: Sprite - sprite: Clothing/Head/orange_bandana.rsi - - - type: Clothing - sprite: Clothing/Head/orange_bandana.rsi - -- type: entity - parent: HatBase - id: HatPaper + parent: ClothingHeadBase + id: ClothingHeadHatPaper name: paper description: A hat made of paper. components: - type: Sprite - sprite: Clothing/Head/paper.rsi - + sprite: Clothing/Head/Hats/paper.rsi - type: Clothing - sprite: Clothing/Head/paper.rsi -- type: entity - parent: HatBase - id: HatPhilosopherWig - name: philosopher wig - description: A bunch of hair that make you look like a philosopher. - components: - - type: Sprite - sprite: Clothing/Head/philosopher_wig.rsi - - - type: Clothing - sprite: Clothing/Head/philosopher_wig.rsi + sprite: Clothing/Head/Hats/paper.rsi - type: entity - parent: HatBase - id: HatPirate + parent: ClothingHeadBase + id: ClothingHeadHatPirate name: pirate description: 'Yo ho ho and a bottle of rum!' components: - type: Sprite - sprite: Clothing/Head/pirate.rsi - + sprite: Clothing/Head/Hats/pirate.rsi - type: Clothing - sprite: Clothing/Head/pirate.rsi + sprite: Clothing/Head/Hats/pirate.rsi - type: entity - parent: HatBase - id: HatPlaguedoctor + parent: ClothingHeadBase + id: ClothingHeadHatPlaguedoctor name: plague doctor description: These were once used by plague doctors. components: - type: Sprite - sprite: Clothing/Head/plaguedoctor.rsi - + sprite: Clothing/Head/Hats/plaguedoctor.rsi - type: Clothing - sprite: Clothing/Head/plaguedoctor.rsi + sprite: Clothing/Head/Hats/plaguedoctor.rsi - type: entity - parent: HatBase - id: HatPurplesoft - name: purple soft - description: It's a baseball hat in a tasteless purple colour. - components: - - type: Sprite - sprite: Clothing/Head/purplesoft.rsi - - - type: Clothing - sprite: Clothing/Head/purplesoft.rsi - -- type: entity - parent: HatBase - id: HatPurplesoftFlipped - name: purplesoft flipped - description: It's a baseball hat in a tasteless purple colour. Flipped. - components: - - type: Sprite - sprite: Clothing/Head/purplesoft_flipped.rsi - - - type: Clothing - sprite: Clothing/Head/purplesoft_flipped.rsi - -- type: entity - parent: HatBase - id: HatPwig - name: pwig - description: To be honest, those look ridiculous. - components: - - type: Sprite - sprite: Clothing/Head/pwig.rsi - - - type: Clothing - sprite: Clothing/Head/pwig.rsi - -- type: entity - parent: HatBase - id: HatRedsoft - name: redsoft - description: It's a baseball hat in a tasteless red colour. - components: - - type: Sprite - sprite: Clothing/Head/redsoft.rsi - - - type: Clothing - sprite: Clothing/Head/redsoft.rsi - -- type: entity - parent: HatBase - id: HatRedsoftFlipped - name: redsoft flipped - description: It's a baseball hat in a tasteless purple colour. Flipped. - components: - - type: Sprite - sprite: Clothing/Head/redsoft_flipped.rsi - - - type: Clothing - sprite: Clothing/Head/redsoft_flipped.rsi - -- type: entity - parent: HatBase - id: HatRedwizard + parent: ClothingHeadBase + id: ClothingHeadHatRedwizard name: red wizard description: Strange-looking red hat-wear that most certainly belongs to a real magic user. components: - type: Sprite - sprite: Clothing/Head/redwizard.rsi - + sprite: Clothing/Head/Hats/redwizard.rsi - type: Clothing - sprite: Clothing/Head/redwizard.rsi + sprite: Clothing/Head/Hats/redwizard.rsi - type: entity - parent: HatBase - id: HatRichard - name: richard - description: 'Do you like hurting other people?' - components: - - type: Sprite - sprite: Clothing/Head/richard.rsi - - - type: Clothing - sprite: Clothing/Head/richard.rsi - -- type: entity - parent: HatBase - id: HatS-ninja - name: s-ninja - description: '' - components: - - type: Sprite - sprite: Clothing/Head/s-ninja.rsi - - - type: Clothing - sprite: Clothing/Head/s-ninja.rsi - -- type: entity - parent: HatBase - id: HatSantahat + parent: ClothingHeadBase + id: ClothingHeadHatSantahat name: santa hat description: "A festive hat worn by Santa Claus" components: - type: Sprite - sprite: Clothing/Head/santahat.rsi - + sprite: Clothing/Head/Hats/santahat.rsi - type: Clothing - sprite: Clothing/Head/santahat.rsi + sprite: Clothing/Head/Hats/santahat.rsi - type: entity - parent: HatBase - id: HatSecsoft - name: secsoft - description: It's a robust baseball hat in tasteful red colour. - components: - - type: Sprite - sprite: Clothing/Head/secsoft.rsi - - - type: Clothing - sprite: Clothing/Head/secsoft.rsi - -- type: entity - parent: HatBase - id: HatSecsoftFlipped - name: secsoft flipped - description: It's a robust baseball hat in tasteful red colour. Flipped. - components: - - type: Sprite - sprite: Clothing/Head/secsoft_flipped.rsi - - - type: Clothing - sprite: Clothing/Head/secsoft_flipped.rsi - -- type: entity - parent: HatBase - id: HatSombrero + parent: ClothingHeadBase + id: ClothingHeadHatSombrero name: sombrero description: "Perfectly for Space Mexico, si?" components: - type: Sprite - sprite: Clothing/Head/sombrero.rsi - + sprite: Clothing/Head/Hats/sombrero.rsi - type: Clothing - sprite: Clothing/Head/sombrero.rsi + sprite: Clothing/Head/Hats/sombrero.rsi - type: entity - parent: HatBase - id: HatSurgcapBlue + parent: ClothingHeadBase + id: ClothingHeadHatSurgcapBlue name: surgcap blue description: A blue cap surgeons wear during operations. Keeps their hair from tickling your internal organs. components: - type: Sprite - sprite: Clothing/Head/surgcap_blue.rsi - + sprite: Clothing/Head/Hats/surgcap_blue.rsi - type: Clothing - sprite: Clothing/Head/surgcap_blue.rsi + sprite: Clothing/Head/Hats/surgcap_blue.rsi - type: entity - parent: HatBase - id: HatSurgcapGreen + parent: ClothingHeadBase + id: ClothingHeadHatSurgcapGreen name: surgcap green description: A green cap surgeons wear during operations. Keeps their hair from tickling your internal organs. components: - type: Sprite - sprite: Clothing/Head/surgcap_green.rsi - + sprite: Clothing/Head/Hats/surgcap_green.rsi - type: Clothing - sprite: Clothing/Head/surgcap_green.rsi + sprite: Clothing/Head/Hats/surgcap_green.rsi - type: entity - parent: HatBase - id: HatSurgcapPurple + parent: ClothingHeadBase + id: ClothingHeadHatSurgcapPurple name: surgcap purple description: A purple cap surgeons wear during operations. Keeps their hair from tickling your internal organs. components: - type: Sprite - sprite: Clothing/Head/surgcap_purple.rsi - + sprite: Clothing/Head/Hats/surgcap_purple.rsi - type: Clothing - sprite: Clothing/Head/surgcap_purple.rsi + sprite: Clothing/Head/Hats/surgcap_purple.rsi - type: entity - parent: HatBase - id: HatSyndicate - name: syndicate - description: 'A stylish, robust syndicate helmet.' - components: - - type: Sprite - sprite: Clothing/Head/syndicate.rsi - - - type: Clothing - sprite: Clothing/Head/syndicate.rsi - -- type: entity - parent: HatBase - id: HatThunderdome - name: thunderdome - description: 'Let the battle commence!' - components: - - type: Sprite - sprite: Clothing/Head/thunderdome.rsi - - - type: Clothing - sprite: Clothing/Head/thunderdome.rsi - -- type: entity - parent: HatBase - id: HatTophat + parent: ClothingHeadBase + id: ClothingHeadHatTophat name: tophat description: A stylish black tophat. components: - type: Sprite - sprite: Clothing/Head/tophat.rsi - + sprite: Clothing/Head/Hats/tophat.rsi - type: Clothing - sprite: Clothing/Head/tophat.rsi + sprite: Clothing/Head/Hats/tophat.rsi - type: entity - parent: HatBase - id: HatUshankadown - name: ushanka (down) + parent: ClothingHeadBase + id: ClothingHeadHatUshanka + name: ushanka description: "Perfect for winter in Siberia, da?" components: - type: Sprite - sprite: Clothing/Head/ushankadown.rsi - + sprite: Clothing/Head/Hats/ushanka.rsi - type: Clothing - sprite: Clothing/Head/ushankadown.rsi + sprite: Clothing/Head/Hats/ushanka.rsi - type: entity - parent: HatBase - id: HatUshankaup - name: ushanka (up) - description: "Perfect for winter in Siberia, da?" - components: - - type: Sprite - sprite: Clothing/Head/ushankaup.rsi - - - type: Clothing - sprite: Clothing/Head/ushankaup.rsi - -- type: entity - parent: HatBase - id: HatNightVis - name: night vision - description: Special night vision glasses, that provide vision in dark places. - components: - - type: Sprite - sprite: Clothing/Head/nightvis.rsi - - - type: Clothing - sprite: Clothing/Head/nightvis.rsi - -- type: entity - parent: HatBase - id: HatVioletwizard + parent: ClothingHeadBase + id: ClothingHeadHatVioletwizard name: violetwizard description: "Strange-looking violet hat-wear that most certainly belongs to a real magic user." components: - type: Sprite - sprite: Clothing/Head/violetwizard.rsi - + sprite: Clothing/Head/Hats/violetwizard.rsi - type: Clothing - sprite: Clothing/Head/violetwizard.rsi + sprite: Clothing/Head/Hats/violetwizard.rsi - type: entity - parent: HatBase - id: HatVoid - name: void - description: Robust red helmet for high-speed races. + parent: ClothingHeadBase + id: ClothingHeadHatWarden + name: warden's cap + description: A police officer's Hat. This hat emphasizes that you are THE LAW components: - type: Sprite - sprite: Clothing/Head/void.rsi - + sprite: Clothing/Head/Hats/warden.rsi - type: Clothing - sprite: Clothing/Head/void.rsi + sprite: Clothing/Head/Hats/warden.rsi - type: entity - parent: HatBase - id: HatWitch + parent: ClothingHeadBase + id: ClothingHeadHatWitch name: witch description: A witch hat. components: - type: Sprite - sprite: Clothing/Head/witch.rsi - + sprite: Clothing/Head/Hats/witch.rsi - type: Clothing - sprite: Clothing/Head/witch.rsi + sprite: Clothing/Head/Hats/witch.rsi - type: entity - parent: HatBase - id: HatWizard-fake - name: wizard-fake + parent: ClothingHeadBase + id: ClothingHeadHatWizardFake + name: wizardFake description: It has WIZZARD written across it in sequins. Comes with a cool beard. components: - type: Sprite - sprite: Clothing/Head/wizard-fake.rsi - + sprite: Clothing/Head/Hats/wizard_fake.rsi - type: Clothing - sprite: Clothing/Head/wizard-fake.rsi + sprite: Clothing/Head/Hats/wizard_fake.rsi - type: entity - parent: HatBase - id: HatWizard - name: wizard + parent: ClothingHeadBase + id: ClothingHeadHatWizard + name: wizard hat description: Strange-looking blue hat-wear that most certainly belongs to a powerful magic user. components: - type: Sprite - sprite: Clothing/Head/wizardhat.rsi - + sprite: Clothing/Head/Hats/wizardhat.rsi - type: Clothing - sprite: Clothing/Head/wizardhat.rsi + sprite: Clothing/Head/Hats/wizardhat.rsi - type: entity - parent: HatBase - id: HatXenoMom - name: xeno matriarch - description: Hiss hiss hiss! - components: - - type: Sprite - sprite: Clothing/Head/xenom.rsi - - - type: Clothing - sprite: Clothing/Head/xenom.rsi - -- type: entity - parent: HatBase - id: HatXeno - name: xenos - description: Hiss hiss hiss! - components: - - type: Sprite - sprite: Clothing/Head/xenos.rsi - - - type: Clothing - sprite: Clothing/Head/xenos.rsi - -- type: entity - parent: HatBase - id: HatXmashat - name: xmashat + parent: ClothingHeadBase + id: ClothingHeadHatXmasCrown + name: xmas crown description: 'Happy Christmas!' components: - type: Sprite - sprite: Clothing/Head/xmashat.rsi - + sprite: Clothing/Head/Hats/xmascrown.rsi - type: Clothing - sprite: Clothing/Head/xmashat.rsi - -- type: entity - parent: HatBase - id: HatYellowsoft - name: yellowsoft - description: A yellow baseball hat. - components: - - type: Sprite - sprite: Clothing/Head/yellowsoft.rsi - - - type: Clothing - sprite: Clothing/Head/yellowsoft.rsi - -- type: entity - parent: HatBase - id: HatYellowsoftFlipped - name: yellowsoft flipped - description: A yellow flipped baseball hat. - components: - - type: Sprite - sprite: Clothing/Head/yellowsoft_flipped.rsi - - - type: Clothing - sprite: Clothing/Head/yellowsoft_flipped.rsi + sprite: Clothing/Head/Hats/xmascrown.rsi diff --git a/Resources/Prototypes/Entities/Clothing/Head/helmets.yml b/Resources/Prototypes/Entities/Clothing/Head/helmets.yml index 9c51d65db6..ec5dbdb9b2 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/helmets.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/helmets.yml @@ -1,119 +1,131 @@ - type: entity - parent: HatBase - id: HatAtmosHelm - name: atmos helm - description: A helmet, designed for work in low-pressure enviroments. + parent: ClothingHeadBase + id: ClothingHeadHelmetBombSuit + name: bombsuit helmet + description: A heavy helmet designed to withstand the pressure generated by a bomb and any fragments the bomb may produce. components: - type: Sprite - sprite: Clothing/Head/atmos_helm.rsi - + sprite: Clothing/Head/Helmets/bombsuit.rsi - type: Clothing - sprite: Clothing/Head/atmos_helm.rsi + sprite: Clothing/Head/Helmets/bombsuit.rsi - type: entity - parent: HatBase - id: HatCultHelmet + parent: ClothingHeadBase + id: ClothingHeadHelmetCosmonaut + name: cosmonaut + description: + components: + - type: Sprite + sprite: Clothing/Head/Helmets/cosmonaut.rsi + - type: Clothing + sprite: Clothing/Head/Helmets/cosmonaut.rsi + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHelmetCult name: cult helmet description: A robust, evil-looking cult helmet. components: - type: Sprite - sprite: Clothing/Head/cult_helmet.rsi - + sprite: Clothing/Head/Helmets/cult.rsi - type: Clothing - sprite: Clothing/Head/cult_helmet.rsi + sprite: Clothing/Head/Helmets/cult.rsi - type: entity - parent: HatBase - id: HatHardhatBlue - name: blue hard hat - description: A hard hat, painted in blue, used in dangerous working conditions to protect the head. Comes with a built-in flashlight. + parent: ClothingHeadBase + id: ClothingHeadHelmetHelmet + name: helmet + description: A usual helmet. components: - type: Sprite - sprite: Clothing/Head/hardhat_blue.rsi - + sprite: Clothing/Head/Helmets/security.rsi - type: Clothing - sprite: Clothing/Head/hardhat_blue.rsi + sprite: Clothing/Head/Helmets/security.rsi - type: entity - parent: HatBase - id: HatHardhatOrange - name: orange hard hat - description: A hard hat, painted in orange, used in dangerous working conditions to protect the head. Comes with a built-in flashlight. + parent: ClothingHeadBase + id: ClothingHeadHelmetHelmetOld + name: helmet + description: An old usual helmet. components: - type: Sprite - sprite: Clothing/Head/hardhat_orange.rsi - + sprite: Clothing/Head/Helmets/securityold.rsi - type: Clothing - sprite: Clothing/Head/hardhat_orange.rsi + sprite: Clothing/Head/Helmets/securityold.rsi - type: entity - parent: HatBase - id: HatHardhatRed - name: red hard hat - description: A hard hat, painted in red, used in dangerous working conditions to protect the head. Comes with a built-in flashlight. - components: - - type: Sprite - sprite: Clothing/Head/hardhat_red.rsi - - - type: Clothing - sprite: Clothing/Head/hardhat_red.rsi - -- type: entity - parent: HatBase - id: HatHardhatWhite - name: white hard hat - description: A hard hat, painted in white, used in dangerous working conditions to protect the head. Comes with a built-in flashlight. - components: - - type: Sprite - sprite: Clothing/Head/hardhat_white.rsi - - - type: Clothing - sprite: Clothing/Head/hardhat_white.rsi - -- type: entity - parent: HatBase - id: HatHardhatYellow - name: yellow hard hat - description: A hard hat, painted in yellow, used in dangerous working conditions to protect the head. Comes with a built-in flashlight. - components: - - type: Sprite - sprite: Clothing/Head/hardhat_yellow.rsi - - - type: Clothing - sprite: Clothing/Head/hardhat_yellow.rsi - -- type: entity - parent: HatBase - id: HatLightRiot + parent: ClothingHeadBase + id: ClothingHeadHelmetRiot name: light riot helmet description: It's a helmet specifically designed to protect against close range attacks. components: - type: Sprite - sprite: Clothing/Head/light_riot.rsi - + sprite: Clothing/Head/Helmets/light_riot.rsi - type: Clothing - sprite: Clothing/Head/light_riot.rsi + sprite: Clothing/Head/Helmets/light_riot.rsi - type: entity - parent: HatBase - id: HatScaf + parent: ClothingHeadBase + id: ClothingHeadHelmetScaf name: scaf description: A robust, strong helmet. components: - type: Sprite - sprite: Clothing/Head/scaf.rsi - + sprite: Clothing/Head/Helmets/scaf.rsi - type: Clothing - sprite: Clothing/Head/scaf.rsi + sprite: Clothing/Head/Helmets/scaf.rsi - type: entity - parent: HatBase - id: HatSecurity - name: security - description: Standard issue security helmet. + parent: ClothingHeadBase + id: ClothingHeadHelmetSpaceNinja + name: space ninja helmet + description: components: - type: Sprite - sprite: Clothing/Head/security.rsi - + sprite: Clothing/Head/Helmets/spaceninja.rsi - type: Clothing - sprite: Clothing/Head/security.rsi + sprite: Clothing/Head/Helmets/spaceninja.rsi + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHelmetSyndicate + name: syndicate + description: A stylish, robust syndicate helmet + components: + - type: Sprite + sprite: Clothing/Head/Helmets/syndicate.rsi + - type: Clothing + sprite: Clothing/Head/Helmets/syndicate.rsi + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHelmetTemplar + name: templar helmet + description: DEUS VULT + components: + - type: Sprite + sprite: Clothing/Head/Helmets/templar.rsi + - type: Clothing + sprite: Clothing/Head/Helmets/templar.rsi + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHelmetThunderdome + name: thunderdome + description: Let the battle commence! + components: + - type: Sprite + sprite: Clothing/Head/Helmets/thunderdome.rsi + - type: Clothing + sprite: Clothing/Head/Helmets/thunderdome.rsi + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHelmetWizardHelm + name: wizard helm + description: Strange-looking helmet that most certainly belongs to a real magic user. + components: + - type: Sprite + sprite: Clothing/Head/Helmets/wizardhelm.rsi + - type: Clothing + sprite: Clothing/Head/Helmets/wizardhelm.rsi diff --git a/Resources/Prototypes/Entities/Clothing/Head/hoods.yml b/Resources/Prototypes/Entities/Clothing/Head/hoods.yml index 11478a352b..7fbb02dfe6 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/hoods.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/hoods.yml @@ -1,155 +1,115 @@ - type: entity - parent: HatBase - id: HatBioCmo - name: bio - cmo + parent: ClothingHeadBase + id: ClothingHeadHatHoodBioGeneral + name: bio hood + suffix: Generic + description: A hood that protects the head and face from biological contaminants. + components: + - type: Sprite + sprite: Clothing/Head/Hoods/Bio/general.rsi + - type: Clothing + sprite: Clothing/Head/Hoods/Bio/general.rsi + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatHoodBioCmo + name: bio hood + suffix: CMO description: An advanced hood for chief medical officer that protects the head and face from biological contaminants. components: - type: Sprite - sprite: Clothing/Head/bio_cmo.rsi - + sprite: Clothing/Head/Hoods/Bio/cmo.rsi - type: Clothing - sprite: Clothing/Head/bio_cmo.rsi + sprite: Clothing/Head/Hoods/Bio/cmo.rsi - type: entity - parent: HatBase - id: HatBioGeneral - name: bio - general + parent: ClothingHeadBase + id: ClothingHeadHatHoodBioJanitor + name: bio hood + suffix: Janitor description: A hood that protects the head and face from biological contaminants. components: - type: Sprite - sprite: Clothing/Head/bio_general.rsi - + sprite: Clothing/Head/Hoods/Bio/janitor.rsi - type: Clothing - sprite: Clothing/Head/bio_general.rsi + sprite: Clothing/Head/Hoods/Bio/janitor.rsi - type: entity - parent: HatBase - id: HatBioJanitor - name: bio - janitor + parent: ClothingHeadBase + id: ClothingHeadHatHoodBioScientist + name: bio hood + suffix: Science description: A hood that protects the head and face from biological contaminants. components: - type: Sprite - sprite: Clothing/Head/bio_janitor.rsi - + sprite: Clothing/Head/Hoods/Bio/scientist.rsi - type: Clothing - sprite: Clothing/Head/bio_janitor.rsi + sprite: Clothing/Head/Hoods/Bio/scientist.rsi - type: entity - parent: HatBase - id: HatBioScientist - name: bio - scientist + parent: ClothingHeadBase + id: ClothingHeadHatHoodBioSecurity + name: bio hood + suffix: Security description: A hood that protects the head and face from biological contaminants. components: - type: Sprite - sprite: Clothing/Head/bio_scientist.rsi - + sprite: Clothing/Head/Hoods/Bio/security.rsi - type: Clothing - sprite: Clothing/Head/bio_scientist.rsi + sprite: Clothing/Head/Hoods/Bio/security.rsi - type: entity - parent: HatBase - id: HatBioSecurity - name: bio - security + parent: ClothingHeadBase + id: ClothingHeadHatHoodBioVirology + name: bio hood + suffix: Virology description: A hood that protects the head and face from biological contaminants. components: - type: Sprite - sprite: Clothing/Head/bio_security.rsi - + sprite: Clothing/Head/Hoods/Bio/virology.rsi - type: Clothing - sprite: Clothing/Head/bio_security.rsi + sprite: Clothing/Head/Hoods/Bio/virology.rsi - type: entity - parent: HatBase - id: HatBioVirology - name: bio - virology - description: A hood that protects the head and face from biological contaminants. - components: - - type: Sprite - sprite: Clothing/Head/bio_virology.rsi - - - type: Clothing - sprite: Clothing/Head/bio_virology.rsi - -- type: entity - parent: HatBase - id: HatBombsuit - name: bombsuit - description: A heavy helmet designed to withstand the pressure generated by a bomb and any fragments the bomb may produce. - components: - - type: Sprite - sprite: Clothing/Head/bombsuit.rsi - - - type: Clothing - sprite: Clothing/Head/bombsuit.rsi - -- type: entity - parent: HatBase - id: HatBombsuitsec - name: bombsuit sec - description: A heavy helmet designed to withstand the pressure generated by a bomb and any fragments the bomb may produce. - components: - - type: Sprite - sprite: Clothing/Head/bombsuitsec.rsi - - - type: Clothing - sprite: Clothing/Head/bombsuitsec.rsi - -- type: entity - parent: HatBase - id: HatBombsuitWhite - name: bombsuit white - description: A heavy helmet designed to withstand the pressure generated by a bomb and any fragments the bomb may produce. - components: - - type: Sprite - sprite: Clothing/Head/bombsuit_white.rsi - - - type: Clothing - sprite: Clothing/Head/bombsuit_white.rsi - -- type: entity - parent: HatBase - id: HatChaplainHood + parent: ClothingHeadBase + id: ClothingHeadHatHoodChaplainHood name: chaplain hood description: Maximum piety in this star system. components: - type: Sprite - sprite: Clothing/Head/chaplain_hood.rsi - + sprite: Clothing/Head/Hoods/chaplain.rsi - type: Clothing - sprite: Clothing/Head/chaplain_hood.rsi + sprite: Clothing/Head/Hoods/chaplain.rsi - type: entity - parent: HatBase - id: HatCulthood + parent: ClothingHeadBase + id: ClothingHeadHatHoodCulthood name: cult hood description: There's no cult without cult hoods. components: - type: Sprite - sprite: Clothing/Head/culthood.rsi - + sprite: Clothing/Head/Hoods/cult.rsi - type: Clothing - sprite: Clothing/Head/culthood.rsi + sprite: Clothing/Head/Hoods/cult.rsi - type: entity - parent: HatBase - id: HatNunHood + parent: ClothingHeadBase + id: ClothingHeadHatHoodNunHood name: nun hood description: Maximum piety in this star system. components: - type: Sprite - sprite: Clothing/Head/nun_hood.rsi - + sprite: Clothing/Head/Hoods/nun.rsi - type: Clothing - sprite: Clothing/Head/nun_hood.rsi + sprite: Clothing/Head/Hoods/nun.rsi - type: entity - parent: HatBase - id: HatRad + parent: ClothingHeadBase + id: ClothingHeadHatHoodRad name: rad description: A hood of the hazmat suit, designed for protection from high radioactivity. components: - type: Sprite - sprite: Clothing/Head/rad.rsi - + sprite: Clothing/Head/Hoods/rad.rsi - type: Clothing - sprite: Clothing/Head/rad.rsi + sprite: Clothing/Head/Hoods/rad.rsi diff --git a/Resources/Prototypes/Entities/Clothing/Head/misc.yml b/Resources/Prototypes/Entities/Clothing/Head/misc.yml index a0fd49fdad..04590a0e93 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/misc.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/misc.yml @@ -1,11 +1,120 @@ - type: entity - parent: HatBase - id: HatSkub + parent: ClothingHeadBase + id: ClothingHeadHatBearpelt + name: bear pelt + description: It's a cute bear pelt. + components: + - type: Sprite + sprite: Clothing/Head/Misc/bearpelt.rsi + - type: Clothing + sprite: Clothing/Head/Misc/bearpelt.rsi + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatBunny + name: bunny + description: Cute bunny ears. + components: + - type: Sprite + sprite: Clothing/Head/Misc/bunny.rsi + - type: Clothing + sprite: Clothing/Head/Misc/bunny.rsi + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatCake + name: cake hat + description: You put the cake on your head. Brilliant. + components: + - type: Sprite + sprite: Clothing/Head/Misc/cake.rsi + - type: Clothing + sprite: Clothing/Head/Misc/cake.rsi + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatChickenhead + name: chicken head + description: "It's a chicken head. Bok bok bok!" + components: + - type: Sprite + sprite: Clothing/Head/Misc/chickenhead.rsi + - type: Clothing + sprite: Clothing/Head/Misc/chickenhead.rsi + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatHairflower + name: hairflower + description: A red rose for beautiful ladies. + components: + - type: Sprite + sprite: Clothing/Head/Misc/hairflower.rsi + - type: Clothing + sprite: Clothing/Head/Misc/hairflower.rsi + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatPumpkin + name: pumpkin hat + description: A jack o' lantern! Believed to ward off evil spirits. + components: + - type: Sprite + sprite: Clothing/Head/Misc/pumpkin.rsi + - type: Clothing + sprite: Clothing/Head/Misc/pumpkin.rsi + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatPwig + name: pwig + description: To be honest, those look ridiculous. + components: + - type: Sprite + sprite: Clothing/Head/Misc/pwig.rsi + - type: Clothing + sprite: Clothing/Head/Misc/pwig.rsi + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatRichard + name: richard + description: 'Do you like hurting people?' + components: + - type: Sprite + sprite: Clothing/Head/Misc/richard.rsi + - type: Clothing + sprite: Clothing/Head/Misc/richard.rsi + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatSkub name: Skub Hat description: 'Best paired with the Skub Suit.' components: - type: Sprite - sprite: Clothing/Head/skubhead.rsi - + sprite: Clothing/Head/Misc/skubhead.rsi - type: Clothing - sprite: Clothing/Head/skubhead.rsi + sprite: Clothing/Head/Misc/skubhead.rsi + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatXenoMom + name: xeno matriarch + description: Hiss hiss hiss! + components: + - type: Sprite + sprite: Clothing/Head/Misc/xenom.rsi + - type: Clothing + sprite: Clothing/Head/Misc/xenom.rsi + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatXeno + name: xenos + description: Hiss hiss hiss! + components: + - type: Sprite + sprite: Clothing/Head/Misc/xenos.rsi + - type: Clothing + sprite: Clothing/Head/Misc/xenos.rsi diff --git a/Resources/Prototypes/Entities/Clothing/Head/soft.yml b/Resources/Prototypes/Entities/Clothing/Head/soft.yml new file mode 100644 index 0000000000..b437bb6339 --- /dev/null +++ b/Resources/Prototypes/Entities/Clothing/Head/soft.yml @@ -0,0 +1,241 @@ +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatBluesoft + name: bluesoft + description: "It's a baseball hat in a tasteless blue colour." + components: + - type: Sprite + sprite: Clothing/Head/Soft/bluesoft.rsi + - type: Clothing + sprite: Clothing/Head/Soft/bluesoft.rsi + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatBluesoftFlipped + name: bluesoft flipped + description: "It's a baseball hat in a tasteless blue colour. Flipped." + components: + - type: Sprite + sprite: Clothing/Head/Soft/bluesoft_flipped.rsi + - type: Clothing + sprite: Clothing/Head/Soft/bluesoft_flipped.rsi + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatCargosoft + name: cargosoft + description: "It's a baseball hat painted in Cargo colours." + components: + - type: Sprite + sprite: Clothing/Head/Soft/cargosoft.rsi + - type: Clothing + sprite: Clothing/Head/Soft/cargosoft.rsi + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatCargosoftFlipped + name: cargosoft flipped + description: "It's a baseball hat painted in Cargo colours. Flipped." + components: + - type: Sprite + sprite: Clothing/Head/Soft/cargosoft_flipped.rsi + - type: Clothing + sprite: Clothing/Head/Soft/cargosoft_flipped.rsi + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatCorpsoft + name: corpsoft + description: A baseball bat in corporation colors. + components: + - type: Sprite + sprite: Clothing/Head/Soft/corpsoft.rsi + - type: Clothing + sprite: Clothing/Head/Soft/corpsoft.rsi + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatCorpsoftFlipped + name: corpsoft flipped + description: A baseball bat in corporation colors. Flipped. + components: + - type: Sprite + sprite: Clothing/Head/Soft/corpsoft_flipped.rsi + - type: Clothing + sprite: Clothing/Head/Soft/corpsoft_flipped.rsi + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatGreensoft + name: greensoft + description: "It's a baseball hat in a tasteless green colour." + components: + - type: Sprite + sprite: Clothing/Head/Soft/greensoft.rsi + - type: Clothing + sprite: Clothing/Head/Soft/greensoft.rsi + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatGreensoftFlipped + name: greensoft flipped + description: "It's a baseball hat in a tasteless green colour. Flipped." + components: + - type: Sprite + sprite: Clothing/Head/Soft/greensoft_flipped.rsi + - type: Clothing + sprite: Clothing/Head/Soft/greensoft_flipped.rsi + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatGreysoft + name: greysoft + description: "It's a baseball hat in a tasteless grey colour." + components: + - type: Sprite + sprite: Clothing/Head/Soft/greysoft.rsi + - type: Clothing + sprite: Clothing/Head/Soft/greysoft.rsi + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatGreysoftFlipped + name: greysoft flipped + description: "It's a baseball hat in a tasteless grey colour. Flipped." + components: + - type: Sprite + sprite: Clothing/Head/Soft/greysoft_flipped.rsi + - type: Clothing + sprite: Clothing/Head/Soft/greysoft_flipped.rsi + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatMimesoft + name: mimesoft + description: "It's a baseball hat in a tasteless white colour." + components: + - type: Sprite + sprite: Clothing/Head/Soft/mimesoft.rsi + - type: Clothing + sprite: Clothing/Head/Soft/mimesoft.rsi + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatMimesoftFlipped + name: mimesoft flipped + description: It's a baseball hat in a tasteless white colour. Flipped. + components: + - type: Sprite + sprite: Clothing/Head/Soft/mimesoft_flipped.rsi + - type: Clothing + sprite: Clothing/Head/Soft/mimesoft_flipped.rsi + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatOrangesoft + name: orangesoft + description: It's a baseball hat in a good-looking orange colour. + components: + - type: Sprite + sprite: Clothing/Head/Soft/orangesoft.rsi + - type: Clothing + sprite: Clothing/Head/Soft/orangesoft.rsi + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatOrangesoftFlipped + name: orangesoft flipped + description: It's a baseball hat in a good-looking orange colour. Flipped. + components: + - type: Sprite + sprite: Clothing/Head/Soft/orangesoft_flipped.rsi + - type: Clothing + sprite: Clothing/Head/Soft/orangesoft_flipped.rsi + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatPurplesoft + name: purple soft + description: It's a baseball hat in a tasteless purple colour. + components: + - type: Sprite + sprite: Clothing/Head/Soft/purplesoft.rsi + - type: Clothing + sprite: Clothing/Head/Soft/purplesoft.rsi + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatPurplesoftFlipped + name: purplesoft flipped + description: It's a baseball hat in a tasteless purple colour. Flipped. + components: + - type: Sprite + sprite: Clothing/Head/Soft/purplesoft_flipped.rsi + - type: Clothing + sprite: Clothing/Head/Soft/purplesoft_flipped.rsi + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatRedsoft + name: redsoft + description: It's a baseball hat in a tasteless red colour. + components: + - type: Sprite + sprite: Clothing/Head/Soft/redsoft.rsi + - type: Clothing + sprite: Clothing/Head/Soft/redsoft.rsi + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatRedsoftFlipped + name: redsoft flipped + description: It's a baseball hat in a tasteless purple colour. Flipped. + components: + - type: Sprite + sprite: Clothing/Head/Soft/redsoft_flipped.rsi + - type: Clothing + sprite: Clothing/Head/Soft/redsoft_flipped.rsi + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatSecsoft + name: secsoft + description: It's a robust baseball hat in tasteful red colour. + components: + - type: Sprite + sprite: Clothing/Head/Soft/secsoft.rsi + - type: Clothing + sprite: Clothing/Head/Soft/secsoft.rsi + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatSecsoftFlipped + name: secsoft flipped + description: It's a robust baseball hat in tasteful red colour. Flipped. + components: + - type: Sprite + sprite: Clothing/Head/Soft/secsoft_flipped.rsi + - type: Clothing + sprite: Clothing/Head/Soft/secsoft_flipped.rsi + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatYellowsoft + name: yellowsoft + description: A yellow baseball hat. + components: + - type: Sprite + sprite: Clothing/Head/Soft/yellowsoft.rsi + - type: Clothing + sprite: Clothing/Head/Soft/yellowsoft.rsi + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatYellowsoftFlipped + name: yellowsoft flipped + description: A yellow flipped baseball hat. + components: + - type: Sprite + sprite: Clothing/Head/Soft/yellowsoft_flipped.rsi + - type: Clothing + sprite: Clothing/Head/Soft/yellowsoft_flipped.rsi diff --git a/Resources/Prototypes/Entities/Clothing/Head/welding-masks.yml b/Resources/Prototypes/Entities/Clothing/Head/welding-masks.yml deleted file mode 100644 index 3643783710..0000000000 --- a/Resources/Prototypes/Entities/Clothing/Head/welding-masks.yml +++ /dev/null @@ -1,95 +0,0 @@ -- type: entity - parent: HatBase - id: HatWelding - name: welding mask - description: A head-mounted face cover designed to protect the wearer completely from space-arc eye. - components: - - type: Sprite - sprite: Clothing/Head/welding.rsi - - - type: Clothing - sprite: Clothing/Head/welding.rsi - -- type: entity - parent: HatBase - id: HatWeldingup - name: welding mask (up) - description: A head-mounted face cover designed to protect the wearer completely from space-arc eye. - components: - - type: Sprite - sprite: Clothing/Head/weldingup.rsi - - - type: Clothing - sprite: Clothing/Head/weldingup.rsi - -- type: entity - parent: HatBase - id: HatFireWeldingMask - name: fire welding mask - description: A painted welding helmet, this one has flames on it. - components: - - type: Sprite - sprite: Clothing/Head/fire_welding_mask_1.rsi - - - type: Clothing - sprite: Clothing/Head/fire_welding_mask_1.rsi - -- type: entity - parent: HatBase - id: HatFireWeldingMaskup - name: fire welding mask (up) - description: A painted welding helmet, this one has flames on it. - components: - - type: Sprite - sprite: Clothing/Head/fire_welding_mask_1up.rsi - - - type: Clothing - sprite: Clothing/Head/fire_welding_mask_1up.rsi - -- type: entity - parent: HatBase - id: HatBlueFlameWeldingMask - name: blue flame welding mask - description: A painted welding helmet, this one has blue flames on it. - components: - - type: Sprite - sprite: Clothing/Head/blue_flame_welding_mask_1.rsi - - - type: Clothing - sprite: Clothing/Head/blue_flame_welding_mask_1.rsi - -- type: entity - parent: HatBase - id: HatBlueFlameWeldingMaskup - name: blue flame welding mask (up) - description: A painted welding helmet, this one has blue flames on it. - components: - - type: Sprite - sprite: Clothing/Head/blue_flame_welding_mask_1up.rsi - - - type: Clothing - sprite: Clothing/Head/blue_flame_welding_mask_1up.rsi - -- type: entity - parent: HatBase - id: HatPaintedwelding - name: painted welding mask - description: A welding helmet, painted in crimson. - components: - - type: Sprite - sprite: Clothing/Head/paintedwelding.rsi - - - type: Clothing - sprite: Clothing/Head/paintedwelding.rsi - -- type: entity - parent: HatBase - id: HatPaintedweldingup - name: painted welding mask (up) - description: A welding helmet, painted in crimson. - components: - - type: Sprite - sprite: Clothing/Head/paintedweldingup.rsi - - - type: Clothing - sprite: Clothing/Head/paintedweldingup.rsi diff --git a/Resources/Prototypes/Entities/Clothing/Head/welding.yml b/Resources/Prototypes/Entities/Clothing/Head/welding.yml new file mode 100644 index 0000000000..7b57503afb --- /dev/null +++ b/Resources/Prototypes/Entities/Clothing/Head/welding.yml @@ -0,0 +1,43 @@ +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatWelding + name: welding mask + description: A head-mounted face cover designed to protect the wearer completely from space-arc eye. + components: + - type: Sprite + sprite: Clothing/Head/Welding/welding.rsi + - type: Clothing + sprite: Clothing/Head/Welding/welding.rsi + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatWeldingMaskFlame + name: flame welding mask + description: A painted welding helmet, this one has flames on it. + components: + - type: Sprite + sprite: Clothing/Head/Welding/flame_welding_mask.rsi + - type: Clothing + sprite: Clothing/Head/Welding/flame_welding_mask.rsi + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatWeldingMaskFlameBlue + name: blue-flame welding mask + description: A painted welding helmet, this one has blue flames on it. + components: + - type: Sprite + sprite: Clothing/Head/Welding/blue_flame_welding_mask.rsi + - type: Clothing + sprite: Clothing/Head/Welding/blue_flame_welding_mask.rsi + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatWeldingMaskPainted + name: painted welding mask + description: A welding helmet, painted in crimson. + components: + - type: Sprite + sprite: Clothing/Head/Welding/paintedwelding.rsi + - type: Clothing + sprite: Clothing/Head/Welding/paintedwelding.rsi diff --git a/Resources/Prototypes/Entities/Clothing/Masks/base.yml b/Resources/Prototypes/Entities/Clothing/Masks/base.yml new file mode 100644 index 0000000000..028c8ecb1e --- /dev/null +++ b/Resources/Prototypes/Entities/Clothing/Masks/base.yml @@ -0,0 +1,9 @@ +- type: entity + parent: Clothing + id: ClothingMaskBase + abstract: true + components: + - type: Sprite + state: icon + - type: Clothing + Slots: [mask] diff --git a/Resources/Prototypes/Entities/Clothing/Masks/masks.yml b/Resources/Prototypes/Entities/Clothing/Masks/masks.yml index 9767140b7c..cb9afb25a7 100644 --- a/Resources/Prototypes/Entities/Clothing/Masks/masks.yml +++ b/Resources/Prototypes/Entities/Clothing/Masks/masks.yml @@ -1,98 +1,71 @@ - type: entity - parent: Clothing - id: MasksBase - abstract: true - components: - - type: Clothing - Slots: [mask] - -- type: entity - parent: MasksBase - id: OldGasMaskClothing + parent: ClothingMaskBase + id: ClothingMaskGas name: old gas mask description: An old, dusty mask. Yet still dutifully functional. components: - type: Sprite - sprite: Clothing/Masks/mask_gasalt.rsi - state: icon - - type: BreathMask + sprite: Clothing/Mask/gas.rsi - type: Clothing - sprite: Clothing/Masks/mask_gasalt.rsi + sprite: Clothing/Mask/gas.rsi + - type: BreathMask - type: entity - parent: MasksBase - id: GasMaskClothing - name: gas mask - description: Regulations require these to be stocked after the fourth coolant leak. - components: - - type: Sprite - sprite: Clothing/Masks/mask_gas.rsi - state: icon - - type: BreathMask - - type: Clothing - sprite: Clothing/Masks/mask_gas.rsi - -- type: entity - parent: MasksBase - id: BreathMaskClothing + parent: ClothingMaskBase + id: ClothingMaskBreath name: breath mask description: Might as well keep this on 24/7. components: - type: Sprite - sprite: Clothing/Masks/mask_breath.rsi - state: icon - - type: BreathMask + sprite: Clothing/Mask/breath.rsi - type: Clothing - sprite: Clothing/Masks/mask_breath.rsi + sprite: Clothing/Mask/breath.rsi + - type: BreathMask - type: entity - parent: MasksBase - id: MaskClown + parent: ClothingMaskBase + id: ClothingMaskClown name: clown wig and mask description: A true prankster's facial attire. A clown is incomplete without his wig and mask. components: - type: Sprite - sprite: Clothing/Masks/mask_clown.rsi - state: icon - - type: BreathMask + sprite: Clothing/Mask/clown.rsi - type: Clothing - sprite: Clothing/Masks/mask_clown.rsi + sprite: Clothing/Mask/clown.rsi + - type: BreathMask - type: entity - parent: MasksBase - id: MaskJoy + parent: ClothingMaskBase + id: ClothingMaskJoy name: joy mask description: Express your happiness or hide your sorrows with this laughing face with crying tears of joy cutout. components: - type: Sprite - sprite: Clothing/Masks/mask_joy.rsi - state: icon - - type: BreathMask + sprite: Clothing/Mask/joy.rsi - type: Clothing - sprite: Clothing/Masks/mask_joy.rsi + sprite: Clothing/Mask/joy.rsi + - type: BreathMask - type: entity - parent: MasksBase - id: MaskMime + parent: ClothingMaskBase + id: ClothingMaskMime name: mime mask description: The traditional mime's mask. It has an eerie facial posture. components: - type: Sprite - sprite: Clothing/Masks/mask_mime.rsi - state: icon - - type: BreathMask + sprite: Clothing/Mask/mime.rsi - type: Clothing - sprite: Clothing/Masks/mask_mime.rsi + sprite: Clothing/Mask/mime.rsi + - type: BreathMask - type: entity - parent: MasksBase - id: MaskSterile + parent: ClothingMaskBase + id: ClothingMaskSterile name: sterile mask description: A sterile mask designed to help prevent the spread of diseases. components: - type: Sprite - sprite: Clothing/Masks/mask_sterile.rsi - state: icon - - type: BreathMask + sprite: Clothing/Mask/sterile.rsi - type: Clothing - sprite: Clothing/Masks/mask_sterile.rsi + sprite: Clothing/Mask/sterile.rsi + - type: BreathMask diff --git a/Resources/Prototypes/Entities/Clothing/Neck/base.yml b/Resources/Prototypes/Entities/Clothing/Neck/base.yml new file mode 100644 index 0000000000..50d464fed2 --- /dev/null +++ b/Resources/Prototypes/Entities/Clothing/Neck/base.yml @@ -0,0 +1,14 @@ +- type: entity + parent: Clothing + id: ClothingNeckBase + abstract: true + name: neck + description: + components: + - type: Clothing + size: 10 + QuickEquip: true + Slots: + - neck + - type: Sprite + state: icon diff --git a/Resources/Prototypes/Entities/Clothing/Neck/cloaks.yml b/Resources/Prototypes/Entities/Clothing/Neck/cloaks.yml index 0f890c0334..3f715de010 100644 --- a/Resources/Prototypes/Entities/Clothing/Neck/cloaks.yml +++ b/Resources/Prototypes/Entities/Clothing/Neck/cloaks.yml @@ -1,124 +1,88 @@ - type: entity - parent: Clothing - id: CloakClothing - name: cloak - abstract: true - description: - components: - - type: Clothing - size: 10 - QuickEquip: true - Slots: - - neck - -- type: entity - parent: CloakClothing - id: CapCloak + parent: ClothingNeckBase + id: ClothingNeckCloakCap name: captain's cloak description: A pompous and comfy blue cloak with a nice gold trim. components: - type: Sprite - sprite: Clothing/Neck/Cloaks/cap_cloak.rsi - state: capcloak - + sprite: Clothing/Neck/Cloaks/cap.rsi - type: Clothing - sprite: Clothing/Neck/Cloaks/cap_cloak.rsi - HeldPrefix: capcloak + sprite: Clothing/Neck/Cloaks/cap.rsi - type: entity - parent: CloakClothing - id: HosCloak + parent: ClothingNeckBase + id: ClothingNeckCloakHos name: HoS's cloak description: An exquisite dark and red cloak of a Head of Security. components: - type: Sprite - sprite: Clothing/Neck/Cloaks/hos_cloak.rsi - state: hoscloak - + sprite: Clothing/Neck/Cloaks/hos.rsi - type: Clothing - sprite: Clothing/Neck/Cloaks/hos_cloak.rsi - HeldPrefix: hoscloak + sprite: Clothing/Neck/Cloaks/hos.rsi - type: entity - parent: CloakClothing - id: CeCloak + parent: ClothingNeckBase + id: ClothingNeckCloakCe name: CE's cloak description: A dark green cloak with light blue ornaments. components: - type: Sprite - sprite: Clothing/Neck/Cloaks/ce_cloak.rsi - state: cecloak - + sprite: Clothing/Neck/Cloaks/ce.rsi - type: Clothing - sprite: Clothing/Neck/Cloaks/ce_cloak.rsi - HeldPrefix: cecloak + sprite: Clothing/Neck/Cloaks/ce.rsi + - type: entity - parent: CloakClothing - id: CmoCloak + parent: ClothingNeckBase + id: CloathingCloakCmo name: CMO's cloak description: A sterile blue cloak with a green cross. components: - type: Sprite - sprite: Clothing/Neck/Cloaks/cmo_cloak.rsi - state: cmocloak - + sprite: Clothing/Neck/Cloaks/cmo.rsi - type: Clothing - sprite: Clothing/Neck/Cloaks/cmo_cloak.rsi - HeldPrefix: cmocloak + sprite: Clothing/Neck/Cloaks/cmo.rsi - type: entity - parent: CloakClothing - id: RdCloak + parent: ClothingNeckBase + id: ClothingNeckCloakRd name: RD's cloak description: A white cloak with violet stripes. components: - type: Sprite - sprite: Clothing/Neck/Cloaks/rd_cloak.rsi - state: rdcloak - + sprite: Clothing/Neck/Cloaks/rd.rsi - type: Clothing - sprite: Clothing/Neck/Cloaks/rd_cloak.rsi - HeldPrefix: rdcloak + sprite: Clothing/Neck/Cloaks/rd.rsi - type: entity - parent: CloakClothing - id: QmCloak + parent: ClothingNeckBase + id: ClothingNeckCloakQm name: QM's cloak description: A strong brown cloak with a reflective stripe. components: - type: Sprite - sprite: Clothing/Neck/Cloaks/qm_cloak.rsi - state: qmcloak - + sprite: Clothing/Neck/Cloaks/qm.rsi - type: Clothing - sprite: Clothing/Neck/Cloaks/qm_cloak.rsi - HeldPrefix: qmcloak + sprite: Clothing/Neck/Cloaks/qm.rsi - type: entity - parent: CloakClothing - id: HopCloak + parent: ClothingNeckBase + id: ClothingNeckCloakHop name: HoP's cloak description: A blue cloak with red shoudlers and gold buttons. components: - type: Sprite - sprite: Clothing/Neck/Cloaks/hop_cloak.rsi - state: hopcloak - + sprite: Clothing/Neck/Cloaks/hop.rsi - type: Clothing - sprite: Clothing/Neck/Cloaks/hop_cloak.rsi - HeldPrefix: hopcloak + sprite: Clothing/Neck/Cloaks/hop.rsi - type: entity - parent: CloakClothing - id: HeraldCloak + parent: ClothingNeckBase + id: ClothingNeckCloakHerald name: Herald's cloak description: An evil-looking red cloak with spikes on its shoulders. components: - type: Sprite - sprite: Clothing/Neck/Cloaks/herald_cloak.rsi - state: heraldcloak - + sprite: Clothing/Neck/Cloaks/herald.rsi - type: Clothing - sprite: Clothing/Neck/Cloaks/herald_cloak.rsi - HeldPrefix: heraldcloak + sprite: Clothing/Neck/Cloaks/herald.rsi diff --git a/Resources/Prototypes/Entities/Clothing/Neck/misc.yml b/Resources/Prototypes/Entities/Clothing/Neck/misc.yml new file mode 100644 index 0000000000..bca559971b --- /dev/null +++ b/Resources/Prototypes/Entities/Clothing/Neck/misc.yml @@ -0,0 +1,32 @@ +- type: entity + parent: ClothingNeckBase + id: ClothingNeckHeadphones + name: headphones + description: Quality headphones from Drunk Masters, with good sound insulation. + components: + - type: Sprite + sprite: Clothing/Neck/Misc/headphones.rsi + - type: Clothing + sprite: Clothing/Neck/Misc/headphones.rsi + +- type: entity + parent: ClothingNeckBase + id: ClothingNeckStethoscope + name: stethoscope + description: An outdated medical apparatus for listening to the sounds of the human body. It also makes you look like you know what you're doing. + components: + - type: Sprite + sprite: Clothing/Neck/Misc/stethoscope.rsi + - type: Clothing + sprite: Clothing/Neck/Misc/stethoscope.rsi + +- type: entity + parent: ClothingNeckBase + id: ClothingNeckBling + name: bling + description: Damn, it feels good to be a gangster. + components: + - type: Sprite + sprite: Clothing/Neck/Misc/bling.rsi + - type: Clothing + sprite: Clothing/Neck/Misc/bling.rsi diff --git a/Resources/Prototypes/Entities/Clothing/Neck/neck.yml b/Resources/Prototypes/Entities/Clothing/Neck/neck.yml deleted file mode 100644 index 3da1e52a96..0000000000 --- a/Resources/Prototypes/Entities/Clothing/Neck/neck.yml +++ /dev/null @@ -1,138 +0,0 @@ -- type: entity - parent: Clothing - id: NeckClothing - abstract: true - name: neck - description: - components: - - type: Clothing - size: 10 - QuickEquip: true - Slots: - - neck - -- type: entity - parent: NeckClothing - id: HeadPhonesOn - name: headphones - description: Quality headphones from Drunk Masters, with good sound insulation. - components: - - type: Sprite - sprite: Clothing/Neck/headphones.rsi - state: headphones_on - - - type: Clothing - sprite: Clothing/Neck/headphones.rsi - HeldPrefix: headphones_on - -- type: entity - parent: NeckClothing - id: RedTie - name: red-tie - description: A neosilk clip-on red tie. - components: - - type: Sprite - sprite: Clothing/Neck/redtie.rsi - state: redtie - - - type: Clothing - sprite: Clothing/Neck/redtie.rsi - HeldPrefix: redtie - -- type: entity - parent: NeckClothing - id: DetTie - name: detective's tie - description: A loosely tied necktie, a perfect accessory for the over-worked detective. - components: - - type: Sprite - sprite: Clothing/Neck/dettie.rsi - state: dettie - - - type: Clothing - sprite: Clothing/Neck/dettie.rsi - HeldPrefix: dettie - -- type: entity - parent: NeckClothing - id: Stethoscope - name: stethoscope - description: An outdated medical apparatus for listening to the sounds of the human body. It also makes you look like you know what you're doing. - components: - - type: Sprite - sprite: Clothing/Neck/stethoscope.rsi - state: stethoscope - - - type: Clothing - sprite: Clothing/Neck/stethoscope.rsi - HeldPrefix: stethoscope - -- type: entity - parent: NeckClothing - id: StripedRedScarf - name: striped red scarf - description: A stylish striped red scarf. The perfect winter accessory for those with a keen fashion sense, and those who just can't handle a cold breeze on their necks. - components: - - type: Sprite - sprite: Clothing/Neck/Scarfs/red_scarf.rsi - state: stripedredscarf - - - type: Clothing - sprite: Clothing/Neck/Scarfs/red_scarf.rsi - HeldPrefix: stripedredscarf - -- type: entity - parent: NeckClothing - id: StripedBlueScarf - name: striped blue scarf - description: A stylish striped blue scarf. The perfect winter accessory for those with a keen fashion sense, and those who just can't handle a cold breeze on their necks. - components: - - type: Sprite - sprite: Clothing/Neck/Scarfs/blue_scarf.rsi - state: stripedbluescarf - - - type: Clothing - sprite: Clothing/Neck/Scarfs/blue_scarf.rsi - HeldPrefix: stripedbluescarf - -- type: entity - parent: NeckClothing - id: StripedGreenScarf - name: striped green scarf - description: A stylish striped green scarf. The perfect winter accessory for those with a keen fashion sense, and those who just can't handle a cold breeze on their necks. - components: - - type: Sprite - sprite: Clothing/Neck/Scarfs/green_scarf.rsi - state: stripedgreenscarf - - - type: Clothing - sprite: Clothing/Neck/Scarfs/green_scarf.rsi - HeldPrefix: stripedgreenscarf - -- type: entity - parent: NeckClothing - id: ZebraScarf - name: zebra scarf - description: A striped scarf, a mandatory accessory for artists. - components: - - type: Sprite - sprite: Clothing/Neck/Scarfs/zebra_scarf.rsi - state: zebrascarf - - - type: Clothing - sprite: Clothing/Neck/Scarfs/zebra_scarf.rsi - HeldPrefix: zebrascarf - -- type: entity - parent: NeckClothing - id: Bling - name: bling - description: Damn, it feels good to be a gangster. - components: - - type: Sprite - sprite: Clothing/Neck/bling.rsi - state: bling - - - type: Clothing - sprite: Clothing/Neck/bling.rsi - HeldPrefix: bling diff --git a/Resources/Prototypes/Entities/Clothing/Neck/scarfs.yml b/Resources/Prototypes/Entities/Clothing/Neck/scarfs.yml new file mode 100644 index 0000000000..2a61f33b92 --- /dev/null +++ b/Resources/Prototypes/Entities/Clothing/Neck/scarfs.yml @@ -0,0 +1,43 @@ +- type: entity + parent: ClothingNeckBase + id: ClothingNeckScarfStripedRed + name: striped red scarf + description: A stylish striped red scarf. The perfect winter accessory for those with a keen fashion sense, and those who just can't handle a cold breeze on their necks. + components: + - type: Sprite + sprite: Clothing/Neck/Scarfs/red.rsi + - type: Clothing + sprite: Clothing/Neck/Scarfs/red.rsi + +- type: entity + parent: ClothingNeckBase + id: ClothingNeckScarfStripedBlue + name: striped blue scarf + description: A stylish striped blue scarf. The perfect winter accessory for those with a keen fashion sense, and those who just can't handle a cold breeze on their necks. + components: + - type: Sprite + sprite: Clothing/Neck/Scarfs/blue.rsi + - type: Clothing + sprite: Clothing/Neck/Scarfs/blue.rsi + +- type: entity + parent: ClothingNeckBase + id: ClothingNeckScarfStripedGreen + name: striped green scarf + description: A stylish striped green scarf. The perfect winter accessory for those with a keen fashion sense, and those who just can't handle a cold breeze on their necks. + components: + - type: Sprite + sprite: Clothing/Neck/Scarfs/green.rsi + - type: Clothing + sprite: Clothing/Neck/Scarfs/green.rsi + +- type: entity + parent: ClothingNeckBase + id: ClothingNeckScarfStripedZebra + name: zebra scarf + description: A striped scarf, a mandatory accessory for artists. + components: + - type: Sprite + sprite: Clothing/Neck/Scarfs/zebra.rsi + - type: Clothing + sprite: Clothing/Neck/Scarfs/zebra.rsi diff --git a/Resources/Prototypes/Entities/Clothing/Neck/ties.yml b/Resources/Prototypes/Entities/Clothing/Neck/ties.yml new file mode 100644 index 0000000000..b1b879c7d4 --- /dev/null +++ b/Resources/Prototypes/Entities/Clothing/Neck/ties.yml @@ -0,0 +1,21 @@ +- type: entity + parent: ClothingNeckBase + id: ClothingNeckTieRed + name: red-tie + description: A neosilk clip-on red tie. + components: + - type: Sprite + sprite: Clothing/Neck/Ties/redtie.rsi + - type: Clothing + sprite: Clothing/Neck/Ties/redtie.rsi + +- type: entity + parent: ClothingNeckBase + id: ClothingNeckTieDet + name: detective's tie + description: A loosely tied necktie, a perfect accessory for the over-worked detective. + components: + - type: Sprite + sprite: Clothing/Neck/Ties/dettie.rsi + - type: Clothing + sprite: Clothing/Neck/Ties/dettie.rsi diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml index c40f9b6504..ff12784eb7 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml @@ -1,265 +1,109 @@ - type: entity - parent: Clothing - id: OuterclothingBase - abstract: true - components: - - type: Clothing - Slots: - - outerclothing - - type: Sprite - state: icon - - -- type: entity - parent: OuterclothingBase - id: OuterclothingArmorVest - name: armor vest - description: "A slim Type I armored vest that provides decent protection against most types of damage." - components: - - type: Sprite - sprite: Clothing/OuterClothing/armor.rsi - state: armor - - - type: Clothing - sprite: Clothing/OuterClothing/armor.rsi - ClothingPrefix: armor - -- type: entity - parent: OuterclothingBase - id: OuterclothingArmorreflec + parent: ClothingOuterBase + id: ClothingOuterArmorReflective name: armor (reflective) description: An armored vest with advanced shielding to protect against energy weapons. components: - type: Sprite - sprite: Clothing/OuterClothing/armor_reflec.rsi - + sprite: Clothing/OuterClothing/Armor/armor_reflec.rsi - type: Clothing - sprite: Clothing/OuterClothing/armor_reflec.rsi + sprite: Clothing/OuterClothing/Armor/armor_reflec.rsi - type: entity - parent: OuterclothingBase - id: OuterclothingBulletproof + parent: ClothingOuterBase + id: ClothingOuterArmorBulletproof name: bulletproof description: An armored vest with heavy plates to protect against ballistic projectiles. components: - type: Sprite - sprite: Clothing/OuterClothing/bulletproof.rsi - + sprite: Clothing/OuterClothing/Armor/bulletproof.rsi - type: Clothing - sprite: Clothing/OuterClothing/bulletproof.rsi + sprite: Clothing/OuterClothing/Armor/bulletproof.rsi - type: entity - parent: OuterclothingBase - id: OuterclothingCaparmor - name: captain's armor - description: A suit of protective formal armor made for the station's captain. - components: - - type: Sprite - sprite: Clothing/OuterClothing/caparmor.rsi - - - type: Clothing - sprite: Clothing/OuterClothing/caparmor.rsi - -- type: entity - parent: OuterclothingBase - id: OuterclothingAcolyte - name: acolyte - description: An armored suit for acolytes of the cult. - components: - - type: Sprite - sprite: Clothing/OuterClothing/acolyte.rsi - - - type: Clothing - sprite: Clothing/OuterClothing/acolyte.rsi - -- type: entity - parent: OuterclothingBase - id: OuterclothingCultarmour + parent: ClothingOuterBase + id: ClothingOuterArmorCult name: cult armor description: An evil-looking cult armor, made of bones. components: - type: Sprite - sprite: Clothing/OuterClothing/cult_armour.rsi - + sprite: Clothing/OuterClothing/Armor/cult_armour.rsi - type: Clothing - sprite: Clothing/OuterClothing/cult_armour.rsi + sprite: Clothing/OuterClothing/Armor/cult_armour.rsi - type: entity - parent: OuterclothingBase - id: OuterclothingCustodian - name: custodian - description: A special armormed custodian suit for cleaning trash in very dangerous places. - components: - - type: Sprite - sprite: Clothing/OuterClothing/custodian.rsi - - - type: Clothing - sprite: Clothing/OuterClothing/custodian.rsi - -- type: entity - parent: OuterclothingBase - id: OuterclothingHeavy + parent: ClothingOuterBase + id: ClothingOuterArmorHeavy name: heavy description: A heavily armored suit that protects against excessive damage. components: - type: Sprite - sprite: Clothing/OuterClothing/heavy.rsi - + sprite: Clothing/OuterClothing/Armor/heavy.rsi - type: Clothing - sprite: Clothing/OuterClothing/heavy.rsi + sprite: Clothing/OuterClothing/Armor/heavy.rsi - type: entity - parent: OuterclothingBase - id: OuterclothingHmarmorvest - name: HM armor vest - description: A handmade armor vest with a big and thick steel plate. + parent: ClothingOuterBase + id: ClothingOuterArmorHeavyGreen + name: heavy + description: A heavily armored suit with green accents that protects against excessive damage. components: - type: Sprite - sprite: Clothing/OuterClothing/hm_armorvest.rsi - + sprite: Clothing/OuterClothing/Armor/heavygreen.rsi - type: Clothing - sprite: Clothing/OuterClothing/hm_armorvest.rsi + sprite: Clothing/OuterClothing/Armor/heavygreen.rsi - type: entity - parent: OuterclothingBase - id: OuterclothingHos - name: HoS armor vest - description: A synthetic armor vest with COMMANDER printed in gold lettering on the chest. This one has added webbing and ballistic plates. + parent: ClothingOuterBase + id: ClothingOuterArmorHeavyRed + name: heavy + description: A heavily armored suit with red accents that protects against excessive damage. components: - type: Sprite - sprite: Clothing/OuterClothing/hos.rsi - + sprite: Clothing/OuterClothing/Armor/heavyred.rsi - type: Clothing - sprite: Clothing/OuterClothing/hos.rsi + sprite: Clothing/OuterClothing/Armor/heavyred.rsi - type: entity - parent: OuterclothingBase - id: OuterclothingKvest - name: kvest - description: An armor vest made of synthetic fibers. - components: - - type: Sprite - sprite: Clothing/OuterClothing/kvest.rsi - - - type: Clothing - sprite: Clothing/OuterClothing/kvest.rsi - -- type: entity - parent: OuterclothingBase - id: OuterclothingMagusblue + parent: ClothingOuterBase + id: ClothingOuterArmorMagusblue name: magus blue description: An blue armored suit that provides good protection. components: - type: Sprite - sprite: Clothing/OuterClothing/magusblue.rsi - + sprite: Clothing/OuterClothing/Armor/magusblue.rsi - type: Clothing - sprite: Clothing/OuterClothing/magusblue.rsi + sprite: Clothing/OuterClothing/Armor/magusblue.rsi - type: entity - parent: OuterclothingBase - id: OuterclothingMagusred + parent: ClothingOuterBase + id: ClothingOuterArmorMagusred name: magus red description: A red armored suit that provides good protection. components: - type: Sprite - sprite: Clothing/OuterClothing/magusred.rsi - + sprite: Clothing/OuterClothing/Armor/magusred.rsi - type: Clothing - sprite: Clothing/OuterClothing/magusred.rsi + sprite: Clothing/OuterClothing/Armor/magusred.rsi - type: entity - parent: OuterclothingBase - id: OuterclothingMercwebvest - name: merc web vest - description: A high-quality armored vest made from a hard synthetic material. It is surprisingly flexible and light, despite formidable armor plating. - components: - - type: Sprite - sprite: Clothing/OuterClothing/mercwebvest.rsi - - - type: Clothing - sprite: Clothing/OuterClothing/mercwebvest.rsi - -- type: entity - parent: OuterclothingBase - id: OuterclothingReactive - name: reactive - description: An experimental suit with a reactive armor that stops very fast projectiles. Currently on. - components: - - type: Sprite - sprite: Clothing/OuterClothing/reactive.rsi - - - type: Clothing - sprite: Clothing/OuterClothing/reactive.rsi - -- type: entity - parent: OuterclothingBase - id: OuterclothingReactiveoff - name: reactive (off) - description: An experimental suit with a reactive armor that stops very fast projectiles. Currently off. - components: - - type: Sprite - sprite: Clothing/OuterClothing/reactiveoff.rsi - - - type: Clothing - sprite: Clothing/OuterClothing/reactiveoff.rsi - -- type: entity - parent: OuterclothingBase - id: OuterclothingRiot + parent: ClothingOuterBase + id: ClothingOuterArmorRiot name: riot description: An armored vest with heavy padding to protect against melee attacks. components: - type: Sprite - sprite: Clothing/OuterClothing/riot.rsi - + sprite: Clothing/OuterClothing/Armor/riot.rsi - type: Clothing - sprite: Clothing/OuterClothing/riot.rsi + sprite: Clothing/OuterClothing/Armor/riot.rsi - type: entity - parent: OuterclothingBase - id: OuterclothingScaf + parent: ClothingOuterBase + id: ClothingOuterArmorScaf name: scaf description: A green and brown tactical suit for combat situations. components: - type: Sprite - sprite: Clothing/OuterClothing/scaf.rsi - + sprite: Clothing/OuterClothing/Armor/scaf.rsi - type: Clothing - sprite: Clothing/OuterClothing/scaf.rsi - -- type: entity - parent: OuterclothingBase - id: OuterclothingSwat - name: swat - description: Very durable vest that provides excellent protection from ranged and melee weapons. - components: - - type: Sprite - sprite: Clothing/OuterClothing/swat.rsi - - - type: Clothing - sprite: Clothing/OuterClothing/swat.rsi - -- type: entity - parent: OuterclothingBase - id: OuterclothingSninja - name: S ninja - description: This black technologically advanced, cybernetically-enhanced suit provides good protection and many abilities like invisibility or teleportation. - components: - - type: Sprite - sprite: Clothing/OuterClothing/s_ninja.rsi - - - type: Clothing - sprite: Clothing/OuterClothing/s_ninja.rsi - -- type: entity - parent: OuterclothingBase - id: OuterclothingWebvest - name: web vest - description: A synthetic armor vest. This one has added webbing and ballistic plates. - components: - - type: Sprite - sprite: Clothing/OuterClothing/webvest.rsi - - - type: Clothing - sprite: Clothing/OuterClothing/webvest.rsi + sprite: Clothing/OuterClothing/Armor/scaf.rsi diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/base.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/base.yml new file mode 100644 index 0000000000..4cb934f8b5 --- /dev/null +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/base.yml @@ -0,0 +1,20 @@ +- type: entity + parent: Clothing + id: ClothingOuterBase + abstract: true + components: + - type: Clothing + Slots: + - outerclothing + - type: Sprite + state: icon + +- type: entity + parent: ClothingOuterBase + id: ClothingOuterHardsuitBase + name: base hardsuit + abstract: true + components: + - type: PressureProtection + highPressureMultiplier: 0.75 + lowPressureMultiplier: 100 diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/bio.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/bio.yml new file mode 100644 index 0000000000..082f02a872 --- /dev/null +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/bio.yml @@ -0,0 +1,71 @@ +- type: entity + parent: ClothingOuterBase + id: ClothingOuterBioGeneral + name: bio suit + suffix: Generic + description: A suit that protects against biological contamination. + components: + - type: Sprite + sprite: Clothing/OuterClothing/Bio/general.rsi + - type: Clothing + sprite: Clothing/OuterClothing/Bio/general.rsi + +- type: entity + parent: ClothingOuterBase + id: ClothingOuterBioCmo + name: bio suit + suffix: CMO + description: An advanced suit that protects against biological contamination, in CMO colors. + components: + - type: Sprite + sprite: Clothing/OuterClothing/Bio/cmo.rsi + - type: Clothing + sprite: Clothing/OuterClothing/Bio/cmo.rsi + +- type: entity + parent: ClothingOuterBase + id: ClothingOuterBioJanitor + name: bio suit + suffix: Janitor + description: A suit that protects against biological contamination, in Janitor colors. + components: + - type: Sprite + sprite: Clothing/OuterClothing/Bio/janitor.rsi + - type: Clothing + sprite: Clothing/OuterClothing/Bio/janitor.rsi + +- type: entity + parent: ClothingOuterBase + id: ClothingOuterBioScientist + name: bio suit + suffix: Science + description: A suit that protects against biological contamination, in Scientist colors. + components: + - type: Sprite + sprite: Clothing/OuterClothing/Bio/scientist.rsi + - type: Clothing + sprite: Clothing/OuterClothing/Bio/scientist.rsi + +- type: entity + parent: ClothingOuterBase + id: ClothingOuterBioSecurity + name: bio suit + suffix: Security + description: A suit that protects against biological contamination, in Security colors. + components: + - type: Sprite + sprite: Clothing/OuterClothing/Bio/security.rsi + - type: Clothing + sprite: Clothing/OuterClothing/Bio/security.rsi + +- type: entity + parent: ClothingOuterBase + id: ClothingOuterBioVirology + name: bio suit + suffix: Virology + description: A suit that protects against biological contamination, in Virology colors. + components: + - type: Sprite + sprite: Clothing/OuterClothing/Bio/virology.rsi + - type: Clothing + sprite: Clothing/OuterClothing/Bio/virology.rsi diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml index b73740564b..b6654eec1b 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml @@ -1,276 +1,109 @@ - type: entity - parent: OuterclothingBase - id: OuterclothingBomber + parent: ClothingOuterBase + id: ClothingOuterCoatBomber name: bomber description: A thick, well-worn WW2 leather bomber jacket. components: - type: Sprite - sprite: Clothing/OuterClothing/bomber.rsi - + sprite: Clothing/OuterClothing/Coats/bomber.rsi - type: Clothing - sprite: Clothing/OuterClothing/bomber.rsi + sprite: Clothing/OuterClothing/Coats/bomber.rsi - type: entity - parent: OuterclothingBase - id: OuterclothingBomberopen - name: bomber (open) - description: A thick, well-worn WW2 leather bomber jacket. - components: - - type: Sprite - sprite: Clothing/OuterClothing/bomber_open.rsi - - - type: Clothing - sprite: Clothing/OuterClothing/bomber_open.rsi - -- type: entity - parent: OuterclothingBase - id: OuterclothingCargojacket - name: cargo jacket - description: A cargo jacket. - components: - - type: Sprite - sprite: Clothing/OuterClothing/cargo_jacket.rsi - - - type: Clothing - sprite: Clothing/OuterClothing/cargo_jacket.rsi - -- type: entity - parent: OuterclothingBase - id: OuterclothingChurchcoat - name: church coat - description: A piety, blessed church coat. - components: - - type: Sprite - sprite: Clothing/OuterClothing/church_coat.rsi - - - type: Clothing - sprite: Clothing/OuterClothing/church_coat.rsi - -- type: entity - parent: OuterclothingBase - id: OuterclothingDetective + parent: ClothingOuterBase + id: ClothingOuterCoatDetective name: detective description: A rugged canvas trenchcoat, designed and created by TX Fabrication Corp. The coat is externally impact resistant - perfect for your next act of autodefenestration! components: - type: Sprite - sprite: Clothing/OuterClothing/detective.rsi - + sprite: Clothing/OuterClothing/Coats/detective.rsi - type: Clothing - sprite: Clothing/OuterClothing/detective.rsi + sprite: Clothing/OuterClothing/Coats/detective.rsi - type: entity - parent: OuterclothingBase - id: OuterclothingGentlecoat + parent: ClothingOuterBase + id: ClothingOuterCoatGentle name: gentle coat description: A gentle coat for a gentle man, or woman. components: - type: Sprite - sprite: Clothing/OuterClothing/gentlecoat.rsi - + sprite: Clothing/OuterClothing/Coats/gentlecoat.rsi - type: Clothing - sprite: Clothing/OuterClothing/gentlecoat.rsi + sprite: Clothing/OuterClothing/Coats/gentlecoat.rsi - type: entity - parent: OuterclothingBase - id: OuterclothingGreyhoodie - name: grey hoodie - description: A grey hoodie. - components: - - type: Sprite - sprite: Clothing/OuterClothing/grey_hoodie.rsi - - - type: Clothing - sprite: Clothing/OuterClothing/grey_hoodie.rsi - -- type: entity - parent: OuterclothingBase - id: OuterclothingGreyhoodieopen - name: grey hoodie (open) - description: A grey hoodie. - components: - - type: Sprite - sprite: Clothing/OuterClothing/grey_hoodie_open.rsi - - - type: Clothing - sprite: Clothing/OuterClothing/grey_hoodie_open.rsi - -- type: entity - parent: OuterclothingBase - id: OuterclothingInspcoat - name: inspector coat - description: A strict inspector coat for being intimidating during inspections. - components: - - type: Sprite - sprite: Clothing/OuterClothing/insp_coat.rsi - - - type: Clothing - sprite: Clothing/OuterClothing/insp_coat.rsi - -- type: entity - parent: OuterclothingBase - id: OuterclothingJensencoat - name: jensen coat - description: A jensen coat. - components: - - type: Sprite - sprite: Clothing/OuterClothing/jensencoat.rsi - - - type: Clothing - sprite: Clothing/OuterClothing/jensencoat.rsi - -- type: entity - parent: OuterclothingBase - id: OuterclothingLabcoat - name: lab coat - description: A suit that protects against minor chemical spills. - components: - - type: Sprite - sprite: Clothing/OuterClothing/labcoat.rsi - - - type: Clothing - sprite: Clothing/OuterClothing/labcoat.rsi - -- type: entity - parent: OuterclothingBase - id: OuterclothingLabcoatopen - name: lab coat (open) - description: A suit that protects against minor chemical spills. - components: - - type: Sprite - sprite: Clothing/OuterClothing/labcoat_open.rsi - - - type: Clothing - sprite: Clothing/OuterClothing/labcoat_open.rsi - -- type: entity - parent: OuterclothingBase - id: OuterclothingLabcoatchem - name: lab coat (chem) - description: A suit that protects against minor chemical spills. Has an orange stripe on the shoulder. - components: - - type: Sprite - sprite: Clothing/OuterClothing/labcoat_chem.rsi - - - type: Clothing - sprite: Clothing/OuterClothing/labcoat_chem.rsi - -- type: entity - parent: OuterclothingBase - id: OuterclothingLabcoatchemopen - name: lab coat (chem open) - description: A suit that protects against minor chemical spills. Has an orange stripe on the shoulder. - components: - - type: Sprite - sprite: Clothing/OuterClothing/labcoat_chem_open.rsi - - - type: Clothing - sprite: Clothing/OuterClothing/labcoat_chem_open.rsi - -- type: entity - parent: OuterclothingBase - id: OuterclothingLabcoatcmo - name: lab coat (CMO) - description: Bluer than the standard model. - components: - - type: Sprite - sprite: Clothing/OuterClothing/labcoat_cmo.rsi - - - type: Clothing - sprite: Clothing/OuterClothing/labcoat_cmo.rsi - -- type: entity - parent: OuterclothingBase - id: OuterclothingLabcoatcmoopen - name: lab coat (CMO open) - description: Bluer than the standard model. - components: - - type: Sprite - sprite: Clothing/OuterClothing/labcoat_cmo_open.rsi - - - type: Clothing - sprite: Clothing/OuterClothing/labcoat_cmo_open.rsi - -- type: entity - parent: OuterclothingBase - id: OuterclothingLabcoatmedspec - name: lab coat (medical) - description: A snow-white, sterilised coat that protects against minor chemical spills. - components: - - type: Sprite - sprite: Clothing/OuterClothing/labcoat_medspec.rsi - - - type: Clothing - sprite: Clothing/OuterClothing/labcoat_medspec.rsi - -- type: entity - parent: OuterclothingBase - id: OuterclothingLabcoatmedspecopen - name: lab coat (medical open) - description: A snow-white, sterilised coat that protects against minor chemical spills. - components: - - type: Sprite - sprite: Clothing/OuterClothing/labcoat_medspec_open.rsi - - - type: Clothing - sprite: Clothing/OuterClothing/labcoat_medspec_open.rsi - -- type: entity - parent: OuterclothingBase - id: OuterclothingLeatherjacket - name: leather jacket - description: A badass leather jacket. - components: - - type: Sprite - sprite: Clothing/OuterClothing/leather_jacket.rsi - - - type: Clothing - sprite: Clothing/OuterClothing/leather_jacket.rsi - -- type: entity - parent: OuterclothingBase - id: OuterclothingPirate - name: pirate - description: Yarr. - components: - - type: Sprite - sprite: Clothing/OuterClothing/pirate.rsi - - - type: Clothing - sprite: Clothing/OuterClothing/pirate.rsi - -- type: entity - parent: OuterclothingBase - id: OuterclothingQmcoat - name: QM coat - description: A robust and comfy coat for quartermasters. - components: - - type: Sprite - sprite: Clothing/OuterClothing/qm_coat.rsi - - - type: Clothing - sprite: Clothing/OuterClothing/qm_coat.rsi - -- type: entity - parent: OuterclothingBase - id: OuterclothingRedwizard - name: red wizard - description: Strange-looking, red, hat-wear that most certainly belongs to a real magic user. - components: - - type: Sprite - sprite: Clothing/OuterClothing/redwizard.rsi - - - type: Clothing - sprite: Clothing/OuterClothing/redwizard.rsi - -- type: entity - parent: OuterclothingBase - id: OuterclothingHoSTrenchcoat + parent: ClothingOuterBase + id: ClothingOuterCoatHoSTrench name: head of security trenchcoat description: This trenchcoat was specifically designed for asserting superior authority. components: - type: Sprite - sprite: Clothing/OuterClothing/hos_trenchcoat.rsi - state: hos_trenchcoat - + sprite: Clothing/OuterClothing/Coats/hos_trenchcoat.rsi - type: Clothing - sprite: Clothing/OuterClothing/hos_trenchcoat.rsi + sprite: Clothing/OuterClothing/Coats/hos_trenchcoat.rsi + +- type: entity + parent: ClothingOuterBase + id: ClothingOuterCoatInspector + name: inspector coat + description: A strict inspector coat for being intimidating during inspections. + components: + - type: Sprite + sprite: Clothing/OuterClothing/Coats/insp_coat.rsi + - type: Clothing + sprite: Clothing/OuterClothing/Coats/insp_coat.rsi + +- type: entity + parent: ClothingOuterBase + id: ClothingOuterCoatJensen + name: jensen coat + description: A jensen coat. + components: + - type: Sprite + sprite: Clothing/OuterClothing/Coats/jensencoat.rsi + - type: Clothing + sprite: Clothing/OuterClothing/Coats/jensencoat.rsi + +- type: entity + parent: ClothingOuterBase + id: ClothingOuterCoatLab + name: lab coat + description: A suit that protects against minor chemical spills. + components: + - type: Sprite + sprite: Clothing/OuterClothing/Coats/labcoat.rsi + - type: Clothing + sprite: Clothing/OuterClothing/Coats/labcoat.rsi + +- type: entity + parent: ClothingOuterBase + id: ClothingOuterCoatLabChem + name: lab coat (chem) + description: A suit that protects against minor chemical spills. Has an orange stripe on the shoulder. + components: + - type: Sprite + sprite: Clothing/OuterClothing/Coats/labcoat_chem.rsi + - type: Clothing + sprite: Clothing/OuterClothing/Coats/labcoat_chem.rsi + +- type: entity + parent: ClothingOuterBase + id: ClothingOuterCoatLabCmo + name: lab coat (CMO) + description: Bluer than the standard model. + components: + - type: Sprite + sprite: Clothing/OuterClothing/Coats/labcoat_cmo.rsi + - type: Clothing + sprite: Clothing/OuterClothing/Coats/labcoat_cmo.rsi + +- type: entity + parent: ClothingOuterBase + id: ClothingOuterCoatPirate + name: pirate + description: Yarr. + components: + - type: Sprite + sprite: Clothing/OuterClothing/Coats/pirate.rsi + - type: Clothing + sprite: Clothing/OuterClothing/Coats/pirate.rsi diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml index 1f34b7c155..d155d9aced 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml @@ -1,206 +1,180 @@ - type: entity - parent: OuterclothingBase - id: HardsuitBase - name: base hardsuit - abstract: true - components: - - type: PressureProtection - highPressureMultiplier: 0.75 - lowPressureMultiplier: 100 - -- type: entity - parent: HardsuitBase - id: HardsuitDeathsquad - name: deathsquad hardsuit - description: An advanced hardsuit favored by commandos for use in special operations. - components: - - type: Sprite - sprite: Clothing/OuterClothing/deathsquad.rsi - - - type: Clothing - sprite: Clothing/OuterClothing/deathsquad.rsi - - type: PressureProtection - highPressureMultiplier: 0.45 - lowPressureMultiplier: 100 - -- type: entity - parent: HardsuitBase - id: IHVoidsuit - name: IH voidsuit - description: A special void suit that protects against hazardous, low pressure environments. - components: - - type: Sprite - sprite: Clothing/OuterClothing/ihvoidsuit.rsi - - - type: Clothing - sprite: Clothing/OuterClothing/ihvoidsuit.rsi - - type: PressureProtection - highPressureMultiplier: 1 - lowPressureMultiplier: 100 - -- type: entity - parent: HardsuitBase - id: HardsuitAtmos + parent: ClothingOuterHardsuitBase + id: ClothingOuterHardsuitAtmos name: atmos hardsuit description: A special suit that protects against hazardous, low pressure environments. Has thermal shielding. components: - type: Sprite - sprite: Clothing/OuterClothing/hardsuit_atmos.rsi - + sprite: Clothing/OuterClothing/Hardsuits/atmospherics.rsi - type: Clothing - sprite: Clothing/OuterClothing/hardsuit_atmos.rsi + sprite: Clothing/OuterClothing/Hardsuits/atmospherics.rsi - type: PressureProtection highPressureMultiplier: 0.5 lowPressureMultiplier: 100 - type: entity - parent: HardsuitBase - id: HardsuitEngineering + parent: ClothingOuterHardsuitBase + id: ClothingOuterHardsuitCap + name: captain's armor + description: A suit of protective formal armor made for the station's captain. + components: + - type: Sprite + sprite: Clothing/OuterClothing/Hardsuits/capspace.rsi + - type: Clothing + sprite: Clothing/OuterClothing/Hardsuits/capspace.rsi + highPressureMultiplier: 0.5 + lowPressureMultiplier: 100 + +- type: entity + parent: ClothingOuterHardsuitBase + id: ClothingOuterHardsuitDeathsquad + name: deathsquad hardsuit + description: An advanced hardsuit favored by commandos for use in special operations. + components: + - type: Sprite + sprite: Clothing/OuterClothing/Hardsuits/deathsquad.rsi + - type: Clothing + sprite: Clothing/OuterClothing/Hardsuits/deathsquad.rsi + - type: PressureProtection + highPressureMultiplier: 0.45 + lowPressureMultiplier: 100 + +- type: entity + parent: ClothingOuterHardsuitBase + id: ClothingOuterHardsuitEngineering name: engineering hardsuit description: A special suit that protects against hazardous, low pressure environments. Has radiation shielding. components: - type: Sprite - sprite: Clothing/OuterClothing/hardsuit_engineering.rsi - + sprite: Clothing/OuterClothing/Hardsuits/engineering.rsi - type: Clothing - sprite: Clothing/OuterClothing/hardsuit_engineering.rsi + sprite: Clothing/OuterClothing/Hardsuits/engineering.rsi - type: PressureProtection highPressureMultiplier: 0.65 lowPressureMultiplier: 100 - type: entity - parent: HardsuitBase - id: HardsuitHazard - name: hazard hardsuit - description: A robust hardsuit made for dangerous and hazardous situations. - components: - - type: Sprite - sprite: Clothing/OuterClothing/hardsuit_hazardhardsuit.rsi - - - type: Clothing - sprite: Clothing/OuterClothing/hardsuit_hazardhardsuit.rsi - - type: PressureProtection - highPressureMultiplier: 0.75 - lowPressureMultiplier: 100 - -- type: entity - parent: HardsuitBase - id: HardsuitMedical - name: medical hardsuit - description: A special suit that protects against hazardous, low pressure environments. Built with lightweight materials for easier movement. - components: - - type: Sprite - sprite: Clothing/OuterClothing/hardsuit_medical.rsi - - - type: Clothing - sprite: Clothing/OuterClothing/hardsuit_medical.rsi - - type: PressureProtection - highPressureMultiplier: 0.75 - lowPressureMultiplier: 100 - -- type: entity - parent: HardsuitBase - id: HardsuitMining - name: mining hardsuit - description: A special suit that protects against hazardous, low pressure environments. Has reinforced plating for wildlife encounters. - components: - - type: Sprite - sprite: Clothing/OuterClothing/hardsuit_mining.rsi - - - type: Clothing - sprite: Clothing/OuterClothing/hardsuit_mining.rsi - - type: PressureProtection - highPressureMultiplier: 0.75 - lowPressureMultiplier: 100 - -- type: entity - parent: HardsuitBase - id: HardsuitSecurity - name: security hardsuit - description: A special suit that protects against hazardous, low pressure environments. Has an additional layer of armor. - components: - - type: Sprite - sprite: Clothing/OuterClothing/hardsuit_sectg.rsi - - - type: Clothing - sprite: Clothing/OuterClothing/hardsuit_sectg.rsi - - type: PressureProtection - highPressureMultiplier: 0.75 - lowPressureMultiplier: 100 - -- type: entity - parent: HardsuitBase - id: HardsuitSyndie - name: blood red hardsuit - description: A dual-mode advanced hardsuit designed for work in special operations. - components: - - type: Sprite - sprite: Clothing/OuterClothing/hardsuit_syndie.rsi - - - type: Clothing - sprite: Clothing/OuterClothing/hardsuit_syndie.rsi - - type: PressureProtection - highPressureMultiplier: 0.45 - lowPressureMultiplier: 100 - -# Some massive smoothbrain had this named "hardsuit white" yeah thanks fuckhead really useful. -- type: entity - parent: HardsuitBase - id: HardsuitCE + parent: ClothingOuterHardsuitBase + id: ClothingOuterHardsuitEngineeringWhite name: CE hardsuit description: A special hardsuit that protects against hazardous, low pressure environments, made for the chief engineer of the station. components: - type: Sprite - sprite: Clothing/OuterClothing/hardsuit_ce.rsi - + sprite: Clothing/OuterClothing/Hardsuits/engineering-white.rsi - type: Clothing - sprite: Clothing/OuterClothing/hardsuit_ce.rsi + sprite: Clothing/OuterClothing/Hardsuits/engineering-white.rsi - type: PressureProtection highPressureMultiplier: 0.45 lowPressureMultiplier: 100 - type: entity - parent: HardsuitBase - id: HardsuitWizard + parent: ClothingOuterHardsuitBase + id: IHSVoidsuit + name: IHS voidsuit + description: A special void suit that protects against hazardous, low pressure environments. + components: + - type: Sprite + sprite: Clothing/OuterClothing/Hardsuits/ihsvoid.rsi + - type: Clothing + sprite: Clothing/OuterClothing/Hardsuits/ihsvoid.rsi + - type: PressureProtection + highPressureMultiplier: 1 + lowPressureMultiplier: 100 + +- type: entity + parent: ClothingOuterHardsuitBase + id: ClothingOuterHardsuitMedical + name: medical hardsuit + description: A special suit that protects against hazardous, low pressure environments. Built with lightweight materials for easier movement. + components: + - type: Sprite + sprite: Clothing/OuterClothing/Hardsuits/medical.rsi + - type: Clothing + sprite: Clothing/OuterClothing/Hardsuits/medical.rsi + - type: PressureProtection + highPressureMultiplier: 0.75 + lowPressureMultiplier: 100 + +- type: entity + parent: ClothingOuterHardsuitBase + id: ClothingOuterHardsuitRd + name: research director's hardsuit + description: A special suit that protects against hazardous, low pressure environments. Has an additional layer of armor. + components: + - type: Sprite + sprite: Clothing/OuterClothing/Hardsuits/rd.rsi + - type: Clothing + sprite: Clothing/OuterClothing/Hardsuits/rd.rsi + - type: PressureProtection + highPressureMultiplier: 0.75 + lowPressureMultiplier: 100 + +- type: entity + parent: ClothingOuterHardsuitBase + id: ClothingOuterHardsuitSalvage + name: salvage hardsuit + description: A special suit that protects against hazardous, low pressure environments. Has reinforced plating for wildlife encounters. + components: + - type: Sprite + sprite: Clothing/OuterClothing/Hardsuits/salvage.rsi + - type: Clothing + sprite: Clothing/OuterClothing/Hardsuits/salvage.rsi + - type: PressureProtection + highPressureMultiplier: 0.75 + lowPressureMultiplier: 100 + +- type: entity + parent: ClothingOuterHardsuitBase + id: ClothingOuterHardsuitSecurity + name: security hardsuit + description: A special suit that protects against hazardous, low pressure environments. Has an additional layer of armor. + components: + - type: Sprite + sprite: Clothing/OuterClothing/Hardsuits/security.rsi + - type: Clothing + sprite: Clothing/OuterClothing/Hardsuits/security.rsi + - type: PressureProtection + highPressureMultiplier: 0.75 + lowPressureMultiplier: 100 + +- type: entity + parent: ClothingOuterHardsuitBase + id: ClothingOuterHardsuitSecurityRed + name: head of security's hardsuit + description: A special suit that protects against hazardous, low pressure environments. Has an additional layer of armor. + components: + - type: Sprite + sprite: Clothing/OuterClothing/Hardsuits/security-red.rsi + - type: Clothing + sprite: Clothing/OuterClothing/Hardsuits/security-red.rsi + - type: PressureProtection + highPressureMultiplier: 0.75 + lowPressureMultiplier: 100 + +- type: entity + parent: ClothingOuterHardsuitBase + id: ClothingOuterHardsuitSyndie + name: blood-red hardsuit + description: A dual-mode advanced hardsuit designed for work in special operations. + components: + - type: Sprite + sprite: Clothing/OuterClothing/Hardsuits/syndicate.rsi + - type: Clothing + sprite: Clothing/OuterClothing/Hardsuits/syndicate.rsi + - type: PressureProtection + highPressureMultiplier: 0.45 + lowPressureMultiplier: 100 + +- type: entity + parent: ClothingOuterHardsuitBase + id: ClothingOuterHardsuitWizard name: wizard hardsuit description: A bizarre gem-encrusted suit that radiates magical energies. components: - type: Sprite - sprite: Clothing/OuterClothing/hardsuit_wiz.rsi - + sprite: Clothing/OuterClothing/Hardsuits/wizard.rsi - type: Clothing - sprite: Clothing/OuterClothing/hardsuit_wiz.rsi + sprite: Clothing/OuterClothing/Hardsuits/wizard.rsi - type: PressureProtection highPressureMultiplier: 0.45 lowPressureMultiplier: 100 - -# I don't know what the hell "td" is but whatever i'll dump it here. -- type: entity - parent: HardsuitBase - id: HardsuitTDGreen - name: green TD hardsuit - description: Heavily armored black and green suit for long combat situations, also provides protection from low-pressure/vacuum damage. - components: - - type: Sprite - sprite: Clothing/OuterClothing/tdgreen.rsi - - - type: Clothing - sprite: Clothing/OuterClothing/tdgreen.rsi - - type: PressureProtection - highPressureMultiplier: 1 - lowPressureMultiplier: 100 - -- type: entity - parent: HardsuitBase - id: HardsuitTDRed - name: red TD hardsuit - description: Heavily armored black and red suit for long combat situations, also provides protection from low-pressure/vacuum damage. - components: - - type: Sprite - sprite: Clothing/OuterClothing/tdred.rsi - - - type: Clothing - sprite: Clothing/OuterClothing/tdred.rsi - - type: PressureProtection - highPressureMultiplier: 1 - lowPressureMultiplier: 100 diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/misc.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/misc.yml index 2738b0a09b..d47371ad8f 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/misc.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/misc.yml @@ -1,289 +1,199 @@ - type: entity - parent: OuterclothingBase - id: OuterclothingApron + parent: ClothingOuterBase + id: ClothingOuterApron name: apron - description: A fancy purple apron for a stylish person. + description: A fancy apron for a stylish person. components: - type: Sprite - sprite: Clothing/OuterClothing/apron.rsi - + sprite: Clothing/OuterClothing/Misc/apron.rsi - type: Clothing - sprite: Clothing/OuterClothing/apron.rsi + sprite: Clothing/OuterClothing/Misc/apron.rsi - type: entity - parent: OuterclothingBase - id: OuterclothingApronchef - name: apron (chef) + parent: ClothingOuterBase + id: ClothingOuterApronChef + name: apron + suffix: Chef description: An apron-jacket used by a high class chef. components: - type: Sprite - sprite: Clothing/OuterClothing/apronchef.rsi - + sprite: Clothing/OuterClothing/Misc/apronchef.rsi - type: Clothing - sprite: Clothing/OuterClothing/apronchef.rsi + sprite: Clothing/OuterClothing/Misc/apronchef.rsi - type: entity - parent: OuterclothingBase - id: OuterclothingAssjacket - name: ass jacket - description: Very damaged orange jacket. Don't be silly, do not wear it. - components: - - type: Sprite - sprite: Clothing/OuterClothing/ass_jacket.rsi - - - type: Clothing - sprite: Clothing/OuterClothing/ass_jacket.rsi - -- type: entity - parent: OuterclothingBase - id: OuterclothingBedsheet - name: ghost costume - description: This is obviously just a bedsheet, but maybe try it on? - components: - - type: Sprite - sprite: Clothing/OuterClothing/bedsheet.rsi - - - type: Clothing - sprite: Clothing/OuterClothing/bedsheet.rsi - -- type: entity - parent: OuterclothingBase - id: OuterclothingBlackhoodie - name: black hoodie - description: Oh my God, it's a black hoodie! - components: - - type: Sprite - sprite: Clothing/OuterClothing/black_hoodie.rsi - - - type: Clothing - sprite: Clothing/OuterClothing/black_hoodie.rsi - -- type: entity - parent: OuterclothingBase - id: OuterclothingBlackhoodieopen - name: black hoodie (open) - description: Oh my God, it's a black hoodie! - components: - - type: Sprite - sprite: Clothing/OuterClothing/black_hoodie_open.rsi - - - type: Clothing - sprite: Clothing/OuterClothing/black_hoodie_open.rsi - -- type: entity - parent: OuterclothingBase - id: OuterclothingCardborg - name: cardborg - description: An ordinary cardboard box with holes cut in the sides. - components: - - type: Sprite - sprite: Clothing/OuterClothing/cardborg.rsi - - - type: Clothing - sprite: Clothing/OuterClothing/cardborg.rsi - -- type: entity - parent: OuterclothingBase - id: OuterclothingChaplainhoodie - name: chaplain hoodie - description: Black and strict chaplain hoodie. - components: - - type: Sprite - sprite: Clothing/OuterClothing/chaplain_hoodie.rsi - - - type: Clothing - sprite: Clothing/OuterClothing/chaplain_hoodie.rsi - -- type: entity - parent: OuterclothingBase - id: OuterclothingChef + parent: ClothingOuterBase + id: ClothingOuterJacketChef name: chef description: An apron-jacket used by a high class chef. components: - type: Sprite - sprite: Clothing/OuterClothing/chef.rsi - + sprite: Clothing/OuterClothing/Misc/chef.rsi - type: Clothing - sprite: Clothing/OuterClothing/chef.rsi + sprite: Clothing/OuterClothing/Misc/chef.rsi - type: entity - parent: OuterclothingBase - id: OuterclothingChickensuit - name: chicken suit - description: Bok bok bok! + parent: ClothingOuterBase + id: ClothingOuterHoodieBlack + name: black hoodie + description: Oh my God, it's a black hoodie! components: - type: Sprite - sprite: Clothing/OuterClothing/chickensuit.rsi - + sprite: Clothing/OuterClothing/Misc/black_hoodie.rsi - type: Clothing - sprite: Clothing/OuterClothing/chickensuit.rsi + sprite: Clothing/OuterClothing/Misc/black_hoodie.rsi - type: entity - parent: OuterclothingBase - id: OuterclothingClassicponcho + parent: ClothingOuterBase + id: ClothingOuterHoodieGrey + name: grey hoodie + description: A grey hoodie. + components: + - type: Sprite + sprite: Clothing/OuterClothing/Misc/grey_hoodie.rsi + - type: Clothing + sprite: Clothing/OuterClothing/Misc/grey_hoodie.rsi + +- type: entity + parent: ClothingOuterBase + id: ClothingOuterCardborg + name: cardborg + description: An ordinary cardboard box with holes cut in the sides. + components: + - type: Sprite + sprite: Clothing/OuterClothing/Misc/cardborg.rsi + - type: Clothing + sprite: Clothing/OuterClothing/Misc/cardborg.rsi + +- type: entity + parent: ClothingOuterBase + id: ClothingOuterHoodieChaplain + name: chaplain hoodie + description: Black and strict chaplain hoodie. + components: + - type: Sprite + sprite: Clothing/OuterClothing/Misc/chaplain_hoodie.rsi + - type: Clothing + sprite: Clothing/OuterClothing/Misc/chaplain_hoodie.rsi + +- type: entity + parent: ClothingOuterBase + id: ClothingOuterPonchoClassic name: classic poncho description: A warm and comfy classic poncho. components: - type: Sprite - sprite: Clothing/OuterClothing/classicponcho.rsi - + sprite: Clothing/OuterClothing/Misc/classicponcho.rsi - type: Clothing - sprite: Clothing/OuterClothing/classicponcho.rsi + sprite: Clothing/OuterClothing/Misc/classicponcho.rsi - type: entity - parent: OuterclothingBase - id: OuterclothingCultrobes + parent: ClothingOuterBase + id: ClothingOuterRobesCult name: cult robes description: There's no cult without classic red/crimson cult robes. components: - type: Sprite - sprite: Clothing/OuterClothing/cultrobes.rsi - + sprite: Clothing/OuterClothing/Misc/cultrobes.rsi - type: Clothing - sprite: Clothing/OuterClothing/cultrobes.rsi + sprite: Clothing/OuterClothing/Misc/cultrobes.rsi - type: entity - parent: OuterclothingBase - id: OuterclothingDetvest - name: detective's vest - description: A hard-boiled private investigator's grey trenchcoat. - components: - - type: Sprite - sprite: Clothing/OuterClothing/detvest.rsi - - - type: Clothing - sprite: Clothing/OuterClothing/detvest.rsi - -- type: entity - parent: OuterclothingBase - id: OuterclothingHazard - name: hazard - description: A high-visibility vest used in work zones. - components: - - type: Sprite - sprite: Clothing/OuterClothing/hazard.rsi - - - type: Clothing - sprite: Clothing/OuterClothing/hazard.rsi - -- type: entity - parent: OuterclothingBase - id: OuterclothingJudge + parent: ClothingOuterBase + id: ClothingOuterRobesJudge name: judge description: This robe commands authority. components: - type: Sprite - sprite: Clothing/OuterClothing/judge.rsi - + sprite: Clothing/OuterClothing/Misc/judge.rsi - type: Clothing - sprite: Clothing/OuterClothing/judge.rsi + sprite: Clothing/OuterClothing/Misc/judge.rsi - type: entity - parent: OuterclothingBase - id: OuterclothingMonkeysuit - name: monkey suit - description: A suit that looks like a primate. - components: - - type: Sprite - sprite: Clothing/OuterClothing/monkeysuit.rsi - - - type: Clothing - sprite: Clothing/OuterClothing/monkeysuit.rsi - -- type: entity - parent: OuterclothingBase - id: OuterclothingPoncho + parent: ClothingOuterBase + id: ClothingOuterPoncho name: poncho description: A warm and comfy poncho. components: - type: Sprite - sprite: Clothing/OuterClothing/poncho.rsi - + sprite: Clothing/OuterClothing/Misc/poncho.rsi - type: Clothing - sprite: Clothing/OuterClothing/poncho.rsi + sprite: Clothing/OuterClothing/Misc/poncho.rsi - type: entity - parent: OuterclothingBase - id: OuterclothingSanta + parent: ClothingOuterBase + id: ClothingOuterSanta name: santa description: Ho ho ho! components: - type: Sprite - sprite: Clothing/OuterClothing/santa.rsi - + sprite: Clothing/OuterClothing/Misc/santa.rsi - type: Clothing - sprite: Clothing/OuterClothing/santa.rsi + sprite: Clothing/OuterClothing/Misc/santa.rsi - type: entity - parent: OuterclothingBase - id: OuterclothingStraightjacket + parent: ClothingOuterBase + id: ClothingOuterStraightjacket name: straight jacket description: A straight jacket. components: - type: Sprite - sprite: Clothing/OuterClothing/straight_jacket.rsi - + sprite: Clothing/OuterClothing/Misc/straight_jacket.rsi - type: Clothing - sprite: Clothing/OuterClothing/straight_jacket.rsi - -# This sprite looks like shit too but whatever... -- type: entity - parent: OuterclothingBase - id: OuterclothingSurgeon - name: surgeon - description: A sterile blue surgical apron. - components: - - type: Sprite - sprite: Clothing/OuterClothing/surgeon.rsi - - - type: Clothing - sprite: Clothing/OuterClothing/surgeon.rsi - -- type: entity - parent: OuterclothingBase - id: OuterclothingVest - name: vest - description: A thick vest with a rubbery, water-resistant shell. - components: - - type: Sprite - sprite: Clothing/OuterClothing/vest.rsi - - - type: Clothing - sprite: Clothing/OuterClothing/vest.rsi + sprite: Clothing/OuterClothing/Misc/straight_jacket.rsi # Is this wizard wearing a fanny pack??? - type: entity - parent: OuterclothingBase - id: OuterclothingVioletwizard + parent: ClothingOuterBase + id: ClothingOuterWizardViolet name: violet wizard description: A bizarre gem-encrusted violet robe that radiates magical energies. components: - type: Sprite - sprite: Clothing/OuterClothing/violetwizard.rsi - + sprite: Clothing/OuterClothing/Misc/violetwizard.rsi - type: Clothing - sprite: Clothing/OuterClothing/violetwizard.rsi + sprite: Clothing/OuterClothing/Misc/violetwizard.rsi - type: entity - parent: OuterclothingBase - id: OuterclothingWizard + parent: ClothingOuterBase + id: ClothingOuterWizard name: wizard description: A bizarre gem-encrusted blue robe that radiates magical energies. components: - type: Sprite - sprite: Clothing/OuterClothing/wizard.rsi - + sprite: Clothing/OuterClothing/Misc/wizard.rsi - type: Clothing - sprite: Clothing/OuterClothing/wizard.rsi + sprite: Clothing/OuterClothing/Misc/wizard.rsi - type: entity - parent: OuterclothingBase - id: OuterclothingXenos + parent: ClothingOuterBase + id: ClothingOuterXenos name: xenos description: A suit made out of chitinous alien hide. components: - type: Sprite - sprite: Clothing/OuterClothing/xenos.rsi - + sprite: Clothing/OuterClothing/Misc/xenos.rsi - type: Clothing - sprite: Clothing/OuterClothing/xenos.rsi + sprite: Clothing/OuterClothing/Misc/xenos.rsi + +- type: entity + parent: ClothingOuterBase + id: ClothingOuterWizardRed + name: red wizard + description: Strange-looking, red, hat-wear that most certainly belongs to a real magic user. + components: + - type: Sprite + sprite: Clothing/OuterClothing/Misc/redwizard.rsi + - type: Clothing + sprite: Clothing/OuterClothing/Misc/redwizard.rsi + +- type: entity + parent: ClothingOuterBase + id: ClothingOuterSkub + name: Skub Suit + description: 'Skub is crudely written on the outside of this cylindrical suit.' + components: + - type: Sprite + sprite: Clothing/OuterClothing/Misc/skubbody.rsi + - type: Clothing + sprite: Clothing/OuterClothing/Misc/skubbody.rsi diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml index 4d310059a1..52c44ff0b5 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml @@ -1,206 +1,91 @@ - type: entity - parent: OuterclothingBase - id: OuterclothingBio - name: bio - description: A suit that protects against biological contamination. - components: - - type: Sprite - sprite: Clothing/OuterClothing/bio.rsi - - - type: Clothing - sprite: Clothing/OuterClothing/bio.rsi - -- type: entity - parent: OuterclothingBase - id: OuterclothingBiocmo - name: bio suit (CMO) - description: An advanced suit that protects against biological contamination, in CMO colors. - components: - - type: Sprite - sprite: Clothing/OuterClothing/bio_cmo.rsi - - - type: Clothing - sprite: Clothing/OuterClothing/bio_cmo.rsi - -- type: entity - parent: OuterclothingBase - id: OuterclothingBiogeneral - name: bio suit - description: A suit that protects against biological contamination. - components: - - type: Sprite - sprite: Clothing/OuterClothing/bio_general.rsi - - - type: Clothing - sprite: Clothing/OuterClothing/bio_general.rsi - -- type: entity - parent: OuterclothingBase - id: OuterclothingBiojanitor - name: bio suit (janitor) - description: A suit that protects against biological contamination, in Janitor colors. - components: - - type: Sprite - sprite: Clothing/OuterClothing/bio_janitor.rsi - - - type: Clothing - sprite: Clothing/OuterClothing/bio_janitor.rsi - -- type: entity - parent: OuterclothingBase - id: OuterclothingBioscientist - name: bio suit (scientist) - description: A suit that protects against biological contamination, in Scientist colors. - components: - - type: Sprite - sprite: Clothing/OuterClothing/bio_scientist.rsi - - - type: Clothing - sprite: Clothing/OuterClothing/bio_scientist.rsi - -- type: entity - parent: OuterclothingBase - id: OuterclothingBiosecurity - name: bio suit (security) - description: A suit that protects against biological contamination, in Security colors. - components: - - type: Sprite - sprite: Clothing/OuterClothing/bio_security.rsi - - - type: Clothing - sprite: Clothing/OuterClothing/bio_security.rsi - -- type: entity - parent: OuterclothingBase - id: OuterclothingBiovirology - name: bio suit (virology) - description: A suit that protects against biological contamination, in Virology colors. - components: - - type: Sprite - sprite: Clothing/OuterClothing/bio_virology.rsi - - - type: Clothing - sprite: Clothing/OuterClothing/bio_virology.rsi - -- type: entity - parent: OuterclothingBase - id: OuterclothingBombsuit + parent: ClothingOuterBase + id: ClothingOuterSuitBomb name: bombsuit description: A heavy helmet designed to withstand the pressure generated by a bomb and any fragments the bomb may produce. components: - type: Sprite - sprite: Clothing/OuterClothing/bombsuit.rsi - + sprite: Clothing/OuterClothing/Suits/bombsuit.rsi - type: Clothing - sprite: Clothing/OuterClothing/bombsuit.rsi + sprite: Clothing/OuterClothing/Suits/bombsuit.rsi - type: entity - parent: OuterclothingBase - id: OuterclothingBombsuitsec - name: bombsuit (security) - description: A heavy helmet designed to withstand the pressure generated by a bomb and any fragments the bomb may produce, in Security colors. - components: - - type: Sprite - sprite: Clothing/OuterClothing/bombsuitsec.rsi - - - type: Clothing - sprite: Clothing/OuterClothing/bombsuitsec.rsi - -- type: entity - parent: OuterclothingBase - id: OuterclothingBombsuitwhite - name: bombsuit (white) - description: A white heavy helmet designed to withstand the pressure generated by a bomb and any fragments the bomb may produce. - components: - - type: Sprite - sprite: Clothing/OuterClothing/bombsuit_white.rsi - - - type: Clothing - sprite: Clothing/OuterClothing/bombsuit_white.rsi - -- type: entity - parent: OuterclothingBase - id: OuterclothingAnomalysuit - name: anomaly suit - description: A special suit designed for safe examining of anomalies. - components: - - type: Sprite - sprite: Clothing/OuterClothing/anomaly_suit.rsi - - - type: Clothing - sprite: Clothing/OuterClothing/anomaly_suit.rsi - -- type: entity - parent: OuterclothingBase - id: OuterclothingEmergencysuit + parent: ClothingOuterBase + id: ClothingOuterSuitEmergency name: emergency suit description: An emergency suit in cases of... emergencies. components: - type: Sprite - sprite: Clothing/OuterClothing/emergency_suit.rsi - + sprite: Clothing/OuterClothing/Suits/emergency.rsi - type: Clothing - sprite: Clothing/OuterClothing/emergency_suit.rsi + sprite: Clothing/OuterClothing/Suits/emergency.rsi - type: entity - parent: OuterclothingBase - id: OuterclothingFiresuit + parent: ClothingOuterBase + id: ClothingOuterSuitFire name: fire suit description: A suit that helps protect against fire and heat. components: - type: Sprite - sprite: Clothing/OuterClothing/firesuit.rsi + sprite: Clothing/OuterClothing/Suits/fire.rsi - type: PressureProtection highPressureMultiplier: 0.85 lowPressureMultiplier: 25 - type: Clothing - sprite: Clothing/OuterClothing/firesuit.rsi + sprite: Clothing/OuterClothing/Suits/fire.rsi - type: entity - parent: OuterclothingBase - id: OuterclothingRadSuit + parent: ClothingOuterBase + id: ClothingOuterSuitRad name: rad suit description: "A suit that protects against radiation. The label reads, 'Made with lead. Please do not consume insulation.'" components: - type: Sprite - sprite: Clothing/OuterClothing/radsuit.rsi - + sprite: Clothing/OuterClothing/Suits/rad.rsi - type: Clothing - sprite: Clothing/OuterClothing/radsuit.rsi - -- type: entity - parent: OuterclothingBase - id: OuterclothingSkub - name: Skub Suit - description: 'Skub is crudely written on the outside of this cylindrical suit.' - components: - - type: Sprite - sprite: Clothing/OuterClothing/skubbody.rsi - - - type: Clothing - sprite: Clothing/OuterClothing/skubbody.rsi + sprite: Clothing/OuterClothing/Suits/rad.rsi # I think this is a suit? Looks baggy enough - type: entity - parent: OuterclothingBase - id: OuterclothingSyndicate + parent: ClothingOuterBase + id: ClothingOuterSuitSyndicate name: syndicate description: "Has a tag on it 'Totally not property of an enemy corporation, honest!'" components: - type: Sprite - sprite: Clothing/OuterClothing/syndicate.rsi - + sprite: Clothing/OuterClothing/Suits/syndicate.rsi - type: Clothing - sprite: Clothing/OuterClothing/syndicate.rsi + sprite: Clothing/OuterClothing/Suits/syndicate.rsi - type: entity - parent: OuterclothingBase - id: OuterclothingVoid - name: void - description: A special suit for space walking. + parent: ClothingOuterBase + id: ClothingOuterSuitSpaceninja + name: S ninja + description: This black technologically advanced, cybernetically-enhanced suit provides good protection and many abilities like invisibility or teleportation. components: - type: Sprite - sprite: Clothing/OuterClothing/void.rsi - + sprite: Clothing/OuterClothing/Suits/spaceninja.rsi - type: Clothing - sprite: Clothing/OuterClothing/void.rsi + sprite: Clothing/OuterClothing/Suits/spaceninja.rsi + +- type: entity + parent: ClothingOuterBase + id: ClothingOuterSuitChicken + name: chicken suit + description: Bok bok bok! + components: + - type: Sprite + sprite: Clothing/OuterClothing/Suits/chicken.rsi + - type: Clothing + sprite: Clothing/OuterClothing/Suits/chicken.rsi + +- type: entity + parent: ClothingOuterBase + id: ClothingOuterSuitMonkey + name: monkey suit + description: A suit that looks like a primate. + components: + - type: Sprite + sprite: Clothing/OuterClothing/Suits/monkey.rsi + - type: Clothing + sprite: Clothing/OuterClothing/Suits/monkey.rsi diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/vests.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/vests.yml new file mode 100644 index 0000000000..d67a6ce0c6 --- /dev/null +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/vests.yml @@ -0,0 +1,65 @@ +- type: entity + parent: ClothingOuterBase + id: ClothingOuterVestWebMerc + name: merc web vest + description: A high-quality armored vest made from a hard synthetic material. It is surprisingly flexible and light, despite formidable armor plating. + components: + - type: Sprite + sprite: Clothing/OuterClothing/Vests/mercwebvest.rsi + - type: Clothing + sprite: Clothing/OuterClothing/Vests/mercwebvest.rsi + +- type: entity + parent: ClothingOuterBase + id: ClothingOuterVestWeb + name: web vest + description: A synthetic armor vest. This one has added webbing and ballistic plates. + components: + - type: Sprite + sprite: Clothing/OuterClothing/Vests/webvest.rsi + - type: Clothing + sprite: Clothing/OuterClothing/Vests/webvest.rsi + +- type: entity + parent: ClothingOuterBase + id: ClothingOuterVestKevlar + name: kevlar vest + description: An armor vest made of synthetic fibers. + components: + - type: Sprite + sprite: Clothing/OuterClothing/Vests/kevlar.rsi + - type: Clothing + sprite: Clothing/OuterClothing/Vests/kevlar.rsi + +- type: entity + parent: ClothingOuterBase + id: ClothingOuterVestDetective + name: detective's vest + description: A hard-boiled private investigator's grey trenchcoat. + components: + - type: Sprite + sprite: Clothing/OuterClothing/Vests/detvest.rsi + - type: Clothing + sprite: Clothing/OuterClothing/Vests/detvest.rsi + +- type: entity + parent: ClothingOuterBase + id: ClothingOuterVestHazard + name: hazard + description: A high-visibility vest used in work zones. + components: + - type: Sprite + sprite: Clothing/OuterClothing/Vests/hazard.rsi + - type: Clothing + sprite: Clothing/OuterClothing/Vests/hazard.rsi + +- type: entity + parent: ClothingOuterBase + id: ClothingOuterVest + name: vest + description: A thick vest with a rubbery, water-resistant shell. + components: + - type: Sprite + sprite: Clothing/OuterClothing/Vests/vest.rsi + - type: Clothing + sprite: Clothing/OuterClothing/Vests/vest.rsi diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/base.yml b/Resources/Prototypes/Entities/Clothing/Shoes/base.yml new file mode 100644 index 0000000000..a0509dd2b3 --- /dev/null +++ b/Resources/Prototypes/Entities/Clothing/Shoes/base.yml @@ -0,0 +1,10 @@ +- type: entity + parent: Clothing + id: ClothingShoesBase + abstract: true + components: + - type: Clothing + Slots: + - shoes + - type: Sprite + state: icon diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/boots.yml b/Resources/Prototypes/Entities/Clothing/Shoes/boots.yml new file mode 100644 index 0000000000..b007d8e761 --- /dev/null +++ b/Resources/Prototypes/Entities/Clothing/Shoes/boots.yml @@ -0,0 +1,33 @@ +- type: entity + parent: ClothingShoesBase + id: ClothingShoesBootsMag + name: magboots + description: Magnetic boots, often used during extravehicular activity to ensure the user remains safely attached to the vehicle. + components: + - type: Sprite + sprite: Clothing/Shoes/Boots/magboots.rsi + state: icon + - type: Clothing + sprite: Clothing/Shoes/Boots/magboots.rsi + +- type: entity + parent: ClothingShoesBase + id: ClothingShoesBootsWork + name: workboots shoes + description: Engineering lace-up work boots for the especially blue-collar. + components: + - type: Sprite + sprite: Clothing/Shoes/Boots/workboots.rsi + - type: Clothing + sprite: Clothing/Shoes/Boots/workboots.rsi + +- type: entity + parent: ClothingShoesBase + id: ClothingShoesBootsJack + name: jackboots + description: Nanotrasen-issue Security combat boots for combat scenarios or combat situations. All combat, all the time. + components: + - type: Sprite + sprite: Clothing/Shoes/Boots/jackboots.rsi + - type: Clothing + sprite: Clothing/Shoes/Boots/jackboots.rsi diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/clown.yml b/Resources/Prototypes/Entities/Clothing/Shoes/clown.yml deleted file mode 100644 index 079501ccd3..0000000000 --- a/Resources/Prototypes/Entities/Clothing/Shoes/clown.yml +++ /dev/null @@ -1,14 +0,0 @@ -- type: entity - parent: ShoesBase - id: ShoesClown - name: clown shoes - description: "The prankster's standard-issue clowning shoes. Damn they're huge!" - components: - - type: Sprite - sprite: Clothing/Shoes/clown.rsi - - - type: Clothing - sprite: Clothing/Shoes/clown.rsi - - type: LoopingSound - - type: FootstepModifier - footstepSoundCollection: footstep_clown diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/color.yml b/Resources/Prototypes/Entities/Clothing/Shoes/color.yml new file mode 100644 index 0000000000..bb79bfe492 --- /dev/null +++ b/Resources/Prototypes/Entities/Clothing/Shoes/color.yml @@ -0,0 +1,98 @@ +- type: entity + parent: ClothingShoesBase + id: ClothingShoesColorBlack + name: black shoes + description: Stylish black shoes. + components: + - type: Sprite + sprite: Clothing/Shoes/Color/black.rsi + - type: Clothing + sprite: Clothing/Shoes/Color/black.rsi + +- type: entity + parent: ClothingShoesBase + id: ClothingShoesColorBlue + name: blue shoes + description: Stylish blue shoes. + components: + - type: Sprite + sprite: Clothing/Shoes/Color/blue.rsi + - type: Clothing + sprite: Clothing/Shoes/Color/blue.rsi + +- type: entity + parent: ClothingShoesBase + id: ClothingShoesColorBrown + name: brown shoes + description: A pair of brown shoes. + components: + - type: Sprite + sprite: Clothing/Shoes/Color/brown.rsi + - type: Clothing + sprite: Clothing/Shoes/Color/brown.rsi + +- type: entity + parent: ClothingShoesBase + id: ClothingShoesColorGreen + name: green shoes + description: Stylish green shoes. + components: + - type: Sprite + sprite: Clothing/Shoes/Color/green.rsi + - type: Clothing + sprite: Clothing/Shoes/Color/green.rsi + +- type: entity + parent: ClothingShoesBase + id: ClothingShoesColorOrange + name: orange shoes + description: Stylish orange shoes. + components: + - type: Sprite + sprite: Clothing/Shoes/Color/orange.rsi + - type: Clothing + sprite: Clothing/Shoes/Color/orange.rsi + +- type: entity + parent: ClothingShoesBase + id: ClothingShoesColorPurple + name: purple shoes + description: Stylish purple shoes. + components: + - type: Sprite + sprite: Clothing/Shoes/Color/purple.rsi + - type: Clothing + sprite: Clothing/Shoes/Color/purple.rsi + +- type: entity + parent: ClothingShoesBase + id: ClothingShoesColorRed + name: red shoes + description: Stylish red shoes. + components: + - type: Sprite + sprite: Clothing/Shoes/Color/red.rsi + - type: Clothing + sprite: Clothing/Shoes/Color/red.rsi + +- type: entity + parent: ClothingShoesBase + id: ClothingShoesColorWhite + name: white shoes + description: Don't take them off at your office Christmas party. + components: + - type: Sprite + sprite: Clothing/Shoes/Color/white.rsi + - type: Clothing + sprite: Clothing/Shoes/Color/white.rsi + +- type: entity + parent: ClothingShoesBase + id: ClothingShoesColorYellow + name: yellow shoes + description: Stylish yellow shoes. + components: + - type: Sprite + sprite: Clothing/Shoes/Color/yellow.rsi + - type: Clothing + sprite: Clothing/Shoes/Color/yellow.rsi diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/misc.yml b/Resources/Prototypes/Entities/Clothing/Shoes/misc.yml new file mode 100644 index 0000000000..1c84261290 --- /dev/null +++ b/Resources/Prototypes/Entities/Clothing/Shoes/misc.yml @@ -0,0 +1,43 @@ +- type: entity + parent: ClothingShoesBase + id: ClothingShoesFlippers + name: flippers + description: A pair of rubber flippers that improves swimming ability when worn. + components: + - type: Sprite + sprite: Clothing/Shoes/Misc/flippers.rsi + - type: Clothing + sprite: Clothing/Shoes/Misc/flippers.rsi + +- type: entity + parent: ClothingShoesBase + id: ClothingShoesLeather + name: leather shoes + description: Very stylish pair of boots, made from fine leather. + components: + - type: Sprite + sprite: Clothing/Shoes/Misc/leather.rsi + - type: Clothing + sprite: Clothing/Shoes/Misc/leather.rsi + +- type: entity + parent: ClothingShoesBase + id: ClothingShoesSlippers + name: slippers + description: Fluffy! + components: + - type: Sprite + sprite: Clothing/Shoes/Misc/slippers.rsi + - type: Clothing + sprite: Clothing/Shoes/Misc/slippers.rsi + +- type: entity + parent: ClothingShoesBase + id: ClothingShoesTourist + name: tourist shoes + description: These cheap sandals don't look very comfortable. + components: + - type: Sprite + sprite: Clothing/Shoes/Misc/tourist.rsi + - type: Clothing + sprite: Clothing/Shoes/Misc/tourist.rsi diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/shoes.yml b/Resources/Prototypes/Entities/Clothing/Shoes/shoes.yml deleted file mode 100644 index c26e0368be..0000000000 --- a/Resources/Prototypes/Entities/Clothing/Shoes/shoes.yml +++ /dev/null @@ -1,358 +0,0 @@ -- type: entity - parent: Clothing - id: ShoesBase - abstract: true - components: - - type: Clothing - Slots: - - shoes - - type: Sprite - state: icon - -- type: entity - parent: ShoesBase - id: ShoesBlack - name: black shoes - description: Stylish black shoes. - components: - - type: Sprite - sprite: Clothing/Shoes/black.rsi - - - type: Clothing - sprite: Clothing/Shoes/black.rsi - -- type: entity - parent: ShoesBase - id: ShoesBlue - name: blue shoes - description: Stylish blue shoes. - components: - - type: Sprite - sprite: Clothing/Shoes/blue.rsi - - - type: Clothing - sprite: Clothing/Shoes/blue.rsi - -- type: entity - parent: ShoesBase - id: ShoesBoots - name: boots - description: Comfortable-looking boots. - components: - - type: Sprite - sprite: Clothing/Shoes/boots.rsi - - - type: Clothing - sprite: Clothing/Shoes/boots.rsi - -- type: entity - parent: ShoesBase - id: ShoesBrown - name: brown shoes - description: A pair of brown shoes. - components: - - type: Sprite - sprite: Clothing/Shoes/brown.rsi - - - type: Clothing - sprite: Clothing/Shoes/brown.rsi - -- type: entity - parent: ShoesBase - id: ShoesChef - name: chef shoes - description: Sturdy shoes that minimize injury from falling objects or knives. - components: - - type: Sprite - sprite: Clothing/Shoes/chef.rsi - - - type: Clothing - sprite: Clothing/Shoes/chef.rsi - -- type: entity - parent: ShoesBase - id: ShoesCowboy - name: cowboy shoes - description: A small sticker lets you know they've been inspected for snakes, It is unclear how long ago the inspection took place... - components: - - type: Sprite - sprite: Clothing/Shoes/cowboy.rsi - - - type: Clothing - sprite: Clothing/Shoes/cowboy.rsi - -- type: entity - parent: ShoesBase - id: ShoesCult - name: cult shoes - description: A pair of boots worn by the followers of Nar'Sie. - components: - - type: Sprite - sprite: Clothing/Shoes/cult.rsi - - - type: Clothing - sprite: Clothing/Shoes/cult.rsi - -- type: entity - parent: ShoesBase - id: ShoesDetective - name: detective shoes - description: This pair of leather boots has seen better days. - components: - - type: Sprite - sprite: Clothing/Shoes/detective.rsi - - - type: Clothing - sprite: Clothing/Shoes/detective.rsi - -- type: entity - parent: ShoesBase - id: ShoesFlippers - name: flippers - description: A pair of rubber flippers that improves swimming ability when worn. - components: - - type: Sprite - sprite: Clothing/Shoes/flippers.rsi - - - type: Clothing - sprite: Clothing/Shoes/flippers.rsi - -- type: entity - parent: ShoesBase - id: ShoesGaloshes - name: galoshes shoes - description: Rubber boots. - components: - - type: Sprite - sprite: Clothing/Shoes/galoshes.rsi - - - type: Clothing - sprite: Clothing/Shoes/galoshes.rsi - - type: NoSlip - -- type: entity - parent: ShoesBase - id: ShoesGreen - name: green shoes - description: Stylish green shoes. - components: - - type: Sprite - sprite: Clothing/Shoes/green.rsi - - - type: Clothing - sprite: Clothing/Shoes/green.rsi - -- type: entity - parent: ShoesBase - id: ShoesLeather - name: leather shoes - description: Very stylish pair of boots, made from fine leather. - components: - - type: Sprite - sprite: Clothing/Shoes/leather.rsi - - - type: Clothing - sprite: Clothing/Shoes/leather.rsi - -- type: entity - parent: ShoesBase - id: ShoesMagboots - name: magboots - description: Magnetic boots, often used during extravehicular activity to ensure the user remains safely attached to the vehicle. - components: - - type: Sprite - sprite: Clothing/Shoes/magboots.rsi - state: icon - - type: Clothing - sprite: Clothing/Shoes/magboots.rsi - -- type: entity - parent: ShoesBase - id: ShoesMime - name: mime shoes - description: ... - components: - - type: Sprite - sprite: Clothing/Shoes/mime.rsi - - - type: Clothing - sprite: Clothing/Shoes/mime.rsi - -- type: entity - parent: ShoesBase - id: ShoesOrange - name: orange shoes - description: Stylish orange shoes. - components: - - type: Sprite - sprite: Clothing/Shoes/orange.rsi - - - type: Clothing - sprite: Clothing/Shoes/orange.rsi - -- type: entity - parent: ShoesBase - id: ShoesPurple - name: purple shoes - description: Stylish purple shoes. - components: - - type: Sprite - sprite: Clothing/Shoes/purple.rsi - - - type: Clothing - sprite: Clothing/Shoes/purple.rsi - -- type: entity - parent: ShoesBase - id: ShoesRed - name: red shoes - description: Stylish red shoes. - components: - - type: Sprite - sprite: Clothing/Shoes/red.rsi - - - type: Clothing - sprite: Clothing/Shoes/red.rsi - -- type: entity - parent: ShoesBase - id: ShoesSlippers - name: slippers - description: Fluffy! - components: - - type: Sprite - sprite: Clothing/Shoes/slippers.rsi - - - type: Clothing - sprite: Clothing/Shoes/slippers.rsi - -- type: entity - parent: ShoesBase - id: ShoesSpringjacks - name: springjacks - description: Uh... Those are spring jacks. - components: - - type: Sprite - sprite: Clothing/Shoes/springjacks.rsi - - - type: Clothing - sprite: Clothing/Shoes/springjacks.rsi - -- type: entity - parent: ShoesBase - id: ShoesSwat - name: swat shoes - description: When you want to turn up the heat. - components: - - type: Sprite - sprite: Clothing/Shoes/swat.rsi - - - type: Clothing - sprite: Clothing/Shoes/swat.rsi - -- type: entity - parent: ShoesBase - id: ShoesSNinja - name: S ninja shoes - description: A pair of nano-enhanced oots with built-in magnetic suction cups. - components: - - type: Sprite - sprite: Clothing/Shoes/s_ninja.rsi - - - type: Clothing - sprite: Clothing/Shoes/s_ninja.rsi - -- type: entity - parent: ShoesBase - id: ShoesTourist - name: tourist shoes - description: These cheap sandals don't look very comfortable. - components: - - type: Sprite - sprite: Clothing/Shoes/tourist.rsi - - - type: Clothing - sprite: Clothing/Shoes/tourist.rsi - -- type: entity - parent: ShoesBase - id: ShoesWhite - name: white shoes - description: Don't take them off at your office Christmas party. - components: - - type: Sprite - sprite: Clothing/Shoes/white.rsi - - - type: Clothing - sprite: Clothing/Shoes/white.rsi - -- type: entity - parent: ShoesBase - id: ShoesWizard - name: wizard shoes - description: A pair of magic shoes. - components: - - type: Sprite - sprite: Clothing/Shoes/wizard.rsi - - - type: Clothing - sprite: Clothing/Shoes/wizard.rsi - -- type: entity - parent: ShoesBase - id: ShoesWorkboots - name: workboots shoes - description: Engineering lace-up work boots for the especially blue-collar. - components: - - type: Sprite - sprite: Clothing/Shoes/workboots.rsi - - - type: Clothing - sprite: Clothing/Shoes/workboots.rsi - -- type: entity - parent: ShoesBase - id: ShoesYellow - name: yellow shoes - description: Stylish yellow shoes. - components: - - type: Sprite - sprite: Clothing/Shoes/yellow.rsi - - - type: Clothing - sprite: Clothing/Shoes/yellow.rsi - -- type: entity - parent: ShoesBase - id: ShoesBee - name: bee socks - description: Make them loins buzz! - components: - - type: Sprite - sprite: Clothing/Shoes/beesocks.rsi - - - type: Clothing - sprite: Clothing/Shoes/beesocks.rsi - -- type: entity - parent: ShoesBase - id: ShoesCoder - name: coder socks - description: It's time to code sisters!!11! - components: - - type: Sprite - sprite: Clothing/Shoes/codersocks.rsi - - - type: Clothing - sprite: Clothing/Shoes/codersocks.rsi - -- type: entity - parent: ShoesBase - id: ShoesJackboots - name: jackboots - description: Nanotrasen-issue Security combat boots for combat scenarios or combat situations. All combat, all the time. - components: - - type: Sprite - sprite: Clothing/Shoes/jackboots.rsi - - type: Clothing - sprite: Clothing/Shoes/jackboots.rsi diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml b/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml new file mode 100644 index 0000000000..37e5bb9aa0 --- /dev/null +++ b/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml @@ -0,0 +1,81 @@ +- type: entity + parent: ClothingShoesBase + id: ClothingShoesChef + name: chef shoes + description: Sturdy shoes that minimize injury from falling objects or knives. + components: + - type: Sprite + sprite: Clothing/Shoes/Specific/chef.rsi + - type: Clothing + sprite: Clothing/Shoes/Specific/chef.rsi + +- type: entity + parent: ClothingShoesBase + id: ClothingShoesClown + name: clown shoes + description: "The prankster's standard-issue clowning shoes. Damn they're huge!" + components: + - type: Sprite + sprite: Clothing/Shoes/Specific/clown.rsi + - type: Clothing + sprite: Clothing/Shoes/Specific/clown.rsi + - type: LoopingSound + - type: FootstepModifier + footstepSoundCollection: footstep_clown + +- type: entity + parent: ClothingShoesBase + id: ClothingShoesCult + name: cult shoes + description: A pair of boots worn by the followers of Nar'Sie. + components: + - type: Sprite + sprite: Clothing/Shoes/Specific/cult.rsi + - type: Clothing + sprite: Clothing/Shoes/Specific/cult.rsi + +- type: entity + parent: ClothingShoesBase + id: ClothingShoesGaloshes + name: galoshes shoes + description: Rubber boots. + components: + - type: Sprite + sprite: Clothing/Shoes/Specific/galoshes.rsi + - type: Clothing + sprite: Clothing/Shoes/Specific/galoshes.rsi + - type: NoSlip + +- type: entity + parent: ClothingShoesBase + id: ClothingShoesSNinja + name: S ninja shoes + description: A pair of nano-enhanced oots with built-in magnetic suction cups. + components: + - type: Sprite + sprite: Clothing/Shoes/Specific/spaceninja.rsi + - type: Clothing + sprite: Clothing/Shoes/Specific/spaceninja.rsi + - type: NoSlip + +- type: entity + parent: ClothingShoesBase + id: ClothingShoesSwat + name: swat shoes + description: When you want to turn up the heat. + components: + - type: Sprite + sprite: Clothing/Shoes/Specific/swat.rsi + - type: Clothing + sprite: Clothing/Shoes/Specific/swat.rsi + +- type: entity + parent: ClothingShoesBase + id: ClothingShoesWizard + name: wizard shoes + description: A pair of magic shoes. + components: + - type: Sprite + sprite: Clothing/Shoes/Specific/wizard.rsi + - type: Clothing + sprite: Clothing/Shoes/Specific/wizard.rsi diff --git a/Resources/Prototypes/Entities/Clothing/Under/under.yml b/Resources/Prototypes/Entities/Clothing/Under/under.yml new file mode 100644 index 0000000000..ce2ffc629e --- /dev/null +++ b/Resources/Prototypes/Entities/Clothing/Under/under.yml @@ -0,0 +1,24 @@ +# These are technically shoes for now, as we don't actually have underwear. But +# I would cry if we didn't have them. -swept + +- type: entity + parent: ClothingShoesBase + id: ClothingUnderSocksBee + name: bee socks + description: Make them loins buzz! + components: + - type: Sprite + sprite: Clothing/Under/Socks/bee.rsi + - type: Clothing + sprite: Clothing/Under/Socks/bee.rsi + +- type: entity + parent: ClothingShoesBase + id: ClothingUnderSocksCoder + name: coder socks + description: It's time to code sisters!!11! + components: + - type: Sprite + sprite: Clothing/Under/Socks/coder.rsi + - type: Clothing + sprite: Clothing/Under/Socks/coder.rsi diff --git a/Resources/Prototypes/Entities/Clothing/Under/will be filled out when implemented -S b/Resources/Prototypes/Entities/Clothing/Under/will be filled out when implemented -S new file mode 100644 index 0000000000..e69de29bb2 diff --git a/Resources/Prototypes/Entities/Clothing/Uniforms/base.yml b/Resources/Prototypes/Entities/Clothing/Uniforms/base.yml new file mode 100644 index 0000000000..0bc0c42d78 --- /dev/null +++ b/Resources/Prototypes/Entities/Clothing/Uniforms/base.yml @@ -0,0 +1,20 @@ +- type: entity + parent: Clothing + id: ClothingUniformBase + abstract: true + components: + - type: Sprite + state: icon + - type: Clothing + Slots: [innerclothing] + +- type: entity + parent: Clothing + id: ClothingUniformSkirtBase + abstract: true + components: + - type: Sprite + state: icon + - type: Clothing + Slots: [innerclothing] + femaleMask: UniformTop diff --git a/Resources/Prototypes/Entities/Clothing/Uniforms/color.yml b/Resources/Prototypes/Entities/Clothing/Uniforms/color.yml deleted file mode 100644 index d496a33015..0000000000 --- a/Resources/Prototypes/Entities/Clothing/Uniforms/color.yml +++ /dev/null @@ -1,475 +0,0 @@ -- type: entity - parent: UniformBase - id: UniformColorBase - abstract: true - description: A standard issue colored jumpsuit. Variety is the spice of life! - components: - - type: Sprite - sprite: Clothing/Uniforms/color.rsi - - - - - type: Clothing - sprite: Clothing/Uniforms/color.rsi - -# worldwide -- type: entity - parent: UniformColorBase - id: UniformColorGrey - description: A tasteful grey jumpsuit that reminds you of the good old days. - name: grey jumpsuit - components: - - type: Sprite - state: grey - - - type: Clothing - HeldPrefix: grey - -- type: entity - parent: UniformColorGrey - id: UniformColorGreySkirt - description: A tasteful grey jumpskirt that reminds you of the good old days. - name: grey jumpskirt - components: - - type: Sprite - state: grey_skirt - - - type: Clothing - ClothingPrefix: grey_skirt - femaleMask: UniformTop - HeldPrefix: grey - -# Black -- type: entity - parent: UniformColorBase - id: UniformColorBlack - name: black jumpsuit - description: A generic black jumpsuit with no rank markings. - components: - - type: Sprite - state: black - - - type: Clothing - HeldPrefix: black - -- type: entity - parent: UniformColorBlack - id: UniformColorBlackSkirt - name: black jumpskirt - description: A generic black jumpskirt with no rank markings. - components: - - type: Sprite - state: black_skirt - - - type: Clothing - ClothingPrefix: black_skirt - femaleMask: UniformTop - HeldPrefix: black - -# Blue -- type: entity - parent: UniformColorBase - id: UniformColorBlue - name: blue jumpsuit - description: A generic blue jumpsuit with no rank markings. - components: - - type: Sprite - state: blue - - - type: Clothing - HeldPrefix: blue - -- type: entity - parent: UniformColorBlue - id: UniformColorBlueSkirt - name: blue jumpskirt - description: A generic blue jumpskirt with no rank markings. - components: - - type: Sprite - state: blue_skirt - - - type: Clothing - ClothingPrefix: blue_skirt - femaleMask: UniformTop - HeldPrefix: blue - -# Green -- type: entity - parent: UniformColorBase - id: UniformColorGreen - name: green jumpsuit - description: A generic green jumpsuit with no rank markings. - components: - - type: Sprite - state: green - - - type: Clothing - HeldPrefix: green - -- type: entity - parent: UniformColorGreen - id: UniformColorGreenSkirt - name: green jumpskirt - description: A generic green jumpskirt with no rank markings. - components: - - type: Sprite - state: green_skirt - - - type: Clothing - ClothingPrefix: green_skirt - femaleMask: UniformTop - HeldPrefix: green - -# Orange -- type: entity - parent: UniformColorBase - id: UniformColorOrange - name: orange jumpsuit - description: "Don't wear this near paranoid security officers." - components: - - type: Sprite - state: orange - - - type: Clothing - HeldPrefix: orange - -- type: entity - parent: UniformColorOrange - id: UniformColorOrangeSkirt - name: orange jumpskirt - description: "Don't wear this near paranoid security officers." - components: - - type: Sprite - state: orange_skirt - - - type: Clothing - ClothingPrefix: orange_skirt - femaleMask: UniformTop - HeldPrefix: orange - -# Pink -- type: entity - parent: UniformColorBase - id: UniformColorPink - name: pink jumpsuit - description: "Just looking at this makes you feel fabulous." - components: - - type: Sprite - state: pink - - - type: Clothing - ClothingPrefix: pink - HeldPrefix: pink - -- type: entity - parent: UniformColorPink - id: UniformColorPinkSkirt - name: pink jumpskirt - description: "Just looking at this makes you feel fabulous." - components: - - type: Sprite - state: pink_skirt - - - type: Clothing - ClothingPrefix: pink_skirt - femaleMask: UniformTop - HeldPrefix: pink - -- type: entity - parent: UniformColorBase - id: S - name: s - components: - - type: Sprite - state: s - - - type: Clothing - HeldPrefix: s - -# Red -- type: entity - parent: UniformColorBase - id: UniformColorRed - name: red jumpsuit - description: A generic red jumpsuit with no rank markings. - components: - - type: Sprite - state: red - - - type: Clothing - HeldPrefix: red - -- type: entity - parent: UniformColorRed - id: UniformColorRedSkirt - name: red jumpskirt - description: A generic red jumpskirt with no rank markings. - components: - - type: Sprite - state: red_skirt - - - type: Clothing - ClothingPrefix: red_skirt - femaleMask: UniformTop - HeldPrefix: red - -# White -- type: entity - parent: UniformColorBase - id: UniformColorWhite - name: white jumpsuit - description: A generic white jumpsuit with no rank markings. - components: - - type: Sprite - state: white - - - type: Clothing - HeldPrefix: white - -- type: entity - parent: UniformColorWhite - id: UniformColorWhiteSkirt - name: white jumpskirt - description: A generic white jumpskirt with no rank markings. - components: - - type: Sprite - state: white_skirt - - - type: Clothing - ClothingPrefix: white_skirt - femaleMask: UniformTop - HeldPrefix: white - -# Yellow -- type: entity - parent: UniformColorBase - id: UniformColorYellow - name: yellow jumpsuit - description: A generic yellow jumpsuit with no rank markings. - components: - - type: Sprite - state: yellow - - - type: Clothing - HeldPrefix: yellow - -- type: entity - parent: UniformColorYellow - id: UniformColorYellowSkirt - name: yellow jumpskirt - description: A generic yellow jumpskirt with no rank markings. - components: - - type: Sprite - state: yellow_skirt - - - type: Clothing - ClothingPrefix: yellow_skirt - femaleMask: UniformTop - HeldPrefix: yellow - -# Dark blue -- type: entity - parent: UniformColorBase - id: UniformColorDarkBlue - name: dark blue jumpsuit - description: A generic dark blue jumpsuit with no rank markings. - components: - - type: Sprite - state: darkblue - - - type: Clothing - ClothingPrefix: darkblue - HeldPrefix: darkblue - -- type: entity - parent: UniformColorDarkBlue - id: UniformColorDarkBlueSkirt - name: dark blue jumpskirt - description: A generic dark blue jumpskirt with no rank markings. - components: - - type: Sprite - state: darkblue_skirt - - - type: Clothing - ClothingPrefix: darkblue_skirt - femaleMask: UniformTop - HeldPrefix: darkblue - -# Teal -- type: entity - parent: UniformColorBase - id: UniformColorTeal - name: teal jumpsuit - description: A generic teal jumpsuit with no rank markings. - components: - - type: Sprite - state: teal - - - type: Clothing - ClothingPrefix: teal - HeldPrefix: teal - -- type: entity - parent: UniformColorTeal - id: UniformColorTealSkirt - name: teal jumpskirt - description: A generic teal jumpskirt with no rank markings. - components: - - type: Sprite - state: teal_skirt - - - type: Clothing - ClothingPrefix: teal_skirt - femaleMask: UniformTop - HeldPrefix: teal - -# Purple -- type: entity - parent: UniformColorBase - id: UniformColorPurple - name: purple jumpsuit - description: A generic purple jumpsuit with no rank markings. - components: - - type: Sprite - state: lightpurple - - - type: Clothing - ClothingPrefix: lightpurple - HeldPrefix: lightpurple - -- type: entity - parent: UniformColorPurple - id: UniformColorPurpleSkirt - name: purple jumpskirt - description: A generic purple jumpskirt with no rank markings. - components: - - type: Sprite - state: lightpurple_skirt - - - type: Clothing - ClothingPrefix: lightpurple_skirt - femaleMask: UniformTop - HeldPrefix: lightpurple - -# Dark Green -- type: entity - parent: UniformColorBase - id: UniformColorDarkGreen - name: dark green jumpsuit - description: A generic dark green jumpsuit with no rank markings. - components: - - type: Sprite - state: darkgreen - - - type: Clothing - ClothingPrefix: darkgreen - HeldPrefix: green - -- type: entity - parent: UniformColorDarkGreen - id: UniformColorDarkGreenSkirt - name: dark green jumpskirt - description: A generic dark green jumpskirt with no rank markings. - components: - - type: Sprite - state: darkgreen_skirt - - - type: Clothing - ClothingPrefix: darkgreen_skirt - femaleMask: UniformTop - HeldPrefix: green - -# Light Brown -- type: entity - parent: UniformColorBase - id: UniformColorLightBrown - name: light brown jumpsuit - description: A generic light brown jumpsuit with no rank markings. - components: - - type: Sprite - state: lightbrown - - - type: Clothing - HeldPrefix: lightbrown - -- type: entity - parent: UniformColorLightBrown - id: UniformColorLightBrownSkirt - name: light brown jumpskirt - description: A generic light brown jumpskirt with no rank markings. - components: - - type: Sprite - state: lightbrown_skirt - - - type: Clothing - ClothingPrefix: lightbrown_skirt - femaleMask: UniformTop - HeldPrefix: lightbrown - -# Brown -- type: entity - parent: UniformColorBase - id: UniformColorBrown - name: brown jumpsuit - description: A generic brown jumpsuit with no rank markings. - components: - - type: Sprite - state: brown - - - type: Clothing - ClothingPrefix: brown - HeldPrefix: lightbrown - -- type: entity - parent: UniformColorBrown - id: UniformColorBrownSkirt - name: brown jumpskirt - description: A generic brown jumpskirt with no rank markings. - components: - - type: Sprite - state: brown_skirt - - - type: Clothing - ClothingPrefix: brown_skirt - femaleMask: UniformTop - -# Maroon -- type: entity - parent: UniformColorBase - id: UniformColorMaroon - name: maroon jumpsuit - description: A generic maroon jumpsuit with no rank markings. - components: - - type: Sprite - state: maroon - - - type: Clothing - ClothingPrefix: maroon - HeldPrefix: maroon - -- type: entity - parent: UniformColorMaroon - id: UniformColorMaroonSkirt - name: maroon jumpskirt - description: A generic maroon jumpskirt with no rank markings. - components: - - type: Sprite - state: maroon_skirt - - - type: Clothing - ClothingPrefix: maroon_skirt - femaleMask: UniformTop - HeldPrefix: maroon - -# Rainbow -- type: entity - parent: UniformColorBase - id: UniformColorRainbow - name: rainbow jumpsuit - description: A multi-colored jumpsuit! - components: - - type: Sprite - sprite: Clothing/Uniforms/rainbow.rsi - state: icon - - type: Clothing - sprite: Clothing/Uniforms/rainbow.rsi diff --git a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpskirts.yml b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpskirts.yml new file mode 100644 index 0000000000..a2b8f84d36 --- /dev/null +++ b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpskirts.yml @@ -0,0 +1,452 @@ +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtBartender + name: bartender's uniform + description: A nice and tidy uniform. Shame about the bar though. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/bartender.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/bartender.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtCargo + name: cargo tech jumpskirt + description: A sturdy jumpskirt, issued to members of the Cargo department. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/cargotech.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/cargotech.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtChiefEngineer + name: ce jumpskirt + description: It's a high visibility jumpskirt given to those engineers insane enough to achieve the rank of Chief Engineer. It has minor radiation shielding. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/ce.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/ce.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtChaplain + name: chaplain's jumpskirt + description: It's a black jumpskirt, often worn by religious folk. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/chaplain.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/chaplain.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtChef + name: chef uniform + description: Can't cook without this. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/chef.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/chef.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtChemistry + name: chemistry jumpskirt + description: There's some odd stains on this jumpskirt. Hm. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/chemistry.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/chemistry.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtCMO + name: cmo jumpskirt + description: It's a jumpskirt worn by those with the experience to be Chief Medical Officer. It provides minor biological protection. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/cmo.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/cmo.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtDetective + name: hard-worn suit + description: Someone who wears this means business. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/detective.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/detective.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtDetectiveGrey + name: noir suit + description: A hard-boiled private investigator's grey suit, complete with tie clip. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/detective_grey.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/detective_grey.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtEngineering + name: engineering jumpskirt + description: If this suit was non-conductive, maybe engineers would actually do their damn job. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/engineering.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/engineering.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtHoP + name: hop jumpskirt + description: Rather bland and inoffensive. Perfect for vanishing off the face of the universe. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/hop.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/hop.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtHoS + name: head of security jumpskirt + description: It's bright red and rather crisp, much like security's victims tend to be. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/hos.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/hos.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtHoSAlt + name: head of security turtleneck + description: It's a turtleneck worn by those strong and disciplined enough to achieve the position of Head of Security. Its sturdy fabric provides minor protection from mechanical damage. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/hos_alt.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/hos_alt.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtHoSParadeMale + name: head of security's parade uniform + description: A male head of security's luxury-wear, for special occasions. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/hos_parade.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/hos_parade.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtHydroponics + name: hydroponics jumpskirt + description: Has a strong earthy smell to it. Hopefully it's merely dirty as opposed to soiled. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/hydro.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/hydro.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtJanitor + name: janitor jumpskirt + description: The jumpskirt for the poor sop with a mop. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/janitor.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/janitor.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtMedicalDoctor + name: medical doctor jumpskirt + description: It's made of a special fiber that provides minor protection against biohazards. It has a cross on the chest denoting that the wearer is trained medical personnel. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/medical.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/medical.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtMime + name: mime suit + description: ... + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/mime.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/mime.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtParamedic + name: paramedic jumpskirt + description: It's got a plus on it, that's a good thing right? + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/paramedic.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/paramedic.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtPrisoner + name: prisoner jumpskirt + description: Busted. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/prisoner.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/prisoner.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtQM + name: quartermaster's jumpskirt + description: 'What can brown do for you?' + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/qm.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/qm.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtResearchDirector + name: research director's turtleneck + description: It's a turtleneck worn by those with the know-how to achieve the position of Research Director. Its fabric provides minor protection from biological contaminants. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/rnd.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/rnd.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtScientist + name: scientist jumpskirt + description: It's made of a special fiber that provides minor protection against explosives. It has markings that denote the wearer as a scientist. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/scientist.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/scientist.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtSec + name: security jumpskirt + description: A jumpskirt made of strong material, providing robust protection. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/security.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/security.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtWarden + name: warden's uniform + description: A formal security suit for officers complete with Nanotrasen belt buckle. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/warden.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/warden.rsi + +# COLORS + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtColorGrey + description: A tasteful grey jumpskirt that reminds you of the good old days. + name: grey jumpskirt + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/Color/grey.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/Color/grey.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtColorBlack + name: black jumpskirt + description: A generic black jumpskirt with no rank markings. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/Color/black.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/Color/black.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtColorBlue + name: blue jumpskirt + description: A generic blue jumpskirt with no rank markings. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/Color/blue.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/Color/blue.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtColorGreen + name: green jumpskirt + description: A generic green jumpskirt with no rank markings. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/Color/green.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/Color/green.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtColorOrange + name: orange jumpskirt + description: "Don't wear this near paranoid security officers." + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/Color/orange.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/Color/orange.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtColorPink + name: pink jumpskirt + description: "Just looking at this makes you feel fabulous." + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/Color/pink.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/Color/pink.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtColorRed + name: red jumpskirt + description: A generic red jumpskirt with no rank markings. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/Color/red.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/Color/red.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtColorWhite + name: white jumpskirt + description: A generic white jumpskirt with no rank markings. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/Color/white.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/Color/white.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtColorYellow + name: yellow jumpskirt + description: A generic yellow jumpskirt with no rank markings. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/Color/yellow.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/Color/yellow.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtColorDarkBlue + name: dark blue jumpskirt + description: A generic dark blue jumpskirt with no rank markings. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/Color/darkblue.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/Color/darkblue.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtColorTeal + name: teal jumpskirt + description: A generic teal jumpskirt with no rank markings. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/Color/teal.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/Color/teal.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtColorPurple + name: purple jumpskirt + description: A generic purple jumpskirt with no rank markings. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/Color/lightpurple.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/Color/lightpurple.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtColorDarkGreen + name: dark green jumpskirt + description: A generic dark green jumpskirt with no rank markings. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/Color/darkgreen.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/Color/darkgreen.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtColorLightBrown + name: light brown jumpskirt + description: A generic light brown jumpskirt with no rank markings. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/Color/lightbrown.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/Color/lightbrown.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtColorBrown + name: brown jumpskirt + description: A generic brown jumpskirt with no rank markings. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/Color/brown.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/Color/brown.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtColorMaroon + name: maroon jumpskirt + description: A generic maroon jumpskirt with no rank markings. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/Color/maroon.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/Color/maroon.rsi diff --git a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml new file mode 100644 index 0000000000..740398223d --- /dev/null +++ b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml @@ -0,0 +1,550 @@ +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitBartender + name: bartender's uniform + description: A nice and tidy uniform. Shame about the bar though. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/bartender.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/bartender.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitBartenderPurple + name: purple bartender's uniform + description: A special purple outfit to serve drinks. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/bartender_purple.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/bartender_purple.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitCaptain + name: captain's jumpsuit + description: It's a blue jumpsuit with some gold markings denoting the rank of "Captain". + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/captain.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/captain.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitCargo + name: cargo tech jumpsuit + description: A sturdy jumpsuit, issued to members of the Cargo department. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/cargotech.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/cargotech.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitChiefEngineer + name: ce jumpsuit + description: It's a high visibility jumpsuit given to those engineers insane enough to achieve the rank of Chief Engineer. It has minor radiation shielding. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/ce.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/ce.rsi + +- type: entity + parent: ClothingUniformJumpsuitChiefEngineer + id: S + name: s + components: + - type: Sprite + state: s + - type: Clothing + HeldPrefix: s + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitChaplain + name: chaplain's jumpsuit + description: It's a black jumpsuit, often worn by religious folk. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/chaplain.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/chaplain.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitChef + name: chef uniform + description: Can't cook without this. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/chef.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/chef.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitChemistry + name: chemistry jumpsuit + description: There's some odd stains on this jumpsuit. Hm. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/chemistry.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/chemistry.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitClown + name: clown suit + description: HONK! + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/clown.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/clown.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitCMO + name: cmo jumpsuit + description: It's a jumpsuit worn by those with the experience to be Chief Medical Officer. It provides minor biological protection. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/cmo.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/cmo.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitDetective + name: hard-worn suit + description: Someone who wears this means business. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/detective.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/detective.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitDetectiveGrey + name: noir suit + description: A hard-boiled private investigator's grey suit, complete with tie clip. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/detective_grey.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/detective_grey.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitEngineering + name: engineering jumpsuit + description: If this suit was non-conductive, maybe engineers would actually do their damn job. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/engineering.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/engineering.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitHoP + name: hop jumpsuit + description: Rather bland and inoffensive. Perfect for vanishing off the face of the universe. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/hop.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/hop.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitHoS + name: head of security jumpsuit + description: It's bright red and rather crisp, much like security's victims tend to be. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/hos.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/hos.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitHoSAlt + name: head of security turtleneck + description: It's a turtleneck worn by those strong and disciplined enough to achieve the position of Head of Security. Its sturdy fabric provides minor protection from mechanical damage. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/hos_alt.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/hos_alt.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitHoSBlue + name: head of security's blue jumpsuit + description: A blue jumpsuit of Head of Security. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/hos_blue.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/hos_blue.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitHoSGrey + name: head of security's grey jumpsuit + description: A grey jumpsuit of Head of Security, which make him look somewhat like an assistant. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/hos_grey.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/hos_grey.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitHoSParadeMale + name: head of security's parade uniform + description: A male head of security's luxury-wear, for special occasions. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/hos_parade.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/hos_parade.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitHydroponics + name: hydroponics jumpsuit + description: Has a strong earthy smell to it. Hopefully it's merely dirty as opposed to soiled. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/hydro.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/hydro.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitJanitor + name: janitor jumpsuit + description: The jumpsuit for the poor sop with a mop. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/janitor.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/janitor.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitMedicalDoctor + name: medical doctor jumpsuit + description: It's made of a special fiber that provides minor protection against biohazards. It has a cross on the chest denoting that the wearer is trained medical personnel. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/medical.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/medical.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitMime + name: mime suit + description: ... + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/mime.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/mime.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitParamedic + name: paramedic jumpsuit + description: It's got a plus on it, that's a good thing right? + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/paramedic.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/paramedic.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitPrisoner + name: prisoner jumpsuit + description: Busted. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/prisoner.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/prisoner.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitQM + name: quartermaster's jumpsuit + description: 'What can brown do for you?' + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/qm.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/qm.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitResearchDirector + name: research director's turtleneck + description: It's a turtleneck worn by those with the know-how to achieve the position of Research Director. Its fabric provides minor protection from biological contaminants. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/rnd.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/rnd.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitScientist + name: scientist jumpsuit + description: It's made of a special fiber that provides minor protection against explosives. It has markings that denote the wearer as a scientist. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/scientist.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/scientist.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitSec + name: security jumpsuit + description: A jumpsuit made of strong material, providing robust protection. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/security.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/security.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitSecBlue + name: blue shirt and tie + description: I'm a little busy right now, Calhoun. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/security_blue.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/security_blue.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitSecGrey + name: grey security jumpsuit + description: A tactical relic of years past before Nanotrasen decided it was cheaper to dye the suits red instead of washing out the blood. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/security_grey.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/security_grey.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitWarden + name: warden's uniform + description: A formal security suit for officers complete with Nanotrasen belt buckle. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/warden.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/warden.rsi + +# COLORS + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitColorGrey + description: A tasteful grey jumpsuit that reminds you of the good old days. + name: grey jumpsuit + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/Color/grey.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/Color/grey.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitColorBlack + name: black jumpsuit + description: A generic black jumpsuit with no rank markings. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/Color/black.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/Color/black.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitColorBlue + name: blue jumpsuit + description: A generic blue jumpsuit with no rank markings. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/Color/blue.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/Color/blue.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitColorGreen + name: green jumpsuit + description: A generic green jumpsuit with no rank markings. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/Color/green.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/Color/green.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitColorOrange + name: orange jumpsuit + description: "Don't wear this near paranoid security officers." + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/Color/orange.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/Color/orange.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitColorPink + name: pink jumpsuit + description: "Just looking at this makes you feel fabulous." + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/Color/pink.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/Color/pink.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitColorRed + name: red jumpsuit + description: A generic red jumpsuit with no rank markings. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/Color/red.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/Color/red.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitColorWhite + name: white jumpsuit + description: A generic white jumpsuit with no rank markings. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/Color/white.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/Color/white.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitColorYellow + name: yellow jumpsuit + description: A generic yellow jumpsuit with no rank markings. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/Color/yellow.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/Color/yellow.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitColorDarkBlue + name: dark blue jumpsuit + description: A generic dark blue jumpsuit with no rank markings. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/Color/darkblue.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/Color/darkblue.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitColorTeal + name: teal jumpsuit + description: A generic teal jumpsuit with no rank markings. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/Color/teal.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/Color/teal.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitColorPurple + name: purple jumpsuit + description: A generic purple jumpsuit with no rank markings. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/Color/lightpurple.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/Color/lightpurple.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitColorDarkGreen + name: dark green jumpsuit + description: A generic dark green jumpsuit with no rank markings. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/Color/darkgreen.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/Color/darkgreen.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitColorLightBrown + name: light brown jumpsuit + description: A generic light brown jumpsuit with no rank markings. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/Color/lightbrown.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/Color/lightbrown.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitColorBrown + name: brown jumpsuit + description: A generic brown jumpsuit with no rank markings. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/Color/brown.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/Color/brown.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitColorMaroon + name: maroon jumpsuit + description: A generic maroon jumpsuit with no rank markings. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/Color/maroon.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/Color/maroon.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformColorRainbow + name: rainbow jumpsuit + description: A multi-colored jumpsuit! + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/rainbow.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/rainbow.rsi diff --git a/Resources/Prototypes/Entities/Clothing/Uniforms/scrubs.yml b/Resources/Prototypes/Entities/Clothing/Uniforms/scrubs.yml new file mode 100644 index 0000000000..a75a07c699 --- /dev/null +++ b/Resources/Prototypes/Entities/Clothing/Uniforms/scrubs.yml @@ -0,0 +1,32 @@ +- type: entity + parent: ClothingUniformBase + id: UniformScrubsColorPurple + name: purple scrubs + description: A combination of comfort and utility intended to make removing every last organ someone has and selling them to a space robot much more official looking. + components: + - type: Sprite + sprite: Clothing/Uniforms/Scrubs/purple.rsi + - type: Clothing + sprite: Clothing/Uniforms/Scrubs/purple.rsi + +- type: entity + parent: ClothingUniformBase + id: UniformScrubsColorGreen + name: green scrubs + description: A combination of comfort and utility intended to make removing every last organ someone has and selling them to a space robot much more official looking. + components: + - type: Sprite + sprite: Clothing/Uniforms/Scrubs/green.rsi + - type: Clothing + sprite: Clothing/Uniforms/Scrubs/green.rsi + +- type: entity + parent: ClothingUniformBase + id: UniformScrubsColorBlue + name: blue scrubs + description: A combination of comfort and utility intended to make removing every last organ someone has and selling them to a space robot much more official looking. + components: + - type: Sprite + sprite: Clothing/Uniforms/Scrubs/blue.rsi + - type: Clothing + sprite: Clothing/Uniforms/Scrubs/blue.rsi diff --git a/Resources/Prototypes/Entities/Clothing/Uniforms/uniforms.yml b/Resources/Prototypes/Entities/Clothing/Uniforms/uniforms.yml deleted file mode 100644 index 99b61c089a..0000000000 --- a/Resources/Prototypes/Entities/Clothing/Uniforms/uniforms.yml +++ /dev/null @@ -1,918 +0,0 @@ -- type: entity - parent: Clothing - id: UniformBase - abstract: true - components: - - type: Clothing - Slots: [innerclothing] - -- type: entity - parent: UniformBase - id: UniformJanitor - name: janitor jumpsuit - description: The jumpsuit for the poor sop with a mop. - components: - - type: Sprite - sprite: Clothing/Uniforms/uniform_janitor.rsi - state: icon - - - type: Clothing - sprite: Clothing/Uniforms/uniform_janitor.rsi - -- type: entity - parent: UniformJanitor - id: UniformJanitorSkirt - name: janitor jumpskirt - description: The jumpskirt for the poor sop with a mop. - components: - - type: Sprite - state: jan_skirt - - - type: Clothing - ClothingPrefix: jan_skirt - femaleMask: UniformTop - -- type: entity - parent: UniformBase - id: UniformEngineering - name: engineering jumpsuit - description: If this suit was non-conductive, maybe engineers would actually do their damn job. - components: - - type: Sprite - sprite: Clothing/Uniforms/uniform_engineering.rsi - state: icon - - - type: Clothing - sprite: Clothing/Uniforms/uniform_engineering.rsi - -- type: entity - parent: UniformEngineering - id: UniformEngineeringSkirt - name: engineering jumpskirt - description: If this skirt was non-conductive, maybe engineers would actually do their damn job. - components: - - type: Sprite - state: engine_skirt - - - type: Clothing - ClothingPrefix: engine_skirt - femaleMask: UniformTop - -- type: entity - parent: UniformBase - id: UniformAssistant - name: assistant jumpsuit - description: It's a generic grey jumpsuit. That's about what assistants are worth, anyway. - components: - - type: Sprite - sprite: Clothing/Uniforms/uniform_assistant.rsi - state: assistant - - - type: Clothing - sprite: Clothing/Uniforms/uniform_assistant.rsi - -- type: entity - parent: UniformBase - id: UniformChemistry - name: chemistry jumpsuit - description: There's some odd stains on this jumpsuit. Hm. - components: - - type: Sprite - sprite: Clothing/Uniforms/uniform_medical.rsi - state: chemistry - - - type: Clothing - sprite: Clothing/Uniforms/uniform_medical.rsi - ClothingPrefix: chemistry - -- type: entity - parent: UniformChemistry - id: UniformChemistrySkirt - name: chemistry jumpskirt - description: A sterile jumpskirt in Chemistry colors. - components: - - type: Sprite - state: chemistry_skirt - - - type: Clothing - ClothingPrefix: chemistry_skirt - femaleMask: UniformTop - -- type: entity - parent: UniformBase - id: UniformParamedic - name: paramedic jumpsuit - description: It's got a red plus on it, that's a good thing right? - components: - - type: Sprite - sprite: Clothing/Uniforms/uniform_medical.rsi - state: paramedic - - - type: Clothing - sprite: Clothing/Uniforms/uniform_medical.rsi - ClothingPrefix: paramedic - -- type: entity - parent: UniformParamedic - id: UniformParamedicSkirt - name: paramedic jumpskirt - description: A sterile jumpskirt in Paramedic colors. - components: - - type: Sprite - state: paramedic_skirt - - - type: Clothing - ClothingPrefix: paramedic_skirt - femaleMask: UniformTop - -- type: entity - parent: UniformBase - id: UniformScrubsPurple - name: purple scrubs - description: A combination of comfort and utility intended to make removing every last organ someone has and selling them to a space robot much more official looking. - components: - - type: Sprite - sprite: Clothing/Uniforms/uniform_medical.rsi - state: scrubspurple - - - type: Clothing - sprite: Clothing/Uniforms/uniform_medical.rsi - ClothingPrefix: scrubspurple - -- type: entity - parent: UniformBase - id: UniformScrubsGreen - name: green scrubs - description: A combination of comfort and utility intended to make removing every last organ someone has and selling them to a space robot much more official looking. - components: - - type: Sprite - sprite: Clothing/Uniforms/uniform_medical.rsi - state: scrubsgreen - - - type: Clothing - sprite: Clothing/Uniforms/uniform_medical.rsi - ClothingPrefix: scrubsgreen - -- type: entity - parent: UniformBase - id: UniformScrubsBlue - name: blue scrubs - description: A combination of comfort and utility intended to make removing every last organ someone has and selling them to a space robot much more official looking. - components: - - type: Sprite - sprite: Clothing/Uniforms/uniform_medical.rsi - state: scrubsblue - - - type: Clothing - sprite: Clothing/Uniforms/uniform_medical.rsi - ClothingPrefix: scrubsblue - -- type: entity - parent: UniformBase - id: UniformClown - name: clown suit - description: HONK! - components: - - type: Sprite - sprite: Clothing/Uniforms/uniform_clown.rsi - state: icon - - - type: Clothing - sprite: Clothing/Uniforms/uniform_clown.rsi - femaleMask: UniformTop - -- type: entity - parent: UniformBase - id: UniformSec - name: security jumpsuit - description: A jumpsuit made of strong material, providing robust protection. - components: - - type: Sprite - sprite: Clothing/Uniforms/uniform_sec.rsi - state: icon - - - type: Clothing - sprite: Clothing/Uniforms/uniform_sec.rsi - -- type: entity - parent: UniformSec - id: UniformSecSkirt - name: security jumpskirt - description: A jumpskirt made of strong material, providing robust protection. - components: - - type: Sprite - state: sec_skirt - - - type: Clothing - ClothingPrefix: sec_skirt - femaleMask: UniformTop - -- type: entity - parent: UniformSec - id: UniformSecBlueShirt - name: blue shirt and tie - description: I'm a little busy right now, Calhoun. - components: - - type: Sprite - state: blueshift - - - type: Clothing - ClothingPrefix: blueshift - -- type: entity - parent: UniformSec - id: UniformSecConstable - name: constable outfit - description: A british looking outfit. - components: - - type: Sprite - state: constable - - - type: Clothing - ClothingPrefix: constable - -- type: entity - parent: UniformSec - id: UniformSecFormal - name: security officer's formal uniform - description: The latest in fashionable security outfits. - components: - - type: Sprite - state: officerblueclothes - - - type: Clothing - ClothingPrefix: officerblueclothes - -- type: entity - parent: UniformSec - id: UniformSecFormalTan - name: security officer's formal uniform (tan) - description: The latest in fashionable security outfits. - components: - - type: Sprite - state: officertanclothes - - - type: Clothing - ClothingPrefix: officertanclothes - -- type: entity - parent: UniformSec - id: UniformSecGrey - name: grey security jumpsuit - description: A tactical relic of years past before Nanotrasen decided it was cheaper to dye the suits red instead of washing out the blood. - components: - - type: Sprite - state: security_grey - - - type: Clothing - ClothingPrefix: security_grey - HeldPrefix: gy_suit - -- type: entity - parent: UniformSec - id: UniformSecSpacePol - name: police uniform - description: Space not controlled by megacorporations, planets, or pirates is under the jurisdiction of Spacepol. - components: - - type: Sprite - state: spacepol - - - type: Clothing - ClothingPrefix: spacepol - -- type: entity - parent: UniformSec - id: UniformSecSpacePolFamilies - name: space police uniform - description: A police uniform often found in the lines at donut shops. - components: - - type: Sprite - state: spacepolice_families - - - type: Clothing - ClothingPrefix: spacepolice_families - -- type: entity - parent: UniformBase - id: UniformDetective - name: hard-worn suit - description: Someone who wears this means business. - components: - - type: Sprite - sprite: Clothing/Uniforms/uniform_detective.rsi - state: detective - - - type: Clothing - sprite: Clothing/Uniforms/uniform_detective.rsi - ClothingPrefix: detective - HeldPrefix: detective - -- type: entity - parent: UniformDetective - id: UniformDetectiveSkirt - name: detective's suitskirt - description: Someone who wears this means business. - components: - - type: Sprite - state: detective_skirt - - - type: Clothing - ClothingPrefix: detective_skirt - femaleMask: UniformTop - -- type: entity - parent: UniformDetective - id: UniformDetectiveGrey - name: noir suit - description: A hard-boiled private investigator's grey suit, complete with tie clip. - components: - - type: Sprite - state: greydetective - - - type: Clothing - ClothingPrefix: greydetective - -- type: entity - parent: UniformDetectiveGrey - id: UniformDetectiveGreySkirt - name: noir suitskirt - description: A hard-boiled private investigator's grey suitskirt, complete with tie clip. - components: - - type: Sprite - state: greydetective_skirt - - - type: Clothing - ClothingPrefix: greydetective_skirt - femaleMask: UniformTop - -- type: entity - parent: UniformBase - id: UniformCargoTech - name: cargo tech jumpsuit - description: A sturdy jumpsuit, issued to members of the Cargo department. - components: - - type: Sprite - sprite: Clothing/Uniforms/uniform_cargotech.rsi - state: icon - - - type: Clothing - sprite: Clothing/Uniforms/uniform_cargotech.rsi - -- type: entity - parent: UniformCargoTech - id: UniformCargoTechSkirt - name: cargo tech jumpskirt - description: A sturdy jumpskirt, issued to members of the Cargo department. - components: - - type: Sprite - state: cargo_skirt - - - type: Clothing - ClothingPrefix: cargo_skirt - femaleMask: UniformTop - -- type: entity - parent: UniformBase - id: UniformQM - name: quartermaster's jumpsuit - description: 'What can brown do for you?' - components: - - type: Sprite - sprite: Clothing/Uniforms/uniform_cargotech.rsi - state: qm - - - type: Clothing - sprite: Clothing/Uniforms/uniform_cargotech.rsi - -- type: entity - parent: UniformQM - id: UniformQMSkirt - name: quartermaster's jumpskirt - description: 'What can brown do for you?' - components: - - type: Sprite - state: qm_skirt - - - type: Clothing - ClothingPrefix: qm_skirt - femaleMask: UniformTop - -- type: entity - parent: UniformBase - id: UniformChef - name: chef uniform - description: Can't cook without this. - components: - - type: Sprite - sprite: Clothing/Uniforms/uniform_chef.rsi - state: icon - - - type: Clothing - sprite: Clothing/Uniforms/uniform_chef.rsi - -- type: entity - parent: UniformChef - id: UniformChefSkirt - name: chef skirt - description: Can't cook without this. - components: - - type: Sprite - state: chef_skirt - - - type: Clothing - ClothingPrefix: chef_skirt - femaleMask: UniformTop - -- type: entity - parent: UniformBase - id: UniformCaptain - name: captain's jumpsuit - description: It's a blue jumpsuit with some gold markings denoting the rank of "Captain". - components: - - type: Sprite - sprite: Clothing/Uniforms/uniform_captain.rsi - state: captain - - - type: Clothing - sprite: Clothing/Uniforms/uniform_captain.rsi - -- type: entity - parent: UniformBase - id: UniformChiefEngineer - name: ce jumpsuit - description: It's a high visibility jumpsuit given to those engineers insane enough to achieve the rank of Chief Engineer. It has minor radiation shielding. - components: - - type: Sprite - sprite: Clothing/Uniforms/uniform_ce.rsi - state: icon - - - type: Clothing - sprite: Clothing/Uniforms/uniform_ce.rsi - -- type: entity - parent: UniformChiefEngineer - id: UniformChiefEngineerSkirt - name: ce jumpskirt - description: It's a high visibility jumpskirt given to those engineers insane enough to achieve the rank of Chief Engineer. It has minor radiation shielding. - components: - - type: Sprite - state: chief_skirt - - - type: Clothing - ClothingPrefix: chief_skirt - femaleMask: UniformTop - -- type: entity - parent: UniformBase - id: UniformCMO - name: cmo jumpsuit - description: It's a jumpsuit worn by those with the experience to be Chief Medical Officer. It provides minor biological protection. - components: - - type: Sprite - sprite: Clothing/Uniforms/uniform_cmo.rsi - state: icon - - - type: Clothing - sprite: Clothing/Uniforms/uniform_cmo.rsi - -- type: entity - parent: UniformCMO - id: UniformCMOSkirt - name: cmo jumpskirt - description: It's a jumpskirt worn by those with the experience to be Chief Medical Officer. It provides minor biological protection. - components: - - type: Sprite - state: cmo_skirt - - - type: Clothing - ClothingPrefix: cmo_skirt - femaleMask: UniformTop - -- type: entity - parent: UniformBase - id: UniformMedicalDoctor - name: medical doctor jumpsuit - description: It's made of a special fiber that provides minor protection against biohazards. It has a cross on the chest denoting that the wearer is trained medical personnel. - components: - - type: Sprite - sprite: Clothing/Uniforms/uniform_medical.rsi - state: icon - - - type: Clothing - sprite: Clothing/Uniforms/uniform_medical.rsi - -- type: entity - parent: UniformMedicalDoctor - id: UniformMedicalDoctorSkirt - name: medical doctor jumpskirt - description: It's made of a special fiber that provides minor protection against biohazards. It has a cross on the chest denoting that the wearer is trained medical personnel. - components: - - type: Sprite - state: medical_skirt - - - type: Clothing - ClothingPrefix: medical_skirt - femaleMask: UniformTop - -- type: entity - parent: UniformBase - id: UniformScientist - name: scientist jumpsuit - description: It's made of a special fiber that provides minor protection against explosives. It has markings that denote the wearer as a scientist. - components: - - type: Sprite - sprite: Clothing/Uniforms/uniform_scientist.rsi - state: icon - - - type: Clothing - sprite: Clothing/Uniforms/uniform_scientist.rsi - -- type: entity - parent: UniformScientist - id: UniformScientistSkirt - name: scientist jumpskirt - description: It's made of a special fiber that provides minor protection against explosives. It has markings that denote the wearer as a scientist. - components: - - type: Sprite - state: sci_skirt - - - type: Clothing - ClothingPrefix: sci_skirt - femaleMask: UniformTop - -- type: entity - parent: UniformBase - id: UniformResearchDirector - name: research director's turtleneck - description: It's a turtleneck worn by those with the know-how to achieve the position of Research Director. Its fabric provides minor protection from biological contaminants. - components: - - type: Sprite - sprite: Clothing/Uniforms/uniform_rnd.rsi - state: icon - - - type: Clothing - sprite: Clothing/Uniforms/uniform_rnd.rsi - -- type: entity - parent: UniformResearchDirector - id: UniformResearchDirectorSkirt - name: research director's skirtleneck - description: It's a turtleneck worn by those with the know-how to achieve the position of Research Director. Its fabric provides minor protection from biological contaminants. - components: - - type: Sprite - state: rnd_skirt - - - type: Clothing - ClothingPrefix: rnd_skirt - femaleMask: UniformTop - -- type: entity - parent: UniformBase - id: UniformMime - name: mime suit - description: ... - components: - - type: Sprite - sprite: Clothing/Uniforms/uniform_mime.rsi - state: icon - - - type: Clothing - sprite: Clothing/Uniforms/uniform_mime.rsi - -- type: entity - parent: UniformMime - id: UniformMimeSkirt - name: mime skirt - description: ... - components: - - type: Sprite - state: mime_skirt - - - type: Clothing - ClothingPrefix: mime_skirt - femaleMask: UniformTop - -- type: entity - parent: UniformBase - id: UniformChaplain - name: chaplain's jumpsuit - description: It's a black jumpsuit, often worn by religious folk. - components: - - type: Sprite - sprite: Clothing/Uniforms/uniform_chaplain.rsi - state: icon - - - type: Clothing - sprite: Clothing/Uniforms/uniform_chaplain.rsi - -- type: entity - parent: UniformChaplain - id: UniformChaplainSkirt - name: chaplain's jumpskirt - description: It's a black jumpskirt. If you wear this, you probably need religious help more than you will be providing it. - components: - - type: Sprite - state: chaplain_skirt - - - type: Clothing - ClothingPrefix: chaplain_skirt - femaleMask: UniformTop - -- type: entity - parent: UniformBase - id: UniformHoSAlt - name: head of security turtleneck - description: It's a turtleneck worn by those strong and disciplined enough to achieve the position of Head of Security. Its sturdy fabric provides minor protection from mechanical damage. - components: - - type: Sprite - sprite: Clothing/Uniforms/uniform_hos.rsi - state: hosalt - - - type: Clothing - sprite: Clothing/Uniforms/uniform_hos.rsi - HeldPrefix: hosalt - -- type: entity - parent: UniformHoSAlt - id: UniformHoSAltSkirt - name: head of security skirtleneck - description: It's a skirtleneck worn by those who were strong and disciplined enough to achieve the position of Head of Security. Its sturdy fabric provides minor protection from mechanical damage. - components: - - type: Sprite - state: hosalt_skirt - - - type: Clothing - sprite: Clothing/Uniforms/uniform_hos.rsi - ClothingPrefix: hosalt_skirt - femaleMask: UniformTop - HeldPrefix: hosalt - -- type: entity - parent: UniformBase - id: UniformHoS - name: head of security jumpsuit - description: It's bright red and rather crisp, much like security's victims tend to be. - components: - - type: Sprite - sprite: Clothing/Uniforms/uniform_hos.rsi - state: icon - - - type: Clothing - sprite: Clothing/Uniforms/uniform_hos.rsi - -- type: entity - parent: UniformHoS - id: UniformHoSSkirt - name: head of security jumpskirt - description: It's bright red and rather crisp, much like security's victims tend to be. - components: - - type: Sprite - state: hos_skirt - - - type: Clothing - sprite: Clothing/Uniforms/uniform_hos.rsi - ClothingPrefix: hos_skirt - femaleMask: UniformTop - -- type: entity - parent: UniformHoS - id: UniformHoSGrey - name: head of security's grey jumpsuit - description: A grey jumpsuit of Head of Security, which make him look somewhat like an assistant. - components: - - type: Sprite - state: hos_grey - - - type: Clothing - ClothingPrefix: hos_grey - HeldPrefix: gy_suit - -- type: entity - parent: UniformHoS - id: UniformHoSParadeMale - name: head of security's parade uniform - description: A male head of security's luxury-wear, for special occasions. - components: - - type: Sprite - state: hos_parade_male - - - type: Clothing - ClothingPrefix: hos_parade_male - -- type: entity - parent: UniformHoSParadeMale - id: UniformHoSParadeFem - name: head of security's parade uniform - description: A female head of security's luxury-wear, for special occasions. - components: - - type: Sprite - state: hos_parade_fem - - - type: Clothing - ClothingPrefix: hos_parade_fem - femaleMask: UniformTop - -- type: entity - parent: UniformHoS - id: UniformHoSFormal - name: head of security's formal uniform - description: The insignia on this uniform tells you that this uniform belongs to the Head of Security. - components: - - type: Sprite - state: hosblueclothes - - - type: Clothing - ClothingPrefix: hosblueclothes - -- type: entity - parent: UniformHoS - id: UniformHoSFormalTan - name: head of security's formal uniform (tan) - description: The insignia on this uniform tells you that this uniform belongs to the Head of Security. - components: - - type: Sprite - state: hostanclothes - - - type: Clothing - ClothingPrefix: hostanclothes - -- type: entity - parent: UniformBase - id: UniformWarden - name: warden's uniform - description: A formal security suit for officers complete with Nanotrasen belt buckle. - components: - - type: Sprite - sprite: Clothing/Uniforms/uniform_warden.rsi - state: rwarden - - - type: Clothing - sprite: Clothing/Uniforms/uniform_warden.rsi - ClothingPrefix: rwarden - HeldPrefix: rwarden - -- type: entity - parent: UniformWarden - id: UniformWardenSkirt - name: warden's suitskirt - description: A formal security suitskirt for officers complete with Nanotrasen belt buckle. - components: - - type: Sprite - state: rwarden_skirt - - - type: Clothing - femaleMask: UniformTop - ClothingPrefix: rwarden_skirt - -- type: entity - parent: UniformWarden - id: UniformWardenGrey - name: grey security suit - description: A formal relic of years past before Nanotrasen decided it was cheaper to dye the suits red instead of washing out the blood. - components: - - type: Sprite - state: warden - - - type: Clothing - ClothingPrefix: warden - HeldPrefix: gy_suit - -- type: entity - parent: UniformWarden - id: UniformWardenFormal - name: warden's formal uniform - description: The insignia on this uniform tells you that this uniform belongs to the Warden. - components: - - type: Sprite - state: wardenblueclothes - - - type: Clothing - ClothingPrefix: wardenblueclothes - -- type: entity - parent: UniformWarden - id: UniformWardenFormalTan - name: warden's formal uniform (tan) - description: The insignia on this uniform tells you that this uniform belongs to the Warden. - components: - - type: Sprite - state: wardentanclothes - - - type: Clothing - ClothingPrefix: wardentanclothes - -- type: entity - parent: UniformBase - id: UniformPrisoner - name: prisoner jumpsuit - description: Busted. - components: - - type: Sprite - sprite: Clothing/Uniforms/uniform_prisoner.rsi - state: icon - - - type: Clothing - sprite: Clothing/Uniforms/uniform_prisoner.rsi - -- type: entity - parent: UniformPrisoner - id: UniformPrisonerSkirt - name: prisoner jumpskirt - description: Busted. - components: - - type: Sprite - state: prisoner_skirt - - - type: Clothing - ClothingPrefix: prisoner_skirt - femaleMask: UniformTop - -- type: entity - parent: UniformBase - id: UniformHoP - name: hop jumpsuit - description: Rather bland and inoffensive. Perfect for vanishing off the face of the universe. - components: - - type: Sprite - sprite: Clothing/Uniforms/uniform_hop.rsi - state: icon - - - type: Clothing - sprite: Clothing/Uniforms/uniform_hop.rsi - -- type: entity - parent: UniformHoP - id: UniformHoPSkirt - name: hop jumpskirt - description: Rather bland and inoffensive. Perfect for vanishing off the face of the universe. - components: - - type: Sprite - state: hop_skirt - - - type: Clothing - ClothingPrefix: hop_skirt - femaleMask: UniformTop - -- type: entity - parent: UniformBase - id: UniformHydroponics - name: hydroponics jumpsuit - description: Has a strong earthy smell to it. Hopefully it's merely dirty as opposed to soiled. - components: - - type: Sprite - sprite: Clothing/Uniforms/uniform_hydro.rsi - state: icon - - - type: Clothing - sprite: Clothing/Uniforms/uniform_hydro.rsi - -- type: entity - parent: UniformHydroponics - id: UniformHydroponicsSkirt - name: hydroponics jumpskirt - description: Has a strong earthy smell to it. Hopefully it's merely dirty as opposed to soiled. - components: - - type: Sprite - state: hydro_skirt - - - type: Clothing - ClothingPrefix: hydro_skirt - femaleMask: UniformTop - -- type: entity - parent: UniformBase - id: UniformBartender - name: bartender's uniform - description: A nice and tidy uniform. Shame about the bar though. - components: - - type: Sprite - sprite: Clothing/Uniforms/bartender.rsi - state: icon - - - type: Clothing - sprite: Clothing/Uniforms/bartender.rsi - -- type: entity - parent: UniformBartender - id: UniformBartenderSkirt - name: bartender's skirt - description: A nice and tidy skirt. Shame about the bar though. - components: - - type: Sprite - state: skirt - - - type: Clothing - ClothingPrefix: skirt - femaleMask: UniformTop - -- type: entity - parent: UniformBartender - id: UniformBartenderPurple - name: purple bartender's uniform - description: A special purple outfit to serve drinks. - components: - - type: Sprite - state: purple - - - type: Clothing - ClothingPrefix: purple diff --git a/Resources/Prototypes/Entities/Objects/Boxes/boxes_general.yml b/Resources/Prototypes/Entities/Objects/Boxes/boxes_general.yml index 7d30fd762f..9efecea57d 100644 --- a/Resources/Prototypes/Entities/Objects/Boxes/boxes_general.yml +++ b/Resources/Prototypes/Entities/Objects/Boxes/boxes_general.yml @@ -72,7 +72,7 @@ components: - type: StorageFill contents: - - name: MesonGlasses + - name: ClothingEyesGlassesMeson amount: 4 - type: Sprite layers: @@ -90,7 +90,7 @@ components: - type: StorageFill contents: - - name: BreathMaskClothing + - name: ClothingMaskBreath - name: EmergencyOxygenTankFilled #- name: Injector - type: Sprite diff --git a/Resources/Prototypes/Entities/Objects/Boxes/boxes_medical.yml b/Resources/Prototypes/Entities/Objects/Boxes/boxes_medical.yml index 33da1d0990..87d1f568e6 100644 --- a/Resources/Prototypes/Entities/Objects/Boxes/boxes_medical.yml +++ b/Resources/Prototypes/Entities/Objects/Boxes/boxes_medical.yml @@ -25,7 +25,7 @@ components: - type: StorageFill contents: - - name: MaskSterile + - name: ClothingMaskSterile amount: 4 - type: Sprite layers: @@ -44,7 +44,7 @@ components: - type: StorageFill contents: - - name: GlovesLatex + - name: ClothingHandsGlovesLatex amount: 4 - type: Sprite layers: diff --git a/Resources/Prototypes/Entities/Objects/Boxes/boxes_security.yml b/Resources/Prototypes/Entities/Objects/Boxes/boxes_security.yml index afecee773f..d099b39b7a 100644 --- a/Resources/Prototypes/Entities/Objects/Boxes/boxes_security.yml +++ b/Resources/Prototypes/Entities/Objects/Boxes/boxes_security.yml @@ -44,7 +44,7 @@ components: - type: StorageFill contents: - - name: SecGlasses + - name: ClothingEyesGlassesSecurity amount: 4 - type: Sprite layers: diff --git a/Resources/Prototypes/Entities/Objects/Misc/bedsheets.yml b/Resources/Prototypes/Entities/Objects/Misc/bedsheets.yml index f9da2ce23b..014ca554bd 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/bedsheets.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/bedsheets.yml @@ -11,7 +11,6 @@ components: - type: Sprite sprite: Objects/Misc/bedsheets.rsi - - type: Clothing size: 10 QuickEquip: true @@ -27,14 +26,12 @@ components: - type: Sprite state: sheetblack - - type: Clothing size: 10 QuickEquip: true Slots: - neck - sprite: Clothing/Neck/Bedsheets/sheet_black.rsi - HeldPrefix: sheetblack + sprite: Clothing/Neck/Bedsheets/black.rsi - type: entity id: BedsheetBlue @@ -43,14 +40,12 @@ components: - type: Sprite state: sheetblue - - type: Clothing size: 10 QuickEquip: true Slots: - neck - sprite: Clothing/Neck/Bedsheets/sheet_blue.rsi - HeldPrefix: sheetblue + sprite: Clothing/Neck/Bedsheets/blue.rsi - type: entity id: BedsheetBrown @@ -59,14 +54,12 @@ components: - type: Sprite state: sheetbrown - - type: Clothing size: 10 QuickEquip: true Slots: - neck - sprite: Clothing/Neck/Bedsheets/sheet_brown.rsi - HeldPrefix: sheetbrown + sprite: Clothing/Neck/Bedsheets/brown.rsi - type: entity id: BedsheetCaptain @@ -76,14 +69,12 @@ components: - type: Sprite state: sheetcaptain - - type: Clothing size: 10 QuickEquip: true Slots: - neck - sprite: Clothing/Neck/Bedsheets/sheet_captain.rsi - HeldPrefix: sheetcaptain + sprite: Clothing/Neck/Bedsheets/captain.rsi - type: entity id: BedsheetCE @@ -92,14 +83,12 @@ components: - type: Sprite state: sheetce - - type: Clothing size: 10 QuickEquip: true Slots: - neck - sprite: Clothing/Neck/Bedsheets/sheet_ce.rsi - HeldPrefix: sheetce + sprite: Clothing/Neck/Bedsheets/ce.rsi - type: entity id: BedsheetCentcom @@ -108,14 +97,12 @@ components: - type: Sprite state: sheetcentcom - - type: Clothing size: 10 QuickEquip: true Slots: - neck - sprite: Clothing/Neck/Bedsheets/sheet_centcom.rsi - HeldPrefix: sheetcentcom + sprite: Clothing/Neck/Bedsheets/centcom.rsi - type: entity id: BedsheetClown @@ -124,14 +111,12 @@ components: - type: Sprite state: sheetclown - - type: Clothing size: 10 QuickEquip: true Slots: - neck - sprite: Clothing/Neck/Bedsheets/sheet_rainbow.rsi - HeldPrefix: sheetrainbow + sprite: Clothing/Neck/Bedsheets/rainbow.rsi - type: entity id: BedsheetCMO @@ -140,14 +125,12 @@ components: - type: Sprite state: sheetcmo - - type: Clothing size: 10 QuickEquip: true Slots: - neck - sprite: Clothing/Neck/Bedsheets/sheet_cmo.rsi - HeldPrefix: sheetcmo + sprite: Clothing/Neck/Bedsheets/cmo.rsi - type: entity id: BedsheetCosmos @@ -156,14 +139,12 @@ components: - type: Sprite state: sheetcosmos - - type: Clothing size: 10 QuickEquip: true Slots: - neck - sprite: Clothing/Neck/Bedsheets/sheet_cosmos.rsi - HeldPrefix: sheetcosmos + sprite: Clothing/Neck/Bedsheets/cosmos.rsi - type: entity id: BedsheetCult @@ -172,14 +153,12 @@ components: - type: Sprite state: sheetcult - - type: Clothing size: 10 QuickEquip: true Slots: - neck - sprite: Clothing/Neck/Bedsheets/sheet_cult.rsi - HeldPrefix: sheetcult + sprite: Clothing/Neck/Bedsheets/cult.rsi - type: entity id: BedsheetGreen @@ -188,14 +167,12 @@ components: - type: Sprite state: sheetgreen - - type: Clothing size: 10 QuickEquip: true Slots: - neck - sprite: Clothing/Neck/Bedsheets/sheet_green.rsi - HeldPrefix: sheetgreen + sprite: Clothing/Neck/Bedsheets/green.rsi - type: entity id: BedsheetGrey @@ -204,14 +181,12 @@ components: - type: Sprite state: sheetgrey - - type: Clothing size: 10 QuickEquip: true Slots: - neck - sprite: Clothing/Neck/Bedsheets/sheet_grey.rsi - HeldPrefix: sheetgrey + sprite: Clothing/Neck/Bedsheets/grey.rsi - type: entity id: BedsheetHOP @@ -220,14 +195,12 @@ components: - type: Sprite state: sheethop - - type: Clothing size: 10 QuickEquip: true Slots: - neck - sprite: Clothing/Neck/Bedsheets/sheet_hop.rsi - HeldPrefix: sheethop + sprite: Clothing/Neck/Bedsheets/hop.rsi - type: entity id: BedsheetHOS @@ -236,14 +209,12 @@ components: - type: Sprite state: sheethos - - type: Clothing size: 10 QuickEquip: true Slots: - neck - sprite: Clothing/Neck/Bedsheets/sheet_hos.rsi - HeldPrefix: sheethos + sprite: Clothing/Neck/Bedsheets/hos.rsi - type: entity id: BedsheetIan @@ -252,14 +223,12 @@ components: - type: Sprite state: sheetian - - type: Clothing size: 10 QuickEquip: true Slots: - neck - sprite: Clothing/Neck/Bedsheets/sheet_ian.rsi - HeldPrefix: sheetian + sprite: Clothing/Neck/Bedsheets/ian.rsi - type: entity id: BedsheetMedical @@ -268,14 +237,12 @@ components: - type: Sprite state: sheetmedical - - type: Clothing size: 10 QuickEquip: true Slots: - neck - sprite: Clothing/Neck/Bedsheets/sheet_medical.rsi - HeldPrefix: sheetmedical + sprite: Clothing/Neck/Bedsheets/medical.rsi - type: entity id: BedsheetMime @@ -284,14 +251,12 @@ components: - type: Sprite state: sheetmime - - type: Clothing size: 10 QuickEquip: true Slots: - neck - sprite: Clothing/Neck/Bedsheets/sheet_mime.rsi - HeldPrefix: sheetmime + sprite: Clothing/Neck/Bedsheets/mime.rsi - type: entity id: BedsheetNT @@ -300,14 +265,12 @@ components: - type: Sprite state: sheetNT - - type: Clothing size: 10 QuickEquip: true Slots: - neck - sprite: Clothing/Neck/Bedsheets/sheet_NT.rsi - HeldPrefix: sheetNT + sprite: Clothing/Neck/Bedsheets/NT.rsi - type: entity id: BedsheetOrange @@ -316,14 +279,12 @@ components: - type: Sprite state: sheetorange - - type: Clothing size: 10 QuickEquip: true Slots: - neck - sprite: Clothing/Neck/Bedsheets/sheet_orange.rsi - HeldPrefix: sheetorange + sprite: Clothing/Neck/Bedsheets/orange.rsi - type: entity id: BedsheetPurple @@ -332,14 +293,12 @@ components: - type: Sprite state: sheetpurple - - type: Clothing size: 10 QuickEquip: true Slots: - neck - sprite: Clothing/Neck/Bedsheets/sheet_purple.rsi - HeldPrefix: sheetpurple + sprite: Clothing/Neck/Bedsheets/purple.rsi - type: entity id: BedsheetQM @@ -348,14 +307,12 @@ components: - type: Sprite state: sheetqm - - type: Clothing size: 10 QuickEquip: true Slots: - neck - sprite: Clothing/Neck/Bedsheets/sheet_qm.rsi - HeldPrefix: sheetqm + sprite: Clothing/Neck/Bedsheets/qm.rsi - type: entity id: BedsheetRainbow @@ -364,14 +321,12 @@ components: - type: Sprite state: sheetrainbow - - type: Clothing size: 10 QuickEquip: true Slots: - neck - sprite: Clothing/Neck/Bedsheets/sheet_rainbow.rsi - HeldPrefix: sheetrainbow + sprite: Clothing/Neck/Bedsheets/rainbow.rsi - type: entity id: BedsheetRD @@ -380,14 +335,12 @@ components: - type: Sprite state: sheetrd - - type: Clothing size: 10 QuickEquip: true Slots: - neck - sprite: Clothing/Neck/Bedsheets/sheet_rd.rsi - HeldPrefix: sheetrd + sprite: Clothing/Neck/Bedsheets/rd.rsi - type: entity id: BedsheetRed @@ -396,14 +349,12 @@ components: - type: Sprite state: sheetred - - type: Clothing size: 10 QuickEquip: true Slots: - neck - sprite: Clothing/Neck/Bedsheets/sheet_red.rsi - HeldPrefix: sheetred + sprite: Clothing/Neck/Bedsheets/red.rsi - type: entity id: BedsheetSyndie @@ -412,14 +363,12 @@ components: - type: Sprite state: sheetsyndie - - type: Clothing size: 10 QuickEquip: true Slots: - neck - sprite: Clothing/Neck/Bedsheets/sheet_syndie.rsi - HeldPrefix: sheetsyndie + sprite: Clothing/Neck/Bedsheets/syndie.rsi - type: entity id: BedsheetUSA @@ -428,14 +377,12 @@ components: - type: Sprite state: sheetUSA - - type: Clothing size: 10 QuickEquip: true Slots: - neck - sprite: Clothing/Neck/Bedsheets/sheet_USA.rsi - HeldPrefix: sheetUSA + sprite: Clothing/Neck/Bedsheets/USA.rsi - type: entity id: BedsheetWhite @@ -444,14 +391,12 @@ components: - type: Sprite state: sheetwhite - - type: Clothing size: 10 QuickEquip: true Slots: - neck - sprite: Clothing/Neck/Bedsheets/sheet_white.rsi - HeldPrefix: sheetwhite + sprite: Clothing/Neck/Bedsheets/white.rsi - type: entity id: BedsheetWiz @@ -460,14 +405,12 @@ components: - type: Sprite state: sheetwiz - - type: Clothing size: 10 QuickEquip: true Slots: - neck - sprite: Clothing/Neck/Bedsheets/sheet_wiz.rsi - HeldPrefix: sheetwiz + sprite: Clothing/Neck/Bedsheets/wiz.rsi - type: entity id: BedsheetYellow @@ -476,11 +419,9 @@ components: - type: Sprite state: sheetyellow - - type: Clothing size: 10 QuickEquip: true Slots: - neck - sprite: Clothing/Neck/Bedsheets/sheet_yellow.rsi - HeldPrefix: sheetyellow + sprite: Clothing/Neck/Bedsheets/yellow.rsi diff --git a/Resources/Prototypes/Entities/Objects/Tools/toolbox.yml b/Resources/Prototypes/Entities/Objects/Tools/toolbox.yml index f691652101..b310ee431a 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/toolbox.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/toolbox.yml @@ -31,7 +31,7 @@ components: - type: StorageFill contents: - - name: BreathMaskClothing + - name: ClothingMaskBreath amount: 2 - name: FoodChocolateBar - name: FlashlightLantern @@ -79,7 +79,7 @@ - name: Wirecutter - name: ApcExtensionCableStack - name: MVWireStack - - name: GlovesYellow + - name: ClothingHandsGlovesColorYellow prob: 0.05 orGroup: GlovesOrWires - name: HVWireStack diff --git a/Resources/Prototypes/Roles/Jobs/Cargo/cargo_technician.yml b/Resources/Prototypes/Roles/Jobs/Cargo/cargo_technician.yml index 79a423102c..80b764c620 100644 --- a/Resources/Prototypes/Roles/Jobs/Cargo/cargo_technician.yml +++ b/Resources/Prototypes/Roles/Jobs/Cargo/cargo_technician.yml @@ -14,8 +14,9 @@ - type: startingGear id: CargoTechGear equipment: - innerclothing: UniformCargoTech - backpack: BackpackClothingFilled - shoes: ShoesBlack + head: ClothingHeadHatCargosoft + innerclothing: ClothingUniformJumpsuitCargo + backpack: ClothingBackpackFilled + shoes: ClothingShoesColorBlack idcard: CargoPDA - ears: HeadsetCargo + ears: ClothingHeadsetCargo diff --git a/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml b/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml index 3125f420a0..c733b02d29 100644 --- a/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml +++ b/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml @@ -15,8 +15,9 @@ - type: startingGear id: QuartermasterGear equipment: - innerclothing: UniformQM - backpack: BackpackClothingFilled - shoes: ShoesBrown + head: ClothingHeadHatCargosoft + innerclothing: ClothingUniformJumpsuitQM + backpack: ClothingBackpackFilled + shoes: ClothingShoesColorBrown idcard: QuartermasterPDA - ears: HeadsetCargo + ears: ClothingHeadsetCargo diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/assistant.yml b/Resources/Prototypes/Roles/Jobs/Civilian/assistant.yml index cb1835e746..3df6e98b9d 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/assistant.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/assistant.yml @@ -12,8 +12,8 @@ - type: startingGear id: AssistantGear equipment: - innerclothing: UniformColorGrey - backpack: BackpackClothingFilled - shoes: ShoesBlack + innerclothing: ClothingUniformJumpsuitColorGrey + backpack: ClothingBackpackFilled + shoes: ClothingShoesColorBlack idcard: AssistantPDA - ears: HeadsetService + ears: ClothingHeadsetService diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/bartender.yml b/Resources/Prototypes/Roles/Jobs/Civilian/bartender.yml index d3f0d7cd1d..c40b5162c0 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/bartender.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/bartender.yml @@ -14,9 +14,10 @@ - type: startingGear id: BartenderGear equipment: - innerclothing: UniformBartender - outerclothing: OuterclothingArmorVest - backpack: BackpackClothingFilled - shoes: ShoesBlack + head: ClothingHeadHatTophat + innerclothing: ClothingUniformJumpsuitBartender + outerclothing: ClothingOuterVestKevlar + backpack: ClothingBackpackFilled + shoes: ClothingShoesColorBlack idcard: BartenderPDA - ears: HeadsetService + ears: ClothingHeadsetService diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/botanist.yml b/Resources/Prototypes/Roles/Jobs/Civilian/botanist.yml index 53fdd5d039..ca36aaa2f3 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/botanist.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/botanist.yml @@ -15,8 +15,8 @@ - type: startingGear id: BotanistGear equipment: - innerclothing: UniformHydroponics - backpack: BackpackClothingFilled - shoes: ShoesBrown + innerclothing: ClothingUniformJumpsuitHydroponics + backpack: ClothingBackpackFilled + shoes: ClothingShoesColorBrown idcard: BotanistPDA - ears: HeadsetService + ears: ClothingHeadsetService diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/chaplain.yml b/Resources/Prototypes/Roles/Jobs/Civilian/chaplain.yml index 34b9d5faef..a093c33dd0 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/chaplain.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/chaplain.yml @@ -13,8 +13,8 @@ - type: startingGear id: ChaplainGear equipment: - innerclothing: UniformChaplain - backpack: BackpackClothing - shoes: ShoesBlack + innerclothing: ClothingUniformJumpsuitChaplain + backpack: ClothingBackpack + shoes: ClothingShoesColorBlack idcard: ChaplainPDA - ears: HeadsetService + ears: ClothingHeadsetService diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/chef.yml b/Resources/Prototypes/Roles/Jobs/Civilian/chef.yml index adfdf941ac..2a17d051df 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/chef.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/chef.yml @@ -14,8 +14,9 @@ - type: startingGear id: ChefGear equipment: - innerclothing: UniformChef - backpack: BackpackClothingFilled - shoes: ShoesBlack + innerclothing: ClothingUniformJumpsuitChef + head: ClothingHeadHatChef + backpack: ClothingBackpackFilled + shoes: ClothingShoesColorBlack idcard: ChefPDA - ears: HeadsetService + ears: ClothingHeadsetService diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/clown.yml b/Resources/Prototypes/Roles/Jobs/Civilian/clown.yml index 8e03c3716a..c709f8ff76 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/clown.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/clown.yml @@ -14,10 +14,10 @@ - type: startingGear id: ClownGear equipment: - innerclothing: UniformClown - backpack: ClownPackFilled - shoes: ShoesClown - mask: MaskClown + innerclothing: ClothingUniformJumpsuitClown + backpack: ClothingBackpackClownFilled + shoes: ClothingShoesClown + mask: ClothingMaskClown pocket1: BikeHorn idcard: ClownPDA - ears: HeadsetService + ears: ClothingHeadsetService diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/janitor.yml b/Resources/Prototypes/Roles/Jobs/Civilian/janitor.yml index e621a685ff..8701597c8a 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/janitor.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/janitor.yml @@ -13,10 +13,10 @@ - type: startingGear id: JanitorGear equipment: - innerclothing: UniformJanitor - backpack: BackpackClothingFilled - shoes: ShoesGaloshes - head: HatPurplesoft + innerclothing: ClothingUniformJumpsuitJanitor + backpack: ClothingBackpackFilled + shoes: ClothingShoesGaloshes + head: ClothingHeadHatPurplesoft idcard: JanitorPDA - ears: HeadsetService + ears: ClothingHeadsetService belt: ClothingBeltJanitorFilled diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/mime.yml b/Resources/Prototypes/Roles/Jobs/Civilian/mime.yml index 0b6c3c83f7..4e0dd184d6 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/mime.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/mime.yml @@ -13,14 +13,14 @@ - type: startingGear id: MimeGear equipment: - innerclothing: UniformMime - backpack: BackpackClothing - head: HatBeret - belt: SuspendersClothing - gloves: GlovesWhite - shoes: ShoesMime + innerclothing: ClothingUniformJumpsuitMime + backpack: ClothingBackpackFilled + head: ClothingHeadHatBeret + belt: ClothingBeltSuspenders + gloves: ClothingHandsGlovesLatex + shoes: ClothingShoesColorWhite pocket1: Pen pocket2: Paper - mask: MaskMime + mask: ClothingMaskMime idcard: MimePDA - ears: HeadsetService + ears: ClothingHeadsetService diff --git a/Resources/Prototypes/Roles/Jobs/Command/captain.yml b/Resources/Prototypes/Roles/Jobs/Command/captain.yml index 0f0a09ccc1..849e517d00 100644 --- a/Resources/Prototypes/Roles/Jobs/Command/captain.yml +++ b/Resources/Prototypes/Roles/Jobs/Command/captain.yml @@ -11,6 +11,7 @@ # All of em. # Could probably do with some kind of wildcard or whatever to automate this. # HELL FUCKING YEAH WE COULD + # Guys please don't fight - Captain - HeadOfPersonnel - Command @@ -38,12 +39,12 @@ - type: startingGear id: CaptainGear equipment: - innerclothing: UniformCaptain - backpack: BackpackCaptainFilled - shoes: ShoesBlack - head: HatCaptain - eyes: SunGlasses - gloves: GlovesCaptain - outerclothing: OuterclothingCaparmor + innerclothing: ClothingUniformJumpsuitCaptain + backpack: ClothingBackpackCaptainFilled + shoes: ClothingShoesColorBlack + head: ClothingHeadHatCaptain + eyes: ClothingEyesGlassesSunglasses + gloves: ClothingHandsGlovesCaptain + outerclothing: ClothingOuterHardsuitCap idcard: CaptainPDA - ears: HeadsetCommand + ears: ClothingHeadsetAltCommand diff --git a/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml b/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml index 7887c7c6bc..716e0ded13 100644 --- a/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml +++ b/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml @@ -22,9 +22,9 @@ - type: startingGear id: HoPGear equipment: - innerclothing: UniformHoP - backpack: BackpackClothingFilled - shoes: ShoesBrown - head: HatHopcap + innerclothing: ClothingUniformJumpsuitHoP + backpack: ClothingBackpackFilled + shoes: ClothingShoesColorBrown + head: ClothingHeadHatHopcap idcard: HoPPDA - ears: HeadsetCommand + ears: ClothingHeadsetAltCommand diff --git a/Resources/Prototypes/Roles/Jobs/Engineering/chief_engineer.yml b/Resources/Prototypes/Roles/Jobs/Engineering/chief_engineer.yml index 7a9aed6f53..7ebf03b75b 100644 --- a/Resources/Prototypes/Roles/Jobs/Engineering/chief_engineer.yml +++ b/Resources/Prototypes/Roles/Jobs/Engineering/chief_engineer.yml @@ -18,10 +18,10 @@ - type: startingGear id: ChiefEngineerGear equipment: - head: HatHardhatWhite - innerclothing: UniformChiefEngineer - backpack: BackpackEngineeringFilled - shoes: ShoesBrown + head: ClothingHeadHatHardhatWhite + innerclothing: ClothingUniformJumpsuitChiefEngineer + backpack: ClothingBackpackEngineeringFilled + shoes: ClothingShoesColorBrown idcard: CEPDA - ears: HeadsetEngineering + ears: ClothingHeadsetEngineering belt: ClothingBeltChiefEngineerFilled diff --git a/Resources/Prototypes/Roles/Jobs/Engineering/station_engineer.yml b/Resources/Prototypes/Roles/Jobs/Engineering/station_engineer.yml index d0308d7962..0e3e49807c 100644 --- a/Resources/Prototypes/Roles/Jobs/Engineering/station_engineer.yml +++ b/Resources/Prototypes/Roles/Jobs/Engineering/station_engineer.yml @@ -15,10 +15,11 @@ - type: startingGear id: StationEngineerGear equipment: - innerclothing: UniformEngineering - backpack: BackpackEngineeringFilled - shoes: ShoesWorkboots - outerclothing: OuterclothingHazard + head: ClothingHeadHatHardhatYellow + innerclothing: ClothingUniformJumpsuitEngineering + backpack: ClothingBackpackEngineeringFilled + shoes: ClothingShoesBootsWork + outerclothing: ClothingOuterVestHazard idcard: EngineerPDA - belt: UtilityBeltClothingFilled - ears: HeadsetEngineering + belt: ClothingBeltUtilityFilled + ears: ClothingHeadsetEngineering diff --git a/Resources/Prototypes/Roles/Jobs/Medical/chief_medical_officer.yml b/Resources/Prototypes/Roles/Jobs/Medical/chief_medical_officer.yml index 24861e8d62..7eb6037b6c 100644 --- a/Resources/Prototypes/Roles/Jobs/Medical/chief_medical_officer.yml +++ b/Resources/Prototypes/Roles/Jobs/Medical/chief_medical_officer.yml @@ -19,10 +19,10 @@ - type: startingGear id: CMOGear equipment: - innerclothing: UniformCMO - backpack: BackpackMedicalFilled - shoes: ShoesBrown - outerclothing: OuterclothingLabcoatcmo + innerclothing: ClothingUniformJumpsuitCMO + backpack: ClothingBackpackMedicalFilled + shoes: ClothingShoesColorBrown + outerclothing: ClothingOuterCoatLabCmo idcard: CMOPDA - ears: HeadsetMedicalAlt + ears: ClothingHeadsetAltMedical belt: ClothingBeltMedical diff --git a/Resources/Prototypes/Roles/Jobs/Medical/medical_doctor.yml b/Resources/Prototypes/Roles/Jobs/Medical/medical_doctor.yml index 4455b8b2a1..8e4e3b6080 100644 --- a/Resources/Prototypes/Roles/Jobs/Medical/medical_doctor.yml +++ b/Resources/Prototypes/Roles/Jobs/Medical/medical_doctor.yml @@ -14,10 +14,10 @@ - type: startingGear id: DoctorGear equipment: - innerclothing: UniformMedicalDoctor - backpack: BackpackMedicalFilled - shoes: ShoesWhite - outerclothing: OuterclothingLabcoatmedspecopen + innerclothing: ClothingUniformJumpsuitMedicalDoctor + backpack: ClothingBackpackMedicalFilled + shoes: ClothingShoesColorWhite + outerclothing: ClothingOuterCoatLab idcard: MedicalPDA - ears: HeadsetMedical + ears: ClothingHeadsetMedical belt: ClothingBeltMedical diff --git a/Resources/Prototypes/Roles/Jobs/Science/research_director.yml b/Resources/Prototypes/Roles/Jobs/Science/research_director.yml index 088bd17382..4e30a77141 100644 --- a/Resources/Prototypes/Roles/Jobs/Science/research_director.yml +++ b/Resources/Prototypes/Roles/Jobs/Science/research_director.yml @@ -17,10 +17,9 @@ - type: startingGear id: ResearchDirectorGear equipment: - innerclothing: UniformResearchDirector + innerclothing: ClothingUniformJumpsuitResearchDirector # Note to Swept add science backpacks - backpack: BackpackClothingFilled - shoes: ShoesBrown - outerclothing: OuterclothingLabcoatopen + backpack: ClothingBackpackFilled + shoes: ClothingShoesColorBrown idcard: RnDPDA - ears: HeadsetScience + ears: ClothingHeadsetScience diff --git a/Resources/Prototypes/Roles/Jobs/Science/scientist.yml b/Resources/Prototypes/Roles/Jobs/Science/scientist.yml index 3033d51c76..b9c711a25b 100644 --- a/Resources/Prototypes/Roles/Jobs/Science/scientist.yml +++ b/Resources/Prototypes/Roles/Jobs/Science/scientist.yml @@ -14,9 +14,9 @@ - type: startingGear id: ScientistGear equipment: - innerclothing: UniformScientist - backpack: BackpackClothingFilled - shoes: ShoesWhite - outerclothing: OuterclothingLabcoat + innerclothing: ClothingUniformJumpsuitScientist + backpack: ClothingBackpackFilled + shoes: ClothingShoesColorWhite + outerclothing: ClothingOuterCoatLab idcard: SciencePDA - ears: HeadsetScience + ears: ClothingHeadsetScience diff --git a/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml b/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml index 57fe23f4b3..0e24f9ebdb 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml @@ -20,12 +20,12 @@ - type: startingGear id: HoSGear equipment: - innerclothing: UniformHoS - backpack: SecPackFilled - shoes: ShoesJackboots - outerclothing: OuterclothingHoSTrenchcoat - eyes: SecGlasses - head: HatBeretHoS + innerclothing: ClothingUniformJumpsuitHoS + backpack: ClothingBackpackSecurityFilled + shoes: ClothingShoesJackboots + outerclothing: ClothingOuterCoatHoSTrench + eyes: ClothingEyesGlassesSecurity + head: ClothingHeadHatBeretHoS idcard: HoSPDA - ears: HeadsetSecurityAlt + ears: ClothingHeadsetAltSecurity belt: ClothingBeltSecurityFilled diff --git a/Resources/Prototypes/Roles/Jobs/Security/security_officer.yml b/Resources/Prototypes/Roles/Jobs/Security/security_officer.yml index cd49ef39c9..3bd87c2371 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/security_officer.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/security_officer.yml @@ -15,11 +15,12 @@ - type: startingGear id: SecurityOfficerGear equipment: - innerclothing: UniformSec - backpack: SecPackFilled - shoes: ShoesJackboots - eyes: SecGlasses - outerclothing: OuterclothingArmorVest + innerclothing: ClothingUniformJumpsuitSec + backpack: ClothingBackpackSecurityFilled + shoes: ClothingShoesBootsJack + eyes: ClothingEyesGlassesSecurity + head: ClothingHeadHelmetHelmetOld + outerclothing: ClothingOuterVestKevlar idcard: SecurityPDA - ears: HeadsetSecurity + ears: ClothingHeadsetSecurity belt: ClothingBeltSecurityFilled diff --git a/Resources/Prototypes/Roles/Jobs/Security/warden.yml b/Resources/Prototypes/Roles/Jobs/Security/warden.yml index 00b6db25c3..d659f558ea 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/warden.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/warden.yml @@ -16,11 +16,12 @@ - type: startingGear id: WardenGear equipment: - innerclothing: UniformWarden - backpack: SecPackFilled - shoes: ShoesJackboots - eyes: SecGlasses - outerclothing: OuterclothingArmorVest + head: ClothingHeadHatWarden + innerclothing: ClothingUniformJumpsuitWarden + backpack: ClothingBackpackSecurityFilled + shoes: ClothingShoesBootsJack + eyes: ClothingEyesGlassesSecurity + outerclothing: ClothingOuterVestKevlar idcard: WardenPDA - ears: HeadsetSecurity + ears: ClothingHeadsetSecurity belt: ClothingBeltSecurityFilled diff --git a/Resources/Textures/Clothing/Back/Backpacks/backpack.rsi/meta.json b/Resources/Textures/Clothing/Back/Backpacks/backpack.rsi/meta.json index e84a910cb3..89236692cc 100644 --- a/Resources/Textures/Clothing/Back/Backpacks/backpack.rsi/meta.json +++ b/Resources/Textures/Clothing/Back/Backpacks/backpack.rsi/meta.json @@ -1,27 +1,27 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", - "size": { - "x": 32, - "y": 32 + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 }, - "states": [ - { - "name": "icon", - "directions": 1 - }, - { - "name": "equipped-BACKPACK", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Clothing/Back/Backpacks/botany.rsi/meta.json b/Resources/Textures/Clothing/Back/Backpacks/botany.rsi/meta.json index e84a910cb3..89236692cc 100644 --- a/Resources/Textures/Clothing/Back/Backpacks/botany.rsi/meta.json +++ b/Resources/Textures/Clothing/Back/Backpacks/botany.rsi/meta.json @@ -1,27 +1,27 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", - "size": { - "x": 32, - "y": 32 + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 }, - "states": [ - { - "name": "icon", - "directions": 1 - }, - { - "name": "equipped-BACKPACK", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Clothing/Back/Backpacks/captain.rsi/meta.json b/Resources/Textures/Clothing/Back/Backpacks/captain.rsi/meta.json index e84a910cb3..89236692cc 100644 --- a/Resources/Textures/Clothing/Back/Backpacks/captain.rsi/meta.json +++ b/Resources/Textures/Clothing/Back/Backpacks/captain.rsi/meta.json @@ -1,27 +1,27 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", - "size": { - "x": 32, - "y": 32 + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 }, - "states": [ - { - "name": "icon", - "directions": 1 - }, - { - "name": "equipped-BACKPACK", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Clothing/Back/Backpacks/chemistry.rsi/meta.json b/Resources/Textures/Clothing/Back/Backpacks/chemistry.rsi/meta.json index e84a910cb3..89236692cc 100644 --- a/Resources/Textures/Clothing/Back/Backpacks/chemistry.rsi/meta.json +++ b/Resources/Textures/Clothing/Back/Backpacks/chemistry.rsi/meta.json @@ -1,27 +1,27 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", - "size": { - "x": 32, - "y": 32 + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 }, - "states": [ - { - "name": "icon", - "directions": 1 - }, - { - "name": "equipped-BACKPACK", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Clothing/Back/Backpacks/clown.rsi/meta.json b/Resources/Textures/Clothing/Back/Backpacks/clown.rsi/meta.json index e84a910cb3..89236692cc 100644 --- a/Resources/Textures/Clothing/Back/Backpacks/clown.rsi/meta.json +++ b/Resources/Textures/Clothing/Back/Backpacks/clown.rsi/meta.json @@ -1,27 +1,27 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", - "size": { - "x": 32, - "y": 32 + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 }, - "states": [ - { - "name": "icon", - "directions": 1 - }, - { - "name": "equipped-BACKPACK", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Clothing/Back/Backpacks/engineering.rsi/meta.json b/Resources/Textures/Clothing/Back/Backpacks/engineering.rsi/meta.json index e84a910cb3..89236692cc 100644 --- a/Resources/Textures/Clothing/Back/Backpacks/engineering.rsi/meta.json +++ b/Resources/Textures/Clothing/Back/Backpacks/engineering.rsi/meta.json @@ -1,27 +1,27 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", - "size": { - "x": 32, - "y": 32 + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 }, - "states": [ - { - "name": "icon", - "directions": 1 - }, - { - "name": "equipped-BACKPACK", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Clothing/Back/Backpacks/holding.rsi/meta.json b/Resources/Textures/Clothing/Back/Backpacks/holding.rsi/meta.json index 3fde6c9744..c3bb350c47 100644 --- a/Resources/Textures/Clothing/Back/Backpacks/holding.rsi/meta.json +++ b/Resources/Textures/Clothing/Back/Backpacks/holding.rsi/meta.json @@ -1,93 +1,97 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", - "size": { - "x": 32, - "y": 32 + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "holding", + "directions": 1, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] }, - "states": [ - { - "name": "holding-equipped-BACKPACK", - "directions": 4, - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ], - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ], - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ], - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "holding-inhand-right", - "directions": 4 - }, - { - "name": "holding-broken", - "directions": 1 - }, - { - "name": "holding", - "directions": 1, - "delays": [[ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ]] - }, - { - "name": "holding-unlit", - "directions": 1, - "delays": [[ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ]] - }, - { - "name": "holding-broken-equipped-BACKPACK", - "directions": 4 - }, - { - "name": "holding-inhand-left", - "directions": 4 - } - ] + { + "name": "holding-equipped-BACKPACK", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "holding-unlit", + "directions": 1, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "holding-broken-equipped-BACKPACK", + "directions": 4 + }, + { + "name": "holding-broken", + "directions": 1 + }, + { + "name": "holding-inhand-left", + "directions": 4 + }, + { + "name": "holding-inhand-right", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Clothing/Back/Backpacks/medical.rsi/meta.json b/Resources/Textures/Clothing/Back/Backpacks/medical.rsi/meta.json index e84a910cb3..89236692cc 100644 --- a/Resources/Textures/Clothing/Back/Backpacks/medical.rsi/meta.json +++ b/Resources/Textures/Clothing/Back/Backpacks/medical.rsi/meta.json @@ -1,27 +1,27 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", - "size": { - "x": 32, - "y": 32 + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 }, - "states": [ - { - "name": "icon", - "directions": 1 - }, - { - "name": "equipped-BACKPACK", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Clothing/Back/Backpacks/mime.rsi/meta.json b/Resources/Textures/Clothing/Back/Backpacks/mime.rsi/meta.json index e84a910cb3..89236692cc 100644 --- a/Resources/Textures/Clothing/Back/Backpacks/mime.rsi/meta.json +++ b/Resources/Textures/Clothing/Back/Backpacks/mime.rsi/meta.json @@ -1,27 +1,27 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", - "size": { - "x": 32, - "y": 32 + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 }, - "states": [ - { - "name": "icon", - "directions": 1 - }, - { - "name": "equipped-BACKPACK", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Clothing/Back/Backpacks/security.rsi/meta.json b/Resources/Textures/Clothing/Back/Backpacks/security.rsi/meta.json index e84a910cb3..89236692cc 100644 --- a/Resources/Textures/Clothing/Back/Backpacks/security.rsi/meta.json +++ b/Resources/Textures/Clothing/Back/Backpacks/security.rsi/meta.json @@ -1,27 +1,27 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", - "size": { - "x": 32, - "y": 32 + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 }, - "states": [ - { - "name": "icon", - "directions": 1 - }, - { - "name": "equipped-BACKPACK", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Clothing/Back/Duffels/duffel_cap.rsi/equipped-BACKPACK.png b/Resources/Textures/Clothing/Back/Duffels/captain.rsi/equipped-BACKPACK.png similarity index 100% rename from Resources/Textures/Clothing/Back/Duffels/duffel_cap.rsi/equipped-BACKPACK.png rename to Resources/Textures/Clothing/Back/Duffels/captain.rsi/equipped-BACKPACK.png diff --git a/Resources/Textures/Clothing/Back/Duffels/duffel_cap.rsi/icon.png b/Resources/Textures/Clothing/Back/Duffels/captain.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Back/Duffels/duffel_cap.rsi/icon.png rename to Resources/Textures/Clothing/Back/Duffels/captain.rsi/icon.png diff --git a/Resources/Textures/Clothing/Back/Duffels/duffel_cap.rsi/inhand-left.png b/Resources/Textures/Clothing/Back/Duffels/captain.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Back/Duffels/duffel_cap.rsi/inhand-left.png rename to Resources/Textures/Clothing/Back/Duffels/captain.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Back/Duffels/duffel_cap.rsi/inhand-right.png b/Resources/Textures/Clothing/Back/Duffels/captain.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Back/Duffels/duffel_cap.rsi/inhand-right.png rename to Resources/Textures/Clothing/Back/Duffels/captain.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Back/Duffels/captain.rsi/meta.json b/Resources/Textures/Clothing/Back/Duffels/captain.rsi/meta.json new file mode 100644 index 0000000000..89236692cc --- /dev/null +++ b/Resources/Textures/Clothing/Back/Duffels/captain.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Back/Duffels/duffel_clown.rsi/equipped-BACKPACK.png b/Resources/Textures/Clothing/Back/Duffels/clown.rsi/equipped-BACKPACK.png similarity index 100% rename from Resources/Textures/Clothing/Back/Duffels/duffel_clown.rsi/equipped-BACKPACK.png rename to Resources/Textures/Clothing/Back/Duffels/clown.rsi/equipped-BACKPACK.png diff --git a/Resources/Textures/Clothing/Back/Duffels/duffel_clown.rsi/icon.png b/Resources/Textures/Clothing/Back/Duffels/clown.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Back/Duffels/duffel_clown.rsi/icon.png rename to Resources/Textures/Clothing/Back/Duffels/clown.rsi/icon.png diff --git a/Resources/Textures/Clothing/Back/Duffels/duffel_clown.rsi/inhand-left.png b/Resources/Textures/Clothing/Back/Duffels/clown.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Back/Duffels/duffel_clown.rsi/inhand-left.png rename to Resources/Textures/Clothing/Back/Duffels/clown.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Back/Duffels/duffel_clown.rsi/inhand-right.png b/Resources/Textures/Clothing/Back/Duffels/clown.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Back/Duffels/duffel_clown.rsi/inhand-right.png rename to Resources/Textures/Clothing/Back/Duffels/clown.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Back/Duffels/clown.rsi/meta.json b/Resources/Textures/Clothing/Back/Duffels/clown.rsi/meta.json new file mode 100644 index 0000000000..89236692cc --- /dev/null +++ b/Resources/Textures/Clothing/Back/Duffels/clown.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Back/Duffels/duffel.rsi/meta.json b/Resources/Textures/Clothing/Back/Duffels/duffel.rsi/meta.json index e84a910cb3..89236692cc 100644 --- a/Resources/Textures/Clothing/Back/Duffels/duffel.rsi/meta.json +++ b/Resources/Textures/Clothing/Back/Duffels/duffel.rsi/meta.json @@ -1,27 +1,27 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", - "size": { - "x": 32, - "y": 32 + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 }, - "states": [ - { - "name": "icon", - "directions": 1 - }, - { - "name": "equipped-BACKPACK", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Clothing/Back/Duffels/duffel_cap.rsi/meta.json b/Resources/Textures/Clothing/Back/Duffels/duffel_cap.rsi/meta.json deleted file mode 100644 index e84a910cb3..0000000000 --- a/Resources/Textures/Clothing/Back/Duffels/duffel_cap.rsi/meta.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon", - "directions": 1 - }, - { - "name": "equipped-BACKPACK", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Clothing/Back/Duffels/duffel_clown.rsi/meta.json b/Resources/Textures/Clothing/Back/Duffels/duffel_clown.rsi/meta.json deleted file mode 100644 index e84a910cb3..0000000000 --- a/Resources/Textures/Clothing/Back/Duffels/duffel_clown.rsi/meta.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon", - "directions": 1 - }, - { - "name": "equipped-BACKPACK", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Clothing/Back/Duffels/duffel_eng.rsi/meta.json b/Resources/Textures/Clothing/Back/Duffels/duffel_eng.rsi/meta.json deleted file mode 100644 index e84a910cb3..0000000000 --- a/Resources/Textures/Clothing/Back/Duffels/duffel_eng.rsi/meta.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon", - "directions": 1 - }, - { - "name": "equipped-BACKPACK", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Clothing/Back/Duffels/duffel_med.rsi/meta.json b/Resources/Textures/Clothing/Back/Duffels/duffel_med.rsi/meta.json deleted file mode 100644 index e84a910cb3..0000000000 --- a/Resources/Textures/Clothing/Back/Duffels/duffel_med.rsi/meta.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon", - "directions": 1 - }, - { - "name": "equipped-BACKPACK", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Clothing/Back/Duffels/duffel_sec.rsi/meta.json b/Resources/Textures/Clothing/Back/Duffels/duffel_sec.rsi/meta.json deleted file mode 100644 index e84a910cb3..0000000000 --- a/Resources/Textures/Clothing/Back/Duffels/duffel_sec.rsi/meta.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon", - "directions": 1 - }, - { - "name": "equipped-BACKPACK", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Clothing/Back/Duffels/duffel_syn.rsi/meta.json b/Resources/Textures/Clothing/Back/Duffels/duffel_syn.rsi/meta.json deleted file mode 100644 index e84a910cb3..0000000000 --- a/Resources/Textures/Clothing/Back/Duffels/duffel_syn.rsi/meta.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon", - "directions": 1 - }, - { - "name": "equipped-BACKPACK", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Clothing/Back/Duffels/duffel_eng.rsi/equipped-BACKPACK.png b/Resources/Textures/Clothing/Back/Duffels/engineering.rsi/equipped-BACKPACK.png similarity index 100% rename from Resources/Textures/Clothing/Back/Duffels/duffel_eng.rsi/equipped-BACKPACK.png rename to Resources/Textures/Clothing/Back/Duffels/engineering.rsi/equipped-BACKPACK.png diff --git a/Resources/Textures/Clothing/Back/Duffels/duffel_eng.rsi/icon.png b/Resources/Textures/Clothing/Back/Duffels/engineering.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Back/Duffels/duffel_eng.rsi/icon.png rename to Resources/Textures/Clothing/Back/Duffels/engineering.rsi/icon.png diff --git a/Resources/Textures/Clothing/Back/Duffels/duffel_eng.rsi/inhand-left.png b/Resources/Textures/Clothing/Back/Duffels/engineering.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Back/Duffels/duffel_eng.rsi/inhand-left.png rename to Resources/Textures/Clothing/Back/Duffels/engineering.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Back/Duffels/duffel_eng.rsi/inhand-right.png b/Resources/Textures/Clothing/Back/Duffels/engineering.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Back/Duffels/duffel_eng.rsi/inhand-right.png rename to Resources/Textures/Clothing/Back/Duffels/engineering.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Back/Duffels/engineering.rsi/meta.json b/Resources/Textures/Clothing/Back/Duffels/engineering.rsi/meta.json new file mode 100644 index 0000000000..89236692cc --- /dev/null +++ b/Resources/Textures/Clothing/Back/Duffels/engineering.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Back/Duffels/duffel_med.rsi/equipped-BACKPACK.png b/Resources/Textures/Clothing/Back/Duffels/medical.rsi/equipped-BACKPACK.png similarity index 100% rename from Resources/Textures/Clothing/Back/Duffels/duffel_med.rsi/equipped-BACKPACK.png rename to Resources/Textures/Clothing/Back/Duffels/medical.rsi/equipped-BACKPACK.png diff --git a/Resources/Textures/Clothing/Back/Duffels/duffel_med.rsi/icon.png b/Resources/Textures/Clothing/Back/Duffels/medical.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Back/Duffels/duffel_med.rsi/icon.png rename to Resources/Textures/Clothing/Back/Duffels/medical.rsi/icon.png diff --git a/Resources/Textures/Clothing/Back/Duffels/duffel_med.rsi/inhand-left.png b/Resources/Textures/Clothing/Back/Duffels/medical.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Back/Duffels/duffel_med.rsi/inhand-left.png rename to Resources/Textures/Clothing/Back/Duffels/medical.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Back/Duffels/duffel_med.rsi/inhand-right.png b/Resources/Textures/Clothing/Back/Duffels/medical.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Back/Duffels/duffel_med.rsi/inhand-right.png rename to Resources/Textures/Clothing/Back/Duffels/medical.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Back/Duffels/medical.rsi/meta.json b/Resources/Textures/Clothing/Back/Duffels/medical.rsi/meta.json new file mode 100644 index 0000000000..89236692cc --- /dev/null +++ b/Resources/Textures/Clothing/Back/Duffels/medical.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Back/Duffels/duffel_sec.rsi/equipped-BACKPACK.png b/Resources/Textures/Clothing/Back/Duffels/security.rsi/equipped-BACKPACK.png similarity index 100% rename from Resources/Textures/Clothing/Back/Duffels/duffel_sec.rsi/equipped-BACKPACK.png rename to Resources/Textures/Clothing/Back/Duffels/security.rsi/equipped-BACKPACK.png diff --git a/Resources/Textures/Clothing/Back/Duffels/duffel_sec.rsi/icon.png b/Resources/Textures/Clothing/Back/Duffels/security.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Back/Duffels/duffel_sec.rsi/icon.png rename to Resources/Textures/Clothing/Back/Duffels/security.rsi/icon.png diff --git a/Resources/Textures/Clothing/Back/Duffels/duffel_sec.rsi/inhand-left.png b/Resources/Textures/Clothing/Back/Duffels/security.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Back/Duffels/duffel_sec.rsi/inhand-left.png rename to Resources/Textures/Clothing/Back/Duffels/security.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Back/Duffels/duffel_sec.rsi/inhand-right.png b/Resources/Textures/Clothing/Back/Duffels/security.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Back/Duffels/duffel_sec.rsi/inhand-right.png rename to Resources/Textures/Clothing/Back/Duffels/security.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Back/Duffels/security.rsi/meta.json b/Resources/Textures/Clothing/Back/Duffels/security.rsi/meta.json new file mode 100644 index 0000000000..89236692cc --- /dev/null +++ b/Resources/Textures/Clothing/Back/Duffels/security.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Back/Duffels/duffel_syn.rsi/equipped-BACKPACK.png b/Resources/Textures/Clothing/Back/Duffels/syndicate.rsi/equipped-BACKPACK.png similarity index 100% rename from Resources/Textures/Clothing/Back/Duffels/duffel_syn.rsi/equipped-BACKPACK.png rename to Resources/Textures/Clothing/Back/Duffels/syndicate.rsi/equipped-BACKPACK.png diff --git a/Resources/Textures/Clothing/Back/Duffels/duffel_syn.rsi/icon.png b/Resources/Textures/Clothing/Back/Duffels/syndicate.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Back/Duffels/duffel_syn.rsi/icon.png rename to Resources/Textures/Clothing/Back/Duffels/syndicate.rsi/icon.png diff --git a/Resources/Textures/Clothing/Back/Duffels/duffel_syn.rsi/inhand-left.png b/Resources/Textures/Clothing/Back/Duffels/syndicate.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Back/Duffels/duffel_syn.rsi/inhand-left.png rename to Resources/Textures/Clothing/Back/Duffels/syndicate.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Back/Duffels/duffel_syn.rsi/inhand-right.png b/Resources/Textures/Clothing/Back/Duffels/syndicate.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Back/Duffels/duffel_syn.rsi/inhand-right.png rename to Resources/Textures/Clothing/Back/Duffels/syndicate.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Back/Duffels/syndicate.rsi/meta.json b/Resources/Textures/Clothing/Back/Duffels/syndicate.rsi/meta.json new file mode 100644 index 0000000000..89236692cc --- /dev/null +++ b/Resources/Textures/Clothing/Back/Duffels/syndicate.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Back/Satchels/satchel_captain.rsi/equipped-BACKPACK.png b/Resources/Textures/Clothing/Back/Satchels/captain.rsi/equipped-BACKPACK.png similarity index 100% rename from Resources/Textures/Clothing/Back/Satchels/satchel_captain.rsi/equipped-BACKPACK.png rename to Resources/Textures/Clothing/Back/Satchels/captain.rsi/equipped-BACKPACK.png diff --git a/Resources/Textures/Clothing/Back/Satchels/satchel_captain.rsi/icon.png b/Resources/Textures/Clothing/Back/Satchels/captain.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Back/Satchels/satchel_captain.rsi/icon.png rename to Resources/Textures/Clothing/Back/Satchels/captain.rsi/icon.png diff --git a/Resources/Textures/Clothing/Back/Satchels/satchel_captain.rsi/inhand-left.png b/Resources/Textures/Clothing/Back/Satchels/captain.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Back/Satchels/satchel_captain.rsi/inhand-left.png rename to Resources/Textures/Clothing/Back/Satchels/captain.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Back/Satchels/satchel_captain.rsi/inhand-right.png b/Resources/Textures/Clothing/Back/Satchels/captain.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Back/Satchels/satchel_captain.rsi/inhand-right.png rename to Resources/Textures/Clothing/Back/Satchels/captain.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Back/Satchels/captain.rsi/meta.json b/Resources/Textures/Clothing/Back/Satchels/captain.rsi/meta.json new file mode 100644 index 0000000000..89236692cc --- /dev/null +++ b/Resources/Textures/Clothing/Back/Satchels/captain.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Back/Satchels/satchel_chemistry.rsi/equipped-BACKPACK.png b/Resources/Textures/Clothing/Back/Satchels/chemistry.rsi/equipped-BACKPACK.png similarity index 100% rename from Resources/Textures/Clothing/Back/Satchels/satchel_chemistry.rsi/equipped-BACKPACK.png rename to Resources/Textures/Clothing/Back/Satchels/chemistry.rsi/equipped-BACKPACK.png diff --git a/Resources/Textures/Clothing/Back/Satchels/satchel_chemistry.rsi/icon.png b/Resources/Textures/Clothing/Back/Satchels/chemistry.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Back/Satchels/satchel_chemistry.rsi/icon.png rename to Resources/Textures/Clothing/Back/Satchels/chemistry.rsi/icon.png diff --git a/Resources/Textures/Clothing/Back/Satchels/satchel_chemistry.rsi/inhand-left.png b/Resources/Textures/Clothing/Back/Satchels/chemistry.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Back/Satchels/satchel_chemistry.rsi/inhand-left.png rename to Resources/Textures/Clothing/Back/Satchels/chemistry.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Back/Satchels/satchel_chemistry.rsi/inhand-right.png b/Resources/Textures/Clothing/Back/Satchels/chemistry.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Back/Satchels/satchel_chemistry.rsi/inhand-right.png rename to Resources/Textures/Clothing/Back/Satchels/chemistry.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Back/Satchels/chemistry.rsi/meta.json b/Resources/Textures/Clothing/Back/Satchels/chemistry.rsi/meta.json new file mode 100644 index 0000000000..89236692cc --- /dev/null +++ b/Resources/Textures/Clothing/Back/Satchels/chemistry.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Back/Satchels/satchel_engineering.rsi/equipped-BACKPACK.png b/Resources/Textures/Clothing/Back/Satchels/engineering.rsi/equipped-BACKPACK.png similarity index 100% rename from Resources/Textures/Clothing/Back/Satchels/satchel_engineering.rsi/equipped-BACKPACK.png rename to Resources/Textures/Clothing/Back/Satchels/engineering.rsi/equipped-BACKPACK.png diff --git a/Resources/Textures/Clothing/Back/Satchels/satchel_engineering.rsi/icon.png b/Resources/Textures/Clothing/Back/Satchels/engineering.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Back/Satchels/satchel_engineering.rsi/icon.png rename to Resources/Textures/Clothing/Back/Satchels/engineering.rsi/icon.png diff --git a/Resources/Textures/Clothing/Back/Satchels/satchel_engineering.rsi/inhand-left.png b/Resources/Textures/Clothing/Back/Satchels/engineering.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Back/Satchels/satchel_engineering.rsi/inhand-left.png rename to Resources/Textures/Clothing/Back/Satchels/engineering.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Back/Satchels/satchel_engineering.rsi/inhand-right.png b/Resources/Textures/Clothing/Back/Satchels/engineering.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Back/Satchels/satchel_engineering.rsi/inhand-right.png rename to Resources/Textures/Clothing/Back/Satchels/engineering.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Back/Satchels/engineering.rsi/meta.json b/Resources/Textures/Clothing/Back/Satchels/engineering.rsi/meta.json new file mode 100644 index 0000000000..89236692cc --- /dev/null +++ b/Resources/Textures/Clothing/Back/Satchels/engineering.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Back/Satchels/satchel_hydroponics.rsi/equipped-BACKPACK.png b/Resources/Textures/Clothing/Back/Satchels/hydroponics.rsi/equipped-BACKPACK.png similarity index 100% rename from Resources/Textures/Clothing/Back/Satchels/satchel_hydroponics.rsi/equipped-BACKPACK.png rename to Resources/Textures/Clothing/Back/Satchels/hydroponics.rsi/equipped-BACKPACK.png diff --git a/Resources/Textures/Clothing/Back/Satchels/satchel_hydroponics.rsi/icon.png b/Resources/Textures/Clothing/Back/Satchels/hydroponics.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Back/Satchels/satchel_hydroponics.rsi/icon.png rename to Resources/Textures/Clothing/Back/Satchels/hydroponics.rsi/icon.png diff --git a/Resources/Textures/Clothing/Back/Satchels/satchel_hydroponics.rsi/inhand-left.png b/Resources/Textures/Clothing/Back/Satchels/hydroponics.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Back/Satchels/satchel_hydroponics.rsi/inhand-left.png rename to Resources/Textures/Clothing/Back/Satchels/hydroponics.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Back/Satchels/satchel_hydroponics.rsi/inhand-right.png b/Resources/Textures/Clothing/Back/Satchels/hydroponics.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Back/Satchels/satchel_hydroponics.rsi/inhand-right.png rename to Resources/Textures/Clothing/Back/Satchels/hydroponics.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Back/Satchels/hydroponics.rsi/meta.json b/Resources/Textures/Clothing/Back/Satchels/hydroponics.rsi/meta.json new file mode 100644 index 0000000000..89236692cc --- /dev/null +++ b/Resources/Textures/Clothing/Back/Satchels/hydroponics.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Back/Satchels/satchel_medical.rsi/equipped-BACKPACK.png b/Resources/Textures/Clothing/Back/Satchels/medical.rsi/equipped-BACKPACK.png similarity index 100% rename from Resources/Textures/Clothing/Back/Satchels/satchel_medical.rsi/equipped-BACKPACK.png rename to Resources/Textures/Clothing/Back/Satchels/medical.rsi/equipped-BACKPACK.png diff --git a/Resources/Textures/Clothing/Back/Satchels/satchel_medical.rsi/icon.png b/Resources/Textures/Clothing/Back/Satchels/medical.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Back/Satchels/satchel_medical.rsi/icon.png rename to Resources/Textures/Clothing/Back/Satchels/medical.rsi/icon.png diff --git a/Resources/Textures/Clothing/Back/Satchels/satchel_medical.rsi/inhand-left.png b/Resources/Textures/Clothing/Back/Satchels/medical.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Back/Satchels/satchel_medical.rsi/inhand-left.png rename to Resources/Textures/Clothing/Back/Satchels/medical.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Back/Satchels/satchel_medical.rsi/inhand-right.png b/Resources/Textures/Clothing/Back/Satchels/medical.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Back/Satchels/satchel_medical.rsi/inhand-right.png rename to Resources/Textures/Clothing/Back/Satchels/medical.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Back/Satchels/medical.rsi/meta.json b/Resources/Textures/Clothing/Back/Satchels/medical.rsi/meta.json new file mode 100644 index 0000000000..89236692cc --- /dev/null +++ b/Resources/Textures/Clothing/Back/Satchels/medical.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Back/Satchels/satchel.rsi/meta.json b/Resources/Textures/Clothing/Back/Satchels/satchel.rsi/meta.json index e84a910cb3..89236692cc 100644 --- a/Resources/Textures/Clothing/Back/Satchels/satchel.rsi/meta.json +++ b/Resources/Textures/Clothing/Back/Satchels/satchel.rsi/meta.json @@ -1,27 +1,27 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", - "size": { - "x": 32, - "y": 32 + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 }, - "states": [ - { - "name": "icon", - "directions": 1 - }, - { - "name": "equipped-BACKPACK", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Clothing/Back/Satchels/satchel_captain.rsi/meta.json b/Resources/Textures/Clothing/Back/Satchels/satchel_captain.rsi/meta.json deleted file mode 100644 index e84a910cb3..0000000000 --- a/Resources/Textures/Clothing/Back/Satchels/satchel_captain.rsi/meta.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon", - "directions": 1 - }, - { - "name": "equipped-BACKPACK", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Clothing/Back/Satchels/satchel_chemistry.rsi/meta.json b/Resources/Textures/Clothing/Back/Satchels/satchel_chemistry.rsi/meta.json deleted file mode 100644 index e84a910cb3..0000000000 --- a/Resources/Textures/Clothing/Back/Satchels/satchel_chemistry.rsi/meta.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon", - "directions": 1 - }, - { - "name": "equipped-BACKPACK", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Clothing/Back/Satchels/satchel_engineering.rsi/meta.json b/Resources/Textures/Clothing/Back/Satchels/satchel_engineering.rsi/meta.json deleted file mode 100644 index e84a910cb3..0000000000 --- a/Resources/Textures/Clothing/Back/Satchels/satchel_engineering.rsi/meta.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon", - "directions": 1 - }, - { - "name": "equipped-BACKPACK", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Clothing/Back/Satchels/satchel_hydroponics.rsi/meta.json b/Resources/Textures/Clothing/Back/Satchels/satchel_hydroponics.rsi/meta.json deleted file mode 100644 index e84a910cb3..0000000000 --- a/Resources/Textures/Clothing/Back/Satchels/satchel_hydroponics.rsi/meta.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon", - "directions": 1 - }, - { - "name": "equipped-BACKPACK", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Clothing/Back/Satchels/satchel_medical.rsi/meta.json b/Resources/Textures/Clothing/Back/Satchels/satchel_medical.rsi/meta.json deleted file mode 100644 index e84a910cb3..0000000000 --- a/Resources/Textures/Clothing/Back/Satchels/satchel_medical.rsi/meta.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon", - "directions": 1 - }, - { - "name": "equipped-BACKPACK", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Clothing/Back/Satchels/satchel_science.rsi/meta.json b/Resources/Textures/Clothing/Back/Satchels/satchel_science.rsi/meta.json deleted file mode 100644 index e84a910cb3..0000000000 --- a/Resources/Textures/Clothing/Back/Satchels/satchel_science.rsi/meta.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon", - "directions": 1 - }, - { - "name": "equipped-BACKPACK", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Clothing/Back/Satchels/satchel_security.rsi/meta.json b/Resources/Textures/Clothing/Back/Satchels/satchel_security.rsi/meta.json deleted file mode 100644 index e84a910cb3..0000000000 --- a/Resources/Textures/Clothing/Back/Satchels/satchel_security.rsi/meta.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon", - "directions": 1 - }, - { - "name": "equipped-BACKPACK", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Clothing/Back/Satchels/satchel_science.rsi/equipped-BACKPACK.png b/Resources/Textures/Clothing/Back/Satchels/science.rsi/equipped-BACKPACK.png similarity index 100% rename from Resources/Textures/Clothing/Back/Satchels/satchel_science.rsi/equipped-BACKPACK.png rename to Resources/Textures/Clothing/Back/Satchels/science.rsi/equipped-BACKPACK.png diff --git a/Resources/Textures/Clothing/Back/Satchels/satchel_science.rsi/icon.png b/Resources/Textures/Clothing/Back/Satchels/science.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Back/Satchels/satchel_science.rsi/icon.png rename to Resources/Textures/Clothing/Back/Satchels/science.rsi/icon.png diff --git a/Resources/Textures/Clothing/Back/Satchels/satchel_science.rsi/inhand-left.png b/Resources/Textures/Clothing/Back/Satchels/science.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Back/Satchels/satchel_science.rsi/inhand-left.png rename to Resources/Textures/Clothing/Back/Satchels/science.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Back/Satchels/satchel_science.rsi/inhand-right.png b/Resources/Textures/Clothing/Back/Satchels/science.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Back/Satchels/satchel_science.rsi/inhand-right.png rename to Resources/Textures/Clothing/Back/Satchels/science.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Back/Satchels/science.rsi/meta.json b/Resources/Textures/Clothing/Back/Satchels/science.rsi/meta.json new file mode 100644 index 0000000000..89236692cc --- /dev/null +++ b/Resources/Textures/Clothing/Back/Satchels/science.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Back/Satchels/satchel_security.rsi/equipped-BACKPACK.png b/Resources/Textures/Clothing/Back/Satchels/security.rsi/equipped-BACKPACK.png similarity index 100% rename from Resources/Textures/Clothing/Back/Satchels/satchel_security.rsi/equipped-BACKPACK.png rename to Resources/Textures/Clothing/Back/Satchels/security.rsi/equipped-BACKPACK.png diff --git a/Resources/Textures/Clothing/Back/Satchels/satchel_security.rsi/icon.png b/Resources/Textures/Clothing/Back/Satchels/security.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Back/Satchels/satchel_security.rsi/icon.png rename to Resources/Textures/Clothing/Back/Satchels/security.rsi/icon.png diff --git a/Resources/Textures/Clothing/Back/Satchels/satchel_security.rsi/inhand-left.png b/Resources/Textures/Clothing/Back/Satchels/security.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Back/Satchels/satchel_security.rsi/inhand-left.png rename to Resources/Textures/Clothing/Back/Satchels/security.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Back/Satchels/satchel_security.rsi/inhand-right.png b/Resources/Textures/Clothing/Back/Satchels/security.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Back/Satchels/satchel_security.rsi/inhand-right.png rename to Resources/Textures/Clothing/Back/Satchels/security.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Back/Satchels/security.rsi/meta.json b/Resources/Textures/Clothing/Back/Satchels/security.rsi/meta.json new file mode 100644 index 0000000000..89236692cc --- /dev/null +++ b/Resources/Textures/Clothing/Back/Satchels/security.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Belt/assault.rsi/meta.json b/Resources/Textures/Clothing/Belt/assault.rsi/meta.json index 6fd2d07a08..49dac66974 100644 --- a/Resources/Textures/Clothing/Belt/assault.rsi/meta.json +++ b/Resources/Textures/Clothing/Belt/assault.rsi/meta.json @@ -1,74 +1,27 @@ { "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", "size": { "x": 32, "y": 32 }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", "states": [ + { + "name": "icon", + "directions": 1 + }, { "name": "equipped-BELT", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] + "directions": 4 }, { "name": "inhand-left", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] + "directions": 4 }, { "name": "inhand-right", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "icon", - "directions": 1, - "delays": [ - [ - 1 - ] - ] + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Belt/bandolier.rsi/meta.json b/Resources/Textures/Clothing/Belt/bandolier.rsi/meta.json index 6fd2d07a08..49dac66974 100644 --- a/Resources/Textures/Clothing/Belt/bandolier.rsi/meta.json +++ b/Resources/Textures/Clothing/Belt/bandolier.rsi/meta.json @@ -1,74 +1,27 @@ { "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", "size": { "x": 32, "y": 32 }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", "states": [ + { + "name": "icon", + "directions": 1 + }, { "name": "equipped-BELT", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] + "directions": 4 }, { "name": "inhand-left", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] + "directions": 4 }, { "name": "inhand-right", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "icon", - "directions": 1, - "delays": [ - [ - 1 - ] - ] + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Belt/belt_icon_overlay.rsi/meta.json b/Resources/Textures/Clothing/Belt/belt_icon_overlay.rsi/meta.json index 5f411866b4..bf73608815 100644 --- a/Resources/Textures/Clothing/Belt/belt_icon_overlay.rsi/meta.json +++ b/Resources/Textures/Clothing/Belt/belt_icon_overlay.rsi/meta.json @@ -1,11 +1,11 @@ { "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/dc89ef0239830774bd3d9d7d6c8da2856da2b869", "size": { "x": 32, "y": 32 }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/dc89ef0239830774bd3d9d7d6c8da2856da2b869", "states": [ { "name": "crowbar", diff --git a/Resources/Textures/Clothing/Belt/belt_mob_overlay.rsi/meta.json b/Resources/Textures/Clothing/Belt/belt_mob_overlay.rsi/meta.json index a6ea5838f7..cdfd58956c 100644 --- a/Resources/Textures/Clothing/Belt/belt_mob_overlay.rsi/meta.json +++ b/Resources/Textures/Clothing/Belt/belt_mob_overlay.rsi/meta.json @@ -1,11 +1,11 @@ { "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/dc89ef0239830774bd3d9d7d6c8da2856da2b869", "size": { "x": 32, "y": 32 }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/dc89ef0239830774bd3d9d7d6c8da2856da2b869", "states": [ { "name": "baton", diff --git a/Resources/Textures/Clothing/Belt/ce.rsi/meta.json b/Resources/Textures/Clothing/Belt/ce.rsi/meta.json index 6fd2d07a08..49dac66974 100644 --- a/Resources/Textures/Clothing/Belt/ce.rsi/meta.json +++ b/Resources/Textures/Clothing/Belt/ce.rsi/meta.json @@ -1,74 +1,27 @@ { "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", "size": { "x": 32, "y": 32 }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", "states": [ + { + "name": "icon", + "directions": 1 + }, { "name": "equipped-BELT", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] + "directions": 4 }, { "name": "inhand-left", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] + "directions": 4 }, { "name": "inhand-right", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "icon", - "directions": 1, - "delays": [ - [ - 1 - ] - ] + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Belt/champion.rsi/meta.json b/Resources/Textures/Clothing/Belt/champion.rsi/meta.json index 6fd2d07a08..49dac66974 100644 --- a/Resources/Textures/Clothing/Belt/champion.rsi/meta.json +++ b/Resources/Textures/Clothing/Belt/champion.rsi/meta.json @@ -1,74 +1,27 @@ { "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", "size": { "x": 32, "y": 32 }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", "states": [ + { + "name": "icon", + "directions": 1 + }, { "name": "equipped-BELT", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] + "directions": 4 }, { "name": "inhand-left", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] + "directions": 4 }, { "name": "inhand-right", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "icon", - "directions": 1, - "delays": [ - [ - 1 - ] - ] + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Belt/holster.rsi/meta.json b/Resources/Textures/Clothing/Belt/holster.rsi/meta.json index 6fd2d07a08..49dac66974 100644 --- a/Resources/Textures/Clothing/Belt/holster.rsi/meta.json +++ b/Resources/Textures/Clothing/Belt/holster.rsi/meta.json @@ -1,74 +1,27 @@ { "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", "size": { "x": 32, "y": 32 }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", "states": [ + { + "name": "icon", + "directions": 1 + }, { "name": "equipped-BELT", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] + "directions": 4 }, { "name": "inhand-left", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] + "directions": 4 }, { "name": "inhand-right", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "icon", - "directions": 1, - "delays": [ - [ - 1 - ] - ] + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Belt/janitor.rsi/meta.json b/Resources/Textures/Clothing/Belt/janitor.rsi/meta.json index 6fd2d07a08..49dac66974 100644 --- a/Resources/Textures/Clothing/Belt/janitor.rsi/meta.json +++ b/Resources/Textures/Clothing/Belt/janitor.rsi/meta.json @@ -1,74 +1,27 @@ { "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", "size": { "x": 32, "y": 32 }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", "states": [ + { + "name": "icon", + "directions": 1 + }, { "name": "equipped-BELT", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] + "directions": 4 }, { "name": "inhand-left", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] + "directions": 4 }, { "name": "inhand-right", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "icon", - "directions": 1, - "delays": [ - [ - 1 - ] - ] + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Belt/medical.rsi/meta.json b/Resources/Textures/Clothing/Belt/medical.rsi/meta.json index 6fd2d07a08..49dac66974 100644 --- a/Resources/Textures/Clothing/Belt/medical.rsi/meta.json +++ b/Resources/Textures/Clothing/Belt/medical.rsi/meta.json @@ -1,74 +1,27 @@ { "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", "size": { "x": 32, "y": 32 }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", "states": [ + { + "name": "icon", + "directions": 1 + }, { "name": "equipped-BELT", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] + "directions": 4 }, { "name": "inhand-left", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] + "directions": 4 }, { "name": "inhand-right", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "icon", - "directions": 1, - "delays": [ - [ - 1 - ] - ] + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Belt/militarywebbing.rsi/meta.json b/Resources/Textures/Clothing/Belt/militarywebbing.rsi/meta.json index 6fd2d07a08..49dac66974 100644 --- a/Resources/Textures/Clothing/Belt/militarywebbing.rsi/meta.json +++ b/Resources/Textures/Clothing/Belt/militarywebbing.rsi/meta.json @@ -1,74 +1,27 @@ { "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", "size": { "x": 32, "y": 32 }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", "states": [ + { + "name": "icon", + "directions": 1 + }, { "name": "equipped-BELT", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] + "directions": 4 }, { "name": "inhand-left", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] + "directions": 4 }, { "name": "inhand-right", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "icon", - "directions": 1, - "delays": [ - [ - 1 - ] - ] + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Belt/security.rsi/meta.json b/Resources/Textures/Clothing/Belt/security.rsi/meta.json index 6fd2d07a08..49dac66974 100644 --- a/Resources/Textures/Clothing/Belt/security.rsi/meta.json +++ b/Resources/Textures/Clothing/Belt/security.rsi/meta.json @@ -1,74 +1,27 @@ { "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", "size": { "x": 32, "y": 32 }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", "states": [ + { + "name": "icon", + "directions": 1 + }, { "name": "equipped-BELT", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] + "directions": 4 }, { "name": "inhand-left", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] + "directions": 4 }, { "name": "inhand-right", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "icon", - "directions": 1, - "delays": [ - [ - 1 - ] - ] + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Belt/securitywebbing.rsi/meta.json b/Resources/Textures/Clothing/Belt/securitywebbing.rsi/meta.json index 6fd2d07a08..49dac66974 100644 --- a/Resources/Textures/Clothing/Belt/securitywebbing.rsi/meta.json +++ b/Resources/Textures/Clothing/Belt/securitywebbing.rsi/meta.json @@ -1,74 +1,27 @@ { "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", "size": { "x": 32, "y": 32 }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", "states": [ + { + "name": "icon", + "directions": 1 + }, { "name": "equipped-BELT", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] + "directions": 4 }, { "name": "inhand-left", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] + "directions": 4 }, { "name": "inhand-right", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "icon", - "directions": 1, - "delays": [ - [ - 1 - ] - ] + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Belt/sheath.rsi/meta.json b/Resources/Textures/Clothing/Belt/sheath.rsi/meta.json index f2beb8d38f..fa6033a032 100644 --- a/Resources/Textures/Clothing/Belt/sheath.rsi/meta.json +++ b/Resources/Textures/Clothing/Belt/sheath.rsi/meta.json @@ -1,65 +1,65 @@ { "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", "size": { "x": 32, "y": 32 }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", "states": [ { - "name": "sheath-equipped-BELT", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 + "name": "sheath-equipped-BELT", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] ] - ] }, { - "name": "sheath-sabre-equipped-BELT", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 + "name": "sheath-sabre-equipped-BELT", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] ] - ] }, { - "name": "sheath-sabre", - "directions": 1, - "delays": [ - [ - 1 + "name": "sheath-sabre", + "directions": 1, + "delays": [ + [ + 1 + ] ] - ] }, { - "name": "sheath", - "directions": 1, - "delays": [ - [ - 1 + "name": "sheath", + "directions": 1, + "delays": [ + [ + 1 + ] ] - ] } ] } diff --git a/Resources/Textures/Clothing/Belt/suspenders.rsi/meta.json b/Resources/Textures/Clothing/Belt/suspenders.rsi/meta.json index 6fd2d07a08..49dac66974 100644 --- a/Resources/Textures/Clothing/Belt/suspenders.rsi/meta.json +++ b/Resources/Textures/Clothing/Belt/suspenders.rsi/meta.json @@ -1,74 +1,27 @@ { "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", "size": { "x": 32, "y": 32 }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", "states": [ + { + "name": "icon", + "directions": 1 + }, { "name": "equipped-BELT", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] + "directions": 4 }, { "name": "inhand-left", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] + "directions": 4 }, { "name": "inhand-right", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "icon", - "directions": 1, - "delays": [ - [ - 1 - ] - ] + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Belt/utility.rsi/meta.json b/Resources/Textures/Clothing/Belt/utility.rsi/meta.json index d1facf554c..49dac66974 100644 --- a/Resources/Textures/Clothing/Belt/utility.rsi/meta.json +++ b/Resources/Textures/Clothing/Belt/utility.rsi/meta.json @@ -1,38 +1,27 @@ { "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", "size": { "x": 32, "y": 32 }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", "states": [ { - "name": "equipped-BELT", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] + "name": "icon", + "directions": 1 }, { - "name": "icon", - "directions": 1, - "delays": [ - [ - 1 - ] - ] + "name": "equipped-BELT", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Ears/Headsets/base.rsi/cypherkey.png b/Resources/Textures/Clothing/Ears/Headsets/base.rsi/cypherkey.png deleted file mode 100644 index 89d59318c53d1e9afcf2e12eddbca4160768e41a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 279 zcmV+y0qFjTP)I+S(J?OeL7gC}M)MCV`N7 zuS0!oTCWJ`94O9iGdwbjr1I6+bl%tlh)fy-Nyr1D*JFeEq4FjtO!YoE=3?iivDTUM+me>^R3haua zKNJP(g$CGTm}ree>qk6>h*HCTB4(bjcNb@002ovPDHLkV1nwpb%p={ diff --git a/Resources/Textures/Clothing/Ears/Headsets/base.rsi/meta.json b/Resources/Textures/Clothing/Ears/Headsets/base.rsi/meta.json index 466d4dc4b4..3ced4137a7 100644 --- a/Resources/Textures/Clothing/Ears/Headsets/base.rsi/meta.json +++ b/Resources/Textures/Clothing/Ears/Headsets/base.rsi/meta.json @@ -1,47 +1,19 @@ { - "version": 1, - "size": { - "x": 32, - "y": 32 + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/f8f4aeda930fcd0805ca4cc76d9bc9412a5b3428", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/blob/f8f4aeda930fcd0805ca4cc76d9bc9412a5b3428/icons/obj/radio.dmi", - "states": [ - { - "name": "equipped-EARS", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "cypherkey", - "directions": 1, - "delays": [ - [ - 1.0 - ] - ] - }, - { - "name": "icon", - "directions": 1, - "delays": [ - [ - 1.0 - ] - ] - } - ] + { + "name": "equipped-EARS", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Clothing/Ears/Headsets/cargo.rsi/cargo_cypherkey.png b/Resources/Textures/Clothing/Ears/Headsets/cargo.rsi/cargo_cypherkey.png deleted file mode 100644 index f08d625d21e805bc88fadaf8d75b80091006823c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 317 zcmV-D0mA-?P)uUZqGCT}s0KB{{U1R`g z|J8iEPMyuw4g9ycs)1{mgE9k`%PTu}jGF9Dq2E z8TT?iA7`~)x*wswfoVTu+OJlIa{pCzHtCN>nxX!N^CDqhB&WKfG8Yk*p85vHy$pbI z|6O-B^<0E1y~b$`!|)IU!LR#71Z!<$-NsK~t!;@2tM?)2=4yC6o}1$c%rt32XD3>9 P00000NkvXXu0mjfRt=87 diff --git a/Resources/Textures/Clothing/Ears/Headsets/cargo.rsi/meta.json b/Resources/Textures/Clothing/Ears/Headsets/cargo.rsi/meta.json index 9b1aa9ebc2..3ced4137a7 100644 --- a/Resources/Textures/Clothing/Ears/Headsets/cargo.rsi/meta.json +++ b/Resources/Textures/Clothing/Ears/Headsets/cargo.rsi/meta.json @@ -1,56 +1,19 @@ { - "version": 1, - "size": { - "x": 32, - "y": 32 + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/f8f4aeda930fcd0805ca4cc76d9bc9412a5b3428", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/blob/f8f4aeda930fcd0805ca4cc76d9bc9412a5b3428/icons/obj/radio.dmi", - "states": [ - { - "name": "equipped-EARS", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "cargo_cypherkey", - "directions": 1, - "delays": [ - [ - 1.0 - ] - ] - }, - { - "name": "icon", - "directions": 1, - "delays": [ - [ - 1.0 - ] - ] - }, - { - "name": "qm_cypherkey", - "directions": 1, - "delays": [ - [ - 1.0 - ] - ] - } - ] + { + "name": "equipped-EARS", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Clothing/Ears/Headsets/cargo.rsi/qm_cypherkey.png b/Resources/Textures/Clothing/Ears/Headsets/cargo.rsi/qm_cypherkey.png deleted file mode 100644 index bebcba755de772ea03c4b48be29468469de3a3a6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 307 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJU!E?GAr*6y6C_v{Cy4Yk1sYsp zRNg6d_3G9C%AfP^?eUxzsq-W%E~R{OW4!+CMj%*NcS^3PCous87G3$&KYiJxT+5Su z3${H~v1|~VW^6EF2HS_ozBwA6o)c8mopPpauejT?IeXj6$tiN4d_O8OwVHFIOb#FK z-!B0IKYren;5#36>O;7uw5MpMWz!RZ9lLTg=lo^yob&Tuh)KHuyT`eFVdQ&MBb@0G?2T>;M1& diff --git a/Resources/Textures/Clothing/Ears/Headsets/centcom.rsi/cent_cypherkey.png b/Resources/Textures/Clothing/Ears/Headsets/centcom.rsi/cent_cypherkey.png deleted file mode 100644 index 63448b3cc0c04d895b45f26155f164aed10eaeea..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 286 zcmV+(0pb3MP)ti0HELRl5I-><{pYfrL8vrFxr(( zv*%8H?!hYOsjuNOwJcM6t)USw5)cv9JoN@HD+kDYQ-`cyWk5vWr9Yl-122Dqs;XKd k!e%|>(fjg5B9Wit1mWXV;hg~`82|tP07*qoM6N<$f`8|91poj5 diff --git a/Resources/Textures/Clothing/Ears/Headsets/centcom.rsi/meta.json b/Resources/Textures/Clothing/Ears/Headsets/centcom.rsi/meta.json index 0cf51cc752..b5cb116fa1 100644 --- a/Resources/Textures/Clothing/Ears/Headsets/centcom.rsi/meta.json +++ b/Resources/Textures/Clothing/Ears/Headsets/centcom.rsi/meta.json @@ -1,38 +1,19 @@ { - "version": 1, - "size": { - "x": 32, - "y": 32 + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/f8f4aeda930fcd0805ca4cc76d9bc9412a5b3428", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/blob/f8f4aeda930fcd0805ca4cc76d9bc9412a5b3428/icons/obj/radio.dmi", - "states": [ - { - "name": "cent_cypherkey", - "directions": 1, - "delays": [ - [ - 1.0 - ] - ] - }, - { - "name": "icon", - "directions": 1, - "delays": [ - [ - 1.0 - ] - ] - }, - { - "name": "icon_alt", - "directions": 1, - "delays": [ - [ - 1.0 - ] - ] - } - ] + { + "name": "icon_alt", + "directions": 1 + } + ] } diff --git a/Resources/Textures/Clothing/Ears/Headsets/command.rsi/com_cypherkey.png b/Resources/Textures/Clothing/Ears/Headsets/command.rsi/com_cypherkey.png deleted file mode 100644 index c2201a0ac53e2712dd66d92028e04bd330f4a94d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 282 zcmV+#0p$K*3eG234)V!2z%}^-Zb}>q%-xfB;298Umdy2*SRk z+3jXK|7ZGl!QpT?9RH4I`(YS{*T?s=EUjwwZNSI`>F-02J^Clvqs;BQj-SSiC_JiUo4uat7`~KT~B7!ldb=}s#z!>9+2#5WI gXXE{GI2=F64GSk=ldFk+AOHXW07*qoM6N<$f(to#Qvd(} diff --git a/Resources/Textures/Clothing/Ears/Headsets/command.rsi/hop_cypherkey.png b/Resources/Textures/Clothing/Ears/Headsets/command.rsi/hop_cypherkey.png deleted file mode 100644 index cf75dbf63c650fd8f30950a7ff0bcf14e544f517..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 294 zcmV+>0oneEP)3Z5QaZREVl6k+ibJq5p2AIgUK=nU6Ib@c{5Ar4T}Y?|aIW|Ij70)ar_-|6{2nCJPmy*I{q&FcG_?^cGxzTVGQxz88?qIb`R7?c0f{VA9L{d4Wq0e%8I*&`t;2zBC2`nH!yN#EfS#7tq@u|w>3@EYaGWf?-LQM twVmg7{sh+Ao`|sBOnJ06S0E7hIc`*PT`IekkXHZz002ovPDHLkV1lAJd&~d; diff --git a/Resources/Textures/Clothing/Ears/Headsets/engineering.rsi/eng_cypherkey.png b/Resources/Textures/Clothing/Ears/Headsets/engineering.rsi/eng_cypherkey.png deleted file mode 100644 index cf84b08e3fccdc72f1f773c74bbc25c175118c40..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 296 zcmV+@0oVSCP)kOCi@x5e&%O@$>iIwBBImN2H48@GRO`X`|C{zEv?&{rs>HT z^XEPh!8zAjxAiA*&UHkD-{lYY*5-&rB5%hTWj<&nd|uBZ00000NkvXXu0mjfR^*2_ diff --git a/Resources/Textures/Clothing/Ears/Headsets/medical.rsi/med_cypherkey.png b/Resources/Textures/Clothing/Ears/Headsets/medical.rsi/med_cypherkey.png deleted file mode 100644 index 49952c906cb3641ec9664cd5ce3ee74a39a8bcaa..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 304 zcmV-00nh%4P)9+pg-QO~@|)?5@~! zzJ%~kGQ9UDyn#R<5D2_F8{ZGpG`&5pr)l!idiOQ&`<~qG)2HeT(dWVRp^j4SUehZd}XiMhBf`W_+UsLNE2 zjTV+W7BO}o9LaIX|NR`7fXCzUc>X&R*B6Bl-Pd{3G)`HUuJXm=j__>>!1IT6i2>lk zMP8Prk?X4`XSsEOUcTMF|BBqIz!-9?0)UZAIXhVsLUjGG$+SL%=j2sYnfoM3tn#c1 zNI9b@3hKHBAdX{#V9t8|VkLDh0FY%FfRP@LEvwaySw9@^$1RZOIRMk?Ep59$*#WKf zxCPQQ1z@vzB?#sK-*#ZPv&$R&`;4Nf3&Zfo=d{)+r3U8?{tT5;6RkCm57(T#_QT`x b{5d`WuS;rA9%}?200000NkvXXu0mjfVJnt) diff --git a/Resources/Textures/Clothing/Ears/Headsets/medicalscience.rsi/meta.json b/Resources/Textures/Clothing/Ears/Headsets/medicalscience.rsi/meta.json index 6a326bd301..8fd3c8e332 100644 --- a/Resources/Textures/Clothing/Ears/Headsets/medicalscience.rsi/meta.json +++ b/Resources/Textures/Clothing/Ears/Headsets/medicalscience.rsi/meta.json @@ -1,29 +1,15 @@ { - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/blob/f8f4aeda930fcd0805ca4cc76d9bc9412a5b3428/icons/obj/radio.dmi", - "states": [ - { - "name": "medsci_cypherkey", - "directions": 1, - "delays": [ - [ - 1.0 - ] - ] - }, - { - "name": "icon", - "directions": 1, - "delays": [ - [ - 1.0 - ] - ] - } - ] + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/f8f4aeda930fcd0805ca4cc76d9bc9412a5b3428", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + } + ] } diff --git a/Resources/Textures/Clothing/Ears/Headsets/mining.rsi/meta.json b/Resources/Textures/Clothing/Ears/Headsets/mining.rsi/meta.json index cef2c1df15..8fd3c8e332 100644 --- a/Resources/Textures/Clothing/Ears/Headsets/mining.rsi/meta.json +++ b/Resources/Textures/Clothing/Ears/Headsets/mining.rsi/meta.json @@ -1,29 +1,15 @@ { - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/blob/f8f4aeda930fcd0805ca4cc76d9bc9412a5b3428/icons/obj/radio.dmi", - "states": [ - { - "name": "mine_cypherkey", - "directions": 1, - "delays": [ - [ - 1.0 - ] - ] - }, - { - "name": "icon", - "directions": 1, - "delays": [ - [ - 1.0 - ] - ] - } - ] + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/f8f4aeda930fcd0805ca4cc76d9bc9412a5b3428", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + } + ] } diff --git a/Resources/Textures/Clothing/Ears/Headsets/mining.rsi/mine_cypherkey.png b/Resources/Textures/Clothing/Ears/Headsets/mining.rsi/mine_cypherkey.png deleted file mode 100644 index 479fb8f0aabde321c03f99389c0b1fc6a94728e1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 316 zcmV-C0mJ@@P)bqSM$+};i;DaFnL?J$N=#0 zTl38_cQ#iyaBFi_1Ak!-$_!jHuZL0-NOcG=nZFLqxgO7Bm7c1B%`)d>n^Kk~07;V2 z?-cC2S#6i@MyMw+3=4+gX=PaNpk3wcyBX~&2XqrqU&HAtWx7hw^>;)>rKg@izf%CP z-hI`;@$`Bcr!|VALl6W%?h_HLwT*Qf{{m}mOGJ2|J#*=OdORM_zvB~iMQJ#uFB^9N O0000_BGTXl|bsOKDO_;}Y&Nf19ZM zy>k&7=@|uRG@&=@k|YUmM-)YPUd(VdE!-Mc7XaYq>;WJ*U9D2Cd*}Ii=e5EK09@X7 z0jSp@O`o?WAaYf0fZ5<@0w?1b&x-*zCNQ4|MtY^&8U(@G_x)e*i3nQj(z>Pp16u2v lh_HBUv+J2Hhr{vb_y%1KXD1+!M7{t3002ovPDHLkV1ipNkthHF diff --git a/Resources/Textures/Clothing/Ears/Headsets/science.rsi/meta.json b/Resources/Textures/Clothing/Ears/Headsets/science.rsi/meta.json index 703220a34e..8fd3c8e332 100644 --- a/Resources/Textures/Clothing/Ears/Headsets/science.rsi/meta.json +++ b/Resources/Textures/Clothing/Ears/Headsets/science.rsi/meta.json @@ -1,38 +1,15 @@ { - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/blob/f8f4aeda930fcd0805ca4cc76d9bc9412a5b3428/icons/obj/radio.dmi", - "states": [ - { - "name": "rd_cypherkey", - "directions": 1, - "delays": [ - [ - 1.0 - ] - ] - }, - { - "name": "sci_cypherkey", - "directions": 1, - "delays": [ - [ - 1.0 - ] - ] - }, - { - "name": "icon", - "directions": 1, - "delays": [ - [ - 1.0 - ] - ] - } - ] + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/f8f4aeda930fcd0805ca4cc76d9bc9412a5b3428", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + } + ] } diff --git a/Resources/Textures/Clothing/Ears/Headsets/science.rsi/rd_cypherkey.png b/Resources/Textures/Clothing/Ears/Headsets/science.rsi/rd_cypherkey.png deleted file mode 100644 index 1efdef309c2392bfa56fd5642b3ae167212d5eca..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 300 zcmV+{0n`48P);f|XdL5rg10EG;Y*OAlZvSXx+m01u!b*rgCFNu3i&WC{zl@h6Cg zvuYvkgRql@o%gXjV6j*%mVd`FJ?MGfG5sG!kx{RVsoeLQfKHPU?c~FC+N18bX&`74R9!j*HuJR{nR(mAC}HllB#bZw7eWZ yLnXKKS3PFj)*XuR(P~tK8wZjbDRLMTw`W@u~C}<0000zCY^hP$U_j+K`b3ad{GB6AA}@B z-uEYY;PH4oo`0v|dN7KjOMPDyg;TAjt2{}jwDw~FwugyJ832NJ<I+N0%K;{a=I6g?wZqSN1o>Z#Bod*_6f3tb1x;xlJ5op z=yXOHGphE-qXlr1gTohCyTRH`wFWr%(rOkFRXz0!gkc}J-Tc0;htTqJ01+Wg=T4Gm ry!-`aSvEw3)pEe2`93@z&(CoM3P5N8V-Kr?00000NkvXXu0mjfTswLB diff --git a/Resources/Textures/Clothing/Ears/Headsets/security.rsi/hos_cypherkey.png b/Resources/Textures/Clothing/Ears/Headsets/security.rsi/hos_cypherkey.png deleted file mode 100644 index 007b9ef6d15e82465910f5f296489df5f8ea491e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 288 zcmV+*0pI?KP)53&d3<)RM5$4cL!4(i3fCF#<6ml9-T`qum0yE557BXP3fFSfs zn!cv5@Bh=jLLd+b1pb|#??Gcs*<4#|y=!@iZ=f7kv&;|s-DU~2F!|-^Z5e6Xf)(7*|JngzF`31IN8?m z=?&o<>Tj47DM^vmF+g7J<$#E&>Zxzw(71tSoVO)+pmVpzaa=}G^fFIGaL#qE+xZEc mb3GAZznjuF-$o!1_&KgdxK<-7h(yBy;0$S}c27BNwnlz{yU@8i{AUDpNmLxuO#t3G}Ct7nz1lW5nqY0Yx8BQa*BaZi<=Dm zhB&~)Qv6K3KL?h9G#Pj#z7@H~-`<=0nG7s}a|qOR4M16z%&UrxN%9Q?0E?<((Ip~W z-Vld`Z+HlSLkQOxVBMar0aZ2i8$2xCFSy57FJ3uEjB#+^!G+GbrYMS+b*gGIF!%{# nj3ZU$bewT-?^Y(0`E&dLEkRq0Nnt*500000NkvXXu0mjfLWX*! diff --git a/Resources/Textures/Clothing/Ears/Headsets/service.rsi/meta.json b/Resources/Textures/Clothing/Ears/Headsets/service.rsi/meta.json index 68e0f1ccf5..8fd3c8e332 100644 --- a/Resources/Textures/Clothing/Ears/Headsets/service.rsi/meta.json +++ b/Resources/Textures/Clothing/Ears/Headsets/service.rsi/meta.json @@ -1,29 +1,15 @@ { - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/blob/f8f4aeda930fcd0805ca4cc76d9bc9412a5b3428/icons/obj/radio.dmi", - "states": [ - { - "name": "srv_cypherkey", - "directions": 1, - "delays": [ - [ - 1.0 - ] - ] - }, - { - "name": "icon", - "directions": 1, - "delays": [ - [ - 1.0 - ] - ] - } - ] + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/f8f4aeda930fcd0805ca4cc76d9bc9412a5b3428", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + } + ] } diff --git a/Resources/Textures/Clothing/Ears/Headsets/service.rsi/srv_cypherkey.png b/Resources/Textures/Clothing/Ears/Headsets/service.rsi/srv_cypherkey.png deleted file mode 100644 index 9b3bfb3999f1faf8ae549f0fe2f442360e7623e2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 320 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=hEVFtU5PIEGZrNluVpU7R4&(-dfM ziBWl{)YYq3|0{pazqiM8TBOgDsJyIMX9|in`4696YV$AD|5_alJ+VOPOU5TO-os*`pcurz2i0qpqaCPzi2`O@(d>t3x zr2Y8&Tjy{qx3~ld@bK_RL`3#VN?baxu=3J^xy&HJib`3DoLt!lf8_1$j1A71IBImL zowb=H`{Czj#vRUf^>z({O!xPlym*aq&6;CC69ncTzM-Kg;4!PxWqDX+Lh)C%=0|7*VfwJy?TXf2vlXDD#NYJQ^PepB=9B;Us=nt zJm%?X-8WY*Fhn@ONK$+bukYureGHO;6bbwmZol3yB8zWPKaqg06Lw0`Gz|bnQ7|(G zmQ|~2GMoUw+!*Gkg|+Mf^z>4&ko6M_td%;8td+Xk0q@7d3e1cFVBh+_+JR45zs}Q| zWm!nm^v^o)JU&vx^{Pw&$ciA4S#2QNWvfA1SMvH$=807*qoM6N<$ Ef^{E>w*UYD diff --git a/Resources/Textures/Clothing/Ears/Headsets/servicemedical.rsi/meta.json b/Resources/Textures/Clothing/Ears/Headsets/servicemedical.rsi/meta.json deleted file mode 100644 index ddf4fb5bc1..0000000000 --- a/Resources/Textures/Clothing/Ears/Headsets/servicemedical.rsi/meta.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/blob/f8f4aeda930fcd0805ca4cc76d9bc9412a5b3428/icons/obj/radio.dmi", - "states": [ - { - "name": "srvmed_cypherkey", - "directions": 1, - "delays": [ - [ - 1.0 - ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/Ears/Headsets/servicemedical.rsi/srvmed_cypherkey.png b/Resources/Textures/Clothing/Ears/Headsets/servicemedical.rsi/srvmed_cypherkey.png deleted file mode 100644 index a500d3f07631dde34eef0478fe66fafff87ee2c9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 320 zcmV-G0l)r#{6GdZGZj-_tY=!!Q7l z=Q&kX0kGceI2{inb8!HGx~^~5(=@T(?0ksqQKl#Q1prDZlv2J1{K-$p1J+uR-t5P6 z`33h#lEl|VQDBUjtvkChO;Z=g@t1wpT2X-6S73};S!?Ovp13z(Mj#OQbDRN8pmj-H S-6$LY0000Lh)C%=0|7*VfwJy?TXf2vlXDD#NYJQ^PepB=9B;Us=nt zJm%?X-8WY*Fhn@ONK$+bukYureGHO;6bbwmZol3yB8zWPKaqg06Lw0`Gz|bnQ7|(G zmQ|~2GMoUw+!*Gkg|+Mf^z>4&ko6M_td%;8td+Xk0q@7d3e1cFVBh+_+JR45zs}Q| zWm!nm^v^o)JU&vx^{Pw&$ciA4S#2QNWvfA1SMvH$=807*qoM6N<$ Ef^{E>w*UYD diff --git a/Resources/Textures/Clothing/Ears/Headsets/syndicate.rsi/meta.json b/Resources/Textures/Clothing/Ears/Headsets/syndicate.rsi/meta.json index a8c364b264..666069abd8 100644 --- a/Resources/Textures/Clothing/Ears/Headsets/syndicate.rsi/meta.json +++ b/Resources/Textures/Clothing/Ears/Headsets/syndicate.rsi/meta.json @@ -1,47 +1,19 @@ { - "version": 1, - "size": { - "x": 32, - "y": 32 + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/f8f4aeda930fcd0805ca4cc76d9bc9412a5b3428", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon_alt", + "directions": 1 }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/blob/f8f4aeda930fcd0805ca4cc76d9bc9412a5b3428/icons/obj/radio.dmi", - "states": [ - { - "name": "equipped-EARS", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "syn_cypherkey", - "directions": 1, - "delays": [ - [ - 1.0 - ] - ] - }, - { - "name": "icon_alt", - "directions": 1, - "delays": [ - [ - 1.0 - ] - ] - } - ] + { + "name": "equipped-EARS", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Clothing/Ears/Headsets/syndicate.rsi/syn_cypherkey.png b/Resources/Textures/Clothing/Ears/Headsets/syndicate.rsi/syn_cypherkey.png deleted file mode 100644 index 3c7b82497dab9fa2db3ec8d5d32596f9251a9cf2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 291 zcmV+;0o?wHP)V7P5JjJ@6qM6Zy4))uSDb4L7cO!KA0r3ILAFFx?zS3H?Yi=6V>!_da*8NC2{A}8 ze;7W{Xfzs)|IV)VVApl?dOZw7b*?IL@BMs%`2zD}F&6eU;^R1SzFq-1d0(q-FW}YU zrUHIL9N^8e`6uzU4=jc>74V&SDP@VBbEbSI51hOw#)ya@BE%R0=u`SKTiD#Hy9XX` zSW3Y;N1qb!hXc+z(-WA#VF-Z`!V&|Ec%KrgYRYHsz%$lenWl-H^XpBhs))#@eHJ!9 pLC$%ns(gMNc{bliqtWL*2nh+L85_?`Gd`1M z{6Edu-rincUtdK<#lyqnQhmP?P$gqYkY6x^!?PP{K#r@Yi(`n!#N-5tLWh6}je;Ey z8v<{JI-F4PVNgsE($jb|ON}G^$cs2Vg`hY^gGR<>9*ZV4Zd^REadM;JG8PTx4uhl{ a3=GB#*}ZPg3Em1ckipZ{&t;ucLK6Tl;WoSg literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Eyes/Glasses/beergoggles.rsi/meta.json b/Resources/Textures/Clothing/Eyes/Glasses/beergoggles.rsi/meta.json new file mode 100644 index 0000000000..7a84103841 --- /dev/null +++ b/Resources/Textures/Clothing/Eyes/Glasses/beergoggles.rsi/meta.json @@ -0,0 +1,19 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-EYES", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Eyes/Glasses/gar.rsi/alt-equipped-EYES.png b/Resources/Textures/Clothing/Eyes/Glasses/gar.rsi/alt-equipped-EYES.png new file mode 100644 index 0000000000000000000000000000000000000000..24185c63f96b372a8023adaa1e95027e65b2c8ea GIT binary patch literal 457 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=wN)VzB`&GO$wiq3C7Jno3=9=> zRF50-9Wvlyy>Qd+X!!214u{0gO+gEJ-pVSOnn)^WY{?u;v4I+kQXT zaePa~56cgXe^ur9{+F)@x`UD3)5S5QV$R!H2YH(uL|En3%$~F^uD#J#3PcYkuKMEO zVRliY`+>yVoq9LztrZJyE_=P}kFj)A!!d?nxm)x5ug~($p0EDgJa|9j(`C~SuUr{h zKYi;nf4%^omy@?VUXWBUe@X1)4^RK3|K1-}?-JTj=+Smq&AG$wq}j>5vxnEamNq=u z_hrtf`-j#r>~Goc2r_pILoZ_nqZIQ6CKI*=tQkBG+!rJo#1*)RkbwZJL;JLh zW-AS?+9f?#MAm6U{Mpl;V-$R#``gKnsj(n~4jlAZ%Xs_i9^004*~NKpttEFVHkPaE zT;3C>WYivF&D(yxT66iC57!>n2gYSF3Rc-W>Tl&S`11j%6$orO?{81H?JVy z{LQ3~8A%dl?V|Ii8QszUaK>Ey(R!{0JH#0pzTaiI?_nrp*(GNl}2|!o_JC zhwU^@S#9CTKGdy#x1;4M$DVR!#T2^&DJ7tC2C?Fdn=wUN`s{P^ebfIqom^QX6<+*7 zb-B089HoE8KiA*h#dhXAII(NCdDVC2XD1jz+8GkWV;{c_{KviL zvZ-{9N_B12`qY&-Z}*%uvv0iFW$^WX!`-vjY8eu8%g?G92wf|m1=i&0>gTe~DWM4f D$6--@ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Eyes/Glasses/gar.rsi/equipped-EYES.png b/Resources/Textures/Clothing/Eyes/Glasses/gar.rsi/equipped-EYES.png new file mode 100644 index 0000000000000000000000000000000000000000..9460d0d1096837f5f778e89f12893e4c337937ae GIT binary patch literal 464 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=byXn|B`&GO$wiq3C7Jno3=9=> zRF50-9Wvlyy>Qd+X!!214u{0gO+gEJ-pVSOnn-%By3zF7_`|mAj}2`PGugBMTe58F zK1B)t^kw;xy3PfA4W5Q<%lW^;)mxw>I;Z;hmTAibdVJQ4eP1GAu`I^7KTBZ8?E-n3 z?=!^sfqEHL`Q)lUE5`3;U|{6+ba4!+nDchlM&2d|5eIv-D`yTd@FhMnndX=Lh|hvy zbHL@uxr!Gx+UJ~qQ7y_?^#3k*W813NyMCmbZDHtTe0Hbgo}9mB_p^Kc=hi>l$Goij zonCwGyRYS%ruAhFCMj>)SKNMProrp?+&ibv>i^AO>(|*UX*)<6eRFnkxsoe<`SGOL z`mSXS9ltMmpQ`8XX8I#k$Ck+`#e9Luglz$929E>x1&Ic+1%?c|4#^Br4aXQjwq{@| uh}1oB>px3P)-->Z%Kyw*l;JfehH*=N$Tj7tU%kL6V(@hJb6Mw<&;$TT3$l;^ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Eyes/Glasses/gar.rsi/icon-alt.png b/Resources/Textures/Clothing/Eyes/Glasses/gar.rsi/icon-alt.png new file mode 100644 index 0000000000000000000000000000000000000000..3984ec1f70dfd8bf62970ca332ac7596a6f331de GIT binary patch literal 310 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJzn(6RArY-_ryk^OQ4nyo7fWRP zlJKaP$)fVE*_!0rA6|9tzUPy3FyMgMK{=O0OoAqPcT#5F?kT*Nd_qIAjj`OVP}`O} zrBP=Bs}s|jY|+7Y1H}8o^$!q7Qx0b)#Yv;)LI(1=ioy!rc zh6@F9P4BrXghGlux@-m0ivlY`4wx(rVpyT@a?NRZ;l$v@Tke=`t@YYmtXqiT)uc-iy@VVPi5W1i0>@iUhMmtYAu2uo@8o}G~fP!;eev1dE}wFyC;^g zmc57-GdmHtUHL;W)9e;*uB-dh3R3^v+php|??1l>ymQXih&k_V)CL9wgQu&X%Q~lo FCIIjjeD(kU literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Eyes/Glasses/gar.rsi/icon-super.png b/Resources/Textures/Clothing/Eyes/Glasses/gar.rsi/icon-super.png new file mode 100644 index 0000000000000000000000000000000000000000..9253927162049995c47e6cd9cc9fc32d133fa27f GIT binary patch literal 361 zcmV-v0ha!WP) zZkMV@1JOV<@U4L?&&Mp!$IA?y0n5M{Ct5?+)??Pz7Qf)5m>cMcgp*9=b$VHB z_#RIy@6I>$L_%+pCV@}DB=;Od>UhP)0Y?QGfiwgvGy_lTbgTdXGyw3)vG%&e0Y?QU zd@50<(jru-3~^-yD1gDt*%Sv>DlkDeja-~wktcffvf{I`Rq-GL0J{!bK;fWxumQsa zj4J`=zOZ`*%Wn4}co6kOf|cED$_izgOtDaLU{3{9FU;?riEPDv*f)xs0cZv%x&Bt{ z;@f3FmD@YELcP6awyG zj>L`{{}4!_y3Inq@6+idSxPCc88=s@8v!F=1dM=AAR5k-XgE(U4GN1O35(z)ucf<+ z>jH7EygpFL^Z7LaU}>#R@@NI*XMg4bu->JeLVko-@lW68(zRw%V9~pToAZlxe!^7Kwe*J98`c zK3K}*d)d2v|H3`nSg#1wG=H1QbK&m?pdKJ-{8Bz8_NSfGpUnri9^LTxOR40I8q=n&t=(V&Lk^i`BHkwK2Ts(LDmdKI;Vst0L2APqW}N^ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Eyes/Glasses/gar.rsi/meta.json b/Resources/Textures/Clothing/Eyes/Glasses/gar.rsi/meta.json new file mode 100644 index 0000000000..8f22126d1c --- /dev/null +++ b/Resources/Textures/Clothing/Eyes/Glasses/gar.rsi/meta.json @@ -0,0 +1,59 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "icon-alt", + "directions": 1 + }, + { + "name": "icon-super", + "directions": 1 + }, + { + "name": "equipped-EYES", + "directions": 4 + }, + { + "name": "alt-equipped-EYES", + "directions": 4 + }, + { + "name": "super-equipped-EYES", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "alt-inhand-left", + "directions": 4 + }, + { + "name": "alt-inhand-right", + "directions": 4 + }, + { + "name": "super-inhand-left", + "directions": 4 + }, + { + "name": "super-inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Eyes/Glasses/gar.rsi/super-equipped-EYES.png b/Resources/Textures/Clothing/Eyes/Glasses/gar.rsi/super-equipped-EYES.png new file mode 100644 index 0000000000000000000000000000000000000000..92d3276b3623321524285336ac37db7728ddfa7f GIT binary patch literal 472 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=4OJl#B`&GO$wiq3C7Jno3=9=> zRF50-9WvlyyEr!olcnJ|76n?-P`tACs}&@?(g2ByS495)T}1MN!44vh_D`>eEMq1dbYOx zJl78f_h)i)6fcoKW3FHuqtN%Afq_xj)5S5QV$R!{-du+aL>Qz$#+BXwTsD86k2%+Q zr`%gAd@p!*2z*R6`m15`bWVHyGbio~A*?%kAMc&Yv9&I+VKMhszRjljCoQk8oA33W zvGB#D;;Mb~+Y@IT`rV&o`sS?t?z)ev0&VABA5wIie)jmz=+EEn?l1bmQz2-+JL%Qd zpYvq)aklyTJ-qt%#P?@apQ`iSXa6%@@$iG{hwLBj9byX%8FU?z8KN4FF>GPzWz1ld zV!ps+!nS}lgU5mUfNtC!{liBK5=;PDF^k=QLXc4LpH0%h PsABMR^>bP0l+XkKagD`v literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Eyes/Glasses/gar.rsi/super-inhand-left.png b/Resources/Textures/Clothing/Eyes/Glasses/gar.rsi/super-inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..3afeccddd0df5fc34518ae1c33a53dda10073a9c GIT binary patch literal 209 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=Gdx`!Ln`LHy>*(GNl}2|!o_JC zhwU^@S#9CTKGdy#x1;4M$DVR!#T2^&DJ7tC2C?Fdn=wUN`s{P^ebfIqom^QX6<+*7 zb-B089HoE8KiA*h#dhXAII(NCdDVC2XD1jz+8GkWV;{c_{KviL zvZ-{9N_B12`qY&-Z}*%uvv0iFW$^WX!`-vjY8eu8%g?G92wf|m1=i&0>gTe~DWM4f D$6--@ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Eyes/Glasses/gar.rsi/super-inhand-right.png b/Resources/Textures/Clothing/Eyes/Glasses/gar.rsi/super-inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..f7c8a4501be25d8f773084d1f6ed8f20cd19cf0f GIT binary patch literal 209 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=Gdx`!Ln`LHy>*)RkbwZJL;JLh zW-AS?+9f?#MAm6U{Mpl;V-$R#``gKnsj(n~4jlAZ%Xs_i9^004*~NKpttEFVHkPaE zT;3C>WYivF&D(yxT66iC57!>n2gYSF3Rc-W>Tl&S`11j%6$orO?{81H?JVy z{LQ3~8A%dl?V|Ii8QszUaK>Ey(R!{0JH#0pzTaiI?_nrp zRF7M8H5dr69+*C6wsSR4C;C*`GF_wI|7b&#DZ^v|i7HFHYv1oWCf+BqS+D=gpfJ%+=P?4A*;) z9${c$)c16845^s&c9tR6AqNrG`lh){Hg5jT7wEF-#_}_cHl6LB`rJy#tSi`NPq?-< zaDswISc=2_kogWj4vWlAnq2Yz?R?KnMk&?>tQjH=Vhbc?7OYxTAg4cjk;b7~zW$%m zP3yn$SN`i$d1kz0zuv6OX}8u`pLt(w_nObMhru_bA>JvSLDyk1!xn~KrVC6aTn^k9 zG>8^Bd!JpR_S2?fy_Cqbw6xoIpKgit|Fmn}{wm+NX{i-&jEu8yU)%HjqV?kS$LAJ5 zto-VS)*8>L*m>3)X|Np;v-_JRx ze2p2k{}Zm5QWQS;QC2yk++@Os_l=sFVGAAR$18#jo@A&=Q>)&qyDe!dlb6Mw<&;$UZU`T%e literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Eyes/Glasses/glasses.rsi/inhand-right.png b/Resources/Textures/Clothing/Eyes/Glasses/glasses.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..b02a6b8528882e34c02cf6d49c3e873a49b63708 GIT binary patch literal 191 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=ZJsWUAr*7p-a5#8$bg6Sg3m?Q zIlRWWAIiLCARZRx!yHugw;tbAs;#pz}GF(a>?-z!hA?A3j+YA;AX&;dsKCfI1b@;Em^xMYo6BO7NImyJPc#)7ChnSuZ9bN1ix zzoz_C1!y7=JXog_BwkZl-RJ+>z4iLmRjZ_8?@I`8c3!;h<=1_`J?ieYPdWO@rvLh5 zx7f?t)+SnAN_{KCMUH-dy8d|YCmZ?D_v)U~0oT7OwJf;&O~*6po&Kh4|6X0Vc5BC- zcoom(ZzC01u9p7YAK&ohD$DaZDl4$@VEAnpW_<+<1DV}qBtPkPS$&ui6}6FSlpjBJfo lv-wPvn|YTXaSW-L^Y)fvQL}@@(T~$- zb@>RM*sh@j-$)8^wM9lzA_G6`H-i&=}M|-5vzt;((0hgOuT1(%rE~xzv)cP zed(}|DnJu~;6eP%UfC0$ZI;ZA%DwyY?a$gTf8wjFYI*p(tA9>!UA0PT?)SVGiGd>X zPtPy&PK^{>Xa4Fdkn-ET^wzH6T`NOHj=tElmr)}5P)+R=mAB#SmG4v6_Wt7DaP8cl z@3+?TOb~?Sf}XY@8)> vV2YaC8Z}mh*n3AhuC9Nt=gY%z;O#Gl+43Fj^Zy8M18MVg^>bP0l+XkKM#`Jl literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Eyes/Glasses/meson.rsi/meta.json b/Resources/Textures/Clothing/Eyes/Glasses/meson.rsi/meta.json new file mode 100644 index 0000000000..2a9fd063af --- /dev/null +++ b/Resources/Textures/Clothing/Eyes/Glasses/meson.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-EYES", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Glasses/sunglasses_sec.rsi/equipped-EYES.png b/Resources/Textures/Clothing/Eyes/Glasses/secglasses.rsi/equipped-EYES.png similarity index 100% rename from Resources/Textures/Clothing/Glasses/sunglasses_sec.rsi/equipped-EYES.png rename to Resources/Textures/Clothing/Eyes/Glasses/secglasses.rsi/equipped-EYES.png diff --git a/Resources/Textures/Clothing/Glasses/sunglasses_sec.rsi/icon.png b/Resources/Textures/Clothing/Eyes/Glasses/secglasses.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Glasses/sunglasses_sec.rsi/icon.png rename to Resources/Textures/Clothing/Eyes/Glasses/secglasses.rsi/icon.png diff --git a/Resources/Textures/Clothing/Glasses/sunglasses.rsi/inhand-left.png b/Resources/Textures/Clothing/Eyes/Glasses/secglasses.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Glasses/sunglasses.rsi/inhand-left.png rename to Resources/Textures/Clothing/Eyes/Glasses/secglasses.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Glasses/sunglasses.rsi/inhand-right.png b/Resources/Textures/Clothing/Eyes/Glasses/secglasses.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Glasses/sunglasses.rsi/inhand-right.png rename to Resources/Textures/Clothing/Eyes/Glasses/secglasses.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Eyes/Glasses/secglasses.rsi/meta.json b/Resources/Textures/Clothing/Eyes/Glasses/secglasses.rsi/meta.json new file mode 100644 index 0000000000..2a9fd063af --- /dev/null +++ b/Resources/Textures/Clothing/Eyes/Glasses/secglasses.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-EYES", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Eyes/Glasses/sunglasses.rsi/equipped-EYES.png b/Resources/Textures/Clothing/Eyes/Glasses/sunglasses.rsi/equipped-EYES.png new file mode 100644 index 0000000000000000000000000000000000000000..f72e29ec428d2a53667ebf7ebf9bb92ec1c9e89b GIT binary patch literal 187 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=O`a}}Ar*7p-rC4}$bpA7z_`tQ zhv}t5tFAlFHr>Q%ek?FhU@nV>7t5vUsi`ObasT09_z{s7XT14()bA=gjsO47*6G_C z|4smz2m}rCCAW(9ykeQ-t!a4v^RoHxeJ)>_p4!>5!?t|w*3Z=$;uPc47-_E2A67Y2Ob6Mw<&;$UX)kZe} literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Glasses/sunglasses.rsi/icon.png b/Resources/Textures/Clothing/Eyes/Glasses/sunglasses.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Glasses/sunglasses.rsi/icon.png rename to Resources/Textures/Clothing/Eyes/Glasses/sunglasses.rsi/icon.png diff --git a/Resources/Textures/Clothing/Glasses/sunglasses_sec.rsi/inhand-left.png b/Resources/Textures/Clothing/Eyes/Glasses/sunglasses.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Glasses/sunglasses_sec.rsi/inhand-left.png rename to Resources/Textures/Clothing/Eyes/Glasses/sunglasses.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Glasses/sunglasses_sec.rsi/inhand-right.png b/Resources/Textures/Clothing/Eyes/Glasses/sunglasses.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Glasses/sunglasses_sec.rsi/inhand-right.png rename to Resources/Textures/Clothing/Eyes/Glasses/sunglasses.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Eyes/Glasses/sunglasses.rsi/meta.json b/Resources/Textures/Clothing/Eyes/Glasses/sunglasses.rsi/meta.json new file mode 100644 index 0000000000..2a9fd063af --- /dev/null +++ b/Resources/Textures/Clothing/Eyes/Glasses/sunglasses.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-EYES", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Eyes/Glasses/thermal.rsi/equipped-EYES.png b/Resources/Textures/Clothing/Eyes/Glasses/thermal.rsi/equipped-EYES.png new file mode 100644 index 0000000000000000000000000000000000000000..9bef0a8c05f0ca0e150da1e9b81aebb13b8dadd7 GIT binary patch literal 524 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=1yvytB`&GO$wiq3C7Jno3=9=> zRF7M8H5dr69j}nF@vcztmTUGcLZM@bZhhV_L6f^To+GC)ukuUkvCh+_+)$V*aYbQomVd z3Im?al0?L61)98Q1L z)#F>sdhq7KjZ2(YT=?OrFX4Ca{>(`+c|}Fb9R5u#KDTbBl&-^KhAj-eOf7jQHtF#1 z{C9t4d)|k8(ccUI#O#}Q&3d|_)#1}Q)9TlSZM*xH?^>P|Z}zsRYx2E|CRDSr8yMfN zS#$PGj%DfLb4$XH>{x5(@Z$8}R*(CP;eAXOm`u1FxG!ihz-%B|faSlOKEG4N`?p{J z=Kd?*S5b7>yJPO6-xqG5SG%+QJzJs7|0w@SOK$ya_{4n40aY>v4(UjYnXdl9N2msQpJGL%i!ti=d#Wzp$Py!<<~I) literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Eyes/Glasses/thermal.rsi/icon.png b/Resources/Textures/Clothing/Eyes/Glasses/thermal.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..3fbc30b7e9d5c9602cf284350c7814ee82d9c8ec GIT binary patch literal 199 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnF3?v&v(vJfvl>na**8>L*R8~}^q@;v~hB`Pn zynp}x=FOY`V_b|)js6$M{CCy-Z(uxqdw(oYJ!46bUoeBivm0qZPN1iYV~EDYL0w$@*3aYw28J20gv@xb1_FVDPUrWmc)9n>XTSEY{`*wGJ@BP4Y`g2W{ z@4IJdS4$$NUAC-T6)(0v=IQU!-9o0C?{~LXu3q)Z-*x{E`|_1p%PfD!?BaNAaVzNkM_opU zgBm^@;?~~-AyO{a$J#D)zw?~=-)Xhw?t3cy`g2}!MkH6I6yIl9=FY(2cjgU8R89XJ TA;as_K-xWB{an^LB{Ts51B{c1 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Eyes/Glasses/thermal.rsi/inhand-right.png b/Resources/Textures/Clothing/Eyes/Glasses/thermal.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..4ede078291d212cabdf7a4d5731153a85f0963c1 GIT binary patch literal 325 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEVC3<1aSW-L^Y)gZUvq-Qv5(vN zVoi8@dM9^JHV&WAyO49uUdR4NymLM>y%4l$l5Q?cQFwc)^;u?9W)7>Pko}kc-ZOqE zoOia1sNe;f2?Rgl(_(WE8?3oLJ^$Ojn>Szm+*gzr=`xV)W7BD z7WgIbUuIddqrert>EU)yL*kx>{X1yh{dh-RsxpJvySiOlcf;n zfXIf6JpYn!l?xpXT`Q~zopr06im!bN~PV literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Eyes/Glasses/thermal.rsi/meta.json b/Resources/Textures/Clothing/Eyes/Glasses/thermal.rsi/meta.json new file mode 100644 index 0000000000..2a9fd063af --- /dev/null +++ b/Resources/Textures/Clothing/Eyes/Glasses/thermal.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-EYES", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Eyes/Hud/diag.rsi/equipped-EYES.png b/Resources/Textures/Clothing/Eyes/Hud/diag.rsi/equipped-EYES.png new file mode 100644 index 0000000000000000000000000000000000000000..65d1d2383e1f81a47a5f0423f58f40959592413b GIT binary patch literal 546 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=WmO>&B`&GO$wiq3C7Jno3=9=> zRF50-H5>4-Ua+(~D*h&P;hMNr3R4*0379rkXn1UFd|m$Hc3k&&i&oY;zLKY_irysf z^sDcTo+N4zXS;J!s`j`3s4YBhlU4G5FI1afw5%;=(y9cWC)cF*M;?5!;^>ZwAC?#R zJ>JWfXi44cWnf@T_jGX#shIP2*21jA0TOQit=VdOI}g-0u9`7(=IgBAOr?Rf9Wz~z zhF&{&hILs~@YPeD4mX0&_@pMSF*ZHB_vFGS)Xxwi4*vIq%pjrrg_nM&_?LKkO?} zH{N`<=HsuQDXxJ#OroZ*T&4B1THzN*&Cg43YhOBXic(`nfYYKmKQLw%Pvv@WC}2RcEi%k!Js7{twJ8 Xr(Ii?&eH4wMmmG1tDnm{r-UW|B~j}= literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Eyes/Hud/diag.rsi/icon.png b/Resources/Textures/Clothing/Eyes/Hud/diag.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..a4fa06807c5fdaeeb198dce2565e5c963e4d2ed4 GIT binary patch literal 195 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnF3?v&v(vJfv#Q>iW*8>L*{GVy;;NXywlHwyN zsiC29W~TA`_wS8Ojb_d?4h;>Bd0M>*sF<-N$S;_|;n|HeASb}n#W6%A literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Eyes/Hud/diag.rsi/inhand-left.png b/Resources/Textures/Clothing/Eyes/Hud/diag.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..2f397fc0656d9b295a927f8d53ef8fdff971affa GIT binary patch literal 299 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=pFCY0Ln`LHy=BPP~jw7qA|zL1>cBx%xcl7cIUvPL#LXWt}%V?_~Me*tMY&PgaCv7#PXNNfM$Te znIg-)U$--FFVDPHy=F<#l;w8>tT%t-@t(BAKEC{0#lANi_D4@k-8?I7FHkP#>F-kM zj#(maXRWh2zdtLgG`X$iSH*Qry9PR*th-?k-l! njr)^$cz6Fx1u6G*^>bP0l+XkKD&u~= literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Eyes/Hud/diag.rsi/inhand-right.png b/Resources/Textures/Clothing/Eyes/Hud/diag.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..47c732cd530d16b4eb0fe6c931b0ea77ab74ddb8 GIT binary patch literal 304 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=-#uL%Ln`LHy|tIODM6(5;cDi9 zfZG-grp6Z%Sx?`vZ0$AGJHRq)L!)ZzR94ottj{J)_~HGhx8_-`ke1yEOY@djQb0q1 zpusp%;@a$^JL1l|Z{?mG==U`Ao%=cd-Fa?-A?KGx-+s%#EyiDmqbZKx@#mD_%Bj&m zztmWQSbG?!EFEY%4y417Ry2$0U{rKpLh4ji`D0NCsy0->U_8= t-P{mp?gnu)!(Xr7uH`f{WMJqs+N}KgSwD}Q?vYO*EuOA^F6*2UngBOvf-(RA literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Eyes/Hud/diag.rsi/meta.json b/Resources/Textures/Clothing/Eyes/Hud/diag.rsi/meta.json new file mode 100644 index 0000000000..2a9fd063af --- /dev/null +++ b/Resources/Textures/Clothing/Eyes/Hud/diag.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-EYES", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Eyes/Hud/med.rsi/equipped-EYES.png b/Resources/Textures/Clothing/Eyes/Hud/med.rsi/equipped-EYES.png new file mode 100644 index 0000000000000000000000000000000000000000..63f6e1e018f7aa824955b62b110fa1a57fa393bd GIT binary patch literal 534 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=B~>92B`&GO$wiq3C7Jno3=9=> zRFCiGYB3OCy*eY=OBna~ zNFQz6STmP_fic$8#WAE}&f8gvea#LMZvSuQY?{8JIgTmRdRmq^pavPVww9sqvrm;rY{6MU_8#EeX-jdc_t5Hq1G^Yn^oQx#;9=^MLF+ zz3Fovhds1?`ph{n=IohcchBAVnKM6h>hV{MhYfU$%wKYH7+$;f{n@+n-%@SKmreAh z-%!4_?d(4}4?CvB{p+23wtl~-tGL6&Pu@w|oiT$^igf{NhDZa@B8I32H-ZAsUNU&U zV>qLF^yN#2d%s=l8`hnD*6(ns?!YaXu18jHmA?G__`fQ0+UE3qAq>W|%LLcxoUMMp z&wsgLYU!h;Of3@G#>SuPc6|#B{Z_qurs>%=GjH*eWPjRc#(xZlFSx%bW_0iZMl^$` LtDnm{r-UW|8QiW*8>L*Fg$+j;NXywlHwyN zsiC34uzBLrZ|5|e%R1OzlXGJ7tF3Gi8*youXM!PlVpT8gl!>W*()w#+ov po$50oCow22C@J7j!Ak*V27YGl#eA+t^+2;3JYD@<);T3K0RUY3JNf_s literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Eyes/Hud/med.rsi/inhand-left.png b/Resources/Textures/Clothing/Eyes/Hud/med.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..fbadf2153a773fad6003a5408cdca32683fe620f GIT binary patch literal 300 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=pFLe1Ln`LHy=BPP~jw8?BO2-$9U#wY5{0buH^N!Izz9q&)xWD=tisJN)iaFC)+t zAefO_Z1es0>$U!uw|tNAe5&EUQ?V@Vt>iQn&;7gSy!l#lqqcs7&gnGMwN)UwQ{P{k z37Bf$GL5aASATWOt7ANzUq7x>cX+icPSn-#PWJOz%Ou||*E{lK&Z`jpQ^D)X*9)m! zvHPEQdz;wtjjn+ysgZtl)5R9Pwvv9mdKK3-b%+~4zopr0Ckys+yDRo literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Eyes/Hud/med.rsi/inhand-right.png b/Resources/Textures/Clothing/Eyes/Hud/med.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..17b1f2f33c98f7f2cc113ef125222cc2408bceae GIT binary patch literal 305 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=KRjI=Ln`LHy|tIODM6(5;cDi9 zfZG-grp6a89^~SCs1SB7LQ>kyAd%UdOW2w#iu;VB;>YPfq<^0ItrAi*p*WA@swvPE z5J*2{u;%z{U)x#w+2U%8=bT!7r+uAJum4;XzhD<2;%e;aIqAqJ8~Ga3pY0mUKXrXteLQo$ zx4HMrg3!>gX-j|Z%a5F98TfC?KgQg;^PhEmgP&VL+yEjEytm!mc`&B`&GO$wiq3C7Jno3=9=> zRF50-H5>4-Ua+(~D*h%kGjeZ;V<_7W=Bzu%m_xdJwe!v&xE88w&RaYAl-nDE&;jxPjE<>tR>FZ+hD1bS*34i^#pwxFZK%tT<}mdc^P| zBgY(><5vX^&Sqd>O!ahe45^s&cGkkYLje+Q`*-U&e&(y?;<@o!L8F2(ENXQBAFFXxiIy83qC$^RCv%lnn&$oLx96&?ti7(d#$-nSCXcy~D{Sti)S(U(@!!39}#YFP!(7VGBbq^93doJ_qg# z77V%$gawKV8=~Ja#CUgIKFXNX!~gaDd;6;Y94h~1_o+WVS$6%c(w=ksm)-rkNMqf+ zp8vycC)RzdUa7Nw*2}*PAb(~sO0h3s l&5&sjTTqBspi2IMc;#%TY#IBiZNMmJ@O1TaS?83{1OP?p=05-c literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Eyes/Hud/sec.rsi/icon.png b/Resources/Textures/Clothing/Eyes/Hud/sec.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..124404b5eee103db16bccbef64a2d96ed92dea27 GIT binary patch literal 195 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnF3?v&v(vJfv#Q>iW*8>L*{AWmWaBxUTN%4`C z)X>m4!;tp={d;3mqnQlGp`oE1pPsG;DrPJR@(X5gcy=QV$O-UtaSYLzn4BQNLrZ|5|e%R1OzlXGJ7tF3Gi8*youXM!PlVpT8gl!>W*()w#+ov po$50oCow22C@J7j!Ak*V27YGl#eA+t^+2;3JYD@<);T3K0RZuXJ2L

>$wk(33CW zp(u-X_4$PK<vn?~1~%vpEeUsCe9oDyAod)vWZED$Gv$UoNoF9pB2mf`lUns{L6{Ka~lLM kD=(kDC!vak;lYtJ_agm!y_B}|6o6EFy85}Sb4q9e03V2gp#T5? literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Eyes/Hud/sec.rsi/inhand-right.png b/Resources/Textures/Clothing/Eyes/Hud/sec.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..c04f2b1484434f805b9801467b84ab924e0ec799 GIT binary patch literal 300 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=pFLe1Ln`LHy|tIKIYFfL;cT9S zhg^)>)#)2HU$)#7xXYr^Rjq(qal)lTM!gR?nto2s5PBqjkA2ObDaCq8rMy5BfZ)JX zi@w{=65DnwWW>(sDbiYBw7;m%w#?XbQdzalt(P_1{-z}dis)8xoLWBT)apB@?0=_b z&MKRHMb%sXez4!m&8v^!__j6`qrQO@?8Th0_!~fH`wieUODag&SF`J8$jfP@5}O%bgsT=J7Fw;_ejCjE51GZ re=+48Q#%&4cdzL|H8zF=foWxo)8}`2O?ct<6{N+})z4*}Q$iB}e`|o_ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Eyes/Hud/sec.rsi/meta.json b/Resources/Textures/Clothing/Eyes/Hud/sec.rsi/meta.json new file mode 100644 index 0000000000..2a9fd063af --- /dev/null +++ b/Resources/Textures/Clothing/Eyes/Hud/sec.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-EYES", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Eyes/Misc/eyepatch.rsi/equipped-EYES.png b/Resources/Textures/Clothing/Eyes/Misc/eyepatch.rsi/equipped-EYES.png new file mode 100644 index 0000000000000000000000000000000000000000..7534d4eb56b66178c27f66855eef7cb480b05098 GIT binary patch literal 313 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0J3?w7mbKU|ei2$Dv*8>L*sHv$rIXTJ6$w^8| z0)>qX4Q*^}LJqdN0Xd8%L4Lsu4$p3+0XexM-)+2B!_Zvxh}n~%u!66}jI((dX3v*S+{GVe2DCWL)5S5w zqcb@{!lfaQVWzr+!@Nep*f`19?ga{~IJ_Blb!ODC@>sJP&Nbw6JE$R1aKJ+&n`=RO z{xO$Q$CQ0cRf>m?9T4isL*h>3}*sj1o8+Un}+ z`X?1k07@~I1o;IsI6S+N2IRzfx;TbtOuX6`D0o1D$JtqQN$`Qv;s)je`@# lO+MDq%ZiwDzq9pS;Fj%Y*O+3pWh2lg22WQ%mvv4FO#pPNKmz~( literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Eyes/Misc/eyepatch.rsi/meta.json b/Resources/Textures/Clothing/Eyes/Misc/eyepatch.rsi/meta.json new file mode 100644 index 0000000000..7a84103841 --- /dev/null +++ b/Resources/Textures/Clothing/Eyes/Misc/eyepatch.rsi/meta.json @@ -0,0 +1,19 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-EYES", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Glasses/meson_scanners.rsi/meta.json b/Resources/Textures/Clothing/Glasses/meson_scanners.rsi/meta.json deleted file mode 100644 index 315034e91c..0000000000 --- a/Resources/Textures/Clothing/Glasses/meson_scanners.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "Taken from https://github.com/discordia-space/CEV-Eris at commit 9a3a3a180344460263e8df7ea2565128e07b86b5", "states": [{"name": "equipped-EYES", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "meson", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Glasses/sunglasses.rsi/meta.json b/Resources/Textures/Clothing/Glasses/sunglasses.rsi/meta.json deleted file mode 100644 index 713dbfe673..0000000000 --- a/Resources/Textures/Clothing/Glasses/sunglasses.rsi/meta.json +++ /dev/null @@ -1,74 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/discordia-space/CEV-Eris at commit 9a3a3a180344460263e8df7ea2565128e07b86b5", - "states": [ - { - "name": "equipped-EYES", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "icon", - "directions": 1, - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "inhand-right", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "inhand-left", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/Glasses/sunglasses_sec.rsi/meta.json b/Resources/Textures/Clothing/Glasses/sunglasses_sec.rsi/meta.json deleted file mode 100644 index 6ae92a7ddd..0000000000 --- a/Resources/Textures/Clothing/Glasses/sunglasses_sec.rsi/meta.json +++ /dev/null @@ -1,74 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/vgstation-coders/vgstation13 at commit 125c975f1b3bf9826b37029e9ab5a5f89e975a7e", - "states": [ - { - "name": "equipped-EYES", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "icon", - "directions": 1, - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "inhand-left", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "inhand-right", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/Gloves/black.rsi/meta.json b/Resources/Textures/Clothing/Gloves/black.rsi/meta.json deleted file mode 100644 index 1b711f41bc..0000000000 --- a/Resources/Textures/Clothing/Gloves/black.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/cb5bda251807e38fe5eae6b1def12f0c243b4d0a/icons/inventory/hands/mob.dmi", "states": [{"name": "equipped-HAND", "directions": 4}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Gloves/blue.rsi/meta.json b/Resources/Textures/Clothing/Gloves/blue.rsi/meta.json deleted file mode 100644 index 1b711f41bc..0000000000 --- a/Resources/Textures/Clothing/Gloves/blue.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/cb5bda251807e38fe5eae6b1def12f0c243b4d0a/icons/inventory/hands/mob.dmi", "states": [{"name": "equipped-HAND", "directions": 4}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Gloves/boxing.rsi/meta.json b/Resources/Textures/Clothing/Gloves/boxing.rsi/meta.json deleted file mode 100644 index 2d32e01e74..0000000000 --- a/Resources/Textures/Clothing/Gloves/boxing.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/cb5bda251807e38fe5eae6b1def12f0c243b4d0a/icons/inventory/hands/mob.dmi", "states": [{"name": "equipped-HAND", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Gloves/boxingblue.rsi/meta.json b/Resources/Textures/Clothing/Gloves/boxingblue.rsi/meta.json deleted file mode 100644 index 1b711f41bc..0000000000 --- a/Resources/Textures/Clothing/Gloves/boxingblue.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/cb5bda251807e38fe5eae6b1def12f0c243b4d0a/icons/inventory/hands/mob.dmi", "states": [{"name": "equipped-HAND", "directions": 4}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Gloves/boxinggreen.rsi/meta.json b/Resources/Textures/Clothing/Gloves/boxinggreen.rsi/meta.json deleted file mode 100644 index 1b711f41bc..0000000000 --- a/Resources/Textures/Clothing/Gloves/boxinggreen.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/cb5bda251807e38fe5eae6b1def12f0c243b4d0a/icons/inventory/hands/mob.dmi", "states": [{"name": "equipped-HAND", "directions": 4}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Gloves/boxingyellow.rsi/meta.json b/Resources/Textures/Clothing/Gloves/boxingyellow.rsi/meta.json deleted file mode 100644 index 1b711f41bc..0000000000 --- a/Resources/Textures/Clothing/Gloves/boxingyellow.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/cb5bda251807e38fe5eae6b1def12f0c243b4d0a/icons/inventory/hands/mob.dmi", "states": [{"name": "equipped-HAND", "directions": 4}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Gloves/brown.rsi/meta.json b/Resources/Textures/Clothing/Gloves/brown.rsi/meta.json deleted file mode 100644 index 1b711f41bc..0000000000 --- a/Resources/Textures/Clothing/Gloves/brown.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/cb5bda251807e38fe5eae6b1def12f0c243b4d0a/icons/inventory/hands/mob.dmi", "states": [{"name": "equipped-HAND", "directions": 4}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Gloves/captain.rsi/meta.json b/Resources/Textures/Clothing/Gloves/captain.rsi/meta.json deleted file mode 100644 index 1b711f41bc..0000000000 --- a/Resources/Textures/Clothing/Gloves/captain.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/cb5bda251807e38fe5eae6b1def12f0c243b4d0a/icons/inventory/hands/mob.dmi", "states": [{"name": "equipped-HAND", "directions": 4}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Gloves/gray.rsi/meta.json b/Resources/Textures/Clothing/Gloves/gray.rsi/meta.json deleted file mode 100644 index 1b711f41bc..0000000000 --- a/Resources/Textures/Clothing/Gloves/gray.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/cb5bda251807e38fe5eae6b1def12f0c243b4d0a/icons/inventory/hands/mob.dmi", "states": [{"name": "equipped-HAND", "directions": 4}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Gloves/green.rsi/meta.json b/Resources/Textures/Clothing/Gloves/green.rsi/meta.json deleted file mode 100644 index 1b711f41bc..0000000000 --- a/Resources/Textures/Clothing/Gloves/green.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/cb5bda251807e38fe5eae6b1def12f0c243b4d0a/icons/inventory/hands/mob.dmi", "states": [{"name": "equipped-HAND", "directions": 4}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Gloves/ihscombat.rsi/meta.json b/Resources/Textures/Clothing/Gloves/ihscombat.rsi/meta.json deleted file mode 100644 index 1b711f41bc..0000000000 --- a/Resources/Textures/Clothing/Gloves/ihscombat.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/cb5bda251807e38fe5eae6b1def12f0c243b4d0a/icons/inventory/hands/mob.dmi", "states": [{"name": "equipped-HAND", "directions": 4}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Gloves/latex.rsi/meta.json b/Resources/Textures/Clothing/Gloves/latex.rsi/meta.json deleted file mode 100644 index 1b711f41bc..0000000000 --- a/Resources/Textures/Clothing/Gloves/latex.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/cb5bda251807e38fe5eae6b1def12f0c243b4d0a/icons/inventory/hands/mob.dmi", "states": [{"name": "equipped-HAND", "directions": 4}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Gloves/leather.rsi/meta.json b/Resources/Textures/Clothing/Gloves/leather.rsi/meta.json deleted file mode 100644 index 1b711f41bc..0000000000 --- a/Resources/Textures/Clothing/Gloves/leather.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/cb5bda251807e38fe5eae6b1def12f0c243b4d0a/icons/inventory/hands/mob.dmi", "states": [{"name": "equipped-HAND", "directions": 4}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Gloves/lightbrown.rsi/meta.json b/Resources/Textures/Clothing/Gloves/lightbrown.rsi/meta.json deleted file mode 100644 index 1b711f41bc..0000000000 --- a/Resources/Textures/Clothing/Gloves/lightbrown.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/cb5bda251807e38fe5eae6b1def12f0c243b4d0a/icons/inventory/hands/mob.dmi", "states": [{"name": "equipped-HAND", "directions": 4}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Gloves/orange.rsi/meta.json b/Resources/Textures/Clothing/Gloves/orange.rsi/meta.json deleted file mode 100644 index 1b711f41bc..0000000000 --- a/Resources/Textures/Clothing/Gloves/orange.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/cb5bda251807e38fe5eae6b1def12f0c243b4d0a/icons/inventory/hands/mob.dmi", "states": [{"name": "equipped-HAND", "directions": 4}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Gloves/powerglove.rsi/meta.json b/Resources/Textures/Clothing/Gloves/powerglove.rsi/meta.json deleted file mode 100644 index 2d32e01e74..0000000000 --- a/Resources/Textures/Clothing/Gloves/powerglove.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/cb5bda251807e38fe5eae6b1def12f0c243b4d0a/icons/inventory/hands/mob.dmi", "states": [{"name": "equipped-HAND", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Gloves/powerglove_active.rsi/meta.json b/Resources/Textures/Clothing/Gloves/powerglove_active.rsi/meta.json deleted file mode 100644 index 1b711f41bc..0000000000 --- a/Resources/Textures/Clothing/Gloves/powerglove_active.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/cb5bda251807e38fe5eae6b1def12f0c243b4d0a/icons/inventory/hands/mob.dmi", "states": [{"name": "equipped-HAND", "directions": 4}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Gloves/purple.rsi/meta.json b/Resources/Textures/Clothing/Gloves/purple.rsi/meta.json deleted file mode 100644 index 1b711f41bc..0000000000 --- a/Resources/Textures/Clothing/Gloves/purple.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/cb5bda251807e38fe5eae6b1def12f0c243b4d0a/icons/inventory/hands/mob.dmi", "states": [{"name": "equipped-HAND", "directions": 4}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Gloves/red.rsi/meta.json b/Resources/Textures/Clothing/Gloves/red.rsi/meta.json deleted file mode 100644 index 1b711f41bc..0000000000 --- a/Resources/Textures/Clothing/Gloves/red.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/cb5bda251807e38fe5eae6b1def12f0c243b4d0a/icons/inventory/hands/mob.dmi", "states": [{"name": "equipped-HAND", "directions": 4}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Gloves/robohands.rsi/meta.json b/Resources/Textures/Clothing/Gloves/robohands.rsi/meta.json deleted file mode 100644 index 1b711f41bc..0000000000 --- a/Resources/Textures/Clothing/Gloves/robohands.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/cb5bda251807e38fe5eae6b1def12f0c243b4d0a/icons/inventory/hands/mob.dmi", "states": [{"name": "equipped-HAND", "directions": 4}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Gloves/s_ninja.rsi/meta.json b/Resources/Textures/Clothing/Gloves/s_ninja.rsi/meta.json deleted file mode 100644 index 2d32e01e74..0000000000 --- a/Resources/Textures/Clothing/Gloves/s_ninja.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/cb5bda251807e38fe5eae6b1def12f0c243b4d0a/icons/inventory/hands/mob.dmi", "states": [{"name": "equipped-HAND", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Gloves/s_ninjak.rsi/meta.json b/Resources/Textures/Clothing/Gloves/s_ninjak.rsi/meta.json deleted file mode 100644 index 1b711f41bc..0000000000 --- a/Resources/Textures/Clothing/Gloves/s_ninjak.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/cb5bda251807e38fe5eae6b1def12f0c243b4d0a/icons/inventory/hands/mob.dmi", "states": [{"name": "equipped-HAND", "directions": 4}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Gloves/s_ninjan.rsi/meta.json b/Resources/Textures/Clothing/Gloves/s_ninjan.rsi/meta.json deleted file mode 100644 index 1b711f41bc..0000000000 --- a/Resources/Textures/Clothing/Gloves/s_ninjan.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/cb5bda251807e38fe5eae6b1def12f0c243b4d0a/icons/inventory/hands/mob.dmi", "states": [{"name": "equipped-HAND", "directions": 4}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Gloves/white.rsi/meta.json b/Resources/Textures/Clothing/Gloves/white.rsi/meta.json deleted file mode 100644 index 6d12c5653a..0000000000 --- a/Resources/Textures/Clothing/Gloves/white.rsi/meta.json +++ /dev/null @@ -1,60 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/discordia-space/CEV-Eris/raw/cb5bda251807e38fe5eae6b1def12f0c243b4d0a/icons/inventory/hands/mob.dmi", - "states": [ - { - "name": "equipped-HAND", - "directions": 4 - }, - { - "name": "icon", - "directions": 1, - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "inhand-left", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "inhand-right", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/Gloves/yellow.rsi/meta.json b/Resources/Textures/Clothing/Gloves/yellow.rsi/meta.json deleted file mode 100644 index 1b711f41bc..0000000000 --- a/Resources/Textures/Clothing/Gloves/yellow.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/cb5bda251807e38fe5eae6b1def12f0c243b4d0a/icons/inventory/hands/mob.dmi", "states": [{"name": "equipped-HAND", "directions": 4}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Gloves/black.rsi/equipped-HAND.png b/Resources/Textures/Clothing/Hands/Gloves/Color/black.rsi/equipped-HAND.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/black.rsi/equipped-HAND.png rename to Resources/Textures/Clothing/Hands/Gloves/Color/black.rsi/equipped-HAND.png diff --git a/Resources/Textures/Clothing/Gloves/black.rsi/icon.png b/Resources/Textures/Clothing/Hands/Gloves/Color/black.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/black.rsi/icon.png rename to Resources/Textures/Clothing/Hands/Gloves/Color/black.rsi/icon.png diff --git a/Resources/Textures/Clothing/Gloves/black.rsi/inhand-left.png b/Resources/Textures/Clothing/Hands/Gloves/Color/black.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/black.rsi/inhand-left.png rename to Resources/Textures/Clothing/Hands/Gloves/Color/black.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Gloves/black.rsi/inhand-right.png b/Resources/Textures/Clothing/Hands/Gloves/Color/black.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/black.rsi/inhand-right.png rename to Resources/Textures/Clothing/Hands/Gloves/Color/black.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/black.rsi/meta.json b/Resources/Textures/Clothing/Hands/Gloves/Color/black.rsi/meta.json new file mode 100644 index 0000000000..b9bb10dcb9 --- /dev/null +++ b/Resources/Textures/Clothing/Hands/Gloves/Color/black.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HAND", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Gloves/blue.rsi/equipped-HAND.png b/Resources/Textures/Clothing/Hands/Gloves/Color/blue.rsi/equipped-HAND.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/blue.rsi/equipped-HAND.png rename to Resources/Textures/Clothing/Hands/Gloves/Color/blue.rsi/equipped-HAND.png diff --git a/Resources/Textures/Clothing/Gloves/blue.rsi/icon.png b/Resources/Textures/Clothing/Hands/Gloves/Color/blue.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/blue.rsi/icon.png rename to Resources/Textures/Clothing/Hands/Gloves/Color/blue.rsi/icon.png diff --git a/Resources/Textures/Clothing/Gloves/blue.rsi/inhand-left.png b/Resources/Textures/Clothing/Hands/Gloves/Color/blue.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/blue.rsi/inhand-left.png rename to Resources/Textures/Clothing/Hands/Gloves/Color/blue.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Gloves/blue.rsi/inhand-right.png b/Resources/Textures/Clothing/Hands/Gloves/Color/blue.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/blue.rsi/inhand-right.png rename to Resources/Textures/Clothing/Hands/Gloves/Color/blue.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/blue.rsi/meta.json b/Resources/Textures/Clothing/Hands/Gloves/Color/blue.rsi/meta.json new file mode 100644 index 0000000000..b9bb10dcb9 --- /dev/null +++ b/Resources/Textures/Clothing/Hands/Gloves/Color/blue.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HAND", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Gloves/brown.rsi/equipped-HAND.png b/Resources/Textures/Clothing/Hands/Gloves/Color/brown.rsi/equipped-HAND.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/brown.rsi/equipped-HAND.png rename to Resources/Textures/Clothing/Hands/Gloves/Color/brown.rsi/equipped-HAND.png diff --git a/Resources/Textures/Clothing/Gloves/brown.rsi/icon.png b/Resources/Textures/Clothing/Hands/Gloves/Color/brown.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/brown.rsi/icon.png rename to Resources/Textures/Clothing/Hands/Gloves/Color/brown.rsi/icon.png diff --git a/Resources/Textures/Clothing/Gloves/brown.rsi/inhand-left.png b/Resources/Textures/Clothing/Hands/Gloves/Color/brown.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/brown.rsi/inhand-left.png rename to Resources/Textures/Clothing/Hands/Gloves/Color/brown.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Gloves/brown.rsi/inhand-right.png b/Resources/Textures/Clothing/Hands/Gloves/Color/brown.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/brown.rsi/inhand-right.png rename to Resources/Textures/Clothing/Hands/Gloves/Color/brown.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/brown.rsi/meta.json b/Resources/Textures/Clothing/Hands/Gloves/Color/brown.rsi/meta.json new file mode 100644 index 0000000000..b9bb10dcb9 --- /dev/null +++ b/Resources/Textures/Clothing/Hands/Gloves/Color/brown.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HAND", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Gloves/gray.rsi/equipped-HAND.png b/Resources/Textures/Clothing/Hands/Gloves/Color/gray.rsi/equipped-HAND.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/gray.rsi/equipped-HAND.png rename to Resources/Textures/Clothing/Hands/Gloves/Color/gray.rsi/equipped-HAND.png diff --git a/Resources/Textures/Clothing/Gloves/gray.rsi/icon.png b/Resources/Textures/Clothing/Hands/Gloves/Color/gray.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/gray.rsi/icon.png rename to Resources/Textures/Clothing/Hands/Gloves/Color/gray.rsi/icon.png diff --git a/Resources/Textures/Clothing/Gloves/gray.rsi/inhand-left.png b/Resources/Textures/Clothing/Hands/Gloves/Color/gray.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/gray.rsi/inhand-left.png rename to Resources/Textures/Clothing/Hands/Gloves/Color/gray.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Gloves/gray.rsi/inhand-right.png b/Resources/Textures/Clothing/Hands/Gloves/Color/gray.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/gray.rsi/inhand-right.png rename to Resources/Textures/Clothing/Hands/Gloves/Color/gray.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/gray.rsi/meta.json b/Resources/Textures/Clothing/Hands/Gloves/Color/gray.rsi/meta.json new file mode 100644 index 0000000000..b9bb10dcb9 --- /dev/null +++ b/Resources/Textures/Clothing/Hands/Gloves/Color/gray.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HAND", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Gloves/green.rsi/equipped-HAND.png b/Resources/Textures/Clothing/Hands/Gloves/Color/green.rsi/equipped-HAND.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/green.rsi/equipped-HAND.png rename to Resources/Textures/Clothing/Hands/Gloves/Color/green.rsi/equipped-HAND.png diff --git a/Resources/Textures/Clothing/Gloves/green.rsi/icon.png b/Resources/Textures/Clothing/Hands/Gloves/Color/green.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/green.rsi/icon.png rename to Resources/Textures/Clothing/Hands/Gloves/Color/green.rsi/icon.png diff --git a/Resources/Textures/Clothing/Gloves/green.rsi/inhand-left.png b/Resources/Textures/Clothing/Hands/Gloves/Color/green.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/green.rsi/inhand-left.png rename to Resources/Textures/Clothing/Hands/Gloves/Color/green.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Gloves/green.rsi/inhand-right.png b/Resources/Textures/Clothing/Hands/Gloves/Color/green.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/green.rsi/inhand-right.png rename to Resources/Textures/Clothing/Hands/Gloves/Color/green.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/green.rsi/meta.json b/Resources/Textures/Clothing/Hands/Gloves/Color/green.rsi/meta.json new file mode 100644 index 0000000000..b9bb10dcb9 --- /dev/null +++ b/Resources/Textures/Clothing/Hands/Gloves/Color/green.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HAND", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Gloves/lightbrown.rsi/equipped-HAND.png b/Resources/Textures/Clothing/Hands/Gloves/Color/lightbrown.rsi/equipped-HAND.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/lightbrown.rsi/equipped-HAND.png rename to Resources/Textures/Clothing/Hands/Gloves/Color/lightbrown.rsi/equipped-HAND.png diff --git a/Resources/Textures/Clothing/Gloves/lightbrown.rsi/icon.png b/Resources/Textures/Clothing/Hands/Gloves/Color/lightbrown.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/lightbrown.rsi/icon.png rename to Resources/Textures/Clothing/Hands/Gloves/Color/lightbrown.rsi/icon.png diff --git a/Resources/Textures/Clothing/Gloves/lightbrown.rsi/inhand-left.png b/Resources/Textures/Clothing/Hands/Gloves/Color/lightbrown.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/lightbrown.rsi/inhand-left.png rename to Resources/Textures/Clothing/Hands/Gloves/Color/lightbrown.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Gloves/lightbrown.rsi/inhand-right.png b/Resources/Textures/Clothing/Hands/Gloves/Color/lightbrown.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/lightbrown.rsi/inhand-right.png rename to Resources/Textures/Clothing/Hands/Gloves/Color/lightbrown.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/lightbrown.rsi/meta.json b/Resources/Textures/Clothing/Hands/Gloves/Color/lightbrown.rsi/meta.json new file mode 100644 index 0000000000..b9bb10dcb9 --- /dev/null +++ b/Resources/Textures/Clothing/Hands/Gloves/Color/lightbrown.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HAND", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Gloves/orange.rsi/equipped-HAND.png b/Resources/Textures/Clothing/Hands/Gloves/Color/orange.rsi/equipped-HAND.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/orange.rsi/equipped-HAND.png rename to Resources/Textures/Clothing/Hands/Gloves/Color/orange.rsi/equipped-HAND.png diff --git a/Resources/Textures/Clothing/Gloves/orange.rsi/icon.png b/Resources/Textures/Clothing/Hands/Gloves/Color/orange.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/orange.rsi/icon.png rename to Resources/Textures/Clothing/Hands/Gloves/Color/orange.rsi/icon.png diff --git a/Resources/Textures/Clothing/Gloves/orange.rsi/inhand-left.png b/Resources/Textures/Clothing/Hands/Gloves/Color/orange.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/orange.rsi/inhand-left.png rename to Resources/Textures/Clothing/Hands/Gloves/Color/orange.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Gloves/orange.rsi/inhand-right.png b/Resources/Textures/Clothing/Hands/Gloves/Color/orange.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/orange.rsi/inhand-right.png rename to Resources/Textures/Clothing/Hands/Gloves/Color/orange.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/orange.rsi/meta.json b/Resources/Textures/Clothing/Hands/Gloves/Color/orange.rsi/meta.json new file mode 100644 index 0000000000..b9bb10dcb9 --- /dev/null +++ b/Resources/Textures/Clothing/Hands/Gloves/Color/orange.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HAND", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Gloves/purple.rsi/equipped-HAND.png b/Resources/Textures/Clothing/Hands/Gloves/Color/purple.rsi/equipped-HAND.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/purple.rsi/equipped-HAND.png rename to Resources/Textures/Clothing/Hands/Gloves/Color/purple.rsi/equipped-HAND.png diff --git a/Resources/Textures/Clothing/Gloves/purple.rsi/icon.png b/Resources/Textures/Clothing/Hands/Gloves/Color/purple.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/purple.rsi/icon.png rename to Resources/Textures/Clothing/Hands/Gloves/Color/purple.rsi/icon.png diff --git a/Resources/Textures/Clothing/Gloves/purple.rsi/inhand-left.png b/Resources/Textures/Clothing/Hands/Gloves/Color/purple.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/purple.rsi/inhand-left.png rename to Resources/Textures/Clothing/Hands/Gloves/Color/purple.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Gloves/purple.rsi/inhand-right.png b/Resources/Textures/Clothing/Hands/Gloves/Color/purple.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/purple.rsi/inhand-right.png rename to Resources/Textures/Clothing/Hands/Gloves/Color/purple.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/purple.rsi/meta.json b/Resources/Textures/Clothing/Hands/Gloves/Color/purple.rsi/meta.json new file mode 100644 index 0000000000..b9bb10dcb9 --- /dev/null +++ b/Resources/Textures/Clothing/Hands/Gloves/Color/purple.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HAND", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Gloves/red.rsi/equipped-HAND.png b/Resources/Textures/Clothing/Hands/Gloves/Color/red.rsi/equipped-HAND.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/red.rsi/equipped-HAND.png rename to Resources/Textures/Clothing/Hands/Gloves/Color/red.rsi/equipped-HAND.png diff --git a/Resources/Textures/Clothing/Gloves/red.rsi/icon.png b/Resources/Textures/Clothing/Hands/Gloves/Color/red.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/red.rsi/icon.png rename to Resources/Textures/Clothing/Hands/Gloves/Color/red.rsi/icon.png diff --git a/Resources/Textures/Clothing/Gloves/red.rsi/inhand-left.png b/Resources/Textures/Clothing/Hands/Gloves/Color/red.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/red.rsi/inhand-left.png rename to Resources/Textures/Clothing/Hands/Gloves/Color/red.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Gloves/red.rsi/inhand-right.png b/Resources/Textures/Clothing/Hands/Gloves/Color/red.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/red.rsi/inhand-right.png rename to Resources/Textures/Clothing/Hands/Gloves/Color/red.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/red.rsi/meta.json b/Resources/Textures/Clothing/Hands/Gloves/Color/red.rsi/meta.json new file mode 100644 index 0000000000..b9bb10dcb9 --- /dev/null +++ b/Resources/Textures/Clothing/Hands/Gloves/Color/red.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HAND", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Gloves/white.rsi/equipped-HAND.png b/Resources/Textures/Clothing/Hands/Gloves/Color/white.rsi/equipped-HAND.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/white.rsi/equipped-HAND.png rename to Resources/Textures/Clothing/Hands/Gloves/Color/white.rsi/equipped-HAND.png diff --git a/Resources/Textures/Clothing/Gloves/white.rsi/icon.png b/Resources/Textures/Clothing/Hands/Gloves/Color/white.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/white.rsi/icon.png rename to Resources/Textures/Clothing/Hands/Gloves/Color/white.rsi/icon.png diff --git a/Resources/Textures/Clothing/Gloves/white.rsi/inhand-left.png b/Resources/Textures/Clothing/Hands/Gloves/Color/white.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/white.rsi/inhand-left.png rename to Resources/Textures/Clothing/Hands/Gloves/Color/white.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Gloves/white.rsi/inhand-right.png b/Resources/Textures/Clothing/Hands/Gloves/Color/white.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/white.rsi/inhand-right.png rename to Resources/Textures/Clothing/Hands/Gloves/Color/white.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/white.rsi/meta.json b/Resources/Textures/Clothing/Hands/Gloves/Color/white.rsi/meta.json new file mode 100644 index 0000000000..b9bb10dcb9 --- /dev/null +++ b/Resources/Textures/Clothing/Hands/Gloves/Color/white.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HAND", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Gloves/yellow.rsi/equipped-HAND.png b/Resources/Textures/Clothing/Hands/Gloves/Color/yellow.rsi/equipped-HAND.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/yellow.rsi/equipped-HAND.png rename to Resources/Textures/Clothing/Hands/Gloves/Color/yellow.rsi/equipped-HAND.png diff --git a/Resources/Textures/Clothing/Gloves/yellow.rsi/icon.png b/Resources/Textures/Clothing/Hands/Gloves/Color/yellow.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/yellow.rsi/icon.png rename to Resources/Textures/Clothing/Hands/Gloves/Color/yellow.rsi/icon.png diff --git a/Resources/Textures/Clothing/Gloves/yellow.rsi/inhand-left.png b/Resources/Textures/Clothing/Hands/Gloves/Color/yellow.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/yellow.rsi/inhand-left.png rename to Resources/Textures/Clothing/Hands/Gloves/Color/yellow.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Gloves/yellow.rsi/inhand-right.png b/Resources/Textures/Clothing/Hands/Gloves/Color/yellow.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/yellow.rsi/inhand-right.png rename to Resources/Textures/Clothing/Hands/Gloves/Color/yellow.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/yellow.rsi/meta.json b/Resources/Textures/Clothing/Hands/Gloves/Color/yellow.rsi/meta.json new file mode 100644 index 0000000000..b9bb10dcb9 --- /dev/null +++ b/Resources/Textures/Clothing/Hands/Gloves/Color/yellow.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HAND", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Gloves/boxingblue.rsi/equipped-HAND.png b/Resources/Textures/Clothing/Hands/Gloves/boxing.rsi/blue-equipped-HAND.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/boxingblue.rsi/equipped-HAND.png rename to Resources/Textures/Clothing/Hands/Gloves/boxing.rsi/blue-equipped-HAND.png diff --git a/Resources/Textures/Clothing/Gloves/boxingblue.rsi/inhand-left.png b/Resources/Textures/Clothing/Hands/Gloves/boxing.rsi/blue-inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/boxingblue.rsi/inhand-left.png rename to Resources/Textures/Clothing/Hands/Gloves/boxing.rsi/blue-inhand-left.png diff --git a/Resources/Textures/Clothing/Gloves/boxingblue.rsi/inhand-right.png b/Resources/Textures/Clothing/Hands/Gloves/boxing.rsi/blue-inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/boxingblue.rsi/inhand-right.png rename to Resources/Textures/Clothing/Hands/Gloves/boxing.rsi/blue-inhand-right.png diff --git a/Resources/Textures/Clothing/Gloves/boxing.rsi/equipped-HAND.png b/Resources/Textures/Clothing/Hands/Gloves/boxing.rsi/equipped-HAND.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/boxing.rsi/equipped-HAND.png rename to Resources/Textures/Clothing/Hands/Gloves/boxing.rsi/equipped-HAND.png diff --git a/Resources/Textures/Clothing/Gloves/boxinggreen.rsi/equipped-HAND.png b/Resources/Textures/Clothing/Hands/Gloves/boxing.rsi/green-equipped-HAND.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/boxinggreen.rsi/equipped-HAND.png rename to Resources/Textures/Clothing/Hands/Gloves/boxing.rsi/green-equipped-HAND.png diff --git a/Resources/Textures/Clothing/Gloves/boxinggreen.rsi/inhand-left.png b/Resources/Textures/Clothing/Hands/Gloves/boxing.rsi/green-inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/boxinggreen.rsi/inhand-left.png rename to Resources/Textures/Clothing/Hands/Gloves/boxing.rsi/green-inhand-left.png diff --git a/Resources/Textures/Clothing/Gloves/boxinggreen.rsi/inhand-right.png b/Resources/Textures/Clothing/Hands/Gloves/boxing.rsi/green-inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/boxinggreen.rsi/inhand-right.png rename to Resources/Textures/Clothing/Hands/Gloves/boxing.rsi/green-inhand-right.png diff --git a/Resources/Textures/Clothing/Gloves/boxingblue.rsi/icon.png b/Resources/Textures/Clothing/Hands/Gloves/boxing.rsi/icon-blue.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/boxingblue.rsi/icon.png rename to Resources/Textures/Clothing/Hands/Gloves/boxing.rsi/icon-blue.png diff --git a/Resources/Textures/Clothing/Gloves/boxinggreen.rsi/icon.png b/Resources/Textures/Clothing/Hands/Gloves/boxing.rsi/icon-green.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/boxinggreen.rsi/icon.png rename to Resources/Textures/Clothing/Hands/Gloves/boxing.rsi/icon-green.png diff --git a/Resources/Textures/Clothing/Gloves/boxingyellow.rsi/icon.png b/Resources/Textures/Clothing/Hands/Gloves/boxing.rsi/icon-yellow.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/boxingyellow.rsi/icon.png rename to Resources/Textures/Clothing/Hands/Gloves/boxing.rsi/icon-yellow.png diff --git a/Resources/Textures/Clothing/Gloves/boxing.rsi/icon.png b/Resources/Textures/Clothing/Hands/Gloves/boxing.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/boxing.rsi/icon.png rename to Resources/Textures/Clothing/Hands/Gloves/boxing.rsi/icon.png diff --git a/Resources/Textures/Clothing/Gloves/boxing.rsi/inhand-left.png b/Resources/Textures/Clothing/Hands/Gloves/boxing.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/boxing.rsi/inhand-left.png rename to Resources/Textures/Clothing/Hands/Gloves/boxing.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Gloves/boxing.rsi/inhand-right.png b/Resources/Textures/Clothing/Hands/Gloves/boxing.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/boxing.rsi/inhand-right.png rename to Resources/Textures/Clothing/Hands/Gloves/boxing.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Hands/Gloves/boxing.rsi/meta.json b/Resources/Textures/Clothing/Hands/Gloves/boxing.rsi/meta.json new file mode 100644 index 0000000000..1c1f4260c3 --- /dev/null +++ b/Resources/Textures/Clothing/Hands/Gloves/boxing.rsi/meta.json @@ -0,0 +1,75 @@ +{ + "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", + "directions": 1 + }, + { + "name": "icon-blue", + "directions": 1 + }, + { + "name": "icon-green", + "directions": 1 + }, + { + "name": "icon-yellow", + "directions": 1 + }, + { + "name": "equipped-HAND", + "directions": 4 + }, + { + "name": "blue-equipped-HAND", + "directions": 4 + }, + { + "name": "green-equipped-HAND", + "directions": 4 + }, + { + "name": "yellow-equipped-HAND", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "blue-inhand-left", + "directions": 4 + }, + { + "name": "blue-inhand-right", + "directions": 4 + }, + { + "name": "green-inhand-left", + "directions": 4 + }, + { + "name": "green-inhand-right", + "directions": 4 + }, + { + "name": "yellow-inhand-left", + "directions": 4 + }, + { + "name": "yellow-inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Gloves/boxingyellow.rsi/equipped-HAND.png b/Resources/Textures/Clothing/Hands/Gloves/boxing.rsi/yellow-equipped-HAND.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/boxingyellow.rsi/equipped-HAND.png rename to Resources/Textures/Clothing/Hands/Gloves/boxing.rsi/yellow-equipped-HAND.png diff --git a/Resources/Textures/Clothing/Gloves/boxingyellow.rsi/inhand-left.png b/Resources/Textures/Clothing/Hands/Gloves/boxing.rsi/yellow-inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/boxingyellow.rsi/inhand-left.png rename to Resources/Textures/Clothing/Hands/Gloves/boxing.rsi/yellow-inhand-left.png diff --git a/Resources/Textures/Clothing/Gloves/boxingyellow.rsi/inhand-right.png b/Resources/Textures/Clothing/Hands/Gloves/boxing.rsi/yellow-inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/boxingyellow.rsi/inhand-right.png rename to Resources/Textures/Clothing/Hands/Gloves/boxing.rsi/yellow-inhand-right.png diff --git a/Resources/Textures/Clothing/Gloves/captain.rsi/equipped-HAND.png b/Resources/Textures/Clothing/Hands/Gloves/captain.rsi/equipped-HAND.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/captain.rsi/equipped-HAND.png rename to Resources/Textures/Clothing/Hands/Gloves/captain.rsi/equipped-HAND.png diff --git a/Resources/Textures/Clothing/Gloves/captain.rsi/icon.png b/Resources/Textures/Clothing/Hands/Gloves/captain.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/captain.rsi/icon.png rename to Resources/Textures/Clothing/Hands/Gloves/captain.rsi/icon.png diff --git a/Resources/Textures/Clothing/Gloves/captain.rsi/inhand-left.png b/Resources/Textures/Clothing/Hands/Gloves/captain.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/captain.rsi/inhand-left.png rename to Resources/Textures/Clothing/Hands/Gloves/captain.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Gloves/captain.rsi/inhand-right.png b/Resources/Textures/Clothing/Hands/Gloves/captain.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/captain.rsi/inhand-right.png rename to Resources/Textures/Clothing/Hands/Gloves/captain.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Hands/Gloves/captain.rsi/meta.json b/Resources/Textures/Clothing/Hands/Gloves/captain.rsi/meta.json new file mode 100644 index 0000000000..b9bb10dcb9 --- /dev/null +++ b/Resources/Textures/Clothing/Hands/Gloves/captain.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HAND", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Gloves/ihscombat.rsi/equipped-HAND.png b/Resources/Textures/Clothing/Hands/Gloves/ihscombat.rsi/equipped-HAND.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/ihscombat.rsi/equipped-HAND.png rename to Resources/Textures/Clothing/Hands/Gloves/ihscombat.rsi/equipped-HAND.png diff --git a/Resources/Textures/Clothing/Gloves/ihscombat.rsi/icon.png b/Resources/Textures/Clothing/Hands/Gloves/ihscombat.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/ihscombat.rsi/icon.png rename to Resources/Textures/Clothing/Hands/Gloves/ihscombat.rsi/icon.png diff --git a/Resources/Textures/Clothing/Gloves/ihscombat.rsi/inhand-left.png b/Resources/Textures/Clothing/Hands/Gloves/ihscombat.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/ihscombat.rsi/inhand-left.png rename to Resources/Textures/Clothing/Hands/Gloves/ihscombat.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Gloves/ihscombat.rsi/inhand-right.png b/Resources/Textures/Clothing/Hands/Gloves/ihscombat.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/ihscombat.rsi/inhand-right.png rename to Resources/Textures/Clothing/Hands/Gloves/ihscombat.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Hands/Gloves/ihscombat.rsi/meta.json b/Resources/Textures/Clothing/Hands/Gloves/ihscombat.rsi/meta.json new file mode 100644 index 0000000000..339c9f36a1 --- /dev/null +++ b/Resources/Textures/Clothing/Hands/Gloves/ihscombat.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cev-eris at commit https://github.com/discordia-space/CEV-Eris/commit/55d823b97dda098a1b2ee9edfca7155c753e456e", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-HAND", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Gloves/latex.rsi/equipped-HAND.png b/Resources/Textures/Clothing/Hands/Gloves/latex.rsi/equipped-HAND.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/latex.rsi/equipped-HAND.png rename to Resources/Textures/Clothing/Hands/Gloves/latex.rsi/equipped-HAND.png diff --git a/Resources/Textures/Clothing/Gloves/latex.rsi/icon.png b/Resources/Textures/Clothing/Hands/Gloves/latex.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/latex.rsi/icon.png rename to Resources/Textures/Clothing/Hands/Gloves/latex.rsi/icon.png diff --git a/Resources/Textures/Clothing/Gloves/latex.rsi/inhand-left.png b/Resources/Textures/Clothing/Hands/Gloves/latex.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/latex.rsi/inhand-left.png rename to Resources/Textures/Clothing/Hands/Gloves/latex.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Gloves/latex.rsi/inhand-right.png b/Resources/Textures/Clothing/Hands/Gloves/latex.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/latex.rsi/inhand-right.png rename to Resources/Textures/Clothing/Hands/Gloves/latex.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Hands/Gloves/latex.rsi/meta.json b/Resources/Textures/Clothing/Hands/Gloves/latex.rsi/meta.json new file mode 100644 index 0000000000..b9bb10dcb9 --- /dev/null +++ b/Resources/Textures/Clothing/Hands/Gloves/latex.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HAND", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Gloves/leather.rsi/equipped-HAND.png b/Resources/Textures/Clothing/Hands/Gloves/leather.rsi/equipped-HAND.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/leather.rsi/equipped-HAND.png rename to Resources/Textures/Clothing/Hands/Gloves/leather.rsi/equipped-HAND.png diff --git a/Resources/Textures/Clothing/Gloves/leather.rsi/icon.png b/Resources/Textures/Clothing/Hands/Gloves/leather.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/leather.rsi/icon.png rename to Resources/Textures/Clothing/Hands/Gloves/leather.rsi/icon.png diff --git a/Resources/Textures/Clothing/Gloves/leather.rsi/inhand-left.png b/Resources/Textures/Clothing/Hands/Gloves/leather.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/leather.rsi/inhand-left.png rename to Resources/Textures/Clothing/Hands/Gloves/leather.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Gloves/leather.rsi/inhand-right.png b/Resources/Textures/Clothing/Hands/Gloves/leather.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/leather.rsi/inhand-right.png rename to Resources/Textures/Clothing/Hands/Gloves/leather.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Hands/Gloves/leather.rsi/meta.json b/Resources/Textures/Clothing/Hands/Gloves/leather.rsi/meta.json new file mode 100644 index 0000000000..b9bb10dcb9 --- /dev/null +++ b/Resources/Textures/Clothing/Hands/Gloves/leather.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HAND", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Gloves/powerglove.rsi/equipped-HAND.png b/Resources/Textures/Clothing/Hands/Gloves/powerglove.rsi/equipped-HAND.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/powerglove.rsi/equipped-HAND.png rename to Resources/Textures/Clothing/Hands/Gloves/powerglove.rsi/equipped-HAND.png diff --git a/Resources/Textures/Clothing/Gloves/powerglove_active.rsi/icon.png b/Resources/Textures/Clothing/Hands/Gloves/powerglove.rsi/icon-on.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/powerglove_active.rsi/icon.png rename to Resources/Textures/Clothing/Hands/Gloves/powerglove.rsi/icon-on.png diff --git a/Resources/Textures/Clothing/Gloves/powerglove.rsi/icon.png b/Resources/Textures/Clothing/Hands/Gloves/powerglove.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/powerglove.rsi/icon.png rename to Resources/Textures/Clothing/Hands/Gloves/powerglove.rsi/icon.png diff --git a/Resources/Textures/Clothing/Gloves/powerglove.rsi/inhand-left.png b/Resources/Textures/Clothing/Hands/Gloves/powerglove.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/powerglove.rsi/inhand-left.png rename to Resources/Textures/Clothing/Hands/Gloves/powerglove.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Gloves/powerglove.rsi/inhand-right.png b/Resources/Textures/Clothing/Hands/Gloves/powerglove.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/powerglove.rsi/inhand-right.png rename to Resources/Textures/Clothing/Hands/Gloves/powerglove.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Hands/Gloves/powerglove.rsi/meta.json b/Resources/Textures/Clothing/Hands/Gloves/powerglove.rsi/meta.json new file mode 100644 index 0000000000..8b037ebbd2 --- /dev/null +++ b/Resources/Textures/Clothing/Hands/Gloves/powerglove.rsi/meta.json @@ -0,0 +1,43 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cev-eris at commit https://github.com/discordia-space/CEV-Eris/commit/55d823b97dda098a1b2ee9edfca7155c753e456e", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "icon-on", + "directions": 1 + }, + { + "name": "equipped-HAND", + "directions": 4 + }, + { + "name": "on-equipped-HAND", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "on-inhand-left", + "directions": 4 + }, + { + "name": "on-inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Gloves/powerglove_active.rsi/equipped-HAND.png b/Resources/Textures/Clothing/Hands/Gloves/powerglove.rsi/on-equipped-HAND.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/powerglove_active.rsi/equipped-HAND.png rename to Resources/Textures/Clothing/Hands/Gloves/powerglove.rsi/on-equipped-HAND.png diff --git a/Resources/Textures/Clothing/Gloves/powerglove_active.rsi/inhand-left.png b/Resources/Textures/Clothing/Hands/Gloves/powerglove.rsi/on-inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/powerglove_active.rsi/inhand-left.png rename to Resources/Textures/Clothing/Hands/Gloves/powerglove.rsi/on-inhand-left.png diff --git a/Resources/Textures/Clothing/Gloves/powerglove_active.rsi/inhand-right.png b/Resources/Textures/Clothing/Hands/Gloves/powerglove.rsi/on-inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/powerglove_active.rsi/inhand-right.png rename to Resources/Textures/Clothing/Hands/Gloves/powerglove.rsi/on-inhand-right.png diff --git a/Resources/Textures/Clothing/Gloves/robohands.rsi/equipped-HAND.png b/Resources/Textures/Clothing/Hands/Gloves/robohands.rsi/equipped-HAND.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/robohands.rsi/equipped-HAND.png rename to Resources/Textures/Clothing/Hands/Gloves/robohands.rsi/equipped-HAND.png diff --git a/Resources/Textures/Clothing/Gloves/robohands.rsi/icon.png b/Resources/Textures/Clothing/Hands/Gloves/robohands.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/robohands.rsi/icon.png rename to Resources/Textures/Clothing/Hands/Gloves/robohands.rsi/icon.png diff --git a/Resources/Textures/Clothing/Gloves/robohands.rsi/inhand-left.png b/Resources/Textures/Clothing/Hands/Gloves/robohands.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/robohands.rsi/inhand-left.png rename to Resources/Textures/Clothing/Hands/Gloves/robohands.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Gloves/robohands.rsi/inhand-right.png b/Resources/Textures/Clothing/Hands/Gloves/robohands.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/robohands.rsi/inhand-right.png rename to Resources/Textures/Clothing/Hands/Gloves/robohands.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Hands/Gloves/robohands.rsi/meta.json b/Resources/Textures/Clothing/Hands/Gloves/robohands.rsi/meta.json new file mode 100644 index 0000000000..b9bb10dcb9 --- /dev/null +++ b/Resources/Textures/Clothing/Hands/Gloves/robohands.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HAND", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Gloves/s_ninja.rsi/equipped-HAND.png b/Resources/Textures/Clothing/Hands/Gloves/spaceninja.rsi/equipped-HAND.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/s_ninja.rsi/equipped-HAND.png rename to Resources/Textures/Clothing/Hands/Gloves/spaceninja.rsi/equipped-HAND.png diff --git a/Resources/Textures/Clothing/Gloves/s_ninjan.rsi/equipped-HAND.png b/Resources/Textures/Clothing/Hands/Gloves/spaceninja.rsi/green-equipped-HAND.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/s_ninjan.rsi/equipped-HAND.png rename to Resources/Textures/Clothing/Hands/Gloves/spaceninja.rsi/green-equipped-HAND.png diff --git a/Resources/Textures/Clothing/Gloves/s_ninjan.rsi/inhand-left.png b/Resources/Textures/Clothing/Hands/Gloves/spaceninja.rsi/green-inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/s_ninjan.rsi/inhand-left.png rename to Resources/Textures/Clothing/Hands/Gloves/spaceninja.rsi/green-inhand-left.png diff --git a/Resources/Textures/Clothing/Gloves/s_ninjan.rsi/inhand-right.png b/Resources/Textures/Clothing/Hands/Gloves/spaceninja.rsi/green-inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/s_ninjan.rsi/inhand-right.png rename to Resources/Textures/Clothing/Hands/Gloves/spaceninja.rsi/green-inhand-right.png diff --git a/Resources/Textures/Clothing/Gloves/s_ninjan.rsi/icon.png b/Resources/Textures/Clothing/Hands/Gloves/spaceninja.rsi/icon-green.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/s_ninjan.rsi/icon.png rename to Resources/Textures/Clothing/Hands/Gloves/spaceninja.rsi/icon-green.png diff --git a/Resources/Textures/Clothing/Gloves/s_ninjak.rsi/icon.png b/Resources/Textures/Clothing/Hands/Gloves/spaceninja.rsi/icon-red.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/s_ninjak.rsi/icon.png rename to Resources/Textures/Clothing/Hands/Gloves/spaceninja.rsi/icon-red.png diff --git a/Resources/Textures/Clothing/Gloves/s_ninja.rsi/icon.png b/Resources/Textures/Clothing/Hands/Gloves/spaceninja.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/s_ninja.rsi/icon.png rename to Resources/Textures/Clothing/Hands/Gloves/spaceninja.rsi/icon.png diff --git a/Resources/Textures/Clothing/Gloves/s_ninja.rsi/inhand-left.png b/Resources/Textures/Clothing/Hands/Gloves/spaceninja.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/s_ninja.rsi/inhand-left.png rename to Resources/Textures/Clothing/Hands/Gloves/spaceninja.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Gloves/s_ninja.rsi/inhand-right.png b/Resources/Textures/Clothing/Hands/Gloves/spaceninja.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/s_ninja.rsi/inhand-right.png rename to Resources/Textures/Clothing/Hands/Gloves/spaceninja.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Hands/Gloves/spaceninja.rsi/meta.json b/Resources/Textures/Clothing/Hands/Gloves/spaceninja.rsi/meta.json new file mode 100644 index 0000000000..b4acff37db --- /dev/null +++ b/Resources/Textures/Clothing/Hands/Gloves/spaceninja.rsi/meta.json @@ -0,0 +1,59 @@ +{ + "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", + "directions": 1 + }, + { + "name": "icon-red", + "directions": 1 + }, + { + "name": "icon-green", + "directions": 1 + }, + { + "name": "equipped-HAND", + "directions": 4 + }, + { + "name": "red-equipped-HAND", + "directions": 4 + }, + { + "name": "green-equipped-HAND", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "red-inhand-left", + "directions": 4 + }, + { + "name": "red-inhand-right", + "directions": 4 + }, + { + "name": "green-inhand-left", + "directions": 4 + }, + { + "name": "green-inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Gloves/s_ninjak.rsi/equipped-HAND.png b/Resources/Textures/Clothing/Hands/Gloves/spaceninja.rsi/red-equipped-HAND.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/s_ninjak.rsi/equipped-HAND.png rename to Resources/Textures/Clothing/Hands/Gloves/spaceninja.rsi/red-equipped-HAND.png diff --git a/Resources/Textures/Clothing/Gloves/s_ninjak.rsi/inhand-left.png b/Resources/Textures/Clothing/Hands/Gloves/spaceninja.rsi/red-inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/s_ninjak.rsi/inhand-left.png rename to Resources/Textures/Clothing/Hands/Gloves/spaceninja.rsi/red-inhand-left.png diff --git a/Resources/Textures/Clothing/Gloves/s_ninjak.rsi/inhand-right.png b/Resources/Textures/Clothing/Hands/Gloves/spaceninja.rsi/red-inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Gloves/s_ninjak.rsi/inhand-right.png rename to Resources/Textures/Clothing/Hands/Gloves/spaceninja.rsi/red-inhand-right.png diff --git a/Resources/Textures/Clothing/Head/cat.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Animals/cat.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/cat.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Animals/cat.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/cat.rsi/icon.png b/Resources/Textures/Clothing/Head/Animals/cat.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/cat.rsi/icon.png rename to Resources/Textures/Clothing/Head/Animals/cat.rsi/icon.png diff --git a/Resources/Textures/Clothing/Head/cat.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Animals/cat.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/cat.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Animals/cat.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Head/cat.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Animals/cat.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/cat.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Animals/cat.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Animals/cat.rsi/meta.json b/Resources/Textures/Clothing/Head/Animals/cat.rsi/meta.json new file mode 100644 index 0000000000..adaa2fb070 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Animals/cat.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/cat2.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Animals/cat2.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/cat2.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Animals/cat2.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/cat2.rsi/icon.png b/Resources/Textures/Clothing/Head/Animals/cat2.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/cat2.rsi/icon.png rename to Resources/Textures/Clothing/Head/Animals/cat2.rsi/icon.png diff --git a/Resources/Textures/Clothing/Head/cat2.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Animals/cat2.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/cat2.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Animals/cat2.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Head/cat2.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Animals/cat2.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/cat2.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Animals/cat2.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Animals/cat2.rsi/meta.json b/Resources/Textures/Clothing/Head/Animals/cat2.rsi/meta.json new file mode 100644 index 0000000000..adaa2fb070 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Animals/cat2.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/cat3.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Animals/cat3.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/cat3.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Animals/cat3.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/cat3.rsi/icon.png b/Resources/Textures/Clothing/Head/Animals/cat3.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/cat3.rsi/icon.png rename to Resources/Textures/Clothing/Head/Animals/cat3.rsi/icon.png diff --git a/Resources/Textures/Clothing/Head/cat3.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Animals/cat3.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/cat3.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Animals/cat3.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Head/cat3.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Animals/cat3.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/cat3.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Animals/cat3.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Animals/cat3.rsi/meta.json b/Resources/Textures/Clothing/Head/Animals/cat3.rsi/meta.json new file mode 100644 index 0000000000..adaa2fb070 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Animals/cat3.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/headslime.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Animals/headslime.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/headslime.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Animals/headslime.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/headslime.rsi/icon.png b/Resources/Textures/Clothing/Head/Animals/headslime.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/headslime.rsi/icon.png rename to Resources/Textures/Clothing/Head/Animals/headslime.rsi/icon.png diff --git a/Resources/Textures/Clothing/Head/headslime.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Animals/headslime.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/headslime.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Animals/headslime.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Head/headslime.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Animals/headslime.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/headslime.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Animals/headslime.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Animals/headslime.rsi/meta.json b/Resources/Textures/Clothing/Head/Animals/headslime.rsi/meta.json new file mode 100644 index 0000000000..adaa2fb070 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Animals/headslime.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/monkey.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Animals/monkey.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/monkey.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Animals/monkey.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/monkey.rsi/icon.png b/Resources/Textures/Clothing/Head/Animals/monkey.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/monkey.rsi/icon.png rename to Resources/Textures/Clothing/Head/Animals/monkey.rsi/icon.png diff --git a/Resources/Textures/Clothing/Head/monkey.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Animals/monkey.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/monkey.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Animals/monkey.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Head/monkey.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Animals/monkey.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/monkey.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Animals/monkey.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Animals/monkey.rsi/meta.json b/Resources/Textures/Clothing/Head/Animals/monkey.rsi/meta.json new file mode 100644 index 0000000000..adaa2fb070 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Animals/monkey.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/mouse_brown.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Animals/mouse_brown.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/mouse_brown.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Animals/mouse_brown.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/mouse_brown.rsi/icon.png b/Resources/Textures/Clothing/Head/Animals/mouse_brown.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/mouse_brown.rsi/icon.png rename to Resources/Textures/Clothing/Head/Animals/mouse_brown.rsi/icon.png diff --git a/Resources/Textures/Clothing/Head/mouse_brown.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Animals/mouse_brown.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/mouse_brown.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Animals/mouse_brown.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Head/mouse_brown.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Animals/mouse_brown.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/mouse_brown.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Animals/mouse_brown.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Animals/mouse_brown.rsi/meta.json b/Resources/Textures/Clothing/Head/Animals/mouse_brown.rsi/meta.json new file mode 100644 index 0000000000..adaa2fb070 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Animals/mouse_brown.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/mouse_gray.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Animals/mouse_gray.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/mouse_gray.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Animals/mouse_gray.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/mouse_gray.rsi/icon.png b/Resources/Textures/Clothing/Head/Animals/mouse_gray.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/mouse_gray.rsi/icon.png rename to Resources/Textures/Clothing/Head/Animals/mouse_gray.rsi/icon.png diff --git a/Resources/Textures/Clothing/Head/mouse_gray.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Animals/mouse_gray.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/mouse_gray.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Animals/mouse_gray.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Head/mouse_gray.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Animals/mouse_gray.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/mouse_gray.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Animals/mouse_gray.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Animals/mouse_gray.rsi/meta.json b/Resources/Textures/Clothing/Head/Animals/mouse_gray.rsi/meta.json new file mode 100644 index 0000000000..adaa2fb070 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Animals/mouse_gray.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/mouse_white.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Animals/mouse_white.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/mouse_white.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Animals/mouse_white.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/mouse_white.rsi/icon.png b/Resources/Textures/Clothing/Head/Animals/mouse_white.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/mouse_white.rsi/icon.png rename to Resources/Textures/Clothing/Head/Animals/mouse_white.rsi/icon.png diff --git a/Resources/Textures/Clothing/Head/mouse_white.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Animals/mouse_white.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/mouse_white.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Animals/mouse_white.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Head/mouse_white.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Animals/mouse_white.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/mouse_white.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Animals/mouse_white.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Animals/mouse_white.rsi/meta.json b/Resources/Textures/Clothing/Head/Animals/mouse_white.rsi/meta.json new file mode 100644 index 0000000000..adaa2fb070 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Animals/mouse_white.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Bandanas/black.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Bandanas/black.rsi/equipped-HELMET.png new file mode 100644 index 0000000000000000000000000000000000000000..c9a347658c504b2fd2ea9cf063bf1b6e97ba2f15 GIT binary patch literal 402 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEV2t#1aSW-L^Y)fuc8h@o+kRP+xtzm+?pDfG3LKba?QyY#eF$NS$O?enY7 zpMTO)d|BqLI_cyK+uo`^|D=BH*5$Ihrwh-u)_S`j0egX~m*0gZpR-XGIImu#zLH<< zu7LWwt!+VE3>(&IGbGGQFXYH%V~8*EFjAR%Jo&g`OAwcrCePu9+O6L_eiy#l#rDDS z=ixF39rx<@#?NCeMCGsMmHB@~{%O~B!{FQ7B5PdhCTnX}=(z7svaPF6doUsY;?%5< n{^zTXO8pTv78Zm9**CHw;S07JiC%IBhBbqytDnm{r-UW|mXWLe literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Bandanas/black.rsi/icon.png b/Resources/Textures/Clothing/Head/Bandanas/black.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..c9cdf17b790bcc153211d33d8e301b4815d7ac7d GIT binary patch literal 345 zcmV-f0jB1lT!7xvFEp1 zoLezOgp?9E=eob!{h)}IQe`d1Sgun_0058V002L|@^xKrpCKX$Av|&SC2%K~9gyk~ z5tunU=O$xJCL+*U!?tbBUAf(^p31%VrE;Ydgb)A`OWayJ8Dp}w_R`f%phsS_?|Vr= z=$VJE8MvYzK<_;u;)fg&!5EX5WqH>EX3q0GmwO^Q$-Vcd_v&NF%vsv;ss)G$TIiUm0hSG4BgHUT2~==D)p$KGS~$8 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Bandanas/black.rsi/icon_mask.png b/Resources/Textures/Clothing/Head/Bandanas/black.rsi/icon_mask.png new file mode 100644 index 0000000000000000000000000000000000000000..4509456c946beb99286de93dd8a0fb4c8768180a GIT binary patch literal 257 zcmV+c0sj7pP)nUOvNGr<}O%T zJuvVkj4_(liI-eGk-)zg5;%8Zw)$a#nib(Ln`LHy=BPXWFXM?FpJ0U zz=D7OV$zv0No2MghkL);i{C10885#6l8m)r25Mrs5fJ#~@1<9hs*`1davsUA zSoP|rt?Kuz8!62z^9x=!CSCVlA-?6Tc?zIYByTtc!MdTU#n#)@bpSEw< z5jV5H^iK8L|Lj{Ca*}UaO0SDO{BY})?N(*{X9fJCT4k?+fcd8aP^?P`to1;#IPPEEd@{(Ses?%wYoUstV+;PE+D`RxH?%(?5|jf-t$ z)pjSWdFFfD7Hm7v3m?0}_dH@fS(xq+U0O8h@wtYLyJlV~XRB#Cw0xJbf?)sg*r3~z z5kfW%Q_9$`eUR(ly#y%y^Y_itw>(e2@iPLAdE%w{mEq;IMvKTzN7_Ngdb;|#taD0e F0sz=yj57cL literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Bandanas/black.rsi/mask-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Bandanas/black.rsi/mask-equipped-HELMET.png new file mode 100644 index 0000000000000000000000000000000000000000..4b9b0bef63e560f7d7eada12c17994a41a22f8b7 GIT binary patch literal 301 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=Up!qLLn`LHy|ufy*+HP;;X@%O zkL8ResuObGrcBwei1E_Wro9}e6Cx}4n$Lgx@9J@2kHEz~4hDw!)gNrutlF6=^>Wv{ zXL|*lVMc~tEt{?pSc2xo$0Rc5yp|#z`4*7H6ElxGQ&9m?OiC<^#ykqTrZOdSMx-?dQ z-pk+rF4#71%N2L_(A1q3cYVjvt@0cAWRi7)yygk)o|;;@GtOMUDEjfV zSs_g8KRv(Hbu~wxC06wZrW0Jxm)$l!dA>_|mej|(AU2E_;JfV}Os17}3PX98i0k<> z9F3(c)}I!`RAWgkG+pMkv)-FN^1002ovPDHLkV1fz7vUdOg literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Bandanas/blue.rsi/icon.png b/Resources/Textures/Clothing/Head/Bandanas/blue.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..7a49d82916ad31ceee9dc3cd69cc3ade17804a3f GIT binary patch literal 380 zcmV-?0fYXDP){3_I=E6~M^>KQ zvHF2Qvi^Ke?|Tvui9{m*on+{OyeM_wSjrzDMU85+BJWF{XoM%(%>GkS*tQfk01Ofb z07ezRdwdFSlyQ82z75d^K*&Hy{IIV8oKEjrFr67O3OS zem-#}Me8OQ(Q30w-d~;*DQX<{6+#vSZ-J7+`g#_GBW&kL(Mr49&Wlp}EV+0MU7@qZ zP5}aK3%c~xLofiAa_>ng!BHVw;2Z0nc<3t#TzH7`qSU6ay13$Fgh>IIAo|AsA{>cC aB8DI4v7a_LLz)c$0000N!{`&>L-nC}D0l)#!e#=42?D_@#J7AB3!y?q1$^-Fd=0KoL(2|N7N~0LXz((R!F`YW zjV-ZH4WEV<0B|^6zCtBL1w6h2US$0~v{ppmRnm70LNl<{k|F}Xpusu)2NLgrzH1CE z?=p{~Q&U(KC^`L}E_cP~xiQa8; zh2==Xg6TCnEHds~|O?`dDg@>R&g@q7I0%k`c;Efv1ieL^#1S8!#p|BKld8@vAJ zR)78V?KOG6|K3_2;1WO2IM1=6nP-{80Y|oAfd>lBnj8fa4vMf?oJinel1VXOW#luO z(Zs+m>4T=sT>HVL>*?m24wsS_{L8!0G^wuX73-95$|12#QhzzFa$R`kzG5GX*Kfg9 iVhe8eL&CzpMWBxHv{9e2xA}uDAR$jzKbLh*2~7ZiIj1lH literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Bandanas/blue.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Bandanas/blue.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..d3a760491bc6fba91cfe3f7a23a326b038e02328 GIT binary patch literal 399 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEU<~tgaSW-L^Y)fw7L%hu>qDcI z$673R*qEwX<|wtFOtk4){((ivu|T^`r^)+phicc1gCRvrJ(92nRZem+xl87t5% z2DytW^D2LR(%by=`OgipTjN$o&UpD{_wLz`H0Q0XT)a>I^oL0^HLKZ{@P(X?yg1d~ zj(J{je#qLF)9>i_s%<}4b7S41TBGu8P8asc`yW3m;y!Py&ud$ALbkR+cP?wo!LN^B zzCM)7>AOsAc1qE6mFW#J?6!Yv?%Te%p24n|Jg2sR@%PtH+tTjY?K}6YA?~R2YssQX z`jt zSXr&Gd*bRni`R8Y&MLDJc3-$u_WYL4%R8!XhJRRh`9DYQZhoK>A)rR#ZN)Qbx5P_U zN1c6df6Z>*E*r@|GrGo6$)0mt?EN#(P9K`(K3#p+mMHdCwIwGvZg^SLTk7(i`BdX$ zjV+g+XmDO!`RUozRo5bxPv#bi6#ixRx2CV$?BBxhf9LbhutMy3u>B6>kG~m9mrmwi P4ifQn^>bP0l+XkKRAq@Z literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Bandanas/blue.rsi/meta.json b/Resources/Textures/Clothing/Head/Bandanas/blue.rsi/meta.json new file mode 100644 index 0000000000..c9b83c852b --- /dev/null +++ b/Resources/Textures/Clothing/Head/Bandanas/blue.rsi/meta.json @@ -0,0 +1,35 @@ +{ + "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", + "directions": 1 + }, + { + "name": "icon_mask", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "mask-equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Bandanas/botany.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Bandanas/botany.rsi/equipped-HELMET.png new file mode 100644 index 0000000000000000000000000000000000000000..985d68a48d79b8bf9fcb0cea1e4d514887e61e2a GIT binary patch literal 568 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEVEpgt;uumf=k2Zi*|!~JSU)@u zP&^vx!!9{-QNpE#ryeBSIvQ-1Dcs7V*d5q*K{0rH!@q_zbG_T8bQM=`_xbu{X~2`C zl2JXb-HOfzjZ)j2V%iH9T~IA|In?(3X3dXx`}WCS`@kZg$(cc-KKQuEAa1O1OdCF>G!|}oJNB#1{76NzYmC1TtIw+I3n=8GHeet%o5`*hS`K`n-N+P2@g_!lGUMbE||8|6`F}Tbi@w+QW)4O~X)$ z-G@G|skxU}-vpFXU;g_-Wu$ZV@k2L6{iWIL>VL5@WW38ww2ESIc(~kwZBbu(;*I$X z3~}H4M)PBdobn}UHQ!t@(QCOV_X@bvTIYS}xlB(VktmY_H^VVeS3l@Nx5YYAMSs7N8a zR#NG=?Z~~N`XTld6cveq<#%(C5m%KcDpD8=;Kq>|w^gKK4Gb(nQSlovKTLlx4lIGS z=Z?VB-h%Lti)eAR>?zmt=fA!O6WEDeg2GII7zr6>s%mvuLZI9U?-}_}X z6AX{*MfRTVxPNY!R#i*R(gL03WL=Ortd7j)8313|H_*3!2@M7M(X|kAmv324)^y|6 zZ?G>`gQy#~c-y`f!biga@$CaHy9dibl%zs7I}K*@jL~oaxbw|+k zKB(!$lpSsTVE68e)0$l+2Qv*spXdihS(!9`-`B$7X+77kS=y}w3^Kfzn%ukSe9Z0C zq%}tOE)*x8ov@K>TjYc5oWJrk%IX>>mpM$YDO`Cszk01_oz1rH%SS`%O-r~R2>r>s zRTjR};CcNX#l9~`19Y3>7-N#sDs$QJkgcwetvns)xE9>mMFUwDe za_B#3$R%*mf5CkqC&m8IKJEn<`ZwHX()g{;_m7f3r literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Bandanas/botany.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Bandanas/botany.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..f97199f72d12d41df9eaccf634ca4e9046613588 GIT binary patch literal 323 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEVC3?2aSW-L^Y)gtP?Lc`!^5K+ zKd6aJTe%}(PygJwj;>2hmmhrK;BW6uP@esB|4b2%!m{hBI-8h)1~72!F*$kF>7-`2 z-H(`^`GG3Szp`xQ+YmHC_T&70b}xR1#$-vaZ=0Uhu{FN&)8n<`3BQacWKD( zk<9JczN5Crdk=&2qob?m*%h1mdKI;Vst00~usrT_o{ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Bandanas/botany.rsi/mask-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Bandanas/botany.rsi/mask-equipped-HELMET.png new file mode 100644 index 0000000000000000000000000000000000000000..317f08cb61051973fca4097af357a137409e632e GIT binary patch literal 317 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEU}W)haSW-L^Y+$8uBHHyhKH9^ zF6nLA;dSAW_l}<&4=+7Y{=s1DRQ*G2uM3CMmTfF=18-*<>2&Uzc74JB=5CHxmf!EZ zE?LLHz)+u^@Tp+ZZ!50YNWb#l@0W}&Tz;mr`sTeCv(*-zx%@FjWATNlK#}&hu5$0M zcP|e76LvDJbw!Eo$Mi*Kf-iH{w+f3(o%?DwXGg$oOP86;zh+0TT^;_mXSQb|jZ5Y3)GOVGP6KdeCT}+WT`Xif^Z?b?yJYD@< J);T3K0RY(PjP?Kk literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Bandanas/botany.rsi/meta.json b/Resources/Textures/Clothing/Head/Bandanas/botany.rsi/meta.json new file mode 100644 index 0000000000..c9b83c852b --- /dev/null +++ b/Resources/Textures/Clothing/Head/Bandanas/botany.rsi/meta.json @@ -0,0 +1,35 @@ +{ + "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", + "directions": 1 + }, + { + "name": "icon_mask", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "mask-equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Bandanas/gold.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Bandanas/gold.rsi/equipped-HELMET.png new file mode 100644 index 0000000000000000000000000000000000000000..b69628719767b02969b035d61424f9d387909128 GIT binary patch literal 397 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEU<~neaSW-L^Y)f)-XRBpwuc+% zEO9EDd`zg7dx{mW`3cD#th%i11&*h6YuN4|;599BOzc$aRn=0?4(@#{@M$x5*@jPc zXQh^Wt=WCUWV6zb`!>@(SN}ZWvQU3_t*({cHTLDzJFnH(?V5h}n}*e{Yuo27IV#`$ zedYS4J2hHz|4x7D92{P}B=Tv<|8r$dBEL4>lsjK{f4Rx(S=o05#IH$zxcYeCtp1*2 zF7M1RPmy0nlD{X3e{Daz;p*+`YF|&88F%;P*|{&&-<)cBVr$Hj^UL2oQz=Zir3~~P z1k^pa;%|Mu_vPoFhI#%LPcO-DnYDm>eviHQ`R-emN8-~qWc9!9oor$7mZ37xdw2Bh zrDbz3^USqnyww-ChJT)3TzT}8-|>HU$5gGInRfcpZq}6o!8sIz%j>N*z5ADcQ2HN9x!ihsX(XgeXVI2{;5p$DW`|w+vxmj1++)MH$-I z9gx8w8w?%mPeOX|%=@4Dp8+fui{-!L41M9SpK@I;qy%Zku-)B_>l!Zshw_Ae>L-(H^-8B#@&Pw@HmGejGJ!57er1INH_2%ZJ8N>1Pz-S9XN*W%^$iiYx zUNEdTH)YMke#%vr^jaVbwP`mePJ;^FJaje?_(Zu=ljcn6Y#=XKrv>dD5B&=QJwGBb r2P$OoF~UX-h$eKozX)3_7K`8)?N literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Bandanas/gold.rsi/icon_mask.png b/Resources/Textures/Clothing/Head/Bandanas/gold.rsi/icon_mask.png new file mode 100644 index 0000000000000000000000000000000000000000..93f4ab88a0700a0ab67b8a40e002ed8244ad3c8b GIT binary patch literal 261 zcmV+g0s8)lP)ST5JkVEr0_CnGC@kFVFct6JPjoi&@e_MY6_5?CKnmY1fT76_d2kx|9p1>KoA5$ zD8w4=tkKSY=A6Hj3bfs#a>D^Yop0H57UBz46`}b9g4hfkwWNx`FZ|$~{wE8BRVcY} zmH<(6`ibN(VcRV#Ht{9lEP;Q)5(ukMdV98jPmSPn+Ywi{ zSDo6tGfmZulfPtN-F@Syk*$GdFMhH7meVM&<*IbN{-^Bjo%p=Nv%V`H*?L9s%+#ZY z4&R^uRolivYx}k98_)0k_1#gdAv+mdKI;Vst06k!V ALjV8( literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Bandanas/gold.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Bandanas/gold.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..1ec22cef25913f7d26315d7cdb9b6b2b834b0d5f GIT binary patch literal 314 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEU}W@kaSW-L^Y)f6AETo{+e0P3 zd~6->wY_>wfvR+k)%`0*BADuJ3uKy0S3+faKRFOODND%r7xs`kp6a(xK_Qj1vsy z`;SlAW^ABR$)Ng{r)Qy^T)$>%`hid1_e$TET=7;O^6rBj$V^XH KKbLh*2~7a5XoqS5 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Bandanas/gold.rsi/mask-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Bandanas/gold.rsi/mask-equipped-HELMET.png new file mode 100644 index 0000000000000000000000000000000000000000..67702d2b7873dc898b83bdf551c23687867da5b7 GIT binary patch literal 305 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=KRjI=Ln`LHz2(T&WfY~_V4dSFRAAX zO&1khvnapfrWkv{YnDTLT=?Pr|5@jXUSMy|lLNX50{(kx{}le-u&p%e{?h%$s9`Ke?5A9kjT!Y$3+`uvL_A&nT-G@yGywotRf0AE literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Bandanas/gold.rsi/meta.json b/Resources/Textures/Clothing/Head/Bandanas/gold.rsi/meta.json new file mode 100644 index 0000000000..c9b83c852b --- /dev/null +++ b/Resources/Textures/Clothing/Head/Bandanas/gold.rsi/meta.json @@ -0,0 +1,35 @@ +{ + "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", + "directions": 1 + }, + { + "name": "icon_mask", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "mask-equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Bandanas/green.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Bandanas/green.rsi/equipped-HELMET.png new file mode 100644 index 0000000000000000000000000000000000000000..0031dd7f2b00d29b079b66b55580c0c76127b6cd GIT binary patch literal 390 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEVD$BLaSW-L^Y+%pyruw=V;`N9 zn3v_w(%WG)W5WgYPns1%^AD*XI(np0RNU!GL#D8mY}2)C_f`jZ{@>5)qW}Ccm(KI9 z2ld4{Y`*D^Z-1@}nce)NY_G@KbE(n)H7lmX?h?Oy>zcXTlB4qT+|O?O{`PpNqR;F7 z`}UfYn!3*u3H$0ky}szo=h&M|e{Vkidy2a2=Jmo!hbx%&?Y_Hw^MY-Di5mV~A8W#o z3HzT~V>OE>c(3jD?IK4LV{`e=rk^iQwT$Qe6t(Ws^Vst8MHXvrM+1EY0Wk?z{jIO} zzAWx-Sm$q%dRg8?YJs@jyo&gJ+M7>V9f?mf$m)OHxfrO2@zk10W!txTzqMK}X|SN?_GG}I~x*;)ip`wMiP?bI{g4Ju|$4*-kA0U)G` zKNnBVJxLa#efwIX4S>)AmpH4(s%7=M1;ueMqBum9JmP$)tU3>C#Q|WOZV<({Cd#-t z?gcPfbUsvpyf#rmLWk;n@PZ?*a{;{gT}0A5XT# zF*kf1CIG4kWZnbTI7Q1l z`=#pC6jlXVPJbl(CbY(>)Wp|>vjqMHOJH4v+S9WIC@sQ^Df#OOg0RI4t?X#r&19QC P00000NkvXXu0mjfEE8~> literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Bandanas/green.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Bandanas/green.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..5b21da3654da54c6a5f457051281843dcbf577bf GIT binary patch literal 324 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0L3?#3!&-4XSJOMr-u0Wb0je+3|1H(*)_1vqJ zfn3ItAirP+hi5l{;tYjVArU1msl~}fnFS@8`FRWs6?1~a3W`d1hmVQ4OT#Oz5>Si#p~#@T!f@*iZL)J(8w0a~8v>Eak-(VLtg@vot^ z(UHN`VM?PSORGH7!GZ~*2M!$AC3G-7#=fz!@$Gcxn1&Hks*^$j5;L(^b literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Bandanas/green.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Bandanas/green.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..6676e5de09169558f79ba05b7c3cc748c0e0926a GIT binary patch literal 326 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0L3?#3!&-4XSJOMr-u0Wb0je+3|1H(*)_1vqJ zfn3ItAirP+hi5l{;tYjVArU1msl~}fnFS@8`FRWs6?1~a3W`d1hmVQ4OT#Oz5>Si#p~#@T!f@*iZL)J(8w0a~8z>Eak-(VLtgam|5Y z=3%BIiYJ&BDfFl?rEOm4!jZztz_~4+&%o~SFHVO^fA6!-VEA1pFxgyA@xxXImzit_ zSR#@&J{{0lpqt<*F5oJj!0RfUaHhyX_=Y*7?}PthA&k#H=x4NjXfxp9W?)$CE5ykA SLPr>AErX}4pUXO@geCwcd2R^+ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Bandanas/green.rsi/mask-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Bandanas/green.rsi/mask-equipped-HELMET.png new file mode 100644 index 0000000000000000000000000000000000000000..bcaf5d0dcb31203b5da564dd3453db0d8ef6c46b GIT binary patch literal 319 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEU}W=jaSW-L^Y)fCUz3AC!$Vgo z?!_P3R1#M3h%R6FL`d$ScR-btcCzb~BhnI_t-O)iLXNzBHZ_0aPa7Fqb6;HpH1vemk2m49C;bZMT==R4be{&TV3x&J{MU6r|F^Zy8%Zz+{g z?ft}eOKVxaU&2cZFCO&`C6g`m%h&(lx>x#3eqrW!Mxgt^pn?Ah%d~%Ofit%FeGItF z`}WoYU-xUZ&&1*`)PXIO3s&h+PS-;l4URcZOD3H;nh!^Rm}mKE>L(h%gTe~DWM4fgO`Ig literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Bandanas/green.rsi/meta.json b/Resources/Textures/Clothing/Head/Bandanas/green.rsi/meta.json new file mode 100644 index 0000000000..c9b83c852b --- /dev/null +++ b/Resources/Textures/Clothing/Head/Bandanas/green.rsi/meta.json @@ -0,0 +1,35 @@ +{ + "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", + "directions": 1 + }, + { + "name": "icon_mask", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "mask-equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Bandanas/grey.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Bandanas/grey.rsi/equipped-HELMET.png new file mode 100644 index 0000000000000000000000000000000000000000..49767b22d333e2c946bf8ed1c81850b68f6be364 GIT binary patch literal 456 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEVC?sFaSW-L^Y)gZ{~-q%)(`GU zv#btXSl80B{@?*FW<{Nn5`)CoDHm2w7FwRC!q=CY$-}&6)(_U0J3c+yJa0J)EtjvJ zn()LgDzj$)(?h0j_r|@C_{Vah~L+rJ#krrzFnSN;0u zqeUD2>Y}%C-Y@3z;R)c)K70`wOd<=dM2Xq|(h{p8t&{!SW%y9QRc$ zzWKMvj)7s>=b2?3b9v^5S-B@{?cpYxyqUzUa)8>O9Z9iLphRtka*qa9(qK`FWm{ tPw^p3qW;|5EVhv?{>T|57fJqRnD}s&@Aux{>cALc@O1TaS?83{1OR2g&b$Bs literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Bandanas/grey.rsi/icon.png b/Resources/Textures/Clothing/Head/Bandanas/grey.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..b457c08c0e5979a7f73ef20b0daca281a98a9b9a GIT binary patch literal 419 zcmV;U0bKrxP)S9CEq`42kP#K%3gO0AGKWVLG{{s)x5gL^!3iA_^2IcWg@u{Rk1TdX=&V zo~s025l^PYa0(mv{r&<#DnfO(2M|D|1$B7yz%_7oafu|(Dwj=Nu%0VSccZlehDjQt z+u|(u{`vv{SVzyDulCjrI=Rm8A8vQ%k~lj`SjYe~!OI;ZERjegj1ACaqEco>{Wt&s N002ovPDHLkV1fr0vn~Jt literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Bandanas/grey.rsi/icon_mask.png b/Resources/Textures/Clothing/Head/Bandanas/grey.rsi/icon_mask.png new file mode 100644 index 0000000000000000000000000000000000000000..de620d0f51626bf38b6d7c738988c65be1e865b3 GIT binary patch literal 310 zcmV-60m=S}P)V7KsCVWxHY=U0l;YA@=Kef9H`d-Ts&V|!g?4) zWVv(z+hIjnoF=(&-}MrcLkwl*VGscTrZcl9RiQNiho1lsQe79-dI|78QdX=ti<*$r zG!hv|pW!phYT`7>F`kS%%^#2)!RNu>7g5yl<9?&MF`ITCkbT^DPG`?_fp-bz@3-rlpHwwx z0-DCaP|zV0`S$0dqAS1uXVmPSaeiLeu6b#11lH?+z9)EGOk7ea*Q4vbok_CpkIB{v z(G_Q91B~~lyx_CAsAu8ARd2d4vcGDc@70HwZ|E$H@pd`mrJNka^z_+&yL(~t&#{Fp z*;y(3({j5WuQ8+Mjh8onzOrC{CzpM5i{Gxcr7WL?PB`wjzkhvys-e`SIq#%QjkYIh zEs*~4@!`MgU!%_LoqI?3)K=Y}+n+P&JK3StfymilrYDl#Qhsgm&MJ4aaNBY7So4vRO3L{TfKbLh*2~7a=9;WR8 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Bandanas/grey.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Bandanas/grey.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..f96fafdde0cec67378dcea94aa012d9d87850a93 GIT binary patch literal 405 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEV2tr}aSW-L^Y+$WKPE?!wuj9h z`8rx#TX{uFqHbQS-utaA{{Cric|8K3cP-}M$w{P`$w|C74xmOECT)BcuKoOzm;!>FtC<@@K-9}^!JpO1FtmoHYYKhSoL z>CuB<-(Q|xds@h8*#uvsoyAex8)Vr3{{L%NeQ)~=cEjXZwFQi;uTQ@`uQJN+{ggyU&odkKn*VcND@$8&{sB{#m2tqL q3T}_1>1?}rv=$sQW(I}GESD7i2F@vx?RDkfL3~eFKbLh*2~7aD6|R&3 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Bandanas/grey.rsi/mask-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Bandanas/grey.rsi/mask-equipped-HELMET.png new file mode 100644 index 0000000000000000000000000000000000000000..e0c5c73b06e713b3db57d06cdf511e6a3e6fdbf0 GIT binary patch literal 385 zcmV-{0e=38P)94i-m#OUR%>a@aoe? z6sK-u(`adVQIhof^7iHa{%)X~t23|q-h++e)NO5tlB8x3D6>|QbbH<IjR@T<_{P>_U1DIC%Wa0VLvf00000NkvXXu0mjfVqmlz literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Bandanas/grey.rsi/meta.json b/Resources/Textures/Clothing/Head/Bandanas/grey.rsi/meta.json new file mode 100644 index 0000000000..c9b83c852b --- /dev/null +++ b/Resources/Textures/Clothing/Head/Bandanas/grey.rsi/meta.json @@ -0,0 +1,35 @@ +{ + "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", + "directions": 1 + }, + { + "name": "icon_mask", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "mask-equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Bandanas/red.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Bandanas/red.rsi/equipped-HELMET.png new file mode 100644 index 0000000000000000000000000000000000000000..95cd09ebcd59db7f6f3ee6d458899106e4acec22 GIT binary patch literal 378 zcmV-=0fqjFP)1pw6vpvqQUrkvT?GM6Jwi{FD`fN)aw;Dolfj_1gTNpN?$T$J;L=Ko-I)G=i(`ZQ zo`jU;vk3mTs$|f?+QAwlK1R{&$@`*rmDYdTZspwfqSw;;*@LwB>t-`P`?y^0Y9hD( z`))VZ)jpaKit4}Q4zR|^x$h^RFR2M({H+U8B6|V8+wKQzhvF_WH6e&KM)t-?7vt4p zEyel zk-v(j)1#<89ox3jBl4TRvKrSo`Wf^1^qYZM{)^U>#Xr2)HD>T@>=^(6000000Dzf& Y0%5A3TF?!V761SM07*qoM6N<$f|NV6SpWb4 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Bandanas/red.rsi/icon.png b/Resources/Textures/Clothing/Head/Bandanas/red.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..fae8dd3647efebe6ae4ad3adf2a64c79c970a9e8 GIT binary patch literal 360 zcmV-u0hj)XP)?`!C`Usv11+P5_1!2e@vLnV-YtrNTK|rI) zKQsR*&}cLo|DA5@2a{5BZcX()jB_{}Q~lrSjVyc^2LH|y`LS^h05*vOzuj+8dtR||4dOKxewKj?a5$QF z^~+kloo3f`jw=0Y>zn@T^{h$RraYS*t_#1}z3|3w)hpb$o^{(~&$bJ|?sjQtIMF(f?~40+BRba{rmL@q}d}U}>-CRIN>q9!Zs(Nps)i{mwy#uG;n2MowcI)9j7& zW0!nf*1c<9|LxM}VpCZ1JO0Km&HPoc&-YP056BfD@aLvTIa|*Pb@kvok{cGyK3SXY zV60WM&YD^A;PJFDJ>c&m7xt-z_0FQD PEg-(9tDnm{r-UW|rZRP+xtzm+?pDfG3LKba?QyY#eF$NS$O?enY7 zpMTO)d|BqLI_cyK+uo`^|D=BH*5$Ihrwh-u)_S`j0egX~m*0gZpR-XGIImu#zLH<< zu7LWwt!+VE3>(&IGbGGQFXYH%V~8*EFjAR%Jo&g`OAwcrCePu9+O6L_eiy#l#rDDS z=ixF39rx<@#?NCeMCGsMmHB@~{%O~B!{FQ7B5PdhCTnX}=(z7svaPF6doUsY;?%5< n{^zTXO8pTv78Zm9**CHw;S07JiC%IBhBbqytDnm{r-UW|mXWLe literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Bandanas/skull.rsi/icon.png b/Resources/Textures/Clothing/Head/Bandanas/skull.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..33727dae4d857419330d84531c3b7b8f769fea24 GIT binary patch literal 420 zcmV;V0bBlwP)VnhUMEyi(7{%`U|FI*Hw@EK!*ZLI}>UE%=nnJRw0UN`qJ zGp1?Uqn(z(mbkBgKRppaO6kUNJSn9dGvjlOp3wFVI_#EA$>DOXk1u@*=v z-Q{w@?RI+`Z`&4H>mUC38cHdhZ^v2-HY=dD#_RP00F-5kVHkoPi!(ET?`p+mk8MAk zyAtqX05A+guB2z&f(c*oj2d~As`GwQmA5CT zV%xUMHBA%pJP)cr;8+5?3d^zp0Lrq2*7|72;QS4oWm@Z_-S>U)>;aDw7-O=wZ9zn+ zstQB|B8rlG1+a(+hzKHruIoa*2SHo0-3wx84@4YBZ^(lQIrS2W#3z0L)s1^!>~9jx P00000NkvXXu0mjfD2|4N literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Bandanas/skull.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Bandanas/skull.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..a5bb49869c8df1f910fad0aa96098a93bde87fcb GIT binary patch literal 416 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEU`+RPaSW-L^LEz3yh8>8E^}8k z1;6pW{r~^Au)PxsJa#aMhj&XQD>{_zIl1nljpn3@k8a*nJb5%5XaE@KbZlMgA9{Z0 z_9cGT*FP$7^*t|J{4$Xoi%W&39+ae}6yW#vgXaiuaq>RlMJ#mb=PvYtmYwdpnsF zcE!qHdw$t+&B+qIEzjq%T`f4bsWPp4exAIq(Ve$dVt>!C=a+AHLp<5^f+7Pgg&ebxsLQ0QYaG_W%F@ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Bandanas/skull.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Bandanas/skull.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..aa2c788bfea27607c5359cc2a92e050ca422bab6 GIT binary patch literal 413 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEU`+9JaSW-L^LExjzrzMRZLuc3 z!IPOk{Cm&#=+Lo+cT;bxo)8v`_1wh5`KIOnWTmyQrqunr{X|F@XaEQ__|K7c&W~J@ zB~?^E=lS97zjY_A){IKfS{uf+@}s|)%47@sI$s0XGwlcNWv8FovuF34l)5F4KbA-q zw*p~U4(~ql*H%6Ry zIPJaIsv+dO!)nD4Rs~yTqn4*TYqI}TyggRMR`pVg85}|j$~#^#D`)(YJl>sZ3=;8l L^>bP0l+XkKt?H+W literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Bandanas/skull.rsi/mask-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Bandanas/skull.rsi/mask-equipped-HELMET.png new file mode 100644 index 0000000000000000000000000000000000000000..8500b2925f3e131da7da259f7ce7c7a4e80defff GIT binary patch literal 337 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEV3hE5aSW-L^Y*4;UbBJ7v5)$; zjIU?!{lRgsMna|UNn_*giq4`IoimX;559Jpx?)9^Q%2OU|DGHt#s1C9HMHeqV5n)I zS$Xc}^k+rq^3uAC&!5S^eJ!~s&a2S)b5PfDiM_eE&wkG5l59Jez1EKB@Of7KD;vvt zx4YZ(C}zmGw+dXl_Cdh-^XaEW6;~ggKC|cAuT8iAi~jrij1lNUFxU{D_D%g)!|dyp z-yc1f`}?(8?tb#NCFjpxkXXEY%AX3GI-A*I3NNj+mp)lKW%ils{Qn!aEs$7j?z?#1 zYZ0e_bCq9b#jo7@%cAeq@3_k*FKg`9pQ=8^=n-_;#A>eJ?7X^ZL7y^bsbqd-v^o3i g|NZVwP+Q-ew)WzgzNL$o>l;YK)78&qol`;+0I%bl(*OVf literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Bandanas/skull.rsi/meta.json b/Resources/Textures/Clothing/Head/Bandanas/skull.rsi/meta.json new file mode 100644 index 0000000000..c9b83c852b --- /dev/null +++ b/Resources/Textures/Clothing/Head/Bandanas/skull.rsi/meta.json @@ -0,0 +1,35 @@ +{ + "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", + "directions": 1 + }, + { + "name": "icon_mask", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "mask-equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/hardhat_blue.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardhats/blue.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/hardhat_blue.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Hardhats/blue.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/hardhat_blue.rsi/icon.png b/Resources/Textures/Clothing/Head/Hardhats/blue.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/hardhat_blue.rsi/icon.png rename to Resources/Textures/Clothing/Head/Hardhats/blue.rsi/icon.png diff --git a/Resources/Textures/Clothing/Head/hardhat_blue.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hardhats/blue.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/hardhat_blue.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Hardhats/blue.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Head/hardhat_blue.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hardhats/blue.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/hardhat_blue.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Hardhats/blue.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Hardhats/blue.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardhats/blue.rsi/meta.json new file mode 100644 index 0000000000..adaa2fb070 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hardhats/blue.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/hardhat_blue.rsi/on-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardhats/blue.rsi/on-equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/hardhat_blue.rsi/on-equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Hardhats/blue.rsi/on-equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/hardhat_blue.rsi/on-icon.png b/Resources/Textures/Clothing/Head/Hardhats/blue.rsi/on-icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/hardhat_blue.rsi/on-icon.png rename to Resources/Textures/Clothing/Head/Hardhats/blue.rsi/on-icon.png diff --git a/Resources/Textures/Clothing/Head/hardhat_blue.rsi/on-inhand-left.png b/Resources/Textures/Clothing/Head/Hardhats/blue.rsi/on-inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/hardhat_blue.rsi/on-inhand-left.png rename to Resources/Textures/Clothing/Head/Hardhats/blue.rsi/on-inhand-left.png diff --git a/Resources/Textures/Clothing/Head/hardhat_blue.rsi/on-inhand-right.png b/Resources/Textures/Clothing/Head/Hardhats/blue.rsi/on-inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/hardhat_blue.rsi/on-inhand-right.png rename to Resources/Textures/Clothing/Head/Hardhats/blue.rsi/on-inhand-right.png diff --git a/Resources/Textures/Clothing/Head/hardhat_orange.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardhats/orange.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/hardhat_orange.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Hardhats/orange.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/hardhat_orange.rsi/icon.png b/Resources/Textures/Clothing/Head/Hardhats/orange.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/hardhat_orange.rsi/icon.png rename to Resources/Textures/Clothing/Head/Hardhats/orange.rsi/icon.png diff --git a/Resources/Textures/Clothing/Head/hardhat_orange.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hardhats/orange.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/hardhat_orange.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Hardhats/orange.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Head/hardhat_orange.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hardhats/orange.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/hardhat_orange.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Hardhats/orange.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Hardhats/orange.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardhats/orange.rsi/meta.json new file mode 100644 index 0000000000..adaa2fb070 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hardhats/orange.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/hardhat_orange.rsi/on-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardhats/orange.rsi/on-equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/hardhat_orange.rsi/on-equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Hardhats/orange.rsi/on-equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/hardhat_orange.rsi/on-icon.png b/Resources/Textures/Clothing/Head/Hardhats/orange.rsi/on-icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/hardhat_orange.rsi/on-icon.png rename to Resources/Textures/Clothing/Head/Hardhats/orange.rsi/on-icon.png diff --git a/Resources/Textures/Clothing/Head/hardhat_orange.rsi/on-inhand-left.png b/Resources/Textures/Clothing/Head/Hardhats/orange.rsi/on-inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/hardhat_orange.rsi/on-inhand-left.png rename to Resources/Textures/Clothing/Head/Hardhats/orange.rsi/on-inhand-left.png diff --git a/Resources/Textures/Clothing/Head/hardhat_orange.rsi/on-inhand-right.png b/Resources/Textures/Clothing/Head/Hardhats/orange.rsi/on-inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/hardhat_orange.rsi/on-inhand-right.png rename to Resources/Textures/Clothing/Head/Hardhats/orange.rsi/on-inhand-right.png diff --git a/Resources/Textures/Clothing/Head/hardhat_red.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardhats/red.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/hardhat_red.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Hardhats/red.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/hardhat_red.rsi/icon.png b/Resources/Textures/Clothing/Head/Hardhats/red.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/hardhat_red.rsi/icon.png rename to Resources/Textures/Clothing/Head/Hardhats/red.rsi/icon.png diff --git a/Resources/Textures/Clothing/Head/hardhat_red.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hardhats/red.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/hardhat_red.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Hardhats/red.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Head/hardhat_red.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hardhats/red.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/hardhat_red.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Hardhats/red.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Hardhats/red.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardhats/red.rsi/meta.json new file mode 100644 index 0000000000..adaa2fb070 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hardhats/red.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/hardhat_red.rsi/on-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardhats/red.rsi/on-equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/hardhat_red.rsi/on-equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Hardhats/red.rsi/on-equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/hardhat_red.rsi/on-icon.png b/Resources/Textures/Clothing/Head/Hardhats/red.rsi/on-icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/hardhat_red.rsi/on-icon.png rename to Resources/Textures/Clothing/Head/Hardhats/red.rsi/on-icon.png diff --git a/Resources/Textures/Clothing/Head/hardhat_red.rsi/on-inhand-left.png b/Resources/Textures/Clothing/Head/Hardhats/red.rsi/on-inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/hardhat_red.rsi/on-inhand-left.png rename to Resources/Textures/Clothing/Head/Hardhats/red.rsi/on-inhand-left.png diff --git a/Resources/Textures/Clothing/Head/hardhat_red.rsi/on-inhand-right.png b/Resources/Textures/Clothing/Head/Hardhats/red.rsi/on-inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/hardhat_red.rsi/on-inhand-right.png rename to Resources/Textures/Clothing/Head/Hardhats/red.rsi/on-inhand-right.png diff --git a/Resources/Textures/Clothing/Head/hardhat_white.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardhats/white.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/hardhat_white.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Hardhats/white.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/hardhat_white.rsi/icon.png b/Resources/Textures/Clothing/Head/Hardhats/white.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/hardhat_white.rsi/icon.png rename to Resources/Textures/Clothing/Head/Hardhats/white.rsi/icon.png diff --git a/Resources/Textures/Clothing/Head/hardhat_white.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hardhats/white.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/hardhat_white.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Hardhats/white.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Head/hardhat_white.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hardhats/white.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/hardhat_white.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Hardhats/white.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Hardhats/white.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardhats/white.rsi/meta.json new file mode 100644 index 0000000000..adaa2fb070 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hardhats/white.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/hardhat_white.rsi/on-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardhats/white.rsi/on-equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/hardhat_white.rsi/on-equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Hardhats/white.rsi/on-equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/hardhat_white.rsi/on-icon.png b/Resources/Textures/Clothing/Head/Hardhats/white.rsi/on-icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/hardhat_white.rsi/on-icon.png rename to Resources/Textures/Clothing/Head/Hardhats/white.rsi/on-icon.png diff --git a/Resources/Textures/Clothing/Head/hardhat_white.rsi/on-inhand-left.png b/Resources/Textures/Clothing/Head/Hardhats/white.rsi/on-inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/hardhat_white.rsi/on-inhand-left.png rename to Resources/Textures/Clothing/Head/Hardhats/white.rsi/on-inhand-left.png diff --git a/Resources/Textures/Clothing/Head/hardhat_white.rsi/on-inhand-right.png b/Resources/Textures/Clothing/Head/Hardhats/white.rsi/on-inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/hardhat_white.rsi/on-inhand-right.png rename to Resources/Textures/Clothing/Head/Hardhats/white.rsi/on-inhand-right.png diff --git a/Resources/Textures/Clothing/Head/hardhat_yellow.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardhats/yellow.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/hardhat_yellow.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Hardhats/yellow.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/hardhat_yellow.rsi/icon.png b/Resources/Textures/Clothing/Head/Hardhats/yellow.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/hardhat_yellow.rsi/icon.png rename to Resources/Textures/Clothing/Head/Hardhats/yellow.rsi/icon.png diff --git a/Resources/Textures/Clothing/Head/hardhat_yellow.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hardhats/yellow.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/hardhat_yellow.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Hardhats/yellow.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Head/hardhat_yellow.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hardhats/yellow.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/hardhat_yellow.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Hardhats/yellow.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Hardhats/yellow.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardhats/yellow.rsi/meta.json new file mode 100644 index 0000000000..adaa2fb070 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hardhats/yellow.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/hardhat_yellow.rsi/on-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardhats/yellow.rsi/on-equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/hardhat_yellow.rsi/on-equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Hardhats/yellow.rsi/on-equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/hardhat_yellow.rsi/on-icon.png b/Resources/Textures/Clothing/Head/Hardhats/yellow.rsi/on-icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/hardhat_yellow.rsi/on-icon.png rename to Resources/Textures/Clothing/Head/Hardhats/yellow.rsi/on-icon.png diff --git a/Resources/Textures/Clothing/Head/hardhat_yellow.rsi/on-inhand-left.png b/Resources/Textures/Clothing/Head/Hardhats/yellow.rsi/on-inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/hardhat_yellow.rsi/on-inhand-left.png rename to Resources/Textures/Clothing/Head/Hardhats/yellow.rsi/on-inhand-left.png diff --git a/Resources/Textures/Clothing/Head/hardhat_yellow.rsi/on-inhand-right.png b/Resources/Textures/Clothing/Head/Hardhats/yellow.rsi/on-inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/hardhat_yellow.rsi/on-inhand-right.png rename to Resources/Textures/Clothing/Head/Hardhats/yellow.rsi/on-inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-HELMET.png new file mode 100644 index 0000000000000000000000000000000000000000..f0a064cde4a8e80c8cc033c40774ea1b65d423a8 GIT binary patch literal 485 zcmVY4mh)-b^J(+*SVtjWOcrUC@@Vt)6#5V_00001 zbW%=J06^y0W&i*HdU{k?bVOxyV{&P5bZKvH004NLC5^ETf=~bh}&ba(p&zH(=d&@F6u>-uS@#wScfoaz3QGL12;>`(MnX(}5XB zO}2>_m+13iE0fA-8H6NiX9dEfai)_?$gvsf-{%XA(;(rXa#GI#007-dL_t(oh3%Hf z4udcZMDdcal)(T0ZO6Hfk=jcud4##VQ5b`Sy)3^ak+{C#Du())FXGZr85fi>Zr1UH zZp;8Cvlw5u{dgVwMh$HyXv|=1JH7ka_yMM(xbuiJ0gs3t9Uanluna+mGANg!sw4f5 zI|5`ploF z+|IHN=F+0J)Lg@)wVW)m;C&Wq=H-aOB%-}m$RWxJn3ZC8LQ006Mv*$L?>PTOCS z1BtylESe{dEe#dX>$BEKB%N19& z;3^H7qx;RGQb4?~iD#+;{FUdCkEdK)AZq+IH7CQnM|gER_i3IHttuIH*3FE{iS!2UcfKSic@0aLO`86W3lK z!!PXVvZXrTwUdTctM%E*Q?Z2z*fRsG*#(MDOA7tX#c~L@@`K)0Mo6#V?a<4}8%G+C zFXIiF9pe~>ZOZ7p+l zL-Pq(z7?B9pPR1gOgMcFFk9WgfS9a5YAV3R;#Iy6p6q4lK=gem;D`!CLlo!|q5cEV zw?py3vS6I4#9o4Ac%I8=M86U}+{WNYF0$XmO(?KJWpd>v%+FwIscp`f5Mc{zxF#6S%i!&tUer`GPQabDqzHCbrx>N* zQv5vd9@>KfQNA`!55B|Ftb`vDPpH}>bb~HQE9Rxs1Kl$Y;1M!OZe1wySX?=W(EV5m zevh|-E4B49YoAg$HsaA&*DNWCp3J?)J33yl)svcPq(7Y6VR&2?)C^2B;v8CMtu3nv zbuGY1ORTVli-y$CPW|+YUS8%eU(->iOXVA2*mEA4GjMnoW>;WwNvIbjD~V&42*O6#g4-W>RGV3b191_i-Q(J8`C8N8}*;-k+pDT0eb9--8p?1)lNfmR0g%nuqoFoYk>#sq{+w$@u}T=FMf*Cn$ETSpFVY)L+qsF2ATFtw!t><6GM zunu$#U`rx{p*sEqtg94qn{r+l0V`2qvR&E8*7RTHg*-)yW;K(RYXwyrM!!>rH3=-t zg?Xoc7@S?*7jERnIu}r;d_8u`@vh}bAOd|N!K(C9O;Xzg%%Rj`*GE+ z$^);tlt$WOe}RO>rsG#Xa%0V&n2nWnh}>JP-pVFCwO$Jac%@xGjJ)N{YrN zv_q!j5WCbvomiM&$kJZ=42D9SsIc)bd1F3raj2&DrdGzsvh-4{e_+ugF?N)-lOawL zCAZDg4^Ionu9t~#UKo_zR%0XA{raXfJ>h0KO?wd&c~SID>(Ce1Sc39!ktW8^! zD$89Bm$WxnNd-e)-g$Q8M3J7$!An|E^vzpQ#VgTgeu;=Kvb+0Yl$c(5r^#wp*t)-A zZ)c8arUJg{)5l| cgZZ1R#Wv3RK%9Zvr#{ngGCoS~qyT7FX%@wev%7)bn#!#|;1v?_9{0kLi`6S|KW!I{*nFFn0Zx zT}S~CUE1PR*DwIbRv+VWipBAIAS#BS%-jyxPn;g)@X?b00~E*Vl_o%m zIR$ga^rP`n(InHxw~8;5>}EVpaaTxcsa6h1B@ncU9qi;!fepPLRrTKrXe_;ZGpo2g zgJ)5;1rD0h6<^kKNGRsU*wm!1Rj9QM9h+Ij+u1JA*)AXm767a*Up38Db@lh@@dhe~ zK>hk%QWTlUYZIx}767*5E5*6M{e*5)Jpl2-QB6dmD;Z2VGfCTR5@%Y$2EB#39Rjcp z%tCs~MK+n*J3u%rFM7Qe^)lAkEz&rpWK5MZYU-Acam*T3u0JNKt$0-uAzRZUKU>1&V^wr%5 zbOC5dEw!Z$2Idj=>6*^BYM0PKev{zudVXaY0={sK=9%8$DY`=9^-002ovPDHLk FV1hG7F%bX& literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/icon.png b/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..e390363d613efea6bfc492cb6ff1de08e71d4051 GIT binary patch literal 250 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnF3?v&v(vJfvtpJ}8*8>L*WQR#EYErW-%se<- z*KI=U!>#5D_SPXQ=R~+GW={K@dHZwb=g;vzVxguJzXNqKmIV0)GdMiEkp|?{dAc}; zXiQ8_kO*-IXb2RTd47dT&I*+Vodrr#FIsdIo&c#u9qtV`4O~qw_}*a9ONg7HCN)E? zQAa@|N25dM!p>i3X2u2!GM$+?`A(3@L>39Pb+?MErm9TZTF&Y!!}?x{^TR5S{E}S_ uZzLC9-915;>r2msMGVZVIHc+iFfthWNiMBlzW)=@B@CXfelF{r5}E*Ifm?w9 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..7b91c45b694729dc7b1ad7c25a113468493c6c6b GIT binary patch literal 407 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0J3?w7mbKU|etpJ}8S0J4oCb_6d?ci)(w+XG5 zg_#exnk(2_hpe2FIqh@i?a!H?KS#JL#`}ov>oNHVRLxiteuk zTAW;zSx}OhpU1#ZF(){zps4iwm*9erU!Q1s>uQ}lb3S-OsKG_!2aj~l`)HnIDC+6m zVPPC(eA(DbVa}sTM<#_R1Z!?oF}Jr^4^2yh38h#BSrY8iwYgN6elCg%x}) zW|Zb-*yAUC4K9_!*XyAC<9iyvjtUtn~B;qjWz44x7N zjfQg|6H^!&+5TkC4{Qt++|T6f?!1S~Ntij9`NN6LVP|fcGOur%boiwE2h9YIIa{-p v;#l`Ib#D6cL{dT}Tu6gig7xERVSWZVF$J%c-dpp5j%Dz4^>bP0l+XkK*f)|r literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..d26398b840e444c9e94c4299a83b3a8dd209fa19 GIT binary patch literal 413 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0J3?w7mbKU|etpJ}8S0J4oCb_6d?ci)(w+XG5 zg_#exnk(2_hpe2FIqh@i?a!H?KS#JL#`}ov>oNHVRLxiteuk zTAW;zSx}OhpU1#ZF(){zps4iwm*9erU!Q1s>uQ}lb3S-OsKG_!2aj~l`)HnIDC+6m zVPPC(eA(DbVa}sTM<#_R1Z!?oF}Jr^4^2yh38h#BSrY8iwYgN6elCg%x}) zW|Zb-*yAUCfF*Gn`2xg3#u{G)1I>{Ma0*BV9womR)2y77Go3k}rNlaVd(4MBwO%XDkDmpub zvMm%^Bw06}d@LjfGBG6J+R-1iJ{WE; zJeuA5IUQiA0pJ2NnJD+82DBMwJ>1v;6*)78&qol`;+ E0I`~!2mk;8 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/meta.json new file mode 100644 index 0000000000..366c8b9bdc --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/meta.json @@ -0,0 +1,35 @@ +{ + "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", + "directions": 1 + }, + { + "name": "icon-flash", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "flash-equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/capspace.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/capspace.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/capspace.rsi/icon.png b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/capspace.rsi/icon.png rename to Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/icon.png diff --git a/Resources/Textures/Clothing/Head/capspace.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/capspace.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Head/capspace.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/capspace.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/meta.json new file mode 100644 index 0000000000..adaa2fb070 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/deathsquad.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/deathsquad.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/deathsquad.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Hardsuits/deathsquad.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/deathsquad.rsi/icon.png b/Resources/Textures/Clothing/Head/Hardsuits/deathsquad.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/deathsquad.rsi/icon.png rename to Resources/Textures/Clothing/Head/Hardsuits/deathsquad.rsi/icon.png diff --git a/Resources/Textures/Clothing/Head/deathsquad.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hardsuits/deathsquad.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/deathsquad.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Hardsuits/deathsquad.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Head/deathsquad.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hardsuits/deathsquad.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/deathsquad.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Hardsuits/deathsquad.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Hardsuits/deathsquad.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/deathsquad.rsi/meta.json new file mode 100644 index 0000000000..adaa2fb070 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hardsuits/deathsquad.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/equipped-HELMET.png new file mode 100644 index 0000000000000000000000000000000000000000..f394a8ea4cb0dc0a54d73e206fb4772b8bf48db3 GIT binary patch literal 1286 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC= zRF50-9Wvlyyvudn=B5A=4ZJp2R*)|HP_3~TL!M@g=YyE>-TW{%dNO~nUO$bTtm+2M49?+}F*clO`k`%b{ z*YmHBGOtY+o6zCvy7Vw(L;ZSph7c>6HPc(3e%-70T==^ARwlFDo4?k7@9quMm*KN3 ztkqBH50i~RaO*T2oZA~!qX{rPHiw#SbN0z?)qCZ#6Hv?{1xv|%5XJ;2^7Gp#52zt z>nEI@tJr+`y+y8Ed_m^dAAh#Xs=6n={w(`>=YeCBW=&gn^y=fZeeYW*LmPCm2 zU%2@_LsRhdeD(`pZ#sqFIFZD*QWO}iuFiYAW&5VT*llv+_F6kTi@QfZzNmE(?ht?2 zE8lfp-3J(czn>kxQNrllq<_D@PybvA)6Z)aKuuRF+*Y~j?PZ#D`qqVF^XGyb%c}0w z?0wF3E6G&zCa3C8lkW_+=BFplD`P2m{LJR$MibtzdXpYYrkwTWeS|1_0r?V79RI4(&0UDwUejWzHfq*+=7{XrsvgF z6=dy$*>q&;zx&SFZF}cjn!J6HU|rOy`Qj61USLTVmz&_le}MbJ|0l`{`=!tJsCx49 z7rgy+GKg&E86eRxrL%z^V2uC zG7D|WKeX)D4q+@7y!KfytmPNUg2_@HDqf;Tm zR=K4M+7xqHAr2X9E@6%uk)wC#%{ecg=lAA$^L#$v&-0`lb8}FDARzz%C^$J{JvP(! zXUTy#`vcOM(angC_4J`)@#liik|L?32nqni6zu9SQ+$Dj%Jf+M_S*YEf&q0o-lGIM zr>XrK2V-ngkEMf0zuNm}pBzkoe>gxynO9X?TEvprDvn?F=o^N_e8VxW`b>9{^IV+!W-B3!)i8XX6{ zCvTvPDyRtBuEdW_lgMz@rf89m5tvC#zNJ%T9OdSB{CErSo->zc`hv+a2)O-{m2)~( zAt8fDRW*$kJMb$SD{um4VzRd~2-EzeU}mxXZ;e}p#@&R*VJn!BRye;zza+%Kgwaq( z48Kd+*w%ch-(Pp!$-7YN(Ya`lV0$()ZdwT zyw{Bo6=@$L|CC;4h5+u>AtzV-Lf^>R?yEuiAYy0Sl7{3QMRQ+UPQP&sk#OXg1Z|Q} z1M^B^2=YXD*{5OR(Q9H07*Vf&AA5X>cDYe`Y>7q+rrkd<^xFwBHnqQX`w#MIRthkJU9$<$#TvB|M>oWWCu_i;uL48F$;|^4p zh*gd?KmeOu#p^qwLFP5|G5{VR@F(@%?-yI`)NSq zo_@^CSW_q_%K&H$QRi-qVkPkDfcw|m4zKqJKGC$k7P!{4`$6bg^waA0^s#wZc8Tyl&g;>8fvkba0s_kwJ~Iq#Tc$ zWsuklLE|B*?fOq`#QK5COWC_kvidw7V|oX2(605B>9C-}WROXqx!%MQEx|Vs)V060 z%ut%|^ET6_?`WpTFij);^!(^ZQw>dFxf&1Mm8jf!x;`}#!%W8|0WEBJCb74ckN-B^N52K#2j(V*Ei9I0GH_|fO>|e zg9M31a@-_;HBBMeMJ?AXLn()LtgFTTlyEEdP*G_mtXMlts*8)Fd&_D(9zPo`9XZrz zH_;uwY3!!M{pmDwM9*MN#BY(I-}3X#2v%yd^RlS+9%+K^K5PEDLpx8TtcF!p=?knP z-A{h+i0B#hg>j2<^NqGR3v1zd-l#|SqrY0U4%M!jk^I2B6~DLpGY0}|+pmm`-FZh| z(_#O)tg^V$U_e>zK%o=Fm7#a&2>d$k!uBKbL`i69O$4Lu$E6_V)}IH5b0c-Vs{AIR zyaN_?>K8?{ljKfc9EKUS;-#@N&jc0Nu=Hcy=azYcALP8UuqKYin9oViEAHX$1XEbG raGVK)-zGc6Z-vD){fE^5W4!?w(WhUGl=0R!9|GWH=Z395jEnyVX>{$$ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/icon-flash.png b/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/icon-flash.png new file mode 100644 index 0000000000000000000000000000000000000000..be2593406a4a6314d44b2b168ac8103904e9181a GIT binary patch literal 679 zcmV;Y0$BZtP)0rCPX6k{*C?ncb>=9Yn#+>0w`n>rTVdd0#Gpz05ZU5*mxHkeZ}4=4-i zAxV}nnc7)hEuv^Vr$QKsLZd|}S6aVC6fm1j2!f#$8wbz`{XizY+}pL&%KG|GL{X$r zC~CgUq_?-TVB=6!~ZZ~<4nU{MH()aWf0Mh`U zfEjo_HNb)Wp{)bNV);ZQVpqG1UZ3mMoA~?FU0rt8DB=~~;wW{qCzY;-J)2d?fB(k$ zsf)UeHwCCu2I%e$?z{J3`pJ;3y_3f)$NBh0gd>2ZGD`@-JoJsuGU&X?*!Uz@uTSaP zE}8&!Q2>xiE2}Im=LoxR6Ltc#;17lYP~vk?Ifs7aGMpJXp~oBe%Pxq;@(Ey(@_NV| z8$Nsiz%BPwjVFW<6GA!P{$RLz9Q%StbsrX{Mt{Xx#mFu9aAW>ZISl|aFcNx1E|oM~ zj2Z%HNv(c0DZqFo1RdpAORA9)pDS(Ecv}GVAlp&X|A<-uEr6y2`~q`=vT|eFF696K N002ovPDHLkV1lv3Fv$P_ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/icon.png b/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..85281322f01cf043d8f58ad910a94cb765cb5053 GIT binary patch literal 246 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnF3?v&v(vJfv^#Gp`*8>L*Y+XL-^s!Ag`s&xO z9e(%rDNtrwQ*q|B&zZMBXMX-%k`lgbVrA_GI{}~sV@Z%-FoVOh8)-mJt*47)h{nX^ z1c^Hi0S$oyGtaM3$yuS&ptC?J=S7Q-!V@61sKdSCrh&_i3!yg{^b)2?Xyr&~_30>R zbJV)s{ ohcb-|#!7umJS&tkYO0tSZk!Z7FR1%^I?y2up00i_>zopr0Du%)_y7O^ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/hardsuit-white.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/hardsuit-white.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Head/hardsuit-white.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/hardsuit-white.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/meta.json new file mode 100644 index 0000000000..366c8b9bdc --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/meta.json @@ -0,0 +1,35 @@ +{ + "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", + "directions": 1 + }, + { + "name": "icon-flash", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "flash-equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/hardsuit-engineering.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/hardsuit-engineering.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/flash-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/flash-equipped-HELMET.png new file mode 100644 index 0000000000000000000000000000000000000000..896f1fe37541f1f72d9afc30036acced546e8fa2 GIT binary patch literal 1592 zcma)-Ydq5n7{~uJ6gEUH7IJAvH%uXl+CkWuB)8)-x13S4RdX4oEtlms6(NL!jMR3V z%nEa<$o*~+I~>iWa!cg6JL_F9&x_yl{d}J1dHH=lPlAKJHB=fd4FCWXZDZ*uBI-wW zONwe)(DhLfZbdq|g;)lV{ci+a3kf0-0f6!t(X21~1__bqF*)1hdM4&@NN2R8v-0p6 z%S5!P{F9-E?`M{SNsZ*+gem3c*RQ*-8BjU~4^-7(e)g3jXm!qToJ)2;L2q`r)V;nh zM^}(&Fr~|aOuPt*Yqp!`_vh?WQ)IZU(8|xB27F2C9z^H>762r|(U!kDQ6A4_dlB|J zE79{mhZQt^GSZph_7$Jvc%*YjUg@wreT+5*UyJ0`Gam5+ldX72gp$XR0;xTkwMcg& zRw8@brihksC*Da5=Kgj?n;GmNAfk^1T-~qf6#i1!G)uTU++bInXE}v7%FXRE8M`@3 zp6d9pmJ-`xflUnr6{6phAK1ATtZd-MQi!x+I_T-U=~TXOmmVpMqt6#cL7NjfgEo}N z<$=(#J@TYmxXp^GuNw=YHB0@#&?lWtkYFuH>f#cX(T(Vad4Jv;R9WWCe1^IZWktNB zqJB*4q@p!_i%sp=JUdppDCk!^MEJl-E5_ITQ~E-R?bOE9fblvkM#?es+Liq?%4tB3aeacs2w>Q>hr8Za+F zx_S(LVBd2(w=uPs#d2TL zaNtNxTV{CF&GkaO@2sRPH*czRe~UQ#b*hqG7=;${mZ6WaE;&f!Y3ijU;{sOmO)`yl zCO_Oe2M#d<0Z%q`Vhxs1viCzNJ9pEIVld^wBd7ZN1d^z0%d+{m%?uXqy@BW3%BGC^ zzAby+Sd})XWvu#i_G;jBaD@17ASO~R&I$rFiLb1OslboTL>o3JmxohgpMyEGSB<%b zY(4pN-+dr7s&4EdQ#1EHI{`wxFsYi~$7}<~A^(Qg%4m2=ZstdPqRKpyjEAYi`+;6D zOMke!J1x)-Y$+qp2%?Fs(1*(FpbVIxLW%fy1}F~D`_ppKsgn=?5J^INnl+s{s%8_( z3SC#NSaGf%bscb@cdlb=B1{OK2_45zW)3cql|h%TxV+EJ&sc@%+`!(^^wc_g!3=+> zfiPLQwq0(hUC4l9m=xWcdm+jWLUQZ2&uQYc@r=uq7=}3dz!yJPQDqSIEmbAS%F~Wi z3V^eQl>^(SLF|#2bw}8XRTH7d$cooN?^zv9b1M01Qgjl?K`>90)<|ny8cF)VczcnzH$ot{UAy3$B4!kzIAi^FFOUl@F3q=*IUIr`2TGt|Pfek89!WdsbXNm( z_{X+Hzc$+>kzR@4`uw`Qc~3}}Xp$C^uX2Tik-Dre)nwq7Q+Vtcot^5keA?UOxhItX zYVWECBNg;gTL$0*hVdt)#j?pD+PX6zshOslZZcL4Lpx>*dLt6#!py8~$p^F{;wLVn z+MI@l`vfrb%cE-%)E)6VDcxDTVYF2Sm^9w+iQ^e-xFl^8SS9#(rq^7(NRpc43?jaTNx3mNtvxCZp%dN_En-vfJXCc4gvrRGA7ga`hoD7%pqo_KJAd!`ajWT#Yf`oAa*nOQ9 z8N|?4v(4+1Z^W=9x#-2X9>OHT)QoGR&c|&)MAI*Y&3;MZ$GJ8QS2)up{#hGfHRAuY c_9w+V$I@s5%8v;Y7A literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/icon-flash.png b/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/icon-flash.png new file mode 100644 index 0000000000000000000000000000000000000000..d8e40277ccf42871a4026ae81aeedd77efb2df05 GIT binary patch literal 692 zcmV;l0!#ggP)vWO zl(h!Z%t@G=N1s2tT%}$?i2uyFS-nn=rL|^FN(!k^4K$@eP@$ zCG=L`Owii6_YiT_4wMzzoSRiQ?oZXmt$w?#C=@z|X5UQEW@Qep6K9KhvTny}e4$)VSL*)WxZCoKk3b2=k|4ie28U-i(tw;=PZ!4!jfu$# z5_cQ|8Uh7oo?oGovqGgoXMs}AixwS)CqQaZhkL_K1D6{YLT@nWB}|jh%8}6O(^1gK z(df_#xU)0sDo=I`!{;>R>jJ4NjBJPdBDJksCa$qn)_9~*!RFcE?pn0yGGoelj?!}u nWf~WZow}HKRw!lER53FgT`szo)6%0D=nw`^S3j3^P6 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/hardsuit-engineering.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/hardsuit-engineering.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Head/hardsuit-engineering.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/hardsuit-engineering.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/meta.json new file mode 100644 index 0000000000..366c8b9bdc --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/meta.json @@ -0,0 +1,35 @@ +{ + "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", + "directions": 1 + }, + { + "name": "icon-flash", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "flash-equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/ihsvoidhelm.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/ihsvoid.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/ihsvoidhelm.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Hardsuits/ihsvoid.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/ihsvoidhelm_on.rsi/icon.png b/Resources/Textures/Clothing/Head/Hardsuits/ihsvoid.rsi/icon-on.png similarity index 100% rename from Resources/Textures/Clothing/Head/ihsvoidhelm_on.rsi/icon.png rename to Resources/Textures/Clothing/Head/Hardsuits/ihsvoid.rsi/icon-on.png diff --git a/Resources/Textures/Clothing/Head/ihsvoidhelm.rsi/icon.png b/Resources/Textures/Clothing/Head/Hardsuits/ihsvoid.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/ihsvoidhelm.rsi/icon.png rename to Resources/Textures/Clothing/Head/Hardsuits/ihsvoid.rsi/icon.png diff --git a/Resources/Textures/Clothing/Head/ihsvoidhelm.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hardsuits/ihsvoid.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/ihsvoidhelm.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Hardsuits/ihsvoid.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Head/ihsvoidhelm.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hardsuits/ihsvoid.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/ihsvoidhelm.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Hardsuits/ihsvoid.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ihsvoid.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/ihsvoid.rsi/meta.json new file mode 100644 index 0000000000..136bb3f4b3 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hardsuits/ihsvoid.rsi/meta.json @@ -0,0 +1,31 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cev-eris at commit https://github.com/discordia-space/CEV-Eris/commit/a75dee2e6d236612dbd403dd5f8687ca930c01f1", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "icon-on", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/equipped-HELMET.png new file mode 100644 index 0000000000000000000000000000000000000000..08151e7df59e95982a32f69cf52736f7de770db5 GIT binary patch literal 1091 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=RaGGoB`&GO$wiq3C7Jno3=9=> zRF50-9WvlyyHfYNX4ADvkX0?10{~{@8<2D)6AFjkY|U-(!dSLnl2(% ztX?ruXWkS^smsc+OqZUm`Ee6R*`@~|%x;J8E(ut-zd!TqZ>O7oV?12DH-x$grwNO9-rvNy_+j3ol5b26vvnNy zGDQU6a@@G&(1MHWnHhMb{#I>VQYCsKo9Vk)Mdka=e(!H`B^>{&WcA2l;}WNmBaMHR zw}1KGFT-)}>x=hlRV|OU=NxEXe_wQK8IQHK^*xE-JRsGde(lV2h_kP$+OBxB(N1)k zIIq9@`8izg`4^t?YRj0#map_tN47fT-0N+*&P8S?MPpik;tUKKQG5U7+>Yg(_~TA= z1KYyi^Wtt#w2?l(E%$xt)E{?59Zo(izGtrfcyg}iJ^mKnAMq3ZvuZ#xrvf89#6w)*sOiF;_L@x-7{4quzOcOM z^3B@;oM*L5=3bZ-?r}X|+u!u#q0|Fk7BQZFY5M-}zlqFQZ+~2R`#{~Ka@Qx5pHIKc zD)(Cux?|R2pr;CcKin+O(EInNYDapc@TtPoHgDJN3&u_+mCT>+t-5UX^X4@t_VdLa zE3AF^H3Lk1n^g<=eIzDa|C=@a`6tUm#};}9yPV_T_$y#_JL<)cQg5#N?+<e!FF! z%+1>~xSV2AuGMeeZYXLpZ;!?HTxqrR$)_H7vY)y!_d5ea-lNTbicfuJyuq|#B3lCY o0XHd7QqN@A#*niFzu+_VU;ZhXSrYTt0ZRo2Pgg&ebxsLQ0DCz6xc~qF literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/flash-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/flash-equipped-HELMET.png new file mode 100644 index 0000000000000000000000000000000000000000..7f0e3c5e4347234a2c6f4f78f9cc26e46d54da83 GIT binary patch literal 1239 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=RaGGoB`&GO$wiq3C7Jno3=9=> zRF50-9WvlyySH{&Y)q@2hPL<8DA~8S z*0Cm5YxaqRwSP_IsQqv&WWp~6p9zj~;aX<*ek+yu%X&m^y2-uBAY(?b<6Sr3nO#B` zf<;}Jeb-OjB_qF1eQ)WtXY@pUs_pt?>54WrgbMviGMm%Iq<-(7am+K&wSZ2=b+ajsSO_g{@gs`VArjE)$s~* z9xKPOO9!_3zV@nGQnlJg<&AHQ+P_6?6_eNBz1XmeH{(Ql<12+%uB<&v|F*?St^6pk z?TDEa!v@uD7d?90xkO)FXSv^=@OjqCL)H1Le?Gm`ea!oR-CPAX$HOet-Bw8=*USaZJp%;`C$p&WPJlNlQJzfU!_&(1npCnyx1n39sBAi(j!$s(z9f9*^^ zsUAa@>P7pSP7BzJK4)0)y7=kw8NXFh9*OT|bx|#;yS$RI_;*~-d!@>JnPU+Tw@&%t z8h+rl%B0Ri>efoK?^S*VDdZmb-SkV>0T}M73|kqprZ8S%S`o+=z`ejt62G8b1v8V8 zywKn6HxH_ZMc>Gs`1khSR{{4woauf#^?TZ{-A$>c%jX}>efCZDRQ26$Gw!bwPzYqa z_ar*IIOBTb#gj5we%9)L*Qs`U?29eG{b_TvzwUZ7`yWOJX78CHJ@<^L+wGIH|HeA5 zT&30aZ(YL7w*|ppRQB%mj1*pSzTw&}nIQA9^Rt2K7EZanAiqLQpGUlB>GU#7=UaQG{A$PWVB6z!ygq)B*PfZG8Xl;Y^tP#-xW|HnvA%ubdaf6CQqAjL|5#XV zZLf&fL~X_I4I5$0QbYi0z#Q)bXB+%`WR-p;*E1 z&r_#PU9noVLC@;Oq^r&xwhh1CB!97YG8{ZdP_rmIiltmBy&UU?$~bLZnN$A^T=ZoR#l5`UEghY{g&N7ZiYKYs{gEC`Hr24_(e+z bv!?qxOk5G{t-c>vQZabC`njxgN@xNAPkKQu literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/icon-flash.png b/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/icon-flash.png new file mode 100644 index 0000000000000000000000000000000000000000..e351248c53dcca5d3e50a024f8135e16897b01bb GIT binary patch literal 562 zcmV-20?qx2P)l*)HMESY7qoGI7s()>tsMw5L|+bLO}-+#Hl!m6yb0@ASE^yKO0&Ogbnqc(~!R17PYvLA(X%zHi?T0x6$Y1I1VzV7c|< zjU50(2PE+T;5Y24z=IP;Ko+CK0Tc21rL=Fc`PC%=KCf1GP&+OZ0X$XtYxgy8Yx0i? zg^H>#0+7V@(H>h#&S^gvIp5J4)&wOBG75(yUs#x#w&a4*B9yCdkF6x9KXi4Vo@D{3 zbzcGHr(vkS$BMQofE=eHrI62G5@>Ej&3P;jTq!_Ce$cclGh&GOiDtfq?Cl@e z2S}_Q?E`;x5XZx#1G9gAB>;F+_YbzDFZ7ErYFW1wK!Vr=(o%YFY%)BR%VqIoVw_!g zIQeZ*eL>u>%(J$>#l*K+OFLr86i7~_xpN@{9INUD$>b*4?H{It`IUKu5H!5+w4!Yc zU;vQ@cE-ng+hn04yQ76%A;RIX<@3PwFOVSa8=+92O9)XUEQ1IkY>5N7o^vgaL?Sl; z!C>$~80=ME5r7`#Il?aj@Dfq=8<7Lx08|~|7OBs%I;&5hy#N3J07*qoM6N<$f|08B A`~Uy| literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/icon.png b/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..f5423da5d72746ca54b3b4e2597231ba0f964303 GIT binary patch literal 222 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnF3?v&v(vJfvxd5LK*8>L*WZwRq`T4V-qh;o_ z&p_c7Q(Eil>e|XO6B82;H=Oa zjTK8&G#Zo?mUJj7a0m&w2r@9T%)iO9s+wlw~q?rxgz(8pEyszopr0GGN<)Bpeg literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..5c14b8e7626682f7cf559aeb9d6ac1e7b85074ff GIT binary patch literal 388 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0J3?w7mbKU|e(Ey(iS0J5v`?H^;W#+WcnV&zm zm1P1&PR;2T08)%4L4Lsu4$p3+0XcEamT z(fM|YBVV(Eh|5CGYPB1CJukmo`H%1+z`rO@v!m5EzLVM&F0EBwQu$XSCsZjM=&nr;A|3b{;Bkl_gQmH z(6PPgEK~0k<<>m7H}z!psT{|pMU@%4EZeqDV2R>pjN;~u;*N~Cmb6^)P2I+|tt@L> eBMJjP*xMh>5X^gfMddiqtqh*7elF{r5}E**#Fu&i literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..d7ffaacbbb9d06d85f04f7b9a916c85cd6dae7ff GIT binary patch literal 393 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0J3?w7mbKU|e(Ey(iS0J5v`?H^;W#+WcnV&xc zxou^cv#PfC0$GeDL4Lsu4$p3+0XcEamT z(fM}DMlL2pp0>-S*Jn76oUq4d1wBFlepW1DI6Nx`^ z>+BlV`zO5LGuQfkh474t0k?yE3!in1_U&mqyxK~)xFX`A%=M>QPH8#?LW!sL@_PCO zJp6l>Yq$0EwLK@#brx0BYbQAV4G$FVdQ&MBb@02PFo0{{R3 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/meta.json new file mode 100644 index 0000000000..366c8b9bdc --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/meta.json @@ -0,0 +1,35 @@ +{ + "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", + "directions": 1 + }, + { + "name": "icon-flash", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "flash-equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Hardsuits/only put helmets that belong to hardsuits in here -swept b/Resources/Textures/Clothing/Head/Hardsuits/only put helmets that belong to hardsuits in here -swept new file mode 100644 index 0000000000..e69de29bb2 diff --git a/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/equipped-HELMET.png new file mode 100644 index 0000000000000000000000000000000000000000..f6e00187238581acd88da06516d0679fd7cd28cf GIT binary patch literal 473 zcmV;~0Ve*5P)!WR@m;WMa26bm8q70p|n zP&BwMYcE04!sK3&6@qL8)AaJtB4h>Xq2-mx3RDVr*E~ncoa}YScZ(z2p}-(md+q^( z&-doKAOjPME7`^GAS*aqh>_U~#Sb7jJcZ)u@(k?d8xS1s(b8fR3|;^LHuW_^0yQSV P00000NkvXXu0mjf{`SOs literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/flash-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/flash-equipped-HELMET.png new file mode 100644 index 0000000000000000000000000000000000000000..44ead9d1ae181671b4d1a88e9c9e25d707ba45d6 GIT binary patch literal 1356 zcma)6dpOez0R0W~nJ`_iv0Z#gUPH``jF@@Th$PR2DH@w7M2zHB^13yas6O2EVcw6T zd5n2f$fGpTLmt(G0EjJC=NL%cI4%JmF}3Jbcv=0B#6JywBtcEL zhh(QW=Z6pS%{IcBoFM-cNKXlk-zLFux&hp0tX- z_X%;E@yQ z5SN_BE9WemAkHoM8m5|8{cMiaQB~5!2n-?BRD|PANM)7^9W<1(V2s{8OGy0%pk<~{ z_#og~Oie+jtg1H7X#YjWl?h-wNL@kh@aRGNyHlUxj*}SZ~(;?31f2dM<9TGN8+@l&F z7~Yn4V~Zc<+^vk*N`6a|EIH=0*`)IlPEke>?x--h_WPv@;`0LUr2Ev}R*8&z?u)!O zIR1#toXHy)d_ocCp$MNCh%7st=}g_6mbC9uCiZQ;-8d|zuV>DuE60OUdk*iSuXnG1 znGum|3FK)fDqk^4t)AEJ+j&09H#J0|0yz;E^!&_O(jGUAyAWTp0u~3q%#S>fd;5zy zeAar=*aQ^?^($3-$GF3t?eQ^t*ajWaWm4y|-AGmpxN= z4Zt*J8cTN7N$eZQ?tw)QX{)v&jPVR*XFpu{XZzy}qqoRp_a0rWNnIW}aDaYRHm}5h z@S#YJSHl^AnuS$23{?szbb#5hPe`#IXWWtiJDq#+#5_(vG!)Vs*6!l4yK_bzq1A;YefYFKtP`mb-$z z+XSNBw~px-Jfma8KX#XV0DPDKa&gF6yX&Vc{IKeW_N-**oLNb)tuC9{^-nD1Ug%hWlOm(m;&wQY{F<(P&gS8V&cD z&N|=19W}}(mS^n%i1(mUi}OyI!YadX+o;)-C`jEqNOZYOqSSF0TJJW98z&pqGYxtn2bZjNeN zT~({s0BQihm5T)T^+%eE_Y3oFiE`&6W)K;}Qw3~A>u{MfA&`m^oKxI(&Qk(&x-)0l zMI_J*P5Rc}?8Pz=YScWkLTgI{L+gg|ujc4_*oN8M!jDLVWKtoM&gwb-8K7Wq$G!mY`sH1= zzC{4o*)fufsQ}cs9AFNqz;~J~4ZL{u5rC)91}f&R_#N($PZ2>OMShH%V8IS5E{ev&26j} zBa$THoRA6m|Beay!8su#NfK6zQMdy_0FopTO{!QeMqCa%&Iy_6)f4~ps#e_Puw%6t zi6&Jfsp13zf)d2z@shpEVP}0-(WjZVVQUJxb*yHi!i+u$toIo_G>V+%a z{9+UOIX-O#kiujX^u9>pO9A{(tNLHE8bA%822gc?Ki;(p99KvZ+W-In07*qoM6N<$ Ef+c8J2mk;8 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/icon.png b/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..a134c90cca49df41bbb41c7b119c8b88774a5d13 GIT binary patch literal 260 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnF3?v&v(vJfv-2k5u*8>L**xA{|E2RSkTFqxp zn-r<3sd;E`&5g@*^3==MEYAq@_tZM`zxL06hL-<)yFa@C)iIU?`2{mLJiCzw(&Xvl z7@{#TIYHu1L!d_>L#w{dql^w6p|m-V(<M*c`UR_oGiXzXOL({`^Ogfvo}wr@5}q z5!t1~s5fEn+ZmIB{Jxp(aJaQ?b7p4wrpp3aNABI(TdgPPdGy$x-R1K=l|xj#@~x}Y zs~1Z+xh^U>x3M>gLzE|{v-12Afo)ALo3=0fz^({%29w4%&5M0PKo*0itDnm{r-UW| DFSKGD literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/meta.json new file mode 100644 index 0000000000..665e2ac94e --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "icon-flash", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "flash-equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/equipped-HELMET.png new file mode 100644 index 0000000000000000000000000000000000000000..370d0a28cfc234bdfcbe0991628cef15ff5dc033 GIT binary patch literal 1275 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=l~o}TB`&GO$wiq3C7Jno3=9=> zRF50-9Wvlyyn%C1G;4qJI~rut1x}3wuJG{aDVqegFF+Z9J#vQ zFU-rP%LPu@t-hXtfyLI-#WAE}&f8i39x~xF$L%-Y?anpPQ`3?T>x$eY!rXRr+EwR` zO{^=Wy)>R(GP(V2g4wNv?&We-FBZ0!%=U0zH9hF|GnEjpLhT(vOiqHi?ny@N8{M3y zW?3S1h|A#gMSh??ce#Os%fp7PD*)y?s=DrqwU`pUuM)4Z^ka?pK}jsN}H!HS4A5 zT*YH8uQ*vR*nVZyUEf-2{X`^9#_Qq7dm-+Pug-*+|^V84DNGELaiMc&bG!`E&zo~D06 zUuLG7b!ExC=4PLeeJE`|+x*q>#TlBvZ+cY9ytd{#V3sKV{`rIXCVk8mQ3Ze0er#F5 zG$Gf)OpD7j0c-|Ba($E31jZ-ovWexAJ#6vNzZ+h(2gLK~SYq;CX`O90ffA8+MzqIpf z*ca@&zlWBWHXPfiYj;et|KRM2jAwtO>b{@l)cs)Q1lI&Z zCWn%}^IlZh0yV!okSgV0R-h=E{^8ctrmwT~rpbH6@341ze3I|ZaXrJmMxH>W>#s>O zh(}0$7Z3ZsX0rD^`^G!1?YY4+8-V<)D3bz|_h+{sR$^RhUYU9HBj=xUy0ZTImPgg&e IbxsLQ04rKid;kCd literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/flash-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/flash-equipped-HELMET.png new file mode 100644 index 0000000000000000000000000000000000000000..2e5db5827b7e2f256d84d4875d2e6be9dd91c65b GIT binary patch literal 1587 zcmbW2`#aMM0LH(zT(gACjO4o9%93%A%WAo#ko$;Sv$-Ua&16dSk#;^-5j<8}!P#~0I-%uLM- zbB{A?Op0ml_lh;@RytxI5yTbzKT!v`aPPA|^nyQJNC(0QY>Ae(Z7N|^XX&?!%amivCTODs;ZE6-=7Hr0} z6lV8!DX_|?Xc_haZyK~W5+J?#;19JTBY$BToWjBGyF2#ot$i!J!Q zvMENiEiITN)cHiE-95*QKYN7~Lp{Bq83N8epB+_LI9bU`)m7ub{daciAs^Ak7jr8j zNc`Wa2+A>dzgnQBJtcltshgTM3kj?y6JeXX^FqnGw6e-DFR2qfzNh*`4pzuLEYMzU zA8|>^31f*bFe-i83jJnE=2l5ou{A3Lj_v-%swMs_{kgfZ{rBSnDrHiGZaIF9e?zR*a zss*o-U`SFk@f4f{<3G$z#z%&SQyCk;YC36~MqRQj%=M=;lOQhS`O_))rDQ1wule%t zuiw9YAVwTJT?NIWv|G$#xNgWE@n09ZIF~*w9@4sJ#f|2Mb?^-xiAjT!HAY?24D(7& z!mk;HJ*h28b0UDq+-$d-${bWLsU2A$-=y>1J;P8 zX}VSJQ0_Ar#OL5eL#Oi3Ivd&w3;ihm>D|wbzoK}(h*flB&fm$qfo0Lecb|tA3@^OpN8nn&CsPHjcORE)?Dc^PUr}tz~jEKFt zk*KeNWjsiq%|a`qMVcN(7StJQy%B{;(OgDjehkO+&Q#l#cG_*3XC`@=k)Z=Sg@X#|?BO-T_NC z8fRVIk`EY_&usXzf;2&y_OlPMr?vjU*zVDw51;l35+Q8C;dOdI~9OQuIe~+jT zfXkjfq3?V4-u}85WnqU#oEK4#v?l(^4FXdUPrj--*AT=>krsy23CkJ1^UZ=un~x)4 zy34&W+js3(t8RUD-MT0B||#hG8BK Gx%>|y3h}1^ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/icon-flash.png b/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/icon-flash.png new file mode 100644 index 0000000000000000000000000000000000000000..551d52bf04bb11fdb3154e0352125d68ddd97419 GIT binary patch literal 811 zcmV+`1JwM9P)7p926nMO960ZJpXWTkb9l~kj%;9HfTL8@ zkw%XIL;xZH{{ukupBS~Zwn+CLJdt_7d%GH?{p_waJ(KM>erN!H^>#H%=kk?gr7KXV z4FEXjtk~zB^ma8$2Zaa;U^2-|0AA@dzW&Vc1z4Ey1@5|(3?#1;sXQt1qaAU&q$%Y zZoI=-XdqdYhPbqXbI$5(ZgC2aECH1|6VDe7J)J@~khAMw5DFsPDaZjRE4+%a&_Gr~ z9?Rkas+1(`^G;tAmsW_A)&MZ*^D$o1($gt)_(25Ci{Em}D3`!H0+z z2Q%82%-)KF%pC*Gl82E&FsdG*EPs!D&4?l`CSVaJlYHNN2zLt9Lm$WPUMwr-!@GVG zlMB$5Xh==!!8y1}-boDrqH7tFU@KA2x+ey0k&E=jcmOpp7b-wF0F}2RKc2|SqKEOg z1}KKvjldlM$oRTJUi=6E?pOg(styZaal2NTv~A2I)Xh$;X8002ovPDHLkV1k)XaS{Lk literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/icon.png b/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..68733a17ff0dbaebeeabafe86983bc9a1dc0324e GIT binary patch literal 262 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dy#sNMdt_Kbr@N~2&2~}TKX?~#J z_1ud50=*g2Y)|d={+~JRbLQ>OnV&xc)z0m$+p>7_^@HoO0H4&`Op9BWx`Wt%dUK0rn2KqhU}sF`i%4M{AfI~ zC0EnxC|8Gk%0mWqmD`Sb=ba3@V^%Hkm=vzopr0Hqvh{Qv*} literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..99e292358139bad50015e85cd1afbcbe4fc3ddc8 GIT binary patch literal 413 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0J3?w7mbKU|e-2k5uS0L@_Xi*ZXUZ6K)S*7`2 z@Bf+8K4;$kJk9ph+}^q^izi<{xDKc$^YiEIxS)%VW9xM=*~k<*?V|`mYWmEO=&TeDX%_}69Ozk#at6^v^dc^EW zP*}m&Vn%5`28LfUQ|a2?mE{K+_i@Vu#$bs1=X=|#H29L=B^_^8qWw@ASPb_`TxxnZG z!{goU89XHl8V%<_Mjm1O(;46B$he*9xM=*~k<*?V|`mYWmEO=&TeDX%_}69Ozk#at6^v^dc^EW zP*}m&Vn%5`28LfUQ|ot6;TAYeD6&h{h2GNzUfha-2Z*&PUJ5J;;D`zFw> zJhA2Jy+mHF7K6nKW|c9A7AJ`C@E`C9U=(H+u48rM^NILm&Sb#8RGsy4=!KnCsm6A! zHc4AkjedxH@LU(C+3wHS98)DX?~nk8#Qj8VrwNS;b<7#u42?nRT#uETQh{z}@O1Ta JS?83{1OVOKn2!Je literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/meta.json new file mode 100644 index 0000000000..366c8b9bdc --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/meta.json @@ -0,0 +1,35 @@ +{ + "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", + "directions": 1 + }, + { + "name": "icon-flash", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "flash-equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/equipped-HELMET.png new file mode 100644 index 0000000000000000000000000000000000000000..3f16f842ce93fa701bdad3b9c51e2aca0e6d2038 GIT binary patch literal 1161 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC= zRF50-H5>4-Ua+(~Dt;zpOX}Ak)=KlVi{FSZ)f>u2uI2s-!HrMu!Xc|R*UGQW2YymNxg79ajHyn zVYPrw$iZz@6ORPHm+OuV<9xI*y*eW6Mz{2KcESFM0WlLB%(q{i(7lY2^|HN1&ta33 zHvA7;(^x%t3=;Ea9`gE^ z&v4-Hr&|Z)Uj0%tPfnL$m@{`@&vgFjj11f3|G(D!*YHB(`f7K2<|ewH{`0EF>wBe9e2Db1#SUJDAY{FOe4?r=X7R&VIudDV01uxa!FoQrP>*{?>Tt{1{BBI{CcgJwXS=@qJ+F^ zZq2*uHp>gxK5P%zsQYK)>C%0ian~1!cTMZuV%4$qlh&nI3H=*q{*d5yzu}cM#qb!2 z>}^#(bJ}Ka&&Gn5j~7qd9J;NLen{fwou6AirQQF>_)Y3O+n;!g5Bm>YV#s2=;=#Ov zH9(nnftW+DNkbHaDFMOa2fQy<+CQkP%uOhFEZJYh@=v;WyWGW{EyfDMy_chJq^?_`lkkLhp?$}vhWa3vC9BMv)Tu38IP3*Aa6LZ-s zG2-S;Qev;n8vdm^sY#_Px*j|;p{sQlZ=KEVICrn_53jur-yvtKD-y54?9|otGlI$V zdh5cMC-SWrZiOb--N^@r*PmsVSGqhmmz9{+H|uqh-82UeLGP@E`3@J25;LswSWI(f z=$^^VXUv$s_G@;PCf9?<$Il;j;$o55Rq*0(r?C5Kh6%rfJ>x{r{bIIwXWi1eOE+eb z_@>hrN*La*9TETZ=yr|F7KlTJzexDaVhuDaUU9qLpR;_{2Z*BJ2lK YWBFmOq@OkqfMpAVr>mdKI;Vst086kH9{>OV literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/flash-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/flash-equipped-HELMET.png new file mode 100644 index 0000000000000000000000000000000000000000..f7ec9d2fadc7b5c488bcd5f74dac12352bf140aa GIT binary patch literal 1608 zcmbW2YdF&j9LN7N#$?sW-O*Y}oVmo)=vg!5u2_iXRBYO!X}K4T_j!Iy51cbhSw|TF0GO+bgO`l9 zKcxhbc{L?`REFqSZ{H|~i;<)VN>~&nGz0)*3iSErJ8zn)C=8&jyEJLlI5!4eL%K%i z-a6vMhH6(JJh$=D#YP=1)fL~&lxBks5GH4@4sqYNegIHNcXc@K9aA95qq*I`s>>&= zi55P!ViNN!cSDi73id(EjOhyvL&JByr+tYq=gUAV&AZ{4HJdi6p1t2NFhVKwSo3?R$poJt5*H(U)Ppe`$Bg? z|ElQTi8zU7H=N+>~u+xYmLfF+&bfN9ZQV({Z(U!?a8T_IE_M(dn=yn9RF> zvv&DC-YS+OSF8#}OnfBo3&6V>Tl!QCO2+xs!8#-GVUGW`u2+ypw%vsC^YJ6Ao@XUE zUBY7nqcTSM@_DLXM?_U5)=7$xC1ZE6z6sY4?NGPBIhkwxkGJ}VXgpoLbx^)0} zE~pRBqjH{;GA7f1ATi7;Q`ij@E1|^{Isc&nO16t z5}i3?w!1xeVYEZ7aOb<3PYmIrA-9XR3dfOAuQTi<-smfVm&0)N=gAAEdmyuCb3 z;XW&9BO}U>*V;;lq2sL9#i@qICM8W3*&~kpjX$n)brBGnK@if1B`-{Y)}TY92kW2kBtUVz$uOw0UoQjyc20UViS&CFQq)0~|8w zyNEP9Yf-GJb;eLz69y^v(gZnxnOsrp9P3^r-pc*#lKNcR*Afx@(8nW!{K99x zI)P+ozP^xcqwfv1dtiIF)PvIZl2vVNmQT@QH0K8D_INI{^!K2@AS^K22(T8|>D!vv zE*ri*(CLQIv%uu01SoPS%%m2cc}5(i87+`&)Xwj8udqlv=vXtB1fYhT{|rTW77@wa zWo)5^ld^_?dS=%qRsED;<5Fxql>rv;Cd zqIAIxvbu_Co~zrTtu&q&iUMs_r8k-$_0K#}|H4JeMR=NEC?T^Y_3dDyR@hhv6jvdg z-BB|RB>yVLTnd@pUwzR)0=}vCYkCY88RR$5WZoh2dXVMQvy1E6*6(I`R3_Q+Z)(vg z*J6`-^Ot&^zHL`OJB?{%j=_Om^w!`luqiv=k(ROW`gWo~)Z90lqUxy0>&IhmJu;b` z533^(>M8?KG@(jSnq|om!}x$`kGP4aS<;nViwHB-I!YgYZ*6}1cPr!!LxLJ@;a6EM z^wdc$vYDppVMW0oG}i5=cg|2a@WRqg_6C;#QvC`#y`ofezUC|a~^VbCJ6RXRxv zp_Q9H{AeH%L_7-paf6?IMx6IUEOkNbX+ctj?00rZh6o+;vkc7psQQnIib-q{|SKT#Y?=%+T4Er zOzbz7L*-D*)t>?oKzZ=OW4qI%Go8z0zkdh7LYbh`qca!^%l?IX8juHM^uwv5%BYq= z09vT2*KYH=Sgdjq_qj;T&61j%CGIQiwRv5HntE+O+r3lNloSBU0jKVE@x$xHtaQ?* zm2>584*-GBlYF%E>}+Jv%?yB(f(ko_381Gc1@g3?>wY&UYby7g=bFyqUf*DH%_8+J z4xj@WAXhA~Y6;4ETKnQ1wbl3n9{j;ZrX*O_FD&a9Qxg2aMtlJe9ktc;wD!eSW2-6v zLh#zoP%pLtxDmPxjO?uq!z3lPnYJ@j2=&LHs=!VxZBZv3H0J~}!!ZoQ+;bX+$;@z! z=A58TI*6q$P^dqsE0E7_*(|QCk<=u?3XPfJ7-t%q0a#j$(eOJ<|Mvumm36XPHWZrh z@Bl{U@9Tj3R_jyaNjihutJ8Ax0RXRFMtEy(VkS3;jD-V$r3#>00!g8xt;kroCb68P zeKkvTXprd8AnmJJ63a;$F=j1HtY2&0KRUfdGqC=4s5fJ qDY!3ye`Uw_J1zl~07?M=4Zt6{+~byL8Zol~0000L*B&umGsI5P!Yw-X7 z|87m)ojZ4~)zGe0)v%G3zhY(l{#E$Xr%%tHj{5&+9+Ui8YoJEPk|4ie28U-i(tw;a zPZ!4!jfu$#5>FgF1gDYy*n(7gN!d5dnwF$H0j8s z5QX5C7N(YV%BJe!o!!Q&n^#CI>F+jPt6^v^dc^EWP*}m&V#e7#3^Nu<`(0nNzZ7Wk zd`}n05RcB}1PRu~2^*N)oVZ$eX0R;KVPnqW3YiijlAyzyW2UjoO6yPr-whFqrD~Rk zA~+*N3`9LSL=Q$V-4J28yMQG*v6z{8@@nBZt!H_8c#PE(Hn|Pg)?fQp*z7z$gWV*<72LDl!`xdS7{@DS2_T1Qa=iG3e_~xYO`R!zGiE-T2~; cFWSlsYn4Tk1!l!g0y>q!)78&qol`;+0Nm|`iU0rr literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..44e2e8e0f3ca7da6ee83fa0ef5d4f132c93948c1 GIT binary patch literal 407 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0J3?w7mbKU|exd5LKS0J6Jrez~5f5po9psvCH z|Nns^wHi7LYU`aYy*n(7gN!d5dnwF$H0j8s z5QX5C7N(YV%BJe!o!!Q&n^#CI>F+jPt6^v^dc^EWP*}m&V#e7#3^Nu<`(0nNzZ7Wk zI!_nJ5RcB}1PRu~2?k7Ve=a%kxG_bv@XknBq~)c>6(MrKRZ=uoR&=9AL${IDQZ>t@ zKnC$ttw{n}hZZsDonk3z778;z;4(92?uHY_3Z3WXH25->T?{nfauYfb#-PBkn911d zpO}$D@PQ{wS|C7i5RhFZXJ}>eT9?a=HHNSIR!!!nl@7y91_lwG20A0@D>FVdQ&MBb@0N3V{Q2+n{ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/meta.json new file mode 100644 index 0000000000..366c8b9bdc --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/meta.json @@ -0,0 +1,35 @@ +{ + "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", + "directions": 1 + }, + { + "name": "icon-flash", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "flash-equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/equipped-HELMET.png new file mode 100644 index 0000000000000000000000000000000000000000..4abb1d3c74e1b946696ebcc25d18a1020d4854fd GIT binary patch literal 902 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC= zRF50-9WvlyyCUadx3$~!s~<)W6{IPg`n;`VDp{q0*6*LB)m@`-1c zxSYA)4_8 zi_tPqmW!oRmYIQp>6E97V@SoEx3kV>-F6UZ?Z54GkVVaCU60|gZo}+j>;>yjwWlZ;GemrpSG;J?$e`z&(S5Ow0%I7Pr?zfWlGW3C0W!?joho-ON2{(a%>bnyq<0-haQ!5;83 z)3#{}MYV^lCetVt9XVU2^ebuGMp&OT_yWl2{B5ZmrsReTw&hRH@$Rs?2$qqMVE^$FD&|!UrgL~js3-M`xoCQ zF3BvcTYC4{&7YM^?Go;=?CqPLn`?XQxqtJcJKfXM1GKhOeQvq`*;rxy5fRxfg@J2o zL~9>2oN(F6sr&fZX}K3)m2ORCT5*}dd@A#g_>4b`H*h!HW-!-d$YZ{o%ht3Nn>W=x%CsvNL<-_K_m3Y)h+&_2Tz`DXj*F7`S9Cxr{by*_t$|NHJmsyUhG^SSy??N zF4*eH_|wO!^5}Fkd4t~jpErNHe&|}6 zRF50-9WvlyyH0G@FEdK??{&Vqi{By7 zSp3D}b;+mYFW54lney_+w%*KT61?X(g`b;zIyXt;*v1(PKFJ@;u6xTBFggFqd?UlK z#NBa+O@f~k&EB=pW}#Yr1>?WdQ}QlYF^9aInI6Bf=A(?a{NCfAjuy{Ik1wsM3t92w zq|2h@n7?mT_m{E8?3?oJl~>Emmuw49{0{N5|NP;iq|-u!@^^L@c$c@XvOBHC6tI}- zs_ZJ$_n|9F*;YVK2AAPs~wjoz~b%yLs%LU)+jV3OL zTD|qy@n%P^^YbdL*thT>EKqq9v$tqo{yOQk8}s*XKDlO{{L3ez8!OJ-ZA>8BcfYVOYLnV0@)t>--Z+Pa*{?aY&VwohL-{mw1X1p(R@S2JYVNPnnL zd=TGS%e;iu%%%w-1B`rbH&lx5k62?Q znE9bRQ{uE%l7w5knd}xGVDKL{=s5a_VQutHfBTuwyU#CUm@zYtLE=DX+MhVTw+_a~ zI1l{z71h+<-^Tdk-!~2Oyfnt|%OnnL>bf;oDT+;Fd8pCUKgZ7MR98E4wW>4xDX6~5 z7WZIUz5aR0t*vnk-=@d^<#aHzbWJn8oz=BrO;UCs&*1}yURgCxW6a9GS-88_I7f76 zjpp4q;szY8i!3Ivb{){W_uc;N`*&u^sr6@SJeGb6|Gcb zGt}2NvUCZL2@(?%b9K?LuW>2J_b4b1_4hUJ?sR$oD!jbRZqnpX3v;FBM%(kJqyGPy zmk@6r5$@d8?VFclT2|q)&)4HB&~V0*AirP+hi5m^fSgKC7sn8b-nV_$VhsvBEWI5p zf`|S8-1)!2DPLntYPX4TzWLz`pH&U|E<8z^<#L!o@piW*8>L*sH&iLXEIt@w+GSjj;799xjFqDYoOit)nt+9z=_lnNq1jb1XD_SCwk`*R3RHR<-dfDp1 z)Y@ol<$84DSq-ru6L+)bg*9&JmR*N$^iByBVel19m&jsZnD>zX<9yA)*FftSJYD@< J);T3K0RZ&jN8|ti literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/meta.json new file mode 100644 index 0000000000..665e2ac94e --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "icon-flash", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "flash-equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/hardsuit-syndie.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/combat-equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/hardsuit-syndie.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/combat-equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/hardsuit-syndie.rsi/combat-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/hardsuit-syndie.rsi/combat-equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/hardsuit-syndie.rsi/icon.png b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/hardsuit-syndie.rsi/icon.png rename to Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/icon.png diff --git a/Resources/Textures/Clothing/Head/hardsuit-syndie.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/hardsuit-syndie.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Head/hardsuit-syndie.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/hardsuit-syndie.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/meta.json new file mode 100644 index 0000000000..abce656390 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/meta.json @@ -0,0 +1,31 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "combat-equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/hardsuit-wiz.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/hardsuit-wiz.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/flash-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/flash-equipped-HELMET.png new file mode 100644 index 0000000000000000000000000000000000000000..d0f4804b65e43ec684e5d4cd1fe9d4a1d7f29c54 GIT binary patch literal 1665 zcmV-{27dX8P)V=-0C=1w$1x6rFboCIIX=Y~%&nkh^-=|)3~+}?3B*HNDRzs*=^1$2Yw;SV zu)xoO{<*4rKVS^^j@&NE3K-7^xsqioc10~(2BRslCjE)^w_T2gT#~9_4CK}t-&w)v zsl~W>_&LxCJ>DHE5F?o|000HVNklipLS>Vcc0l<2|NIzqWSe%B)7eD;1~De>UlKO)v&mF9&dkm@h)HmOzGpM z3k&JSmzT_?&as5@lDVYKC{6z_gos!@V0v$p*Zq<;7t729i|zHy$cv*`jO=W_?*;LEWGOm2uFh48~T%QBnUuye^L6lXGZ91wKjN$);6|K{CEzp7QVsjZ}#CV zT1&Ct!TMEOXjyu9R3zTBGP&_v*6pHnU=gP7mnXK;fkkXtw<{|X3?f1j3FvZNVP*Yl z{uua;j&J%4_=zqdx*I8;-ETBqRIf@DEJ^jO z<#crailw#om~TWyX{|lhd9#Z}Wh;oqveF<-f6qPk6c6*s#%1g&9;UzNUe>XM?gGuG z-D*X38G*tcVu>I|V=lqa7^p^O2b|pP_3&f-TV2*_{spzSU0Jg*HN>n13f6)ry*%g- z5cCHCINMW^ud8YcJZoH`IUt$t;tz&L7z^tdkIx_$Gch_AM=vy(#K|mr|f9j@AREm9*#cyv86aDLY%~L83y_UwfNTM>dEpJ1^4om1x7|Q$ z)!0nR&?KpPf#~z97nsf*S-llr=%`l#^m;Ix4A}CGT7mSALboM!o!mO^l# zikcui2Nd0(&+^>uv=r`RhvNW=L>R@ALsI8w^Mb7$IW%~R)YUQr=BX4+Oe)GS1NI|_ z22X8Xu$83Fk7CIokqEQHae$V>eJs!2PSO4O!a0P*HJW#-j`%kW9x41%l%oJ=w>t zeizRCZCttCf!FN;QcLEFO~DWsD^d~eo<8p=)&d2u+k?HLjJk>jI&a>$X}tZ{DD;q5*qF8D6&sYk`8#D_)?I)osx0_AtA$ z3}@wPzP|M-B{nIneVNx#`84bn>g$#rv zdhU1zNFt-47>)m&u>Y@_6RKD4Pcn+4;2k0NDa$qZuGufNV4aWDAguW`Jw~ zve68XEkHJ!0kQ?iMl(RR0NH2;$QB?Q%>dZ~WTP1%TYzj{cmw_h6p2Tn%Us;600000 LNkvXXu0mjf>?{`q literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/icon-flash.png b/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/icon-flash.png new file mode 100644 index 0000000000000000000000000000000000000000..1484052fafe29497a08d32e6e2a159573623ecc5 GIT binary patch literal 857 zcmV-f1E&0mP) zSXf{qP2SMxJ%AnnpssgeDxQ`Asr4z+xs-VA0Bu1f{Or91NX63v5P;VWOyClpcGD#yu@k)eRtkAb0LPH`mb>m?WwG7d?-tLy*noy!5Nn;X#Y*FOsjH&!gb?=JhIJZG%sN&#TRDV_7;$=* f27KPP=mT?)5?kV#*Wc#>H86O(`njxgN@xNAZwsk4 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..1a23feecdbb745c8c09a57dfe7e7d99ec7a49ef8 GIT binary patch literal 439 zcmV;o0Z9IdP)GAB7WD?UXu zPdF<=NjX(5BQ-E3H(7VK(f|Me0d!JMQvg8b*k%9#0Bw3ySad{Xb7OL8aCB*JZU6vy zoKseCa&`CgQ*iP1Y+I1~vw87-cAIns{Djo{RytO}uWhALb2?UADE@fTNre z%>lJdDK7CczrvO6bhA@R#&N$5007`W@s)%cUrA8rT_r&aaFqltz*Q2|4Ll`54e*o% hHNjO9R37@<{{W^A23Y-By`}&F002ovPDHLkV1l?9sBr)Q literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/meta.json new file mode 100644 index 0000000000..366c8b9bdc --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/meta.json @@ -0,0 +1,35 @@ +{ + "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", + "directions": 1 + }, + { + "name": "icon-flash", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "flash-equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/beaver_hat.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hats/beaver_hat.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/beaver_hat.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Hats/beaver_hat.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/beaver_hat.rsi/icon.png b/Resources/Textures/Clothing/Head/Hats/beaver_hat.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/beaver_hat.rsi/icon.png rename to Resources/Textures/Clothing/Head/Hats/beaver_hat.rsi/icon.png diff --git a/Resources/Textures/Clothing/Head/beaver_hat.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hats/beaver_hat.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/beaver_hat.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Hats/beaver_hat.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Head/beaver_hat.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hats/beaver_hat.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/beaver_hat.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Hats/beaver_hat.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Hats/beaver_hat.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/beaver_hat.rsi/meta.json new file mode 100644 index 0000000000..adaa2fb070 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hats/beaver_hat.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/beret.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hats/beret.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/beret.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Hats/beret.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/beret.rsi/icon.png b/Resources/Textures/Clothing/Head/Hats/beret.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/beret.rsi/icon.png rename to Resources/Textures/Clothing/Head/Hats/beret.rsi/icon.png diff --git a/Resources/Textures/Clothing/Head/beret.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hats/beret.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/beret.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Hats/beret.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Head/beret.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hats/beret.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/beret.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Hats/beret.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Hats/beret.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/beret.rsi/meta.json new file mode 100644 index 0000000000..adaa2fb070 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hats/beret.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/beret_engineering.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hats/beret_engineering.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/beret_engineering.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Hats/beret_engineering.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/beret_engineering.rsi/icon.png b/Resources/Textures/Clothing/Head/Hats/beret_engineering.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/beret_engineering.rsi/icon.png rename to Resources/Textures/Clothing/Head/Hats/beret_engineering.rsi/icon.png diff --git a/Resources/Textures/Clothing/Head/beret_engineering.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hats/beret_engineering.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/beret_engineering.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Hats/beret_engineering.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Head/beret_engineering.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hats/beret_engineering.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/beret_engineering.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Hats/beret_engineering.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Hats/beret_engineering.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/beret_engineering.rsi/meta.json new file mode 100644 index 0000000000..adaa2fb070 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hats/beret_engineering.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/beret_hos.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hats/beret_hos.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/beret_hos.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Hats/beret_hos.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/beret_hos.rsi/beret_hos.png b/Resources/Textures/Clothing/Head/Hats/beret_hos.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/beret_hos.rsi/beret_hos.png rename to Resources/Textures/Clothing/Head/Hats/beret_hos.rsi/icon.png diff --git a/Resources/Textures/Clothing/Head/Hats/beret_hos.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/beret_hos.rsi/meta.json new file mode 100644 index 0000000000..8c5451aa66 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hats/beret_hos.rsi/meta.json @@ -0,0 +1,19 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Hats/beret_warden.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hats/beret_warden.rsi/equipped-HELMET.png new file mode 100644 index 0000000000000000000000000000000000000000..01598aeeb4463bfc5ca07d4018651616ff1d36d0 GIT binary patch literal 365 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0J3?w7mbKU|e=>VS)SBC!#%37ud7B04~!T*7R zTR)0O$SbHB$SP_7@|?g96k#k0@(X5gcy=QV$SJ4_i70VNElw`VEGWs$&tqVym=hdU zP*nQ;OK`!*uTQkRb+yi&IUl?s)Zn7=gGV~&eKb!p6!rA(urLlXzHIEJFz3;vBa=cD zf>+vX)KE3m*W9YH)uprBSatIXi6v9Jjn`@znu{JWdlD2@@U@sxnva2Lm(0RLAEe@e zcDH!CIEHw1CMPKH8E|nudTPueDb4xdv9Xr)PA#R+Q>XMy{K<33Ei*IIqh{L{6V>Dt z literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Hats/beret_warden.rsi/icon.png b/Resources/Textures/Clothing/Head/Hats/beret_warden.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..3058abcf6e2c3273a19234c765098cb91f772cf0 GIT binary patch literal 212 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnF3?v&v(vJfvl>na**8>L*=$g40*?4Oh*jPA+ z*my)KYnlEB%C39g!@$5^FrC3OWk&DupFk1Dk|4ie28U-i(tw;ePZ!4!jfu$#62BY* zJQ-T^g`{4!=p?<6l9F1~@xZuk0cQtG7t>Y_Wsx0iOPNGF4zjj5NC|155n$3@~ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Hats/beret_warden.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/beret_warden.rsi/meta.json new file mode 100644 index 0000000000..8c5451aa66 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hats/beret_warden.rsi/meta.json @@ -0,0 +1,19 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/bowler_hat.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hats/bowler_hat.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/bowler_hat.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Hats/bowler_hat.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/bowler_hat.rsi/icon.png b/Resources/Textures/Clothing/Head/Hats/bowler_hat.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/bowler_hat.rsi/icon.png rename to Resources/Textures/Clothing/Head/Hats/bowler_hat.rsi/icon.png diff --git a/Resources/Textures/Clothing/Head/bowler_hat.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hats/bowler_hat.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/bowler_hat.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Hats/bowler_hat.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Head/bowler_hat.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hats/bowler_hat.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/bowler_hat.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Hats/bowler_hat.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Hats/bowler_hat.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/bowler_hat.rsi/meta.json new file mode 100644 index 0000000000..adaa2fb070 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hats/bowler_hat.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/brownfedora.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hats/brownfedora.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/brownfedora.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Hats/brownfedora.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/brownfedora.rsi/icon.png b/Resources/Textures/Clothing/Head/Hats/brownfedora.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/brownfedora.rsi/icon.png rename to Resources/Textures/Clothing/Head/Hats/brownfedora.rsi/icon.png diff --git a/Resources/Textures/Clothing/Head/brownfedora.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hats/brownfedora.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/brownfedora.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Hats/brownfedora.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Head/brownfedora.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hats/brownfedora.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/brownfedora.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Hats/brownfedora.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Hats/brownfedora.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/brownfedora.rsi/meta.json new file mode 100644 index 0000000000..adaa2fb070 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hats/brownfedora.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/captain.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hats/captain.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/captain.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Hats/captain.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/captain.rsi/icon.png b/Resources/Textures/Clothing/Head/Hats/captain.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/captain.rsi/icon.png rename to Resources/Textures/Clothing/Head/Hats/captain.rsi/icon.png diff --git a/Resources/Textures/Clothing/Head/captain.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hats/captain.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/captain.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Hats/captain.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Head/captain.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hats/captain.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/captain.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Hats/captain.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Hats/captain.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/captain.rsi/meta.json new file mode 100644 index 0000000000..adaa2fb070 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hats/captain.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/cardborg_h.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hats/cardborg_h.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/cardborg_h.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Hats/cardborg_h.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/cardborg_h.rsi/icon.png b/Resources/Textures/Clothing/Head/Hats/cardborg_h.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/cardborg_h.rsi/icon.png rename to Resources/Textures/Clothing/Head/Hats/cardborg_h.rsi/icon.png diff --git a/Resources/Textures/Clothing/Head/cardborg_h.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hats/cardborg_h.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/cardborg_h.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Hats/cardborg_h.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Head/cardborg_h.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hats/cardborg_h.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/cardborg_h.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Hats/cardborg_h.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Hats/cardborg_h.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/cardborg_h.rsi/meta.json new file mode 100644 index 0000000000..adaa2fb070 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hats/cardborg_h.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/centcom.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hats/centcom.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/centcom.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Hats/centcom.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/centcom.rsi/icon.png b/Resources/Textures/Clothing/Head/Hats/centcom.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/centcom.rsi/icon.png rename to Resources/Textures/Clothing/Head/Hats/centcom.rsi/icon.png diff --git a/Resources/Textures/Clothing/Head/centcom.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hats/centcom.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/centcom.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Hats/centcom.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Head/centcom.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hats/centcom.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/centcom.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Hats/centcom.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Hats/centcom.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/centcom.rsi/meta.json new file mode 100644 index 0000000000..adaa2fb070 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hats/centcom.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/chefhat.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hats/chefhat.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/chefhat.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Hats/chefhat.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/chefhat.rsi/icon.png b/Resources/Textures/Clothing/Head/Hats/chefhat.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/chefhat.rsi/icon.png rename to Resources/Textures/Clothing/Head/Hats/chefhat.rsi/icon.png diff --git a/Resources/Textures/Clothing/Head/chefhat.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hats/chefhat.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/chefhat.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Hats/chefhat.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Head/chefhat.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hats/chefhat.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/chefhat.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Hats/chefhat.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Hats/chefhat.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/chefhat.rsi/meta.json new file mode 100644 index 0000000000..adaa2fb070 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hats/chefhat.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/fez.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hats/fez.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/fez.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Hats/fez.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/fez.rsi/icon.png b/Resources/Textures/Clothing/Head/Hats/fez.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/fez.rsi/icon.png rename to Resources/Textures/Clothing/Head/Hats/fez.rsi/icon.png diff --git a/Resources/Textures/Clothing/Head/fez.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hats/fez.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/fez.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Hats/fez.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Head/fez.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hats/fez.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/fez.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Hats/fez.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Hats/fez.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/fez.rsi/meta.json new file mode 100644 index 0000000000..c5d232e46b --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hats/fez.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cev-eris at commit https://github.com/discordia-space/CEV-Eris/commit/a75dee2e6d236612dbd403dd5f8687ca930c01f1", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/greyfedora.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hats/greyfedora.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/greyfedora.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Hats/greyfedora.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/greyfedora.rsi/icon.png b/Resources/Textures/Clothing/Head/Hats/greyfedora.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/greyfedora.rsi/icon.png rename to Resources/Textures/Clothing/Head/Hats/greyfedora.rsi/icon.png diff --git a/Resources/Textures/Clothing/Head/greyfedora.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hats/greyfedora.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/greyfedora.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Hats/greyfedora.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Head/greyfedora.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hats/greyfedora.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/greyfedora.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Hats/greyfedora.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Hats/greyfedora.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/greyfedora.rsi/meta.json new file mode 100644 index 0000000000..adaa2fb070 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hats/greyfedora.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/hopcap.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hats/hopcap.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/hopcap.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Hats/hopcap.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/hopcap.rsi/hopcap.png b/Resources/Textures/Clothing/Head/Hats/hopcap.rsi/hopcap.png similarity index 100% rename from Resources/Textures/Clothing/Head/hopcap.rsi/hopcap.png rename to Resources/Textures/Clothing/Head/Hats/hopcap.rsi/hopcap.png diff --git a/Resources/Textures/Clothing/Head/hopcap.rsi/icon.png b/Resources/Textures/Clothing/Head/Hats/hopcap.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/hopcap.rsi/icon.png rename to Resources/Textures/Clothing/Head/Hats/hopcap.rsi/icon.png diff --git a/Resources/Textures/Clothing/Head/hopcap.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hats/hopcap.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/hopcap.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Hats/hopcap.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Head/hopcap.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hats/hopcap.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/hopcap.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Hats/hopcap.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Hats/hopcap.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/hopcap.rsi/meta.json new file mode 100644 index 0000000000..adaa2fb070 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hats/hopcap.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/hoshat.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hats/hoshat.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/hoshat.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Hats/hoshat.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/hoshat.rsi/icon.png b/Resources/Textures/Clothing/Head/Hats/hoshat.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/hoshat.rsi/icon.png rename to Resources/Textures/Clothing/Head/Hats/hoshat.rsi/icon.png diff --git a/Resources/Textures/Clothing/Head/hoshat.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hats/hoshat.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/hoshat.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Hats/hoshat.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Head/hoshat.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hats/hoshat.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/hoshat.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Hats/hoshat.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Hats/hoshat.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/hoshat.rsi/meta.json new file mode 100644 index 0000000000..c5d232e46b --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hats/hoshat.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cev-eris at commit https://github.com/discordia-space/CEV-Eris/commit/a75dee2e6d236612dbd403dd5f8687ca930c01f1", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/paper.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hats/paper.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/paper.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Hats/paper.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/paper.rsi/icon.png b/Resources/Textures/Clothing/Head/Hats/paper.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/paper.rsi/icon.png rename to Resources/Textures/Clothing/Head/Hats/paper.rsi/icon.png diff --git a/Resources/Textures/Clothing/Head/paper.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hats/paper.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/paper.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Hats/paper.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Head/paper.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hats/paper.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/paper.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Hats/paper.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Hats/paper.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/paper.rsi/meta.json new file mode 100644 index 0000000000..adaa2fb070 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hats/paper.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/pirate.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hats/pirate.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/pirate.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Hats/pirate.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/pirate.rsi/icon.png b/Resources/Textures/Clothing/Head/Hats/pirate.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/pirate.rsi/icon.png rename to Resources/Textures/Clothing/Head/Hats/pirate.rsi/icon.png diff --git a/Resources/Textures/Clothing/Head/pirate.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hats/pirate.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/pirate.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Hats/pirate.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Head/pirate.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hats/pirate.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/pirate.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Hats/pirate.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Hats/pirate.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/pirate.rsi/meta.json new file mode 100644 index 0000000000..adaa2fb070 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hats/pirate.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/plaguedoctor.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hats/plaguedoctor.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/plaguedoctor.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Hats/plaguedoctor.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/plaguedoctor.rsi/icon.png b/Resources/Textures/Clothing/Head/Hats/plaguedoctor.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/plaguedoctor.rsi/icon.png rename to Resources/Textures/Clothing/Head/Hats/plaguedoctor.rsi/icon.png diff --git a/Resources/Textures/Clothing/Head/plaguedoctor.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hats/plaguedoctor.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/plaguedoctor.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Hats/plaguedoctor.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Head/plaguedoctor.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hats/plaguedoctor.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/plaguedoctor.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Hats/plaguedoctor.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Hats/plaguedoctor.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/plaguedoctor.rsi/meta.json new file mode 100644 index 0000000000..adaa2fb070 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hats/plaguedoctor.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/redwizard.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hats/redwizard.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/redwizard.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Hats/redwizard.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/redwizard.rsi/icon.png b/Resources/Textures/Clothing/Head/Hats/redwizard.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/redwizard.rsi/icon.png rename to Resources/Textures/Clothing/Head/Hats/redwizard.rsi/icon.png diff --git a/Resources/Textures/Clothing/Head/redwizard.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hats/redwizard.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/redwizard.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Hats/redwizard.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Head/redwizard.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hats/redwizard.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/redwizard.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Hats/redwizard.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Hats/redwizard.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/redwizard.rsi/meta.json new file mode 100644 index 0000000000..adaa2fb070 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hats/redwizard.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/santahat.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hats/santahat.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/santahat.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Hats/santahat.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/santahat.rsi/icon.png b/Resources/Textures/Clothing/Head/Hats/santahat.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/santahat.rsi/icon.png rename to Resources/Textures/Clothing/Head/Hats/santahat.rsi/icon.png diff --git a/Resources/Textures/Clothing/Head/santahat.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hats/santahat.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/santahat.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Hats/santahat.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Head/santahat.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hats/santahat.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/santahat.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Hats/santahat.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Hats/santahat.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/santahat.rsi/meta.json new file mode 100644 index 0000000000..adaa2fb070 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hats/santahat.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/sombrero.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hats/sombrero.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/sombrero.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Hats/sombrero.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/sombrero.rsi/icon.png b/Resources/Textures/Clothing/Head/Hats/sombrero.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/sombrero.rsi/icon.png rename to Resources/Textures/Clothing/Head/Hats/sombrero.rsi/icon.png diff --git a/Resources/Textures/Clothing/Head/sombrero.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hats/sombrero.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/sombrero.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Hats/sombrero.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Head/sombrero.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hats/sombrero.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/sombrero.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Hats/sombrero.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Hats/sombrero.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/sombrero.rsi/meta.json new file mode 100644 index 0000000000..adaa2fb070 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hats/sombrero.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/surgcap_blue.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hats/surgcap_blue.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/surgcap_blue.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Hats/surgcap_blue.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/surgcap_blue.rsi/icon.png b/Resources/Textures/Clothing/Head/Hats/surgcap_blue.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/surgcap_blue.rsi/icon.png rename to Resources/Textures/Clothing/Head/Hats/surgcap_blue.rsi/icon.png diff --git a/Resources/Textures/Clothing/Head/surgcap_blue.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hats/surgcap_blue.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/surgcap_blue.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Hats/surgcap_blue.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Head/surgcap_blue.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hats/surgcap_blue.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/surgcap_blue.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Hats/surgcap_blue.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Hats/surgcap_blue.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/surgcap_blue.rsi/meta.json new file mode 100644 index 0000000000..adaa2fb070 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hats/surgcap_blue.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/surgcap_green.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hats/surgcap_green.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/surgcap_green.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Hats/surgcap_green.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/surgcap_green.rsi/icon.png b/Resources/Textures/Clothing/Head/Hats/surgcap_green.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/surgcap_green.rsi/icon.png rename to Resources/Textures/Clothing/Head/Hats/surgcap_green.rsi/icon.png diff --git a/Resources/Textures/Clothing/Head/surgcap_green.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hats/surgcap_green.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/surgcap_green.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Hats/surgcap_green.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Head/surgcap_green.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hats/surgcap_green.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/surgcap_green.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Hats/surgcap_green.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Hats/surgcap_green.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/surgcap_green.rsi/meta.json new file mode 100644 index 0000000000..adaa2fb070 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hats/surgcap_green.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/surgcap_purple.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hats/surgcap_purple.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/surgcap_purple.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Hats/surgcap_purple.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/surgcap_purple.rsi/icon.png b/Resources/Textures/Clothing/Head/Hats/surgcap_purple.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/surgcap_purple.rsi/icon.png rename to Resources/Textures/Clothing/Head/Hats/surgcap_purple.rsi/icon.png diff --git a/Resources/Textures/Clothing/Head/surgcap_purple.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hats/surgcap_purple.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/surgcap_purple.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Hats/surgcap_purple.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Head/surgcap_purple.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hats/surgcap_purple.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/surgcap_purple.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Hats/surgcap_purple.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Hats/surgcap_purple.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/surgcap_purple.rsi/meta.json new file mode 100644 index 0000000000..adaa2fb070 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hats/surgcap_purple.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/tophat.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hats/tophat.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/tophat.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Hats/tophat.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/tophat.rsi/icon.png b/Resources/Textures/Clothing/Head/Hats/tophat.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/tophat.rsi/icon.png rename to Resources/Textures/Clothing/Head/Hats/tophat.rsi/icon.png diff --git a/Resources/Textures/Clothing/Head/tophat.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hats/tophat.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/tophat.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Hats/tophat.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Head/tophat.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hats/tophat.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/tophat.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Hats/tophat.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Hats/tophat.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/tophat.rsi/meta.json new file mode 100644 index 0000000000..adaa2fb070 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hats/tophat.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Hats/ushanka.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hats/ushanka.rsi/equipped-HELMET.png new file mode 100644 index 0000000000000000000000000000000000000000..3abb582499fa8d931526345a085b611739ed160d GIT binary patch literal 644 zcmV-~0(HLT6f9i-CcVg@sl=EmuGiGF%GBRF8GgLk;N;Fx{00001bW%=J06^y0W&i*HaC%f&bVOxy zV{&P5bZKvH004NLQ&wnB#BQY;KF(tn|Pl<~&C9|j)q?L;^ttc@!6~s2=QdV&Fa{(I; z00loBv0m|6hyVZqGD$>1R9J=WmR)axFcgMcb?A|=?hMvr9ikLe^#A|AQHhDmdN5gb zv1EO2ILX`h;iNYp#4jRe^To?zK9gK7qvdL~l3Wh!I7zcKiPzxGqdbq4Qm?~<5n!5R zZ&{L}Ux4Zk@&dQPl%ObzDM9(}C|N-*ZTl3*CTkYLIkY{>~jS=J!#`p!#FrFz82m}Iu85sFtED)<|x2xis zJ5a|iuaNmV3mjii?>WJ~9#8OsL(_n5`3+hNO>|K=0Nz!{092N(?i0000Qc_`9SYB3EP)kc$RaHhpLT_YbT~$^5 z;R?`8A@W)z^4AMsSXg9QT1rJlZ((6)TwF#$LH^?k`rryiKtNnlQeanCLOeW7M@K+8 zIdo-ZYhht!SXfz4PgYM)RZUG@R#s+NS!!TlJT^8&JUlxyGi+X7bYo*`TwGyRR$x_C zWLH;cSy^mhVP;%hI59C@R8&PkKu<|YP)SKeKR-G$GDkr{kESzD00001bW%=J06^y0 zW&i*H)k#D_R5*=eU>F5-2aHTi%*-q-%*;$ojM(H^+1QymIJvlac$wMRSTW`K_yq)o zghfQf#3dvJ1^D?e6i7+S2+GRID<~={s|dD8F*P%{(6zKO;x{xvQ((<+ZDeCBWM}W-=;Ul=1mvPAaItoEbNBG{^7ira_49Xg zwRS;M5D*v`6dV$&5f&a185JEA7#M)2ASNJyCDtxZK0ZDnF;SN#ARq?al}Rk&$uM?u hI7TgJ45|T|#bAI&V@tXG}O|OE+y}V~~Y~i-CcOe0+v{e1&{`hkSfzT3Uf! zLTXMqT0=2gLor}RGh;|KNJ2tkS66jvYH??0YFk@pUS4QhTWexsTU1m>K|x$ZGFCz` zQa&zRR#tCiWoTVpQAV?WMo}cRs7)!&`TlmS|sw<3t(7SWLjE7KR-At zAznr^MnOSuVPR)nT>j$<`rryiKtNnlQeanCL_k12FC<7eDs*LKYhht!SXfz4PgYM) zRZUG@R#s+NS!!TlRY5RGLPBg_UUXw)YFu1lR#sqDRb*FJXjxfoVPR%mTt`AeLo+B{ zR8&PkKu<|YP)SKaF(yekDoQyjKrtpuMMX>@00001bW%=J06^y0W&i*I4M{{nR5*=eU>F5xfRT}jnT3^=jhzjvGzTLm z7dH@b6%|Yc`UZwZ z#wMDkW?JSJmR1JV7z%7utZZfN>>V7P%$;3a4QwzJxVd|HdP#bC`}q3#y9BtqVJHX; zk_Zk74GWJ5i;Rl)4Z<`*KPEOVKEWt4DLExIEj+6-Xd+3vLs(_&^w;b8T;tDi*2F2n^B%Wavx;#U5C5F&Y1_0t^Gcx(8u%iF~002ovPDHLk FV1g+X0&@TW literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Hats/ushanka.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/ushanka.rsi/meta.json new file mode 100644 index 0000000000..4ce08759e2 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hats/ushanka.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "icon-up", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "up-equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Hats/ushanka.rsi/up-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hats/ushanka.rsi/up-equipped-HELMET.png new file mode 100644 index 0000000000000000000000000000000000000000..534f36607791d3a0d91d9cd4106d8f8f9aa880d7 GIT binary patch literal 551 zcmV+?0@(eDP)LPA$kQjanfPDx2JD=TALTQMsuF)Au9C@9}*=idMT z00DGTPE!Ct=GbNc003@!R9JLGWpiV4X>fFDZ*Bkpc$`yKaB_9`^iy#0_2eo`Eh^5; z&r`5fFwryM;w;ZhDainGjE%TBGg33tGfE(w;*!LYR3KBSv^XO%FFUccK#7YpC9|j) zq>+m=ttc@!6~s2=QdV&Fa{(I-0Kiup-p<1wOaK4?^+`lQR9J=Wl|gdCFbqYFB?Vjq zp*RvD*g)=oNgU{+)1s8=bkiBVjTZ0g+dDb;mn=LW_{EGTq8Z;TSK%$JmW}EoAw|`@ z^(KUE2%A>(bsvya-$dAL-?uwhKYyZ`_MtW?-uVdkA3*eqC!8R~yL}6(>$(JOeD3+9 zfcHv4#QQ{63L?V}^dBTDxrUVU?nH8ylG0f#IHy#mj3}N(iNEo<2b+X pT#a1S`_8YN{+B|AVHn0gGe3`k zp<+&OSV2+g_bMbV+?jdV`r_P^aZ(KrHnfQ^INjd_G{J*`L5f>AiW*8>L*$chUqXxTFB<=?(` z<9lFnzP)u+11e@L3GxeOaCmkj4amvzba4#Pn3$X(am7J^ zN1(<{RW&(TRh4l^!-P#6vpY6URB}4tp}E(`Gg8pAdzQPm&?GUogJ)JwygY#?HDUz| zOOOZC=}A+jTuD>p%<%R0J{{Ada^Q+(@iQLQl;x{hS}YdsnCt1u>3VPi3j?pFkgS{S R%xIvk44$rjF6*2UngALYOd$XO literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Hats/warden.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/warden.rsi/meta.json new file mode 100644 index 0000000000..8c5451aa66 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hats/warden.rsi/meta.json @@ -0,0 +1,19 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/witch.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hats/witch.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/witch.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Hats/witch.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/witch.rsi/icon.png b/Resources/Textures/Clothing/Head/Hats/witch.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/witch.rsi/icon.png rename to Resources/Textures/Clothing/Head/Hats/witch.rsi/icon.png diff --git a/Resources/Textures/Clothing/Head/witch.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hats/witch.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/witch.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Hats/witch.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Head/witch.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hats/witch.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/witch.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Hats/witch.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Hats/witch.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/witch.rsi/meta.json new file mode 100644 index 0000000000..adaa2fb070 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hats/witch.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/witchhat.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hats/witchhat.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/witchhat.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Hats/witchhat.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/witchhat.rsi/icon.png b/Resources/Textures/Clothing/Head/Hats/witchhat.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/witchhat.rsi/icon.png rename to Resources/Textures/Clothing/Head/Hats/witchhat.rsi/icon.png diff --git a/Resources/Textures/Clothing/Head/witchhat.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hats/witchhat.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/witchhat.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Hats/witchhat.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Head/witchhat.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hats/witchhat.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/witchhat.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Hats/witchhat.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Hats/witchhat.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/witchhat.rsi/meta.json new file mode 100644 index 0000000000..adaa2fb070 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hats/witchhat.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/wizard-fake.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hats/wizard_fake.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/wizard-fake.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Hats/wizard_fake.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/wizard-fake.rsi/icon.png b/Resources/Textures/Clothing/Head/Hats/wizard_fake.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/wizard-fake.rsi/icon.png rename to Resources/Textures/Clothing/Head/Hats/wizard_fake.rsi/icon.png diff --git a/Resources/Textures/Clothing/Head/wizard-fake.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hats/wizard_fake.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/wizard-fake.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Hats/wizard_fake.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Head/wizard-fake.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hats/wizard_fake.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/wizard-fake.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Hats/wizard_fake.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Hats/wizard_fake.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/wizard_fake.rsi/meta.json new file mode 100644 index 0000000000..adaa2fb070 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hats/wizard_fake.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/wizardhat.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hats/wizardhat.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/wizardhat.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Hats/wizardhat.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/wizardhat.rsi/icon.png b/Resources/Textures/Clothing/Head/Hats/wizardhat.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/wizardhat.rsi/icon.png rename to Resources/Textures/Clothing/Head/Hats/wizardhat.rsi/icon.png diff --git a/Resources/Textures/Clothing/Head/wizardhat.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hats/wizardhat.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/wizardhat.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Hats/wizardhat.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Head/wizardhat.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hats/wizardhat.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/wizardhat.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Hats/wizardhat.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Hats/wizardhat.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/wizardhat.rsi/meta.json new file mode 100644 index 0000000000..adaa2fb070 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hats/wizardhat.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/xmashat.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hats/xmascrown.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/xmashat.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Hats/xmascrown.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/xmashat.rsi/icon.png b/Resources/Textures/Clothing/Head/Hats/xmascrown.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/xmashat.rsi/icon.png rename to Resources/Textures/Clothing/Head/Hats/xmascrown.rsi/icon.png diff --git a/Resources/Textures/Clothing/Head/xmashat.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hats/xmascrown.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/xmashat.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Hats/xmascrown.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Head/xmashat.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hats/xmascrown.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/xmashat.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Hats/xmascrown.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Hats/xmascrown.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/xmascrown.rsi/meta.json new file mode 100644 index 0000000000..adaa2fb070 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hats/xmascrown.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/bombsuitsec.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Helmets/bombsuit.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/bombsuitsec.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Helmets/bombsuit.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/bombsuitsec.rsi/icon.png b/Resources/Textures/Clothing/Head/Helmets/bombsuit.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/bombsuitsec.rsi/icon.png rename to Resources/Textures/Clothing/Head/Helmets/bombsuit.rsi/icon.png diff --git a/Resources/Textures/Clothing/Head/bombsuitsec.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Helmets/bombsuit.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/bombsuitsec.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Helmets/bombsuit.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Head/bombsuitsec.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Helmets/bombsuit.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/bombsuitsec.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Helmets/bombsuit.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Helmets/bombsuit.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/bombsuit.rsi/meta.json new file mode 100644 index 0000000000..c5d232e46b --- /dev/null +++ b/Resources/Textures/Clothing/Head/Helmets/bombsuit.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cev-eris at commit https://github.com/discordia-space/CEV-Eris/commit/a75dee2e6d236612dbd403dd5f8687ca930c01f1", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/cosmonaut.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Helmets/cosmonaut.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/cosmonaut.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Helmets/cosmonaut.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/cosmonaut.rsi/icon.png b/Resources/Textures/Clothing/Head/Helmets/cosmonaut.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/cosmonaut.rsi/icon.png rename to Resources/Textures/Clothing/Head/Helmets/cosmonaut.rsi/icon.png diff --git a/Resources/Textures/Clothing/Head/cosmonaut.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Helmets/cosmonaut.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/cosmonaut.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Helmets/cosmonaut.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Head/cosmonaut.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Helmets/cosmonaut.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/cosmonaut.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Helmets/cosmonaut.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Helmets/cosmonaut.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/cosmonaut.rsi/meta.json new file mode 100644 index 0000000000..c5d232e46b --- /dev/null +++ b/Resources/Textures/Clothing/Head/Helmets/cosmonaut.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cev-eris at commit https://github.com/discordia-space/CEV-Eris/commit/a75dee2e6d236612dbd403dd5f8687ca930c01f1", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/cult_helmet.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Helmets/cult.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/cult_helmet.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Helmets/cult.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/cult_helmet.rsi/icon.png b/Resources/Textures/Clothing/Head/Helmets/cult.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/cult_helmet.rsi/icon.png rename to Resources/Textures/Clothing/Head/Helmets/cult.rsi/icon.png diff --git a/Resources/Textures/Clothing/Head/cult_helmet.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Helmets/cult.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/cult_helmet.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Helmets/cult.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Head/cult_helmet.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Helmets/cult.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/cult_helmet.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Helmets/cult.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Helmets/cult.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/cult.rsi/meta.json new file mode 100644 index 0000000000..adaa2fb070 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Helmets/cult.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/void.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Helmets/ihvoid.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/void.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Helmets/ihvoid.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/void.rsi/icon.png b/Resources/Textures/Clothing/Head/Helmets/ihvoid.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/void.rsi/icon.png rename to Resources/Textures/Clothing/Head/Helmets/ihvoid.rsi/icon.png diff --git a/Resources/Textures/Clothing/Head/void.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Helmets/ihvoid.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/void.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Helmets/ihvoid.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Head/void.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Helmets/ihvoid.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/void.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Helmets/ihvoid.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Helmets/ihvoid.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/ihvoid.rsi/meta.json new file mode 100644 index 0000000000..adaa2fb070 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Helmets/ihvoid.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/light_riot.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Helmets/light_riot.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/light_riot.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Helmets/light_riot.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/light_riot.rsi/on-icon.png b/Resources/Textures/Clothing/Head/Helmets/light_riot.rsi/icon-on.png similarity index 100% rename from Resources/Textures/Clothing/Head/light_riot.rsi/on-icon.png rename to Resources/Textures/Clothing/Head/Helmets/light_riot.rsi/icon-on.png diff --git a/Resources/Textures/Clothing/Head/light_riot.rsi/icon.png b/Resources/Textures/Clothing/Head/Helmets/light_riot.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/light_riot.rsi/icon.png rename to Resources/Textures/Clothing/Head/Helmets/light_riot.rsi/icon.png diff --git a/Resources/Textures/Clothing/Head/light_riot.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Helmets/light_riot.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/light_riot.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Helmets/light_riot.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Head/light_riot.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Helmets/light_riot.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/light_riot.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Helmets/light_riot.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Helmets/light_riot.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/light_riot.rsi/meta.json new file mode 100644 index 0000000000..db3d1d0cfe --- /dev/null +++ b/Resources/Textures/Clothing/Head/Helmets/light_riot.rsi/meta.json @@ -0,0 +1,43 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cev-eris at commit https://github.com/discordia-space/CEV-Eris/commit/a75dee2e6d236612dbd403dd5f8687ca930c01f1", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "icon-on", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "on-equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "on-inhand-left", + "directions": 4 + }, + { + "name": "on-inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/light_riot.rsi/on-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Helmets/light_riot.rsi/on-equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/light_riot.rsi/on-equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Helmets/light_riot.rsi/on-equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/light_riot.rsi/on-inhand-left.png b/Resources/Textures/Clothing/Head/Helmets/light_riot.rsi/on-inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/light_riot.rsi/on-inhand-left.png rename to Resources/Textures/Clothing/Head/Helmets/light_riot.rsi/on-inhand-left.png diff --git a/Resources/Textures/Clothing/Head/light_riot.rsi/on-inhand-right.png b/Resources/Textures/Clothing/Head/Helmets/light_riot.rsi/on-inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/light_riot.rsi/on-inhand-right.png rename to Resources/Textures/Clothing/Head/Helmets/light_riot.rsi/on-inhand-right.png diff --git a/Resources/Textures/Clothing/Head/scaf.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Helmets/scaf.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/scaf.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Helmets/scaf.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/scaf.rsi/icon.png b/Resources/Textures/Clothing/Head/Helmets/scaf.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/scaf.rsi/icon.png rename to Resources/Textures/Clothing/Head/Helmets/scaf.rsi/icon.png diff --git a/Resources/Textures/Clothing/Head/scaf.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Helmets/scaf.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/scaf.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Helmets/scaf.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Head/scaf.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Helmets/scaf.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/scaf.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Helmets/scaf.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Helmets/scaf.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/scaf.rsi/meta.json new file mode 100644 index 0000000000..c5d232e46b --- /dev/null +++ b/Resources/Textures/Clothing/Head/Helmets/scaf.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cev-eris at commit https://github.com/discordia-space/CEV-Eris/commit/a75dee2e6d236612dbd403dd5f8687ca930c01f1", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/helmet.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Helmets/security.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/helmet.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Helmets/security.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/helmet.rsi/icon.png b/Resources/Textures/Clothing/Head/Helmets/security.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/helmet.rsi/icon.png rename to Resources/Textures/Clothing/Head/Helmets/security.rsi/icon.png diff --git a/Resources/Textures/Clothing/Head/helmet.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Helmets/security.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/helmet.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Helmets/security.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Head/helmet.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Helmets/security.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/helmet.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Helmets/security.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Helmets/security.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/security.rsi/meta.json new file mode 100644 index 0000000000..c5d232e46b --- /dev/null +++ b/Resources/Textures/Clothing/Head/Helmets/security.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cev-eris at commit https://github.com/discordia-space/CEV-Eris/commit/a75dee2e6d236612dbd403dd5f8687ca930c01f1", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Helmets/securityold.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Helmets/securityold.rsi/equipped-HELMET.png new file mode 100644 index 0000000000000000000000000000000000000000..4fd9f44ff218b7c008b471c3ab41e442597b4e73 GIT binary patch literal 880 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=`BfniB`&GO$wiq3C7Jno3=9=> zRF7M8H5dr69HPtd8V=luBm*h+M-(#=(s($)y_eF@#z*j7tiUnJ$4Q+ zrA6+zF3@gn)A?6NkCm{IzRq^q=<%Fh#xYHC$V|VP82z zRCYx4SEHM?zZep7TU9*!KRps{m|{6a>*K@M{pW8#-?yi}ST&We)#%2Vg}*!}?Gp8P ze=UsT;`dw3+os?9`ug+h+UL95)bev#m!9hVuHw0HO8pP!`~Mj)cSrty{{H>kyWduR zT(__{fTK}I`tXcfwqlC=neH(%?4JBK`;*J`|IAHH4DZx^kJtL`%Wh(>(5uL8IzLf@ zVLM}962l#~9i5B?(htCLs87jXlGQ_3jJ2|1S8~uxN(zX*Gj1*5s`4g`8_I z{(co)&yYEJxY zT2@(cFB3bvgJ`6d{`KeO-PNnVe!imoAb6R5 z1^L*XlQ7prl!`_)n#U8 zDl4gZy1Pq=OG-;ir%zZ?JZ+i2o}rqmdXQfmBTx%tNswPKgTu2MX+Tbhr;B5V#>C_V ziBApz0Sv9@SLCeeP*PZuw4`NC%hjVtU5^Szx_ebtdMa&lICf^HaR7@}*t?j(j+~62 zFYg}bp77(%o2O5ozB$2Ez{JIMfptO)yDkI6%*Xuaz7_5|3N)X=)78&qol`;+027%< ARsaA1 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/helmetold.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Helmets/securityold.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/helmetold.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Helmets/securityold.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Head/helmetold.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Helmets/securityold.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/helmetold.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Helmets/securityold.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Helmets/securityold.rsi/light-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Helmets/securityold.rsi/light-equipped-HELMET.png new file mode 100644 index 0000000000000000000000000000000000000000..e1ed2d59ae4ae799acf51055078ffd75679b9761 GIT binary patch literal 952 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=WmO>&B`&GO$wiq3C7Jno3=9=> zRF4~SH9H8fUZ{F5BEOdR;tfA#?L_Xq%@1DitZ2Ne7-#Pq_dSc}vGv)G;6>}7B+cjU z`S)>2!R=RE$5t<1khJ@k{ZVmo1Ffl#Me?^DF8kVbC~IfK#o!yCio6&XFO_;MBe>kf z-ac8@;?|F~JPZs>e?46sLn`LHopmHTPgFiciFT;pk%=np2;V-)@qtM3zV4E8J8wK%3qZA=aQ%Z|05=UhGPg)ISSJj=WWNBPEnL*s5U*U*| zxiiNw$@hBG3%$L-JS7dtDoYLl9#p|Ry%%vz5R0@ z@AdzTdmq<*{Cj-6>Gbzj@#bmDDLp{H1!!&Vcbyu~n9khrHKly&o`vWBGfw4Uc;-3# zajaUr`BdHt4U60+e!+Z(tqfUv7_Ts`_{bK(z2KO%gKmQq0l}5Ib__S}_BhP_sC|~b z$IZDVQQYh7f{-+8lhEof>pq^XY3R(|64LqJMt;K#n}(&|M4n#^OK0)<6y!DAhC##B zS)$BPig)hg>FXFSPnPc24?nNJbXF-wsteU1Ty_*Lv{=3&Two+5yupvCZgPQyBTWQuRq>pSk@0Ta}Ghr&Z47 zFwC7(|FbghT7JBpZS0mromEgPGk4bF zv}VDiTL#A~r%f(xuRi|w(T3WNP~W`$EJy#w?_FFMc)V64>Do0p^UqAT*R}0>{NpD> z7UPu)<`t{~k9ik}IrN%0L@}7&!!P*x1@8~`{byI~H+}Au3CxNNp00i_>zopr0HUz1 A3;+NC literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Helmets/securityold.rsi/lighton-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Helmets/securityold.rsi/lighton-equipped-HELMET.png new file mode 100644 index 0000000000000000000000000000000000000000..634828f1b3e5a55cb53440f2b3d2c414d8ec4c7b GIT binary patch literal 1070 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=l~o}TB`&GO$wiq3C7Jno3=9=> zRFCiGYH{FUy-@W@RD5mhx5U|Ll99_U)C=^eJz!32`nT`symwcAl`mTPxgb=OQYWL2p)_rw$W4MUgY1W=;hvppj<&w}}b&*$a zqkjqW5>q)RHa-^v1_tH=PZ!6KiaBp**=FB%kU0L|?50qP($m(S(Y2iD2 zA?U;O7Z(&42Cuxkc1p>M3;GwQYesr`+Bs~rVzH7eN#UxU*uz&D*8YPpvTTxd^i}4w ze;;h{-}LV1{rFv*A5==6C|nyk3}aEW?M$-JAE;ihCLb zJdY`tjFJhsqPImz(% z-^wgcqlU*@mff4Fm3Zd7>~hnua~^Mbu(^!gK_Pz{U$~TlIzNN^@%IlZ<$nDQu9&xc z)|=~%&nr6~OL$INDRz8g*Za-i_;`FS#4*j8|JGnzqeY*h3zy=hnQ8|5Ms^Gw6Au+e zt+GGU77-I=BISRZ;g}hprTuL|rK6Y6-@iBQ{Qml)^y!B3G7~2<2uplESjlocbEUPO zeXB=daj~%b@%8+^$MzI)_Lxl(V34z~vMkGcf9+Je{49mJ=k^HV-n*em0(G!D*?&@YxpN@TskfCk+g2(rzea( zOP5Q0KK{J=Oy>s^X^q*GhRFOPTI$e+@`j{yf+s%ic=fp_No6_IEbdCEV zez$mMVMB4nj+ih@ef(p_HJ^*7M2zdpn8Ue{`qkYpN;SA|IWj3AxBT)blX#J zrZf3Y0dG=n3Y>k`v?@>|tVbl9wdA6iLt4tx({|a+7W!Tl|DLw55|>zdhF?!AT@IM4 ze&7H9=JdbW?B-?N&s#mN3a{+`1`0KczNx2sexCYUG}l4)#Eix6akjkEbth&@OgZ7g zyYpayoaupMmsg3;2skPyuxJC%slq2gGcGLmwX2Vgjy%6y_Wb8K^YhhrBaiQW^Q${) z*0xiZ9&d_!5PzL3ME3YK_5kh$$D|x|8>F%swlZX`VZ6e$Vj~+~!CBe)2jY{}@5(2d SmmLQd01Te4elF{r5}E)pF63eW literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Helmets/securityold.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/securityold.rsi/meta.json new file mode 100644 index 0000000000..7a2c9310f4 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Helmets/securityold.rsi/meta.json @@ -0,0 +1,35 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "light-equipped-HELMET", + "directions": 4 + }, + { + "name": "lighton-equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/s-ninja.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/s-ninja.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/icon.png b/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..b814dfe5a57664f296a61fb5260deb400e0493c0 GIT binary patch literal 242 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnF3?v&v(vJfvxd5LK*8>L*XlSX1N4aO@R`Bq0 z`v*r_TU#3%nJOtLMujIFs&kSHoD zYG`P%x3vxp4c)zacXV|0`zIS*ogH;_boPZZw3ssd?=Xyui>t1#wzs#hsHkA?I_3^E zhp{BcFPOpM*^M+HXNsqbV~9oX+rDVNW&<9U;MokvUVqs2KQ=okWM$Vv_6+w^|K4Og zp7O8e!wjywxBk);nRq{D{_@FJ}<~C8G?|B#2 lonB=f`z4ey?^XOWPLT&}C+GBZy#cz9!PC{xWt~$(69B#&Z@2&e literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/icon.png b/Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..bae64850e3dd7f072572557ea0ed644459fd19ee GIT binary patch literal 278 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyW&u7St_Kbr;NjtslarH>kSHoD zYG`P%x3vxp4Rv*P)X~w2j*i|J%FtrU@V~<_E-tRRy4v2}zM`UnyT|tr&;-VkAirP+ zhi5m^fSf*07sn8b-nSES`Ir=WTsFqu;Cq_<{onMh4~`v)_`>i@=-K%_K2lCUJ|B8J z+d;WvlgNzi89Do$8iVhs8&8jDi zT>@L;c5ole3)srb{he*Lz?7zsN2F&kEiC1ZH&9+I>+b&T_eas?TlCa*f30MYe-;0X Z@6kin)vw;(Wdpj5!PC{xWt~$(698cvY1aS% literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/syndicate.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/syndicate.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Head/syndicate.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/syndicate.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/meta.json new file mode 100644 index 0000000000..54a62c6dc7 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/meta.json @@ -0,0 +1,59 @@ +{ + "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", + "directions": 1 + }, + { + "name": "visorlit", + "directions": 1 + }, + { + "name": "headlight", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "visorlit-equipped-HELMET", + "directions": 4 + }, + { + "name": "headlight-equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "visorlit-inhand-left", + "directions": 4 + }, + { + "name": "visorlit-inhand-right", + "directions": 4 + }, + { + "name": "headlight-inhand-left", + "directions": 4 + }, + { + "name": "headlight-inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/syndicate.rsi/visorlit-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/visorlit-equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/syndicate.rsi/visorlit-equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/visorlit-equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/syndicate.rsi/visorlit-inhand-left.png b/Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/visorlit-inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/syndicate.rsi/visorlit-inhand-left.png rename to Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/visorlit-inhand-left.png diff --git a/Resources/Textures/Clothing/Head/syndicate.rsi/visorlit-inhand-right.png b/Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/visorlit-inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/syndicate.rsi/visorlit-inhand-right.png rename to Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/visorlit-inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/visorlit.png b/Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/visorlit.png new file mode 100644 index 0000000000000000000000000000000000000000..074f597847adf9bb481e32dca7be2fc1e28b8dd9 GIT binary patch literal 282 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyW&u7St_Kbr;NjtslarH>kSHoD zYG`P%x3vxp4b{=nadmc#j*i|J%FtrU@V~<_E-tRRy4v2}zM`Tc?AH%Rpb3m6L4Lsu z4$p3+0XdUAT^vI!df!gC$k(jE;~J@5;qCb4e|=f&OjT~x-wkh7zCE2M)2sOB=Yx;F z3+gI1h|JiYk+aXKG58LJW b>wjj^;Sad{Xb7OL8aCB*JZU6vyoKseCa&`CgQ*iP1 z>R1DJ1#hF%=n41b>8**_LrIu&rrGVMW3a)-GV7mbIT_G`YVx}|z007%b zL_t(oh3%Hj62c%11`E^=C_hr(|6zsnn4jmnPvGU##pzmkB|Lg03V_d z05-|r31E|a^4{m1xd~H70KyBV)aq-Es~Et>`8nYI6MUc@1wPP#9f*$gt;_`H>4jY! zFxEQ9YAWo){tf7bFZLBhQ55BkmB^gVhv)a_ziS9FGKCyt2tYGpV4e_MAdtQaq~5te z@99PWwf1w}YrXRefX)T_^(PcMLAbzBV?YWRx?&0!nA>d(u>op~L^^kg)}`%(aiyFK hXYKX2qA1EA^8#?A2@wlKY@YxC002ovPDHLkV1lRG)j|LO literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Helmets/templar.rsi/icon.png b/Resources/Textures/Clothing/Head/Helmets/templar.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..60753f558b19496cbc2c40cbfc83316391b8aeab GIT binary patch literal 305 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyHUT~%t_KbraCLR{_xDdqN-8KQ zsH&<;OiU~;F0QYy|9{!8ySsbVtXW_7GWK#@k#@7 z7)yfuf*Bm1-2ibGd%8G=SoGdKcTniC0td^5ES^gtfs_9Kzur_>6}9~Nv}U<)yr&<3 zOc!?QDD>8R`l%~_Zn4Qad~EytD=5)HeM7x-Ls1xW9T$_H y#(AzOyLYUZvg?fRjY)@O!hb3l9xMH``!m~#-CWiublqD(KJj$*b6Mw<&;$V59(-j0 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Helmets/templar.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/templar.rsi/meta.json new file mode 100644 index 0000000000..8c5451aa66 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Helmets/templar.rsi/meta.json @@ -0,0 +1,19 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/thunderdome.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Helmets/thunderdome.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/thunderdome.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Helmets/thunderdome.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/thunderdome.rsi/icon.png b/Resources/Textures/Clothing/Head/Helmets/thunderdome.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/thunderdome.rsi/icon.png rename to Resources/Textures/Clothing/Head/Helmets/thunderdome.rsi/icon.png diff --git a/Resources/Textures/Clothing/Head/thunderdome.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Helmets/thunderdome.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/thunderdome.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Helmets/thunderdome.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Head/thunderdome.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Helmets/thunderdome.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/thunderdome.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Helmets/thunderdome.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Helmets/thunderdome.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/thunderdome.rsi/meta.json new file mode 100644 index 0000000000..adaa2fb070 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Helmets/thunderdome.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/wizardhelm.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Helmets/wizardhelm.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/wizardhelm.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Helmets/wizardhelm.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/wizardhelm.rsi/icon.png b/Resources/Textures/Clothing/Head/Helmets/wizardhelm.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/wizardhelm.rsi/icon.png rename to Resources/Textures/Clothing/Head/Helmets/wizardhelm.rsi/icon.png diff --git a/Resources/Textures/Clothing/Head/wizardhelm.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Helmets/wizardhelm.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/wizardhelm.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Helmets/wizardhelm.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Head/wizardhelm.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Helmets/wizardhelm.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/wizardhelm.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Helmets/wizardhelm.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Helmets/wizardhelm.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/wizardhelm.rsi/meta.json new file mode 100644 index 0000000000..adaa2fb070 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Helmets/wizardhelm.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/bio.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hoods/Bio/bio.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/bio.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Hoods/Bio/bio.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/bio.rsi/icon.png b/Resources/Textures/Clothing/Head/Hoods/Bio/bio.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/bio.rsi/icon.png rename to Resources/Textures/Clothing/Head/Hoods/Bio/bio.rsi/icon.png diff --git a/Resources/Textures/Clothing/Head/bio.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hoods/Bio/bio.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/bio.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Hoods/Bio/bio.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Head/bio.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hoods/Bio/bio.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/bio.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Hoods/Bio/bio.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/bio.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/Bio/bio.rsi/meta.json new file mode 100644 index 0000000000..adaa2fb070 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hoods/Bio/bio.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/bio_cmo.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hoods/Bio/cmo.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/bio_cmo.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Hoods/Bio/cmo.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/bio_cmo.rsi/icon.png b/Resources/Textures/Clothing/Head/Hoods/Bio/cmo.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/bio_cmo.rsi/icon.png rename to Resources/Textures/Clothing/Head/Hoods/Bio/cmo.rsi/icon.png diff --git a/Resources/Textures/Clothing/Head/bio_cmo.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hoods/Bio/cmo.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/bio_cmo.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Hoods/Bio/cmo.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Head/bio_cmo.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hoods/Bio/cmo.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/bio_cmo.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Hoods/Bio/cmo.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/cmo.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/Bio/cmo.rsi/meta.json new file mode 100644 index 0000000000..adaa2fb070 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hoods/Bio/cmo.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/bio_general.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hoods/Bio/general.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/bio_general.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Hoods/Bio/general.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/bio_general.rsi/icon.png b/Resources/Textures/Clothing/Head/Hoods/Bio/general.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/bio_general.rsi/icon.png rename to Resources/Textures/Clothing/Head/Hoods/Bio/general.rsi/icon.png diff --git a/Resources/Textures/Clothing/Head/bio_general.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hoods/Bio/general.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/bio_general.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Hoods/Bio/general.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Head/bio_general.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hoods/Bio/general.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/bio_general.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Hoods/Bio/general.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/general.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/Bio/general.rsi/meta.json new file mode 100644 index 0000000000..adaa2fb070 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hoods/Bio/general.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/bio_janitor.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hoods/Bio/janitor.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/bio_janitor.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Hoods/Bio/janitor.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/bio_janitor.rsi/icon.png b/Resources/Textures/Clothing/Head/Hoods/Bio/janitor.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/bio_janitor.rsi/icon.png rename to Resources/Textures/Clothing/Head/Hoods/Bio/janitor.rsi/icon.png diff --git a/Resources/Textures/Clothing/Head/bio_janitor.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hoods/Bio/janitor.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/bio_janitor.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Hoods/Bio/janitor.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Head/bio_janitor.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hoods/Bio/janitor.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/bio_janitor.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Hoods/Bio/janitor.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/janitor.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/Bio/janitor.rsi/meta.json new file mode 100644 index 0000000000..adaa2fb070 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hoods/Bio/janitor.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/bio_scientist.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hoods/Bio/scientist.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/bio_scientist.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Hoods/Bio/scientist.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/bio_scientist.rsi/icon.png b/Resources/Textures/Clothing/Head/Hoods/Bio/scientist.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/bio_scientist.rsi/icon.png rename to Resources/Textures/Clothing/Head/Hoods/Bio/scientist.rsi/icon.png diff --git a/Resources/Textures/Clothing/Head/bio_scientist.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hoods/Bio/scientist.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/bio_scientist.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Hoods/Bio/scientist.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Head/bio_scientist.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hoods/Bio/scientist.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/bio_scientist.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Hoods/Bio/scientist.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/scientist.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/Bio/scientist.rsi/meta.json new file mode 100644 index 0000000000..adaa2fb070 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hoods/Bio/scientist.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/bio_security.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/bio_security.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/bio_security.rsi/icon.png b/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/bio_security.rsi/icon.png rename to Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/icon.png diff --git a/Resources/Textures/Clothing/Head/bio_security.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/bio_security.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Head/bio_security.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/bio_security.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/meta.json new file mode 100644 index 0000000000..adaa2fb070 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/bio_virology.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hoods/Bio/virology.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/bio_virology.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Hoods/Bio/virology.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/bio_virology.rsi/icon.png b/Resources/Textures/Clothing/Head/Hoods/Bio/virology.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/bio_virology.rsi/icon.png rename to Resources/Textures/Clothing/Head/Hoods/Bio/virology.rsi/icon.png diff --git a/Resources/Textures/Clothing/Head/bio_virology.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hoods/Bio/virology.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/bio_virology.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Hoods/Bio/virology.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Head/bio_virology.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hoods/Bio/virology.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/bio_virology.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Hoods/Bio/virology.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/virology.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/Bio/virology.rsi/meta.json new file mode 100644 index 0000000000..adaa2fb070 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hoods/Bio/virology.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/chaplain_hood.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hoods/chaplain.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/chaplain_hood.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Hoods/chaplain.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/chaplain_hood.rsi/icon.png b/Resources/Textures/Clothing/Head/Hoods/chaplain.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/chaplain_hood.rsi/icon.png rename to Resources/Textures/Clothing/Head/Hoods/chaplain.rsi/icon.png diff --git a/Resources/Textures/Clothing/Head/chaplain_hood.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hoods/chaplain.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/chaplain_hood.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Hoods/chaplain.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Head/chaplain_hood.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hoods/chaplain.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/chaplain_hood.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Hoods/chaplain.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Hoods/chaplain.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/chaplain.rsi/meta.json new file mode 100644 index 0000000000..adaa2fb070 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hoods/chaplain.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/culthood.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hoods/cult.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/culthood.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Hoods/cult.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/culthood.rsi/icon.png b/Resources/Textures/Clothing/Head/Hoods/cult.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/culthood.rsi/icon.png rename to Resources/Textures/Clothing/Head/Hoods/cult.rsi/icon.png diff --git a/Resources/Textures/Clothing/Head/culthood.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hoods/cult.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/culthood.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Hoods/cult.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Head/culthood.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hoods/cult.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/culthood.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Hoods/cult.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Hoods/cult.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/cult.rsi/meta.json new file mode 100644 index 0000000000..adaa2fb070 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hoods/cult.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/nun_hood.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hoods/nun.rsi/equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/nun_hood.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Hoods/nun.rsi/equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/nun_hood.rsi/icon.png b/Resources/Textures/Clothing/Head/Hoods/nun.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Head/nun_hood.rsi/icon.png rename to Resources/Textures/Clothing/Head/Hoods/nun.rsi/icon.png diff --git a/Resources/Textures/Clothing/Head/nun_hood.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hoods/nun.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/nun_hood.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Hoods/nun.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Head/nun_hood.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hoods/nun.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/nun_hood.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Hoods/nun.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Hoods/nun.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/nun.rsi/meta.json new file mode 100644 index 0000000000..adaa2fb070 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hoods/nun.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Hoods/rad.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hoods/rad.rsi/equipped-HELMET.png new file mode 100644 index 0000000000000000000000000000000000000000..8287d47952344a2dfa0be60c6f0b83ca1b88bea3 GIT binary patch literal 930 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=xm6(%B`&GO$wiq3C7Jno3=9=> zRF7NpH7E$M9++i&l>6JU_}#q+CAfAnb83iWZ4%hKul2HTb7kb(=9@aUfnNLc4VG+6mU#U!CO3axvGfEpZ~1TEBwb&e2z<%F z!1Te>#WAE}&f8h`8Nz`w$MT;${2BKy;RUDS@%RH z#;PN4DtF05vqw`LWvnt3V_8nl&{M879W3u;WSJA7X_QD!#W=`XB7PV zy7PBh>VZhhGo`W54<>B5UK0C!jm)z!wwM&Vi_fm)*B|wmy!L$+YlK>b6{F5^{)=`0 z3-H?p=~Sb62*$}5F$ zuTEcaIe%-^qTs*cJK`97m3gm99bSLlY~8(^y;-x^{y$RE+y6r(b&Yl0+S32*8;ZqW zT`6DJsx-lmA>W>9r|lOI1jU4K1pP1^td>GXsR|9&m&OFHNFWMAL(>}@5rip=MP zjL+IOGz%L1I5t`B%$mk$iNU+}ZDHJe=uUp?RK_bzD+1X9xEHudI_Ne?r7~<~$eKco z;K~M;f+`Qj5C0}S+4I^$y;%;lWMX;-0A{x~iE@HIcrP48M1S+$$v z5|l)^J_cw!iS#%$^FC*4#7s>#6}F$Bcbgc6oxZ2baQ6bshuE}R8~;S?-uj-!Nblb5 zzP`&(*d9)Quzfza^Zv`638s}c60S$(r+B|`2x(!G_Kx=lxBIabO>EBQGQdp7;OXk; Jvd$@?2>|89nxp^# literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Hoods/rad.rsi/icon.png b/Resources/Textures/Clothing/Head/Hoods/rad.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..9eaf4e570805a2086177001e9658d8825e3dc505 GIT binary patch literal 347 zcmV-h0i^zkP)9woI{W-}k?ABEtJqM~n~w;?R~Shd`_QhVj+08v`hk6sy}C z0DxBa#y(#I{oBP6l`bI>p-55`Ns6uWM>|~;k$5lB31lAz!x7{4KF8+%oi)Z_t@}z%6^Pk_|?ksqG+M19HMTjLR-8iEcYurC8XbUW2sn9 zxuy|+uH3EMzuPD1dX;8c@oauKsqOys$J}54>g_hZf9|)<{ljn07~Ie9?d$twAH1;o z!GmVA>JzIT@31}C$<4oZtI5`Rzobi!DsK&Kk&^DX5@z^g!P#r33TxNPI2_;nZ&Adz zr#CkJ-kYK-8(X`S!D`;u+xuP#Ff5OLWOBde%*$yO4EtV9c&<3*)q0b4QNcfXPVAFe z{4QYi=8dO+uCTrmRc2Ok(#xv#&6F_Pr3{a34a?5^7O&gc{dp=k!<_Xo4`PbNcRyd& z`TfWipEY9jTCMsb8hO*(9&)pOSRQoBbSl%1f@dlWwfa__wRgE3-n+U6NuR#cbMKz|HSJvUg}3YYc3){(w?l9HZmT!7xA#4;WAAzX_tvi{#vN*R z-oLi|xz)|Op`LZE`oVfm;f5`YnLZ4c*p?VFdPq+=#-fnxAVom%;w%1){%?A_IV5xU zZ_!(S{CZIQ&#e{JTdwchwY)~rXvg8_J$r9Gs^oZkG0wWGLa^aZ&cd8G$Bs8_+84y| z?#cWA9e>Qq3WI}gx6G>J+c53>2FruJB>|rGR~e`H?VB)H>B}5WG)8a!-<|p?!>%UC9 zOSIQDHLx;vA6?AZ_kWJYuN4v!I{#9#)@`_S@$@1Q2P0em;It(>+~S4#gx+^rPPSjR zc$UYe`|E7xj8ch5ib4DuSYV|1T%$RPKR3!CTa|s%$H^`;1xVuFMmM4d|v9utpx!Bz)Z>D M>FVdQ&MBb@0MgaMp` z=>}i^fB7t<=tv=n`fb5O@Dz#ru!OY!b&( yEe#vqOqw9%J&`d|(ZSc?RRd%B0S#~%F)#%8#btbMU_J&6MFvk-KbLh*2~7Y=n~%Q$ diff --git a/Resources/Textures/Clothing/Head/atmos_helm.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/atmos_helm.rsi/inhand-left.png deleted file mode 100644 index a5e3abbea94cc0dc05aea65265895e46650ac12f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 808 zcmV+@1K0eCP){$!l~Ey}WSH#nzwK6*VUH z&J4&FQ#Ho+7A&S}yfXvx|E#|V#RG6G%%z$QFRx@hf8P4@oG+H50XP=sWL>=xfW96d zw&!o?>+u1gt2dr`5$W~0#uaQAP~j60US7f6+M77Im3T3?_MZAQoK>GqJRDV`y$p&5 z;G6W&u)9US&Bb8VApnC_hxFTAH0*BSoAl(Z*9QXVjE2;4dKfyR0ev8#WV?XE0SrC7 z55Vk_6VE{<0G@+NW|y3&#`Cepwh6}c_&4@3wzuHl*e4j%V~uSq*=mZS0X%s8L;~=C z{hm0nm3T=WC&zOcc8*D#p$Lt2wWrQE*445ZiZJXPQ~ckdDhr`;mqSj!h>JEq?sCY@ zHG3r20l}C)XMM2?A=Orb<1R<)j;+Q!mvm`Yf@)s0l2lmp=G4(TjY{lJn zl=Dv{A58>+K>~xsQRgaMf7bxGI{%)Ed2i}hqPy{2)p=A$OLKis=w6=y*L0zPUVyqw{#1^`gPL(1!bf|+ELAsei8ZuavQjvlQ9h^FK zY%5&~qKgEy3580R;F74Z1{y^vozfxX$eCQ#+@-lR@3S1=`~Au9`*B=ezV`z`5ClOG z1VIo4K@e&U$Li{;sRafH2Q3j&DrWUxHtJYj9Ls!ibnzhbore=|9HxGy0-RTWozY}> zXCrEVFYeApmKVn|<&$bX7tvo}fbYXQZE#|JqiEdD80j>M*PR}uw5kA%42AK`yk%r4 z41m(A+TMhG{YL$#V+C(OVts?IzTs@+M)uLwH>`Ub?2M7lqr_g(xXys^e2BJ#B%_`H z;|<3Ej5i!J>Iu+xkR&`GvRJOQIHOS%wOMQDo1v)9IHS>mIXVL-o;(6zY0XdQupWTW zVLeN0eqFzv=}GOgm2wh^rBVBPiNw-urJVGn_KS|!8Swb&qyr%G^;8w@mMI4oSbmS1Gu_EB_>nuq%a?(OR?X-%+g@}1Qp<0KxiSVT*RgQeLps%MVr zq+HR-k5VsW^Y1%a<~4hxXTl=)h742 z@PiLag0;Lt#1gdw^39gLjbnKufBS5_k#A#}aX_!thfP**e@imoJ(%Ug5#3m|TlfC_ z@P^G3YyST^e2!(Y$c22neNz`O{_M$b%!)kb%Q{0~8`IX^tTA^yqS@;Uncw7{-0{-5 zH|RkQ%L1k&(=WZ_dnXyMB+NRezwx?%`tSL+Ouw8Z&5xdF;ExZV{`~U`{_g5&!OIUk z^jv;L_QbO3OT=%!cl48F@R$J966bkgdHAL;x#kJac^Fh~d^X&$Q?L4v((?YvYz)D| zVzyOtO&8qdx$^ASBlq>2*+g1_cq-Ge`quxZb7C1?AMz$}Cp;#SNRE}iu;To;wXdr7 zy!g5H74yBlOlES-7r(x_vHbmMbI0@ZU9vaMysyD}C~QGic9HdLJ~;-yvT4!E7xLI% zB|OioFVUTqmHo_=>6qq**xC2ae{V0(W|?;Oc>dz!vT)h%{=QRki62{*Vxmh$}h zRl8q6tV%T_&W6!#@*mdVoje|F=lLwU7w>hLIb(t~YYc~+K<~>?t9~EmFSpBky)5rf zw7AYNeOjH+Uan6w46Zl)O|G2aeK30qXXNjO_536R%V+k3LV`-}r!p0RX_mp$)z4*} HQ$iB}%`!oq diff --git a/Resources/Textures/Clothing/Head/bandana.rsi/icon.png b/Resources/Textures/Clothing/Head/bandana.rsi/icon.png deleted file mode 100644 index 51e8ef411b9ff6898a47fd345fbb537e6054e785..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 286 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJr=Bj3Ar*6yZ3-SR9Clz@#<+EE zV`F2hjIV7W-~V3Mz@z8(r6p)YmNZNZ*(~AN+ceLj{lDQV9v&qb9-jQV1*dd(`tDNp z=xXZx$oK!}O$mv0^#``h0h+MTLHv0m=u8<#+5++5e@j z@u9Mb%B=8-a{qaFQl2r*c$&X2IL(ronN!ig@ZLjvac$;uG~hjkDyEO86+>@Mi*Tcv`~tr zs41s;6LP+}BxDZ2Fbu;m48t%C!!XRak&Al+$8j_~Ms$P_ zvD#1Qd5rWjY2v1~CFFeGFS|qF0lRB-KG>jo-OmbW7U1=~`vKHls;j$Hp3na+p;{5LTm(7;DmQy{ z?hJr((ToJGQ=r)cFbBA=RK9!u;rcHOCD7_quLoJ425K*KT{l_7_?O3#AyO zn$oI0tcNkAX=9r|RkGXpK?t)6VdvYK-6XRB!!QiPFbu;m48t&sM#i$NL=O-`%%vl7 zN!tIV`E)~FmV+AW6(QHMp6v{Q+KrX@uTCY!G=x0b^6Z8URIh{kKM?`-ijbvk;H=;s zrEO~eyDrZU(-88!2pntxCwp{0FH(EZ{XPNQk$1j;M~B)T9kSQ5=@-E?ggh+(ub*VM z`*eQ&1WpUVBKT6E-3O2doHw!`Ui>$^4@@gV33LWD>Z5F~0?jU6AIB%a)tx$dK89Tj%UgBwA4s?gxX#-HvQ={)h!Fv% zA!I%a+&}xmix)DkM9YfzGlmOLhE2E?HK!g;~ e(RqNs2JsCx^}-o~zg21g00005bOzF5d^-sd3DmB7c5J78nN0_Pg&f zmd{}{o3Co$W!QJllIJjk<+j}Dy;1M>f8G22#c#PHoml(bOeuxgx_s@-Yqoy4r+my} z8po71@=gx1*FW4_ye_*%pzHeibqvpCe(kIO@psl7zvaIxITrq~y2yeA&eHeS4z#7jKua?rAz3c3|}dh8s*dCJfscqmdo|WS(=+jhEfM zr8;xn=KJp%YwrI^5>Ssr;!Y{F<_Yvq15$kKTrJ zB~Mg}+sYo$uKJig@$s)KW*U2cR7Sm?Xl%aVGb1p7r5K_cdf5($B`jv#zBG cZ;UmJx7Hpqe#5@X2^ifBp00i_>zopr0BUmNX8-^I diff --git a/Resources/Textures/Clothing/Head/bandblack.rsi/icon.png b/Resources/Textures/Clothing/Head/bandblack.rsi/icon.png deleted file mode 100644 index b3720e0f27bec1c2fbd063ed540106cd9ac388f1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 182 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJT2B|pkcv5PC-3Gxq9DLJ-+x`g z){9~evRgiCE#Y0IxQJbE*BN=qXuo&9O-IU2gc<}M-H$wHb|os`c0#dT%>O&P{xV*h z>8#Sed-33Nn7XII1n3Y3Pgg&ebxsLQ0H-2FtpET3 diff --git a/Resources/Textures/Clothing/Head/bandblack.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/bandblack.rsi/inhand-left.png deleted file mode 100644 index 7cdfcdc3a37f0711a84d9149fb6cf1c74a5b31f1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 471 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEV4Uaa;uumf=j|=Wz9s_+)(7U3 zBQ;k)i#JufTgkWnqVpFMxu)z2zVe(1!SY?HVv}d3DNVdIscBDs^Qw7Zg zm8GUwZfR?v4jFcKg?umWs_t z74Uhge=X|vdD9=2-E-OI7T3mJk3Y9FlFdGUV!s2=KS8e}3|`^^Qp_5$4wW-0;e)L`TkNK87i(^?#1?RphF)bBgNZ5XxkwLDX{m-YH zQxw949d<<3SjaH^iT(4o%=;DNY8jTptiemK7_>SccV= zENw02)u-y3`e(5%f200m1w+G+nGYT_bsR-@&;#-7T>ZOR_xGCuBaFe*)z4*}Q$iB} DINHo1 diff --git a/Resources/Textures/Clothing/Head/bandblack.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/bandblack.rsi/inhand-right.png deleted file mode 100644 index 6dcbba323e454d91b1bd94d782bcb20856c66e46..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 465 zcmV;?0WSWDP)>p)24f7eEQ7VSH-BpehzQEE zY#k^fGsK2$iiw$}C@*D65YbWddl06>^hI?|oBM)$P5A z;BYu}UIRKWf~gCGb2EF%9p646y{hz1qB2R%K7CQr8#R9|*5E}~+J3wr! zF8~n{5fKp)5v|YDj&JIZ&7WEQ6QN11v97L5YX2n|Re&&Xtu>TV0D$ZD`tW&QGxF1n zDnJ-qD1=f9N-3PrXWVyXQ!uCiq3s-+j#_Kfb&a~N0id@9{mBLu;J)qrdta&sp8~J+ z+*2}W84Nx5xx&OSr~s)?_b#iy5n=&i2Z)UYh#erd)feCgk7JbpGLV(700000NkvXX Hu0mjfe8Rmgyr>f?zD)MQ+aiT~dDDs)=j{xC-G7I3ZeR7IweNnN5lOlB!?`y4n4d;H%lfRf?v23FC!h;1q^W-zvua98_8u4;R{jbW|HMQ^F z{RRroceiZ#e`@bqE`?t^D=zb$D0130?{j?OilmZ{x&q513wO)BI}X&8Wq7rUt;C2S zZQ7ddRs8qQ?PGgvqHT71r{MC)rP1pziw3aIUE8p00>cHS3>Ahg3{sp7x(#kj4%`bS z5)xYWoiXDqyUpukTP&3ieCF(b@r8Y=m2=I*X~O@0zN0J< zZMnQ?`!>&0uWhVM!Wi%LJxf#h{&eQD|6jx7_MG=yee}wM=qIxJOQRdw6;^$DJbRIi z@q$k}Rn`qwRUdN~KKgYndqVZct6Oe4r{+04VuQckfA40dSC^! lo2LmO_9L;Dvol_7ctZaM7^{GFY(0Dqh z{$N6m>z8gXOM4HnY>#f&L+xq_GTo-Es=;b=zB`|(d0 zx;1hZ2;-E!9;f$v%l2ryUgp-SIt$b?2&&>gHi!~d*WkxBb{Y)hlfmj000000001VPpyj%I;cK&|Mb|r^G}2txinUU?>qRf zXx*@k)&vm7DdQ`~dEXIL3!*gvh^xh72+#XbsRy)j5EK_o`5uDpdfDT*h#1JHL9mqp zh{U}Fc}wY^0%*-GP(-}iRrV8n)ihXTKfzZ8KqNmCd|d#t5P<0dOhW*s3oxzo0sI24 WrisOci36hm0000Tlf7zW^v2E$*J1qp1u0C(U9y#gCU*m96=O~b}3a0Bnq3%J#!i<z zj`()9Tqw^juBk9inKhf!VZR~1t*XB;1NfVD(<9sQNjE*RW^)STl=WYFdtsb1+wn=A zOv#$fNu5l|cKpiv3o}47TsrJGg#$Ii?Y`O`eSLmhAKQ*!d0ZiYs_8Dv3?TX$yk@wh zn;xBy+h1Ya8st?VN-}mi?XJ%?!=?AP*U~khbP<#tA8Z(>?B3!%*vnv)WNfuuC{dFA zdFl@G6sTjcGvHAOKy(43App?@h&K8F000000001BeC~F9Wxs8H&*<+6wQ7x(bzNlp zFF~UK_`r43t9-qx8TsEd3V;tTN-~xY;e6auzAGz(S^@C3GjBTb{yQhjx1LukfPCBe zcAu*LkIzgEt6dts%`!5A3r2_R7-c*`YgIH^{`~U*58_!x&bS% zZP-2k$ai!5W$W+$RnfXS>&;rHLQ6xzpED0UJ;GBe|5CRgL;OR^;+%xX=U)r&R%j^F zn7QCfv~o`B^#tB}MWJZN{iZ?trhgIpAzxtY&SRC#WA7`lTexv*msbA%R-OmJYi>KG z-j7dD{LdD9UT}GJ=;5z2g3s)@_cEm&JhZMMav}2u)*CMvav0657@`|``3{IBEG8s$ z_7Z!5mHY(#qpSs{8eb(#j(I)K6zwXFj#&BP%U=7LVV24YTbW|c3;qm>k(n=}kehZP z@7sobo4dZw4UJf-aj0))lNCtm&bMj&na0hJCo@0sE>wKIz(lIp)?H(;kzvKE&7>N|z`#I82t|o?+j{c^*xX6-{q2w8v$>O`Qmsui&WRl-{BxBPJMMOf=eS-1 z1wGH>m2!xc^Y3jvub@2E7~N){wagM)?-$|d0^Mfc?J$RYxeJ(3y<^-U_3o zA|uPkX$j0^5p=4UD2GV=Sr0C%dpG%Z8#FCL?QT~?re&yE{*Nz9U=qID1%gHr;B^3A zlLUAjfY;_e0YV5Ngb+dqA%vJeGre?hgVSU8%Z|?dwWQMTWlzH_lFa z2Ldw#Ov_MOD#G%{BFh_#v>F}O<7uA0ctoxgQ`26d1!e{u9-IQ80j)*{fb5gI9JlSi zGhn={_kRU)5zLihs-WiqSWSjGZrc+^QZp!3P!ZI!z`h+^2BWoU(_}Ht^MhVOC=V}R-Y?|+03sqHA|fIpiW;d> zsf_donM}r$Aa0GCf5Mv>;q|E3Ma@)2$tYv(eonyHFu(_Sb-l5Vne^&uYMj5O56t0hM|Nd6-F2gH^B&u6P%~AryKYEM&3kMMU@v*6?R#tsFenxv=m0@u z0fG(?w8$5Lh=_=Yh=_=y$8q8t_Q{cx$bS(UX*8BC#szRUP_?xh9XO4n9uik8Kr>a5 zEyl%%k8iLnr%|sqF}*T{>6IxYmL@}UmH=>BfI?E24t6f2^J5E{_lp34+UM`MKDtG# z(Lt-x@ie5LhI$0-v9mpNoJ+-UerzGV_5vlNj8A{2vSH$C7qE|;^qafe9{MgYbQ2t8 z<{l~ejRgogK+qyzfZu2VxJ$P{Sup?r002ov JPDHLkV1fcC97g~E diff --git a/Resources/Textures/Clothing/Head/bandbotany.rsi/meta.json b/Resources/Textures/Clothing/Head/bandbotany.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/bandbotany.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/bandcamo.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/bandcamo.rsi/equipped-HELMET.png deleted file mode 100644 index 59f07d9567fd525bec286f9ec862597a6c079931..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 780 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEV7lz-;uumf=j|-tY+*-<6w;uK#FbE|{rxKEmtgC99?y&l5)1OB- ze$%_3a|V)udmx~%^1g;ephZ?)v`Jp*0lGokqo|-4USUl@Q+Nuuy zv&C;2Yb6`n_G~)fv|X-j%g=9b4OjTa#YMizc=@%Iy`*{H+lD+vrUhaP+*llR9eOz$ zq8g+G8MZQ*Dlud+X1Oq2VY<@6u!41kAY%Y`fHJDWS;_JY*MB$cerWlOe~bO!Z&&*! zer{iJHRQ~<7rhQjlBo|5FF`$G4g z_m=r7zcUZM?f9pN{ Y@Ay6~*4SPjn93PEUHx3vIVCg!0J)fB2mk;8 diff --git a/Resources/Textures/Clothing/Head/bandcamo.rsi/icon.png b/Resources/Textures/Clothing/Head/bandcamo.rsi/icon.png deleted file mode 100644 index cae470905ab50da4a018553374100539790c19f4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 225 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJ6`n4RAr*6y6C_v{Cy4Zv9Pscs z*vQPTvFX6UgN*BKgk6^fGj5o$IP=n$RsXNA|Ce&%N?LlwmkDzn{r;&t$Aw8Byl{lg zgRgPYr(^&73^ zKtj#&4?nooo9F!TFM6YH%k}T?@8bs5*HU^OsF}046(3x|>?UjQsv(fQrzy~Y%Z-si YTTuH!eK`M3pqm*yUHx3vIVCg!0DWFss{jB1 diff --git a/Resources/Textures/Clothing/Head/bandcamo.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/bandcamo.rsi/inhand-left.png deleted file mode 100644 index 31e0bf338abf698dfc44fdcfb391c33e8bb09f59..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 668 zcmV;N0%QG&P)i5@cqq|gtJ%%&y4mdWyU+6Mf1jCwnFRbSf`Iik0b}DTZl>onciVHhz&jD( z)ypQPuAV}z%5e8i+HkiX#`F%z=JI@fO@Pz0PHTnZmti25JCtcgb+dqA?{?xppN$|KExA#s2eISO&-UaL$_!3DU4Y$OAHYu)rn=&gJ92vf0000P){bOMCPp z{t3l{1&arvPFP2En-?{$Kd{Bnn%6_|2Q=CxZH-Bv&oPAX&BOCPZ^>JL5JCtcgb+dq zA>)QC7K;NtAQp=aC5Tyr=64MzhJAVTF5Zz+?Bxp;;Zr=Nj1iauCxq>gdxC!Ib|kYE=P&kb-il zi9krf{0Se*rKaxvJxf5-G|2bw_Oy##I^fyUIxfsjqCF+x?740yAf(_(AgFu4BX@!L zl@yDf_Ck3V!10qUluJ!y*RSi&0No*Icez{Lfh`v@Y;j?gTU_|_y^h@mVTC*n#p;QMWP;TZ@IC(<;HAS!)B!eLEy2r zA=%<288BIZ+u0l3(xqRgt!L)EQ1?_sqMmLMd~b%AaKsEP0XZ+SA1yBDMYdV#U}D0J z&mWsWki+jqu?thXz`gY}QzySc5cs|?{lD)5hKFEIO0js-K0~e_Lo*;JrI?*2{C*fJ tfYV+cpdUh104jjh0jx#^usVR%z5_3(zw<>Bo#g-k002ovPDHLkV1fm;Hs}BV diff --git a/Resources/Textures/Clothing/Head/bandcamo.rsi/meta.json b/Resources/Textures/Clothing/Head/bandcamo.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/bandcamo.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/bandgold.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/bandgold.rsi/equipped-HELMET.png deleted file mode 100644 index 086508cc8f24e3e2789da7bed13f5ea0d0cdfe5e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 534 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEV7%+;;uumf=k2VG`Aq==?fsX^ z-d>t8!NOq1x!6|+?p$m+xc~COBNH1t8O75NKS)S&+EsFO!u5rg*=tSjF#qw~kgA1`HPf%%p7g_F)|t7>p6Xq#udQ70G|Rtc%i8xI z(GA`9_J6PZ{$a9JWy#n3_vQFYZz{*VS@Wtp+~L9QEirG;*VXwxI{L2QT;mM|z6blC z&htHfZ1c4Vg8F45KlFIn^`6fD6fO~TM7MxjBs1mO?N0@=KlCaeo>}#Gja*a4o`Po; zU-rIwWmj(XTT18Bi5|7$sG^)LP!VFh`*j}+ubFHe1$yWsr0KY%uBhC!gE@f2r!*rK{`DvAm-cy2nL#g75LR758lR>Gpl+ z@tEg2HF`m3WXbP0l+XkK2Tbq^ diff --git a/Resources/Textures/Clothing/Head/bandgold.rsi/icon.png b/Resources/Textures/Clothing/Head/bandgold.rsi/icon.png deleted file mode 100644 index d48f802dbc0cd8ae7b64ead1ca5a8ac6c7333812..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 197 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJ9#0p?kcv6U2@1_C7^l`2oL&2G@?(xkvI`VWo+)^EEq~3UCk&Hh8?<-$ul@Q{->r?= st@z*yW;a=bR}F#eJxzfITyBgEtDF@NYF@sZ4RjZSr>mdKI;Vst0HH`lXaE2J diff --git a/Resources/Textures/Clothing/Head/bandgold.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/bandgold.rsi/inhand-left.png deleted file mode 100644 index ae59fd6b64af6a65c96de60795f8e9029eb6c97d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 492 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEVBGBK;uumf=j|=~)lC5sY#**y z=dIIK4Di1cHWz7iZl|*nZnnWAVPHMK?44PM>4+>-Fy5*~b>1&z*en<)n!_&V|pu zbXTn1ZoaR3iN!sSnAL06J5{lFJd*96`25wAh@P~|f=3sgKfUgI%v`nPULeo+m{jGu zxT@OFOV$U>BxU=yZ=WB&@oxP5^|s;pG2wzQ8AY~M%lx{dQQ80YpVzjNCpJo`K7SJ~ zv8l93++%UWe7&2W_vRWIiM`&w)$A^7R3(R5s?N1pj`p#auO0S(@y2Y18{_=-W>HeC zYi<6toMTgn+PC6s>dPF4|E!EF^c+lC7VKiU$|eu-9s>i9|LS_n(-%rUeYyT5EmpRrIS5qo3&1Sfy@gOPbk5*;R`By9#XES`d{HTWGq@}bQ`;+BIJo6G>Mf6P4 zcyKIfZRdQCsSZ`b4srju)%rKHET6UbOB~w-^>ac3SFQa&1l~@V`vlp*lz+y{@D eR&XIZ@P)C`|$a8gaEJm~Gh~m)a-H+Z}9QxdIb()Md znoUPE8EfRZdg1(;6=0i;4##`uK-**;jN6^<{`Pq6xq9JonE;BGdmQ@QXluHTZTB~_ zO-7Ez=yXYcgz;N1?*d5_@bfi&Jhx3o#$ug&4amI+s?J!fHG{raZP~@Ux3|G03iy1r z(UK_m^Wxpx0K}3nTKYn719%kzkUfBG2tf7#vJE}}000000000Op3=rw_2#I|;C~Tn zRE_1eE~@>PpjH6l#2qWYGEbs_mo+l~MXdnD$(^ErKZkI-q$FBdRjTw#0f^dJl#Zf* z7ep(ol1c$Q*Ur!TTA%8TDt`oC>D*OP={6`j_pXMKp;7>qw!cQ{2V zCwluW$dK~O*cm%TjY;iw^+fN-H#?R+Y&o`BuySJdo_%Gk8uyode)#FjXFbc>y1U=^ zo-noRFJt&WwK`nX;Y;zyQ`=8+io||?6fUtVqPB)xB{N3s`0c+DKh4%YmtLIipwFBz z?Y3*=_lLJ{Ur(5H>}lTC?UPK_mA?MEi)q$^?V=Y%gczb2dRZF89F!RsuwL+B0J@x@ z5RVsw^nkkGr5$UyVm>#m zx_irP<+{%=E<~{wSkIb0@y_)0TmP=dSAMj!2D-94e`5KbEqRP`O)D<<=Xbw4({OI{ zi?z7~g&E3g3liz`R!9<1&Oc^Q+TNtD`8FU-mm`Qk ZS15nygXK@>J^)5GgQu&X%Q~loCIB3<<0Jq8 diff --git a/Resources/Textures/Clothing/Head/bandgreen.rsi/icon.png b/Resources/Textures/Clothing/Head/bandgreen.rsi/icon.png deleted file mode 100644 index d4209d2d5969316fa237146e968bd8a89ee0a2d4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 192 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJc25__kcv6U2@oza08mMghA+SJS(ia3^>@%wRp z@qx1kG|wGWSaJG1h&}-1PcX86Xm81|F zakt)A?rl*T^66qi_tS&KQKh{K<2^tWKb|x40++^fM$^TFqBP`H+k1gaquG$AiwTWp zL-GQ*a(h+AdjRttx}P3}pR2eYZ|~P$;A+=Z#&`f_-CgAhUXM3ozC+_VqvtvQ6NYK6 zoCT6B=K1CIe$RY|Hmhx6t-7;7BZHtW@nfSjf;5Pswl=wO2GWA{&w&3peusFh1&WyHRN|H{@4 ztLRJsNfvXlVqEkcQN18K6M(#0EQjzs=UP3WlY^kVU@G(*K TU=1c<00000NkvXXu0mjfaC6bk diff --git a/Resources/Textures/Clothing/Head/bandgreen.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/bandgreen.rsi/inhand-right.png deleted file mode 100644 index e356138b5b7fc76bc036197d8112e1121ca1ea48..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 470 zcmV;{0V)28P)W%VWyWmr=Jf&LYlSlZySB z#CEk@PyV~Ow&E<}bALvM?UBT`ss73g5O20TMowUplGl01!9k$2Hfy^~~D7QbKA77WpPGC14R|%kLy6Z9nh<*moT$3!1 z(P>xw3gg-!uL5bF@M3?yJZG*+Z?EsQYe4NHs5>#(IE(nL#e1-q!8A|!YPp`IdGhC} zJIGT&#$ac_y%2!v0#ri)stZtU^Z@_>000000KoX%?D*<_+x(W%-x2E68msHN==NWN zRso2CTOMnCy{Q@bY+3~%2AAduFNbj26;$rZ>Od+0(RLP1N6~*5botiHqyi|nov-)l zO8OMIr{}H{smq|~x%X9!3Q_^+KHck#{)Z3(P+fp(2taiKs*OH?Z~FX?uOO0(tpET3 M07*qoM6N<$f=i*~~I>*uIw5yS7fZ9O4udavqD83-5W*`sUa3_LO~Y!X3YVo_--_ z9C&-%mvc1>STEGH{aK-TS}}Fm>SC4S!Ljb%r){I{{e`T)+nzKmseR8i;iz$%R?oto znV(b^F4JijXq@nsJNbpc@hR$@vX5qPB{yCFzOG@)%yYH&KmSgvxtsU>^Pw3JURSVx zh~JqX%IIQmKHn(#n2-4Le=QHaw;YdMu(@o9Rr&upMwd6PYP!d`o5vyJRMCvzpYFaj zyAf$U=ato~HFLkdc)N>fTEceG4I)wuQ4GCo4Pp+98G&xiV8~!JAt zy6G$_b`K{`__rWD-6PLtcEq1gx7YCG1}&1=qvfD?C(^oyRqx!z9nrhh9+%3=hOK7E zboVw6`t|A1t^dD_^)1DhCx^Oz>e%z>=~s>u0!QZ5{fX*HXREpAs?WZ`MZZqFCMNzC z+fs3R|7`1;XKW>Q47v?&%nsZOE;3wT$}nNr!XU*oi_?QWOoDOm%-E3 K&t;ucLK6V8^WAm; diff --git a/Resources/Textures/Clothing/Head/bandorange.rsi/icon.png b/Resources/Textures/Clothing/Head/bandorange.rsi/icon.png deleted file mode 100644 index 0dd99e0be7e69c54df3a70d7480fc5e2e053fe71..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 190 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJR!zD7kE#Oq~rJ?v;(cZd} z-`pmu?R&DeC`D}JJ#OK5Irpr{P1ZeGZ+acon-=C?>|9{Z7H2w*BSn0J(v0h-mj62s oM83Pk^oLbs0RyXs1BasZ8&CObM>fYr0UgBP>FVdQ&MBb@0J2_20{{R3 diff --git a/Resources/Textures/Clothing/Head/bandorange.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/bandorange.rsi/inhand-left.png deleted file mode 100644 index 4f9de1eaa7f5281b51844f4a73ad606de0a9e67a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 464 zcmV;>0WbcEP)*auup{vlfkKop!FVP`Wp3TX@m+0WuN9bDU3kX6MJEi1alo}I>*6+92 zKSWMHV^U0r000000001BYj(aTxL&UT%9!qaK6|zQ2~);;{myaHO3E%{rl;0qj+e3= z-P!>E5=zpS!p<&HHsOgm+y-f(J0v-CeHWt!XG@rUNrQwEh!DXp5W$YNfiT*6;Tj zGo6Z}w^rX-V3tA9m-(@kl-*o|pRw3!uvV(Ol;y5gYL>yzSmZ6>0)K=&A%NHg#D)N3 z7ZBU#0{{R300000fbE%e(IEui$L^mVn{WP!&?1+{hM0W^{|&7hj;hujd;l*xEQzeZi*7^!0000%!3z(2>vsYZkZ~}*b+}^_f zH7G$d`#XSfBmw{c00000fVJ72PNzw4u;1@rQpi|S>wkMq8R2?w+gWJs5@xzuOR_!W z`R1>S8>`UT?c$iuRYkJxs=v_z^5T@4GNmYGrd=FUp|zX8^yvz%U8WRmqlk8KOxq}; zOsUTL8y%1^)48e|2PVujlsli#+wJ~1Q>yd0MgU#y9!dugeJ?&?rj(g3*8T|N(IW2x zr7`Ym?frSeOdrQ%>ouVDA{aVZY@xO5yLd15Hdq?t4tc&QjrsM|U2Fi-1zoK#78}5` z5PgZBv)f{!1__09kn2F)}ZW zaeWh+|6)`CvbfS1R}bN0E!C&8As7^ZjGblZDD!s_%BNm8D1iFd`Eg&U2A=}Y%-lmV z=r$-b_qmGkVNd{}w|kq_e-T0ez6wrHtozApJGOxI}9gl1h>X`=`N}e%3Gkx6loj0c?nyvdzVYeD-+(Fmd{_Gw-(3+ zYb<>J@agZU!oIC{^IlG@bmCr6Y4$Vd!CLR*WiJcv2+Kb|z4Gd|J4=79Z!SO8HRVS} z)cr|$jC%jfeylk6SLA-L%95}4@%vWodL#Hg%1*;?OM|Cs0M;u1Mg zh&`#vqT&CvYM`OX+=@WazPFb$EEcNtuQKov$Zw2R_+tL_;g0q9thae@KDuLm^#NVM zir1T7);`aZZ(g`x6X*ibU$fn!->(aIkiPSlD}$StLASw;*@1h(MTQGZ872%{7^Daa z$=NY1{@Jj9mtpNWjt@15G}Zn(2Bvq^|H!bg{H=3RIhm6)*SaH&A>QK4;!S!Jo(Nvu zy*2hw=_H#)!R_b57`89oDS5KCa@p(pzmvrGr!Bvkl=D$+=P~astQ8!KJni>szcOZ? zRDJO(VwuwKYu$Y3;)Vu)hsWor;~SjK(WVwEW1yIMw%*mw zmrc~pcE^pm{?jGYRM!6V?^E_DW6)pCaQLtPb;)=2yZRLU_!Mq3?r5q88S}&LSnd(VIm;Hez^HgB_Q?M1(H{lPEA}XtEFiS8sbq$pjH+6)q zCB5U09F+Gl1RBW4Tkei0000007ElUy})+6)lf!rp64l@|D>mk{(5fXqM;u% z+j8lAIT7D3Rx{zJE%amd=Dbs0WW={J=gZI@055**Ov+C!2r_ya*{m0HzBt4FQ-gz_h^!0000000000!_(@dgAS^n-S2%iAN&`gPEL*0 z;p-0mtD83z(VGCGAZ2{U`1-em5j6{;$V5rhE;-d^sKQ zCQ=RLUMJYg0II5M32sfL-wU8OO`uNo-)^#=;Gu@WChG|vDgYw+k>KG1kc9wD7hoC! fFkOIYgAd>rGx(O{f1@qI00000NkvXXu0mjfZGP7b diff --git a/Resources/Textures/Clothing/Head/bandpurple.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/bandpurple.rsi/inhand-right.png deleted file mode 100644 index 22313c0ba00996201db052d17396e7e766151d8b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 481 zcmV<70UrK|P)-rn(ZbrGKEwJQLXd6zl}`P51+(h|202%o0ouuA#ExP8~u9 zEg${3z3@JUaGN&gzP)gp9*6({000000AOge&1Q4a2iUfKl|s6@wEm~-l%cNYszJ{Q zgrQq>IPQs$i{)IqcX3^LP9R>*H%hXY_;{-RQULtsu{p`dezPC)oIt1$g69O{P?LcPlb< zi>9L)ZPPFhqe?G#0pE?p;keJw4c(%z@Aqc+fIi^KHo0&0b{q8FNGz6f&3B`-mu_zZ z;8k#H>9gJj&=dlYU4U!|Kz0GL4L$$>00000000=C+GeNfoufK~|3~Pe)>u{7MYU%M zIt9QJpN?jw*S2X$z8i_Uj?AOz6aY`ocSBJOVVj0j?8>U3RRG*}=B6X}-b2Jv diff --git a/Resources/Textures/Clothing/Head/bandpurple.rsi/meta.json b/Resources/Textures/Clothing/Head/bandpurple.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/bandpurple.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/bandred.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/bandred.rsi/equipped-HELMET.png deleted file mode 100644 index 8c73afb2098eca52679db1e6b50f5e1b9a8911e4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 518 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEU_9&T;uumf=k2WhUCj;x?Z-b$ z2yFAvzVVBrtg=@m>~~I>*uIw5yS7fZ9O4udavqD83-5W*`sUa3_LO~Y!X3YVo_--_ z9C&-%mvc1>STEGH{aK-TS}}Fm>SC4S!Ljb%r){I{{e`T)+nzKmseR8i;iz$%R?oto znV(b^F4JijXq@nsJNbpc@hR$@vX5qPB{yCFzOG@)%yYH&KmSgvxtsU>^Pw3JURSVx zh~JqX%IIQmKHn(#n2-4Le=QHaw;YdMu(@o9Rr&upMwd6PYP!d`o5vyJRMCvzpYFaj zyAf$U=ato~HFLkdc)N>fTEceG4I)wuQ4GCo4Pp+98G&xiV8~!JAt zy6G$_b`K{`__rWD-6PLtcEq1gx7YCG1}&1=qvfD?C(^oyRqx!z9nrhh9+%3=hOK7E zboVw6`t|A1t^dD_^)1DhCx^Oz>e%z>=~s>u0!QZ5{fX*HXREpAs?WZ`MZZqFCMNzC z+fs3R|7`1;XKW>Q47v?&%nsZOE;3wT$}nNr!XU*oi_?QWOoDOm%-E3 K&t;ucLK6V8^WAm; diff --git a/Resources/Textures/Clothing/Head/bandred.rsi/icon.png b/Resources/Textures/Clothing/Head/bandred.rsi/icon.png deleted file mode 100644 index 0dd99e0be7e69c54df3a70d7480fc5e2e053fe71..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 190 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJR!zD7kE#Oq~rJ?v;(cZd} z-`pmu?R&DeC`D}JJ#OK5Irpr{P1ZeGZ+acon-=C?>|9{Z7H2w*BSn0J(v0h-mj62s oM83Pk^oLbs0RyXs1BasZ8&CObM>fYr0UgBP>FVdQ&MBb@0J2_20{{R3 diff --git a/Resources/Textures/Clothing/Head/bandred.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/bandred.rsi/inhand-left.png deleted file mode 100644 index 4f9de1eaa7f5281b51844f4a73ad606de0a9e67a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 464 zcmV;>0WbcEP)*auup{vlfkKop!FVP`Wp3TX@m+0WuN9bDU3kX6MJEi1alo}I>*6+92 zKSWMHV^U0r000000001BYj(aTxL&UT%9!qaK6|zQ2~);;{myaHO3E%{rl;0qj+e3= z-P!>E5=zpS!p<&HHsOgm+y-f(J0v-CeHWt!XG@rUNrQwEh!DXp5W$YNfiT*6;Tj zGo6Z}w^rX-V3tA9m-(@kl-*o|pRw3!uvV(Ol;y5gYL>yzSmZ6>0)K=&A%NHg#D)N3 z7ZBU#0{{R300000fbE%e(IEui$L^mVn{WP!&?1+{hM0W^{|&7hj;hujd;l*xEQzeZi*7^!0000%!3z(2>vsYZkZ~}*b+}^_f zH7G$d`#XSfBmw{c00000fVJ72PNzw4u;1@rQpi|S>wkMq8R2?w+gWJs5@xzuOR_!W z`R1>S8>`UT?c$iuRYkJxs=v_z^5T@4GNmYGrd=FUp|zX8^yvz%U8WRmqlk8KOxq}; zOsUTL8y%1^)48e|2PVujlsli#+wJ~1Q>yd0MgU#y9!dugeJ?&?rj(g3*8T|N(IW2x zr7`Ym?frSeOdrQ%>ouVDA{aVZY@xO5yLd15Hdq?t4tc&QjrsM|U2Fi-1zoK#78}5` z5PgZBv)f{!1__09kn2F)}ZW zaeWh+|6)`CvbfS1R}bN0E!C&8As7^ZjGblZDD!s_%BNm8D1iFd`Eg&U2A=}Y%-lmV z=r$-b_qmGkVNd{}w|kq_e-T0ez65bOzF5d^-sd3DmB7c5J78nN0_Pg&f zmd{}{o3Co$W!QJllIJjk<+j}Dy;1M>f8G22#c#PHoml(bOeuxgx_s@-Yqoy4r+my} z8po71@=gx1*FW4_ye_*%pzHeibqvpCe(kIO@psl7zvaIxITrq~y2yeA&eHeS4z#7jKua?rAz3c3|}dh8s*dCJfscqmdo|WS(=+jhEfM zr8;xn=KJp%YwrI^5>Ssr;!Y{F<_Yvq15$kKTrJ zB~Mg}+sYo$uKJig@$s)KW*U2cR7Sm?Xl%aVGb1p7r5K_cdf5($B`jv#zBG cZ;UmJx7Hpqe#5@X2^ifBp00i_>zopr0BUmNX8-^I diff --git a/Resources/Textures/Clothing/Head/bandskull.rsi/icon.png b/Resources/Textures/Clothing/Head/bandskull.rsi/icon.png deleted file mode 100644 index b3720e0f27bec1c2fbd063ed540106cd9ac388f1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 182 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJT2B|pkcv5PC-3Gxq9DLJ-+x`g z){9~evRgiCE#Y0IxQJbE*BN=qXuo&9O-IU2gc<}M-H$wHb|os`c0#dT%>O&P{xV*h z>8#Sed-33Nn7XII1n3Y3Pgg&ebxsLQ0H-2FtpET3 diff --git a/Resources/Textures/Clothing/Head/bandskull.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/bandskull.rsi/inhand-left.png deleted file mode 100644 index 7cdfcdc3a37f0711a84d9149fb6cf1c74a5b31f1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 471 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEV4Uaa;uumf=j|=Wz9s_+)(7U3 zBQ;k)i#JufTgkWnqVpFMxu)z2zVe(1!SY?HVv}d3DNVdIscBDs^Qw7Zg zm8GUwZfR?v4jFcKg?umWs_t z74Uhge=X|vdD9=2-E-OI7T3mJk3Y9FlFdGUV!s2=KS8e}3|`^^Qp_5$4wW-0;e)L`TkNK87i(^?#1?RphF)bBgNZ5XxkwLDX{m-YH zQxw949d<<3SjaH^iT(4o%=;DNY8jTptiemK7_>SccV= zENw02)u-y3`e(5%f200m1w+G+nGYT_bsR-@&;#-7T>ZOR_xGCuBaFe*)z4*}Q$iB} DINHo1 diff --git a/Resources/Textures/Clothing/Head/bandskull.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/bandskull.rsi/inhand-right.png deleted file mode 100644 index 6dcbba323e454d91b1bd94d782bcb20856c66e46..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 465 zcmV;?0WSWDP)>p)24f7eEQ7VSH-BpehzQEE zY#k^fGsK2$iiw$}C@*D65YbWddl06>^hI?|oBM)$P5A z;BYu}UIRKWf~gCGb2EF%9p646y{hz1qB2R%K7CQr8#R9|*5E}~+J3wr! zF8~n{5fKp)5v|YDj&JIZ&7WEQ6QN11v97L5YX2n|Re&&Xtu>TV0D$ZD`tW&QGxF1n zDnJ-qD1=f9N-3PrXWVyXQ!uCiq3s-+j#_Kfb&a~N0id@9{mBLu;J)qrdta&sp8~J+ z+*2}W84Nx5xx&OSr~s)?_b#iy5n=&i2Z)UYh#erd)feCgk7JbpGLV(700000NkvXX Hu0mjfe8R@a9z!^vHP*&kFyu2ExLK~)}}AzCw$hP3) z2tK`~WV~pLl?kha@~O(7D|hWb!Z%~~yYd4;(f_WM>}CEZ%)f=9m-zyd37-S^1q%jU zhsO-W2%LSzTymD}HD}>#k6-#1WfsK!QSrRrv*!7-c>(p7U-+_S%Qsf3)V*DBNcTj? zr!uRoRW@b2YO6v&@O1TaS?83{1OQ2fsWbop diff --git a/Resources/Textures/Clothing/Head/beret_warden.rsi/icon.png b/Resources/Textures/Clothing/Head/beret_warden.rsi/icon.png deleted file mode 100644 index 19bcd646dc11a39e120e01e15a5986d9a051b25a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 194 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJPEQxdkcv5PCvW6!Fc4toP2!Yj zxuxrDz@+=;KuEl?hlH|8LjYHRkP27LUG@3fpT1yJJaS)ip41r~?}jIDYiFANWnDGJ zUHIkh2RV!evuxF*gyuG|K05r$U=5#c!^|%mKQ9uR;dwvq6{|zMdHUQ*4wuAb9%(j3 rvaM@66MFAw4R?wI8xXY!Brz|4C;i&+<}zoXqZmA0{an^LB{Ts5w3J2` diff --git a/Resources/Textures/Clothing/Head/beret_warden.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/beret_warden.rsi/inhand-left.png deleted file mode 100644 index b1e332e7a8f66be249a7acd8d634ed9bbbd30e9c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 349 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEU{vvRaSW-L^Y+%p!b1)MtqRw4!Jj6h=;8n)i- znS0&Xwlg1lE|fcDhyC(jx7tox^3Uy@`;5-p zYqnir`o+ENM5p?fNwNyktSRg#+!${%ZVGfLYse9qAPaH{1H*&;XaBv(dh@s0J-vPP zfA@@O;wtY}`p;WBgZYN*8wPXj<)SpL)?^Q2_K>BNlX-y9!E%vN$~>J*%GJ!#Lw|EF}r^5^M@@787n8p6;}etBp0 zRkk!U?+GijKCge?xlt!C?9naHO9%IMzh2B*GjnQegtW?Ace99D|E&I)t$F_?xTjU} zpU8v6ALma;PAd6xV}-f4w|=6wCg0D~XT9b;d?$Zl_SDS1bkbH6-%$QOiBor#m1y64_9&etzasA3vEE(Bt82Gn p#@o0BM<1%{xoI>2O+{F=Eq^j&5YPS`pA#T^JYD@<);T3K0RRG@nqvR} diff --git a/Resources/Textures/Clothing/Head/beret_warden.rsi/meta.json b/Resources/Textures/Clothing/Head/beret_warden.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/beret_warden.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/bio.rsi/meta.json b/Resources/Textures/Clothing/Head/bio.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/bio.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/bio_cmo.rsi/meta.json b/Resources/Textures/Clothing/Head/bio_cmo.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/bio_cmo.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/bio_general.rsi/meta.json b/Resources/Textures/Clothing/Head/bio_general.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/bio_general.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/bio_janitor.rsi/meta.json b/Resources/Textures/Clothing/Head/bio_janitor.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/bio_janitor.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/bio_scientist.rsi/meta.json b/Resources/Textures/Clothing/Head/bio_scientist.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/bio_scientist.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/bio_security.rsi/meta.json b/Resources/Textures/Clothing/Head/bio_security.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/bio_security.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/bio_virology.rsi/meta.json b/Resources/Textures/Clothing/Head/bio_virology.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/bio_virology.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/blue_flame_welding_mask_1.rsi/meta.json b/Resources/Textures/Clothing/Head/blue_flame_welding_mask_1.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/blue_flame_welding_mask_1.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/blue_flame_welding_mask_1up.rsi/meta.json b/Resources/Textures/Clothing/Head/blue_flame_welding_mask_1up.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/blue_flame_welding_mask_1up.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/bluesoft.rsi/meta.json b/Resources/Textures/Clothing/Head/bluesoft.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/bluesoft.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/bluesoft_flipped.rsi/meta.json b/Resources/Textures/Clothing/Head/bluesoft_flipped.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/bluesoft_flipped.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/boater_hat.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/boater_hat.rsi/equipped-HELMET.png deleted file mode 100644 index ff8b1dc286e0cd465a9ef6b135f8e4d406041fde..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 309 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=e>`0rLn`LHon^>%$UwwFxKuF4 zOUyjo{{gE_Z+giK%UwHnw&*oYe(_AniTN1&*=p~F6P|t4sQ+=I%|2xU}%yXS4)o=`( x0u%WIe;Y0_zhmDaZ=gR*zKLj!Fq1zsZF;y=g_C`m4=@}UJYD@<);T3K0RV-IbT$A0 diff --git a/Resources/Textures/Clothing/Head/boater_hat.rsi/icon.png b/Resources/Textures/Clothing/Head/boater_hat.rsi/icon.png deleted file mode 100644 index f511b2dea8b1d1d30f89a5cb2d8ea8b472d35235..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 295 zcmV+?0oeYDP)S5Ww+&(uRDrA%v}<_4u_KTn^=q`1anJ zn$xNS&8cFQD4JS-7JJ!!L%0~CIJHS>2k^s)`cUGBF-@&mc)<@u-=3@hj?I@W%d!zb zDfR2V)*67KC?=0!(jDl^hp|6*Jn4i>-{ScZ=50V--|;?lgzJ?0ShDZ}s{J!Tv>Go% tkAJoO6JphY|A^V2p#TIR00GPn_y7-EST>1Nk|qEE002ovPDHLkV1lg)gF65K diff --git a/Resources/Textures/Clothing/Head/boater_hat.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/boater_hat.rsi/inhand-left.png deleted file mode 100644 index d92a21116eab360feed4e121603576628c5d1198..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 324 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEVC436aSW-L^Y+$8u0sYQtq)gU zbu2I_DJ(Afz!_ux!^Cc}b9(voyt^(MRveEMtTdZe+_+N_{i)u2!Gr>fg5;nz!SCSESoZ(dm4b9LL4Bf9(c747?6 zzclVZ&b}!ozVY+ILseY^S?2%O-pcgOIy~>%rs`WepBI{xTranNX}w?XA8Sd{7ID@H z_6=@~*BI9XHk2}CizLW`tz~#{{|dkK)}QliYOO81{&fd@VO=5L-!Am(o%Q1G0nIodg=(z%68Y|+&#El_Aj3Uf{an^L HB{Ts5eAwd0ga+=KY z+{wjF>F8urlkWTb?@I4__Whs05{9=7w=^8A8_c*a@GaYLT7u5DGIJt}A`g4w1d+b>>kqyXL3^G&h-TnE_ S9yQ!x<2+scT-G@yGywpp;g5>| diff --git a/Resources/Textures/Clothing/Head/boater_hat.rsi/meta.json b/Resources/Textures/Clothing/Head/boater_hat.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/boater_hat.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/bombsuit.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/bombsuit.rsi/equipped-HELMET.png deleted file mode 100644 index 3278a9b155335a8d32471ed69d46b9914eed5023..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 977 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEV4mUW;uumf=j|+e59vUes@@Ue*g?^1fFCqk1b#t&fPS=}vgD=RHdugzvV2;e2fRhm?COPi9 zr&6+u$1`K$bO9!}O9ISs?O*2pyzF%E>m>Or-y1*dDgRh^|NB|}_j-ToF1>uInP+5s zg=xjkk8F1~ee&P9BFW^uZS0+?|6={VKQ5LQ=+-*+>5|Q)lg1~CF35c66J0E=c0+dl zYwZAe8Hd9=_L%%X?tjcLqK2X1iW@3WH>7;x$+xd@{ePq>#NNnwm!s95mx64LkRB)$Hro`GH|wkK7b5)fh?J8QlB|^YxR8Yp3Ri&dFJ~{?K#Y z8ONU=UGsDMdFca>HXpxp{mCts%aXjt#{CQo&CS;}^-nu~u2J_)H~F!LagO-r0>0jv zpU)n**)o^0YF$Hxlk3hPSF6R2)0&@Y&%GG1E=16OMMAvr?v?%Z@7GB)M7e2yyls|{ z`qqJ|Vew<(V2jxG<67z?;e9v9%mk24-^pdGBX9Z(5o0&a*>3B)I*& zbi?h(?kX~mb}f6lo56ek%aw&beQ`7XGDY8>d%9um+t|*pDnNmRs;oVZ-J&{oStZVV zofv4Y^zhc4sl6*=lLC+4h}ie9<*uClob9r@)k6Ha(jT_(vi7!T*x$Nh+R-h{(Iy3V z4KDKd_cL6Neeieo^S1OK`zqhODrRKxviI(2aqdvh>VBWX#$b?q^?3S+ZyYy*zd>!>wxjSOEw%)!tUEvq=3f2H+o&{nKy#@_Y45o(|vKX&$;1n!= c%=?4&tJjI@oxyk1fLWEn)78&qol`;+0O2IHMF0Q* diff --git a/Resources/Textures/Clothing/Head/bombsuit.rsi/icon.png b/Resources/Textures/Clothing/Head/bombsuit.rsi/icon.png deleted file mode 100644 index 6119571c184ea65568499bb0f3362ffdfc8caa48..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 365 zcmV-z0h0cSP)1uVm@S!DG6r^{dU^uXB$6<(iNVyw3_)~q4uMBO5hzkWGf_X)1VshlO4Cei zDYzYi>@o%kyYf@Sz2Y zBY1ecqgLAipj7f@-?FN5{nr4(Xu@zbrroOW6y8hIh4I#Qh2dz-BBpg^sQi*G=i6=_ z$o|#!jeJ%;ib?>hFy+lM0K0p~sV<>!0sNFQ{}yNf4WI!uK;{6i$Ci590^RE300000 LNkvXXu0mjfnvJXqGNDq#Z(AlA(J;p*2I6 z26q>S(4mWyP&(WVDlPOB5n{1ogj|Q>8I6g0cMgZ|1IN>QevfzG_s4tp`+-0p5C{YU zfj}S-2n2#*!(sLUCnqNsG{ZQ{%gd(pBi1y-z6`wqHwJOhcr2>5pIh13?|HhJ)%Szt z2E=1gEwZ_WqNI_epk99X6xDjU3A6fsv2+StY&_6XMmErR+s-1k2X| zMM?Ai^LHlZ*Buwjh8ew(&B@fyswhgD`dO81PPV$4I+hs_k3}`LPy)a?ev4N-QSD+0 zpcYD3_F_Yy&B?euek3W#?A!v96vXZElg-K3>WyOQ2-w};qF5}m8k*!>8=+FEaITH8 z8k(e7EVH}4)m88F2K4Wz<-Gpc=MAv&?1`1l1uR|!vpJcirAGivO*MzSBn9>QZhD_L zz-c*;b9z=k-~Qc7EE@r8p+q8?qFSqy&B;hoP(QLcnQE<0BAKEwO|H}5x$OqHR9>ey zie&~ofBDe?aCmgA-$>&~BvTw79k=|hlU^;9$g3Fus6TFP;DS>vzY8A+vh{u^FK|1`qE2;o-s@z@@2R1lz0uJCSA&yFGrKH%Ilzu^DV( z05oqJnu!$c7|9*5jRA*8$Am+RB$6py<1W5_`$6SzMXxuSJ7Al=K;p|A&E;|d{pA~U r+Y8uc1cX;#52Ukf@h>n)hTedGz#eFsZ(5&%00000NkvXXu0mjfoKts; diff --git a/Resources/Textures/Clothing/Head/bombsuit.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/bombsuit.rsi/inhand-right.png deleted file mode 100644 index b88309827b9368fb74db89488d8fb931a8afb06b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 832 zcmV-G1Hb%(^%++gf9mFlR5cm%^A7<4qoaR^JkKZD|6WGb zWW=HgoKy@9j7_on^XILw5ug{#$YgV<)f-SX89bk4hpNe_)f>oUbFdy0uhFXi_N_1g z*vd}&nE@MH`y2oq93HV7Sw|+D!@=QETRX3@v9-_X#WD=N005}f8!+?&YV`&Huo!S& zzvEmWEs5s%*f;=S;qi0FPJ3-Gkd{RA?$m^>-H)HYI(`h%WXK&E{w44R5ClOG1VIo4 zK@bEHJT6?|^!t+8MFf6DDDVb!%n$fqoc0O*u#IlfvjJ&IG=+uxwt7G15&%6KVC}B`f!ks)gTCJa;Yb_+@L+Zt_a=X{yn@$n{4oOhdJ9;@q6vf}aZF5x zkrJA9eu)8H8{m{5VCV&wozV=AxxR#56S8>@%_0000< KMNUMnLSTX*^m)4g diff --git a/Resources/Textures/Clothing/Head/bombsuit.rsi/meta.json b/Resources/Textures/Clothing/Head/bombsuit.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/bombsuit.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/bombsuit_white.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/bombsuit_white.rsi/equipped-HELMET.png deleted file mode 100644 index e36eb0ba7b5cf9b0012c2afe0437e9a44ac6b1d1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 986 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEU|#6y;uumf=j|+e59vUe}GizkDFQ4}B*Xb$3%lH{gORqIuTe0th6i{v7#_R73lZqq0=yER>QduM@^E@Oc zcim%)W#a9?G775dX(}nv5Db{f3<$s)J*%n z{*3>JWMlc()!mP8T{xi;Wqp^SA;c!E;Lp3a(l&Cl#V?6-Irv9#X6UXhV>od3pSx%+ z=O*jCxi9bk{C76sM;r5x_!YnYv!*ayVOuegF+h5O8=FIJgOnu0R>mv>g3EHgGCDlX zVmY-ke}&zHdEXDt{O5I*LnQy=>z_FZ$zc`g85LQaKj%bUnBR50U`}vgaJs9;iWz1? zhrAp<^ZnW(c3U**%C*RiHZR35=~wb59M%);RS@m}_%FnU?SBb_x>@^Cds%~0sV_g{ zBECc&wY%|bjmJWllgbTC&wqP1GeToUg7@B*yK{55+_v7Zdvov1o0h>&30paQPN&*7 zm0w_gP*QC(KX_u-@fNp*50^7Y*Uej(w_}a_p11>RX0tZ{RdcWQEQsuX@bZ=3ha?tf zf5x`Umz%HonXkJo`{Ca^?wKKqOmq4Uy_~rGPfWaK(v(TeKd$eq){=W1D*fCrNbAkA zMtfG_qbiprzf7&LUAX+ft4BMol`Wn*|9bp7b_SV$HZA2B+5-X@6Yl+Hh`uvpTHO4J zKItvMu-at%@9}AOUWO~pI`8h(r@g8^aNS?t22%Cw?&ill}>Y6}$n;%nQsM ndU+adF_;?R6a;3H{S0gV?%j2I{uO^bP0l+XkKG~U80 diff --git a/Resources/Textures/Clothing/Head/bombsuit_white.rsi/icon.png b/Resources/Textures/Clothing/Head/bombsuit_white.rsi/icon.png deleted file mode 100644 index 207431f4d4f461e670aa0c3f4f34733c5420519b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 371 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=hEVFj{%KIEGZrNwz6?z;M`sX&K|z z+AEBU`6NmYtYBtqW{x;lIFJyDT2O*!1teW$$E(b@OhVUXc5cXZi9g z&;P0)7gTX&-1L-(hexBt@3G1nMQ4r)GECwAZ&Ed0&pdiSU*XJ$kB6fz?uI(8@)U3= z;gE^F_W%FI%i=%{JUm68ym;j8_qZ;Ul#q~+v#oV3(wHE^8e1G@xTpGOlj12q_D7%l z&;8p@U=fJ0SE+yrZ;qFM_U|zn)$53 z-9O&oO~m#dMc2^whbP}^7kDR%onG+@EcOs&`85@bhKWQgl9devTz5Nc;!^CAanLn*P!o*m2#CQB;9lk$Df0|S%6 M)78&qol`;+0NNdt?*IS* diff --git a/Resources/Textures/Clothing/Head/bombsuit_white.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/bombsuit_white.rsi/inhand-left.png deleted file mode 100644 index b91a83095fa0da2d8566fac451e95dbfa04c4b3d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 811 zcmV+`1JwM9P)X&}3IOx7)ticK!fE!}ccIjlUjD zp93<97#klxaqO73HQKru-H=NqIjUC3Bw`#@E96p1vzsX}Z3x6wMavgU0Nk9M;&tGa z)@T9p#S*AW+pb*q&!v($XFOaQwo|KCgw3Ur=lbi#)E=-E-l4p|hkxF~=-4<12M3If zjpLv9P~P8TE4914gBsUOjZN;ni~y04vozF4A=O#@J?Rw!iC)T$K#F$bLGua~~91>&lr zO*kh3xHbQ{r;nh?>D#Bu|NQ>d_G8HCT0ky_%xQ*o8F&FC5{X12kw_#Gi9{li3?6+6 zIGTykEw@fvW&^(?H1GoSB|o5FoE0555-YTf0Ii|-M!p*em|8-BxTH$ zoHL%L>qZhNEHMYn`PXf0L4{+-v~4Y@i0~OeA)6LKS3L<7mJpyd*B}~EDP+?WvT0mi zAI=#MOUr&;bz4G!x9{HD>bVAP`#-$*?gN|}3VN{291vW6Ce9l(NQ`0$0pR4J;Utlw zm3*j)ypA5VJ{{bh-X!@L#{v`ka002ovPDHLkV1oCCczq&?@b zL%rs(!w|}H4RjY9QA!Kl4uwJt-7fJk^JtsK**25Jd_M?Z^YtbC^YPx7y!SqUAP9mW z2!bF8f*=U5!R_wu4s?Tsg#}xL^vj_7hwPEzUOXRwbKRT;f!8~IbE!4%?B&=)FZxXZ zCnYo*_m1NQfJ zkbeIO$Nmu4YK>sH0Y#Q@q^a27+rg2hLXjoQwrmI#1YR#!YXE?&!5O?Z(`SwbKZ!}$>(nwrY2B1>KMxAlN*ZX5N(1El6-7#p8JqtU?F_ykh(G1Lza zkj-uX`zPyxY;GIjc!HhRYi0I398ciM(`Tk@+LE9mOStpk5dgq{@e=b#XBXN3PDYU> zgyRX+Yh_H$++hCB^Hx|7C|7F`^8)KG(b+|ID6)j6rb5gMFoucKXw~nZoCW}s?WUgv zU^$)P03erHXE!nqF)tvOS#N9SG?vpDu3W95QYr!fnwpAAsfebg0szYao%${30tJEB zrvgC$z_s~@mJjW;xj;eS^dFiETpxCl9~6$>Z1`;#N0#*9?Qcl3;Qvg+L^Ra6ExZ zsfbFc2r)01>I&=@dln4*76?RQ0D$j0oO>bQCDF$Xw*E?`RzF!)m;g;VkTT)^`I_yu(`b9F#k&m8~&002ov JPDHLkV1jLQfI|QP diff --git a/Resources/Textures/Clothing/Head/bombsuit_white.rsi/meta.json b/Resources/Textures/Clothing/Head/bombsuit_white.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/bombsuit_white.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/bombsuitsec.rsi/meta.json b/Resources/Textures/Clothing/Head/bombsuitsec.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/bombsuitsec.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/bowler.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/bowler.rsi/equipped-HELMET.png deleted file mode 100644 index 8f63e49b8aeaf5b86eb4bdfe5440b3ecb64b37e6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 310 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=e?46sLn`LHowbpxDL}+wz95UM zv$OrvM-R%)wwV03=jEOBASF5=wGLt2b63 zmzZpD?dRV02kvz2V=6w#u!W(QF@sTx`2v#(+XB`M9tZ9V5)EPt3>kDCk{O~Jj$u=< wL;gXXgUUPhngf3u?3I4*Zy?zO75N8jU%K-BIGJ1*00V--)78&qol`;+0GP^n0{{R3 diff --git a/Resources/Textures/Clothing/Head/bowler.rsi/icon.png b/Resources/Textures/Clothing/Head/bowler.rsi/icon.png deleted file mode 100644 index eb98be3129d3ef5a310b433c42e4ca7ec3accf35..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 182 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJT2B|pkcv5PukGeNpuod&LD{R{ zTh_+D`_C@O;@%fu+4k-RQhFiAwb=l%1S=f*oe$7=SA=NZ=D xUEo;K-vHL{#_)>m3Wvkp1}VlB(gEIf4eC-C-G$zWy<7k?*VEO{Wt~$(69DeTe!Tzy diff --git a/Resources/Textures/Clothing/Head/bowler.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/bowler.rsi/inhand-right.png deleted file mode 100644 index a4135b9777874a3107a5a56ce043be2d99802047..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 309 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=e>`0rLn`LHy|t0A$v~v_VbYBm z28l(VJ!izq)cCQBr{6n%@LfdAr)-gy_3}bN@Y+Gcd1zC%q*j?_Yngf~d#>z6EZKuNbo6jFaME>liK> z|FSsw>tCbcy}yjXk@wvn#2lG4<7+L8{>AL3Yu^P~{2Ski?wjYo_wff?v1QH$jAC^m s9Z#ko)pU?`=w-UXctr!on56%JGx%$WcX-P6;~=9wUHx3vIVCg!09J#AD*ylh diff --git a/Resources/Textures/Clothing/Head/bowler.rsi/meta.json b/Resources/Textures/Clothing/Head/bowler.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/bowler.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/bowler_hat.rsi/meta.json b/Resources/Textures/Clothing/Head/bowler_hat.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/bowler_hat.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/brownfedora.rsi/meta.json b/Resources/Textures/Clothing/Head/brownfedora.rsi/meta.json deleted file mode 100644 index a548d09dec..0000000000 --- a/Resources/Textures/Clothing/Head/brownfedora.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/bunny.rsi/meta.json b/Resources/Textures/Clothing/Head/bunny.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/bunny.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/cake.rsi/meta.json b/Resources/Textures/Clothing/Head/cake.rsi/meta.json deleted file mode 100644 index 9a60601fd5..0000000000 --- a/Resources/Textures/Clothing/Head/cake.rsi/meta.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "version":1, - "size":{ - "x":32, - "y":32 - }, - "license":"CC-BY-SA-3.0", - "copyright":"https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", - "states":[ - { - "name":"equipped-HELMET", - "directions":4, - "delays":[ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name":"inhand-left", - "directions":4, - "delays":[ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name":"inhand-right", - "directions":4, - "delays":[ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name":"icon", - "directions":1, - "delays":[ - [ - 1.0 - ] - ] - }, - { - "name":"on-equipped-HELMET", - "directions":4, - "delays":[ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name":"on-inhand-left", - "directions":4, - "delays":[ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name":"on-inhand-right", - "directions":4, - "delays":[ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name":"on-icon", - "directions":1, - "delays":[ - [ - 1.0 - ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/Head/capcap.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/capcap.rsi/equipped-HELMET.png deleted file mode 100644 index f74dc289726e3609ccd95ed646077d5f17875647..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 619 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEU^4P_aSW-L^LEyG@5_lY$KzjL zSB*6Ea9bXD`u&fUwek0Jr$6@;;bJW_s;;r0aQ5llwD)uE zttVvoJ->hcI~Pdc(dlr85Uu- zGWzn5YhN)Roho{5Urp+xZ+CS)b4u%6j6Vza{$r2XU3FKrZ9T(;S1*@tu9cs;ukKR5 zn8w<_OZMzxX_!6p*~2T%x%?lt{}eoXCf|bL!1Ax>-+emDE#tAwqBu_>uHJV3^XjE% z7B4^lA|spkn=psreeDDPPv~uJkm6n-7Ld$%g(*v?A6iu?)|ItPmhJOAnSYP^nY6! zLe8@=Oqo92V&gx?g%h_kt8Vai%xbR>D^Q&`g4qqKz zeE8<_RNE;`YA7&&+SM??Hkv}@8%J|e&tf@W@g*Fl9`VhK*Ia$-WnZV z&8{zDSNp3$sr>mRUN$>BMm9rMPBu2Sw*N~knljiA==6K}CruC%JvgEM+b`b3n`VBN z00Ac3yPc-fc9>kacKh@Hb4#TQPM4OJNR$BaqNRr(2x0N$XE%990`dpeHn%>|L+|x_-)RAc=v9B z((-G%O4sVx+>)YQa`)Q)FVDSq=)igPBM;s@KBu6hcFe%ILdp5pt(rFT^>K!8?rxg= z@bU6;p1gf_JfTNbU6wO0+MF2UBhwZERI=#GLuQwDhP4M8#9a^p^ooH&l|9AR{mB36 Qz(8g2boFyt=akR{0Q(!CI{*Lx diff --git a/Resources/Textures/Clothing/Head/capcap.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/capcap.rsi/inhand-left.png deleted file mode 100644 index 0162e3cff95ad7e2f9c40f1f4218fcbe6586b055..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 549 zcmV+=0^0qFP)SAR;0nA|fIptFf6qfubk^+Az-L za+#{n71KtVKNwQAzU%O~bptnB|5HK(@CQTc;m$4qAd$FFjoa;xruhxpYcY~DTue2eJtxHGCx%B0>Xp%=lM=&jn*)row&6V0vZ zCik~Pcu2&tw7Q1U;v&u8G*WN&B53)$K#rI;vKIr8-GFQiKz0MNF#y>O$i@IU9*y%q5915gwN3oFYXLU?+7 z1OQy0g;Qf%Vdw=Q{1utsu-H3~?w36PKsfRY0EizSq3+!=!$YHLCM)8ztO&r-;snr% z=2kb#-p0xRoD^54j#=m*FtnPpB7n`UjV~wH-sVmJHQE~uojWT6(4rO0Pgwpo$N*$F nAR7aa-GFQiKz0MNSw4VQ>(#KFkn^Cn00000NkvXXu0mjf47>dV diff --git a/Resources/Textures/Clothing/Head/capcap.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/capcap.rsi/inhand-right.png deleted file mode 100644 index 39e2d12cfeef9620b4923f62037c4f235eef662c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 537 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEV0_@|;uumf=k2X{ZRbP=whzxa z%&)C!of_luwyBNV?tqKu&Y9d?I|Fyzob*E=sOV&?bYSvU)97oSM*AA=7e4V@y-{rU z)V|fSe4pRneRFrt^YT)wYU}EI>F>|2Ear1?fq=BdM;?FN!}p+UH@A>W$iAQ2_uq3I z4SBoy;Jn5<)%E$>P4}OfiwJbBymj%O9fQK;$_wA4*KT{WEbNqO$CK;aK&85m_!H6+ z`Fg*WW|Z%|Ffs4&%D+tM&!2nTS-xS{mN}mlmMVn*TeJStYgU&(j2h0u5xYGP=4H1T z&pZ&uzoBBrfv=NUU(VJBN_6}%e<1ln|J9Q^C9no*zozXct#fNqB({cGSFy*l%esWx zq+Pmk=bq!_#RosUo_@(QKxO~S^-Q9zoq_uz8s0E$+Q@K|F(sLC6Z45&~eJ($bO@cgdXAJz+^|GQX>dTfCL?cTq)mhUptc{kf& zZcp<1!$;0Fl$)tU{)@anORB;Bcha^f_w!C)c$TgTe~DWM4f;FMp6 diff --git a/Resources/Textures/Clothing/Head/cowboy.rsi/icon.png b/Resources/Textures/Clothing/Head/cowboy.rsi/icon.png deleted file mode 100644 index 2ebb12eb7acf3ce52349a9f7d0160e3d6cf43175..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 258 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJlb$Y)Ar*6y6C_v{Cy4Zv9Pscs z*vQPjq3gfR_Mi5{m(D#T{jLtUoV-nzwEF0gJ%j?EiTC%$a`}7N9FS` z|Ml3k3O1f!Ki^=6_i3Y={~u>NUbF8{nB~N-vYb)yyU#J8)PbLS78#{PpF7~-CUQWg z@yv8nrQ;$T3fkfU!aY_AR~Q%bNt7PY0K1%lLGp(+%a%3yOh8XDc)I$ztaD0e0sxU| BYo`DJ diff --git a/Resources/Textures/Clothing/Head/cowboy.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/cowboy.rsi/inhand-left.png deleted file mode 100644 index 1d4fed51bfa917d17f8ad51346da36fdf1aca16b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 314 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEU}W@kaSW-L^Y*G?7L%jMv5)z# z1`3Sa!7t0?6mpV9Z#ZobI-fYXIbzw(VwTl!xA{JnZDQ-bn z&uZVR{(SJ97tmA&h6ndtw()i?`mwz(LeEEgrc3C&neQsf3jJm++om0n`6Ht$La#?9 zv@%U4^XtE~nlpt5Ga2l~_dk(p&e)X~@pR_TAGiLmtj+Vuw+WRus=j>;^`%!1r>90Tk{J66J)@g4!JI0qHhu#;@ z`7z^B+w}bhbQK#eaJRTIEEMPHWpL6LkYa3!13ME+9N4ZLt8dM+)+W*qB;x7n=d#Wz Gp$P!4|AVyv diff --git a/Resources/Textures/Clothing/Head/cowboy.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/cowboy.rsi/inhand-right.png deleted file mode 100644 index 64f5a6f9c5829c19ac677d608c46a94bebe47cc3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 310 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=e?46sLn`LHy}B{$kb}(ekM~6n zItj{@WNrS+=q0AE*!)1HmQP&%$VTsZi!D-5-#S_@Aljb7z35SaY**5)lrMd+zHh#3 zU-0K0`_9Qg(-;^I>^01s6;@|)CViV^pU=D_+l*yq@8Vsgu`9^LTy9lc`_D68LGzA; zO`0}e{#vTWbT8I9d~wgkx-E8blWy?c zi#xwrDSG91nT+lBS{3uJ+++QJb-wiipy5i2>iShMW?8o~z>@pScbS?83{1OSvUfS>>X diff --git a/Resources/Textures/Clothing/Head/cowboy.rsi/meta.json b/Resources/Textures/Clothing/Head/cowboy.rsi/meta.json deleted file mode 100644 index 38c964b02d..0000000000 --- a/Resources/Textures/Clothing/Head/cowboy.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/cult_helmet.rsi/meta.json b/Resources/Textures/Clothing/Head/cult_helmet.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/cult_helmet.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/culthood.rsi/meta.json b/Resources/Textures/Clothing/Head/culthood.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/culthood.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/deathsquad.rsi/meta.json b/Resources/Textures/Clothing/Head/deathsquad.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/deathsquad.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/fez.rsi/meta.json b/Resources/Textures/Clothing/Head/fez.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/fez.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/fire_welding_mask_1.rsi/meta.json b/Resources/Textures/Clothing/Head/fire_welding_mask_1.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/fire_welding_mask_1.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/fire_welding_mask_1up.rsi/meta.json b/Resources/Textures/Clothing/Head/fire_welding_mask_1up.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/fire_welding_mask_1up.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/gladiator.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/gladiator.rsi/equipped-HELMET.png deleted file mode 100644 index 992502804269c102d29e1ef76d2b2acaed171f97..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1662 zcmV-^27&pBP)Nkl&m8vtes#|VT#Zg8cRD0T}U=*n+A~@Iw_gd zRbg$WBB4QGkZ}=eRf?jCeSl4BNX5iJf)H8;DOrG!I2RH-PMpMX?6Xg7s9S}v9I1ML zU;M>7&vPE1^MC(-&rv!$I*6CH=4$ck>nD`B2S|`)=<5;@fAsT7lPrBD))mm!TrG-o ztZc7&jzg^%*|g5V>5GECp8GtB)sSrcm{vf?(Hc?cwz8}&9lO)cmRD9#TJZwkeeo$4 z<*Hmg^|O?&hX2vuvXsKFKbMfcA(k&sOob`R&ER@Zi2Tc4eDu*Mbqz(7uUv#;wDIwo zk7L!3iAVKYe{dYtW+W26!0{8caqCC51?p?7go2Kpn-}xxooTxJCa`B1SXyYI@M|mR zy41^t7fbj@$7fvo*8?Du)a~$j{R=nlv#r93Ku>0-o`dIxdHv@v#HAl~4XCfJ5~?)~ zv)RP`AwT=t+Lc{9s>D03?aFU=Z59T-5rbaAt}1NbeJts`$S zRQ~v2!g_JP6m4s+77m-4pKf1{-Qgm=u#~>uQAUF6Qx<~Dd`6T!M5uR_3PAZ6?cY$6*XHJ~dBSMN`5d^mI0fY}LS6$cT5?$GzboJw3zR=<`yNpT*S7 zJhO8l+%_{ab2GesAhrYAr~**^hlPJC1heCuINi^!djZldddwyrzNr}kfoTAKf3RKI zxuZ(7v?l+Q_~E#}s;LqH>FHMNs)gWOguqOgC57o!Z!CbcY;3BLDckm_JUsR>*wfi0 zUf%jVQxiT$`)AQ95sGpR81*J5gCWWmS^x|A*?It$6|0HN^9y-6?)ud(2FAkxc&8yd z!%QeVhfax*lVinM;6%-|bNo+DBAONW*dka~(WLBYe4l+SXR+EW_$C9?G#pXJeA6t> zH{zd;5DrJEtSALwTSIDYiai{+vZ9o5ID&sV!s2`*W4>u>8jdKw$pBWHg?%k&+0*!b z)Y~tn8u0mxiGSW-BZ~6PT)jEP_g^Yw@Q#NI*T++GU9PRUT72s(+2j@Ha_TQVtSVQz zI}qf1b^mRK;<-4P@ab^pu{yDArJJulyM*pbeJSk*z1Q9nE1oT(>(VVgy*5n6EBobj zf{$|ck3SJbrFoQBChyVrMcnLY6nAeAvhKA*Nzu~o2go)c8!Z6Y24tfJAlra!v;brq zkc}3AYy+~<0+4M$Hd+9(4ai0dK(+zdXaUGJAR8?J*#>0uZ!s=_0CP-W(*OVf07*qo IM6N<$g6gy~+yDRo diff --git a/Resources/Textures/Clothing/Head/gladiator.rsi/icon.png b/Resources/Textures/Clothing/Head/gladiator.rsi/icon.png deleted file mode 100644 index 689bff0e0c6956e0f546e5fddc29dab4e9a1509d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 948 zcmV;l155mgP)R&+0g8p0Gj~o0brV@+%SM!$^Q?;T>*@a^h?t;<=$Pj0E|Bu$23iO zI*pfKiUBZisFT)4ouU310bLLdlpoep?vL+I z9Fnc~>2&X`Bez&!>SBh5Z99N7M4}NwhC=*-7&jb)aL8bIAR)i`{*+iNZds^D#|EY2 zz?S+bTibhSs1K1`xJfQK3&6}TQxqI{=)oSgcXr{p1su27FY5x3%`KD8I>ftT?CHt# z?_3IiKW3`|xNaL5K5~ z$;(V%SR%7jEUvc3M=EUt5Yh!5twHXO2bns*M6}w^`I#iCjEiMiccdxlfN7etr7?u2 zLBw#G`7^_@4=*x#HV2A_fUZ!bD?GEemS~kmxJpA&RVII51!hVH?(A-m*IKqZ}% zyz}XFN$b~i;C3B9aY{H6;>|j$0ztn*M~fdr6ZGwCrQiyJh7ZH=6AcO;?PT%d*596VJ=v z&U{R)?e&%F62pV?%dbxeC^qiB-}?)u}6Mm;TPJd=K|U z8SGsmnQ_aGS+)aEbYXO)U%vf9JHrDB8T1RR&mPA#O&QV!AHCMW_?D#ur)j?EB zN5=+bb}`QfuXeHfiEd8+bb(`^oF$u=6(zrGfLpr#+AVj_*A-wrbnm~4Hv#T>fd2rx WcQ=M9F{N_=0000-W?zy@taUl{1J0yuEj3gnp@?Vn>h_pu@S5-TgV35(#jl`Y_d6% zT97|-HqBjSTSkpjSDV@rbZTjYdi=_h4p1%-@1Fi}lxD(l-088N*FWDszI#8<^Z9%~ z-_P^;ex5H#Boc{4B9TZW5{X12`M;rzb^x2rcF%jY6?tMs*>0cb@J4U3SbQBG0M)3} zLr`0hCvLyqZ@stp-2t@~d7}Q~Lh<$+IV8pEDalX7cA!jnYshHzBgL-{ukTl?tghmBks~KnM%^5k9)261&u!k>%Q(LIc^-M&kqoP zqJjE)2gT*dWXw!M(Hc2=@Tk}N>gRW1FlzC*zh~F(BCqtm;1>s!7Uc>B6(x%%a^|9o z)6G5DKXEZNNk?6M8x6;scy4YgDnh8O$QR(@_T=_&{SRkbDaeUNpvGiUvovozWv}Gi zQ$HH~whNRNGRSD66XJCM6vkrh~ z=EVFx&9qblcE`2VziDXr-v;cT8CVGlu66!j(*lvS(U2&9bD?@qo(c;N;d3M zerj)KN=mptmkR`78@zGN$&7R(J2w@G!#j$^;REGjVQvN~38rDS%S-nt7ux#(IC-j_ zFyZ3lsdfO)UF>Cf=^np6eF#t`Sh;4Acy)0qv!Bf3=7cm>EZxqkwI7XmuFBUJijocc z0$K?MtQ4-PDi#1~i6$%yD*XQB1{tjb{8|UxPQj}817@^83D~#5SV21AK`%fekw_#G zi9{liNF)-8+g6Iso_@ca4+eb%{C4&&5g(yK^mgHJT&2x^1!u<<_8jcQXiyWP5p?$S)7J;Z z>+g2R*pGnjE4Yp0>9#k~&~S;X4#5TcO_Jjbn8MY}$_(Sn!w%+`jr`yR#()C^1Jr$f zln%Rtaat9&Mi&Bw*hqyh4z;lNJB7{F2Yim?pzjKQd*m|bnp`y6HPn3Vpzc@;O)b~? z=9rT{w}L)2l+vPHpZ^>Q`W!H8vRPDCTb0)eZy6aLuE%W9(SO53@1JfaCxw%@AQ8eM zF&ea7H?F+Hrr~lx&__UK%B`dJXXnI_H93k&2|BbP5Em6na-0U0;$gxBJ=3R0lle#r z=Z~x(Q8Wa-0}9G-Wp+z;I&Qaz9+!uS@me~&TojhqC|%cj(HnJatvtl0b)PaRd;N%_ zI_O`4W%Clm6VoGkC?$^lU!5l_!@#B1e&!edQw$CDL*;Or9fI%`WZz>rU|BpK+A|Q}R2R!Hn bJZSy`RyV;PNLY%g00000NkvXXu0mjfsa{*Y diff --git a/Resources/Textures/Clothing/Head/gladiator.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/gladiator.rsi/inhand-right.png deleted file mode 100644 index 099795117ce476cf49f796725f3294f962e665ce..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1272 zcmVzt>nh5B;2O z#+!dc0gCgIMAOb(&^e72Y_g_vmmVFf5ZnI=MQMq;98V6j@*oV=K* zxCGu>J&(vB6IJIvQgsnVygz3n8pvYN88Rx)zJSg<4# zMQi5jg{xE7nn@U%|LA+CF`2cv2Ci|sB;9R(4M0|UqEPT6bJKkOXy~D~zLUmpdsq}| z;Bwhrs&CY>esu(1=qS!h7U1GZgUeKUJpa!(n@CNtBJjr7*PAU#g=Bx6Flzq6yFgZY zqA(eK(Cc;l+uX^K;!CD2dDhNZq7{-J@Wm;mhdc5HLaDK1i+gq#}t4NtARR)i^IoDRoVDQ{C&05HuteFzf{RT*UUf7y%b$;BXj>*<#&5M z3&UrO*k{CT@L`vO#ZhKX9Y_^dPNs`1=X1oy#07-U^_`MNJdKpBGs<7~UI40U?D&Wt zs%q>2{Mqn;l&mu&PT;6B!9%+@iBH~-;MG-2>7O0R)-8qX+;d{ov#*vhU^IvJZWNjO z&yLw^-A;vz@-qZLWQZ^E8}i&9M9l>l4~@GGsXGf)eZ6~%+y4SD3R!^X9YB&KNs=T< zk|arzBx$NWaoumci;m?d)5M&JIaqyl_$}G3nkPq3;&xGVyo&RZguhwOhudPY_y;m0 zG>ZDV3!9MT}+x?OhK@%PCUsxA!nVSW9P* zi-7?b@o`ZAq~@sS6`HY3Y7l(<1;if<(nMIWo~m2jyt^)%yA5`()wZ!UyF^j@M95<^ z!HQEEB4&w=mzTdp&5ioO*`V4B;IU_eamfYBZ`uO~W5~ i;hzr60zB^k&)fgvt6dts%`!5A3r2_R7-c*`YgIH^{`~U*58_!x&bS% zZP-2k$ai!5W$W+$RnfXS>&;rHLQ6xzpED0UJ;GBe|5CRgL;OR^;+%xX=U)r&R%j^F zn7QCfv~o`B^#tB}MWJZN{iZ?trhgIpAzxtY&SRC#WA7`lTexv*msbA%R-OmJYi>KG z-j7dD{LdD9UT}GJ=;5z2g3s)@_cEm&JhZMMav}2u)*CMvav0657@`|``3{IBEG8s$ z_7Z!5mHY(#qpSs{8eb(#j(I)K6zwXFj#&BP%U=7LVV24YTbW|c3;qm>k(n=}kehZP z@7sobo4dZw4UJf-aj0))lNCtm&bMj&na0hJCo@0sE>wKIz(lIp)?H6HKwd>kWjRmay6!DH4=O&4bf zow~RXdk_R;H>TjKxc;b+In+UsuppAF(&9z$^6F09{hoV2PLf)!7VEToYgLZ`B7g`W z0s!uZUC`)Pt@cHat8Z;~awXTR1&BW_Fzgr{AD&779H3m!TE(+6*MJBN!QyHE5MkTNa{lo$Gj#O8?+q35uiVWCw64M1jGpUSDrAEJMg$5|s zv(~HUcZ)AWw66vLe7*h*z{Qu3v@d!LI|j9_rUbY?6aYZ>rHU~To;hc1Oa#V65KrX+ zh^O+5E@$lT9`N{yosLGoYBe9c_C0+d!2a$5#zc_VkUgTyW1*Rtvw^#2b2|apolx6q zO2dwU&`g3-5ZDDmGck&BSJcpNL3BY(7tF_Y1kBk0ZK_kk+lI@}C+8LGt`-eU!F+5N zk|Ul_WQ1n2xHg%O1<8!;iWk!g!;ay*m*4#m2$0OkE`$@2g(8#8$nHBwT$}1aTlw0` z2qZIhYsGHE@A&yxFuqxM#KYc#5KsfhhiB5sdBwMQ#y1N9w5iUAH$OrPJGSyB41)NZ n6Nd))-?sMufe0W1hyZ>A=`0HzpXfS~00000NkvXXu0mjfK6Vkz diff --git a/Resources/Textures/Clothing/Head/greenbandana.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/greenbandana.rsi/inhand-left.png deleted file mode 100644 index deae09bca423871ba6ef06d858961291e011a7fe..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 624 zcmV-$0+0QPP)o?+j{c^*xX6-{q2w8v$>O`Qmsui&WRl-{BxBPJMMOf=eS-1 z1wGH>m2!xc^Y3jvub@2E7~N){wagM)?-$|d0^Mfc?J$RYxeJ(3y<^-U_3o zA|uPkX$j0^5p=4UD2GV=Sr0C%dpG%Z8#FCL?QT~?re&yE{*Nz9U=qID1%gHr;B^3A zlLUAjfY;_e0YV5Ngb+dqA%vJeGre?hgVSU8%Z|?dwWQMTWlzH_lFa z2Ldw#Ov_MOD#G%{BFh_#v>F}O<7uA0ctoxgQ`26d1!e{u9-IQ80j)*{fb5gI9JlSi zGhn={_kRU)5zLihs-WiqSWSjGZrc+^QZp!3P!ZI!z`h+^2BWoU(_}Ht^MhVOC=V}R-Y?|+03sqHA|fIpiW;d> zsf_donM}r$Aa0GCf5Mv>;q|E3Ma@)2$tYv(eonyHFu(_Sb-l5Vne^&uYMj5O56t0hM|Nd6-F2gH^B&u6P%~AryKYEM&3kMMU@v*6?R#tsFenxv=m0@u z0fG(?w8$5Lh=_=Yh=_=y$8q8t_Q{cx$bS(UX*8BC#szRUP_?xh9XO4n9uik8Kr>a5 zEyl%%k8iLnr%|sqF}*T{>6IxYmL@}UmH=>BfI?E24t6f2^J5E{_lp34+UM`MKDtG# z(Lt-x@ie5LhI$0-v9mpNoJ+-UerzGV_5vlNj8A{2vSH$C7qE|;^qafe9{MgYbQ2t8 z<{l~ejRgogK+qyzfZu2VxJ$P{Sup?r002ov JPDHLkV1fcC97g~E diff --git a/Resources/Textures/Clothing/Head/greenbandana.rsi/meta.json b/Resources/Textures/Clothing/Head/greenbandana.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/greenbandana.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/greensoft.rsi/meta.json b/Resources/Textures/Clothing/Head/greensoft.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/greensoft.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/greensoft_flipped.rsi/meta.json b/Resources/Textures/Clothing/Head/greensoft_flipped.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/greensoft_flipped.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/greyfedora.rsi/meta.json b/Resources/Textures/Clothing/Head/greyfedora.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/greyfedora.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/greysoft.rsi/meta.json b/Resources/Textures/Clothing/Head/greysoft.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/greysoft.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/greysoft_flipped.rsi/meta.json b/Resources/Textures/Clothing/Head/greysoft_flipped.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/greysoft_flipped.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/hairflower.rsi/meta.json b/Resources/Textures/Clothing/Head/hairflower.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/hairflower.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/hardhat_blue.rsi/meta.json b/Resources/Textures/Clothing/Head/hardhat_blue.rsi/meta.json deleted file mode 100644 index 9a60601fd5..0000000000 --- a/Resources/Textures/Clothing/Head/hardhat_blue.rsi/meta.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "version":1, - "size":{ - "x":32, - "y":32 - }, - "license":"CC-BY-SA-3.0", - "copyright":"https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", - "states":[ - { - "name":"equipped-HELMET", - "directions":4, - "delays":[ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name":"inhand-left", - "directions":4, - "delays":[ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name":"inhand-right", - "directions":4, - "delays":[ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name":"icon", - "directions":1, - "delays":[ - [ - 1.0 - ] - ] - }, - { - "name":"on-equipped-HELMET", - "directions":4, - "delays":[ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name":"on-inhand-left", - "directions":4, - "delays":[ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name":"on-inhand-right", - "directions":4, - "delays":[ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name":"on-icon", - "directions":1, - "delays":[ - [ - 1.0 - ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/Head/hardhat_orange.rsi/meta.json b/Resources/Textures/Clothing/Head/hardhat_orange.rsi/meta.json deleted file mode 100644 index 9a60601fd5..0000000000 --- a/Resources/Textures/Clothing/Head/hardhat_orange.rsi/meta.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "version":1, - "size":{ - "x":32, - "y":32 - }, - "license":"CC-BY-SA-3.0", - "copyright":"https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", - "states":[ - { - "name":"equipped-HELMET", - "directions":4, - "delays":[ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name":"inhand-left", - "directions":4, - "delays":[ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name":"inhand-right", - "directions":4, - "delays":[ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name":"icon", - "directions":1, - "delays":[ - [ - 1.0 - ] - ] - }, - { - "name":"on-equipped-HELMET", - "directions":4, - "delays":[ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name":"on-inhand-left", - "directions":4, - "delays":[ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name":"on-inhand-right", - "directions":4, - "delays":[ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name":"on-icon", - "directions":1, - "delays":[ - [ - 1.0 - ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/Head/hardhat_red.rsi/meta.json b/Resources/Textures/Clothing/Head/hardhat_red.rsi/meta.json deleted file mode 100644 index 9a60601fd5..0000000000 --- a/Resources/Textures/Clothing/Head/hardhat_red.rsi/meta.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "version":1, - "size":{ - "x":32, - "y":32 - }, - "license":"CC-BY-SA-3.0", - "copyright":"https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", - "states":[ - { - "name":"equipped-HELMET", - "directions":4, - "delays":[ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name":"inhand-left", - "directions":4, - "delays":[ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name":"inhand-right", - "directions":4, - "delays":[ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name":"icon", - "directions":1, - "delays":[ - [ - 1.0 - ] - ] - }, - { - "name":"on-equipped-HELMET", - "directions":4, - "delays":[ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name":"on-inhand-left", - "directions":4, - "delays":[ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name":"on-inhand-right", - "directions":4, - "delays":[ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name":"on-icon", - "directions":1, - "delays":[ - [ - 1.0 - ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/Head/hardhat_white.rsi/meta.json b/Resources/Textures/Clothing/Head/hardhat_white.rsi/meta.json deleted file mode 100644 index 9a60601fd5..0000000000 --- a/Resources/Textures/Clothing/Head/hardhat_white.rsi/meta.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "version":1, - "size":{ - "x":32, - "y":32 - }, - "license":"CC-BY-SA-3.0", - "copyright":"https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", - "states":[ - { - "name":"equipped-HELMET", - "directions":4, - "delays":[ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name":"inhand-left", - "directions":4, - "delays":[ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name":"inhand-right", - "directions":4, - "delays":[ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name":"icon", - "directions":1, - "delays":[ - [ - 1.0 - ] - ] - }, - { - "name":"on-equipped-HELMET", - "directions":4, - "delays":[ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name":"on-inhand-left", - "directions":4, - "delays":[ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name":"on-inhand-right", - "directions":4, - "delays":[ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name":"on-icon", - "directions":1, - "delays":[ - [ - 1.0 - ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/Head/hardhat_yellow.rsi/meta.json b/Resources/Textures/Clothing/Head/hardhat_yellow.rsi/meta.json deleted file mode 100644 index 9a60601fd5..0000000000 --- a/Resources/Textures/Clothing/Head/hardhat_yellow.rsi/meta.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "version":1, - "size":{ - "x":32, - "y":32 - }, - "license":"CC-BY-SA-3.0", - "copyright":"https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", - "states":[ - { - "name":"equipped-HELMET", - "directions":4, - "delays":[ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name":"inhand-left", - "directions":4, - "delays":[ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name":"inhand-right", - "directions":4, - "delays":[ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name":"icon", - "directions":1, - "delays":[ - [ - 1.0 - ] - ] - }, - { - "name":"on-equipped-HELMET", - "directions":4, - "delays":[ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name":"on-inhand-left", - "directions":4, - "delays":[ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name":"on-inhand-right", - "directions":4, - "delays":[ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name":"on-icon", - "directions":1, - "delays":[ - [ - 1.0 - ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/Head/hardsuit-atmos.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/hardsuit-atmos.rsi/equipped-HELMET.png deleted file mode 100644 index d1876414467a3a43ba40d299c0dd71cc7a9c47d9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 955 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEU~cksaSW-L^LCcMhe)EtvHD;q z$Bnx#?2j$uJ<~19lI_%~z#6+KSjefJuXF;>qG+M19HMTjLR-8iEcYurC8XbUW2sn9 zxuy|+uH3EMzuPD1dX;8c@oauKsqOys$J}54>g_hZf9|)<{ljn07~Ie9?d$twAH1;o z!GmVA>JzIT@31}C$<4oZtI5`Rzobi!DsK&Kk&^DX5@z^g!P#r33TxNPI2_;nZ&Adz zr#CkJ-kYK-8(X`S!D`;u+xuP#Ff5OLWOBde%*$yO4EtV9c&<3*)q0b4QNcfXPVAFe z{4QYi=8dO+uCTrmRc2Ok(#xv#&6F_Pr3{a34a?5^7O&gc{dp=k!<_Xo4`PbNcRyd& z`TfWipEY9jTCMsb8hO*(9&)pOSRQoBbSl%1f@dlWwfa__wRgE3-n+U6NuR#cbMKz|HSJvUg}3YYc3){(w?l9HZmT!7xA#4;WAAzX_tvi{#vN*R z-oLi|xz)|Op`LZE`oVfm;f5`YnLZ4c*p?VFdPq+=#-fnxAVom%;w%1){%?A_IV5xU zZ_!(S{CZIQ&#e{JTdwchwY)~rXvg8_J$r9Gs^oZkG0wWGLa^aZ&cd8G$Bs8_+84y| z?#cWA9e>Qq3WI}gx6G>J+c53>2FruJB>|rGR~e`H?VB)H>B}5WG)8a!-<|p?!>%UC9 zOSIQDHLx;vA6?AZ_kWJYuN4v!I{#9#)@`_S@$@1Q2P0em;It(>+~S4#gx+^rPPSjR zc$UYe`|E7xj8ch5ib4DuSYV|1T%$RPKR3!CTa|s%$H^`;1xVuFMmM4d|v9utpx!Bz)Z>D M>FVdQ&MBb@0MgaMYS{ zL%IayToeR{x*dmxv}AlB9iKy*5W(RkD!r5ZAn<;F-tYV2{T@k#<2a1cK8#d71IPd} zfPVqtW13A?v!(#fL;-*mbqm1i=An3V0IOM33$qiLIfENf3WU`Io-eVQHI)=%`tuTw$pybpBX6UCrrsfxUF zwfbt0z~0)Su(&~CaU%#!!Lm{;D+NQ4FmG?|=(g1Zn7qD@)>q@-p#t<{1%040%ssQ` z#Q*@C)iv6dO>xkG4#5-J&@T=ev@M&XgI(RWdH~yd`{K{N7x~3O0{}+|93h^>0NR$# z_TIkM3rQsTC;a)N9^LGj^-eGffDZiqRf+0!#S;UB5MMr<#7_huj3p6I1rUdbTN?4y t03k%&Pb2;!fY-AB>uZ<+WB~6H;1R^)tKbBa&;$Sg002ovPDHLkV1j?t;OqbZ diff --git a/Resources/Textures/Clothing/Head/hardsuit-atmos.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/hardsuit-atmos.rsi/inhand-left.png deleted file mode 100644 index b85486a52c57532f524497fab5553378edb590f2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 811 zcmV+`1JwM9P)vxR4nRknALo;obhP;a zu$0+Poka5ZO#KFy3*_J(5S(A2y1qSjaXt1@UEiMaZa8hcmS`|+M0sfp4ZuG#LHW)m zolXzkmk$8wzI;HZ(?j{rCjOC$6USQv0W5Y~;yO7Di`|Ab5HPY_z~BIS@7)1la?Z`f zejxx8`-M!-xl{U2;)raq9I>*rwuim3j-|CdmLpaiku4)jO)xZoyAK{J085{~#2PkZ zFY)VmeJXd4qvo@{2ziLr;2&UQ-bPl}WZo|Q?1-`y|O+{%5Dk{S%wT)TP&E-7sNh&||&Ctp*%%fPp4&GkSgrV60a(X7Dn*#oVQ;9GUx(^LV(8F}`= poDV?*NdWmSAm1c_d>4>!zX6`)48X|FNHhQd002ovPDHLkV1glLe}4b~ diff --git a/Resources/Textures/Clothing/Head/hardsuit-atmos.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/hardsuit-atmos.rsi/inhand-right.png deleted file mode 100644 index 379b2aaefd65ecde4a549e0434b9a2fb6d1ecc40..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 779 zcmV+m1N8ifP)CEY6AG0s!6i{+4K#{UI;F#rBWLcau}SW%-)}kI``&x}-=DkW<9!bVK@bE% z5ClOG1VOlHxR#ffO#_SbBe_qm4j$yb^Kk5q%W8rC{{9L{J01V3zs72^x4j;r_17F9q%^Al3=Kr_O}%AkAPRuetUBI= zLj6|p<9$VMKx%c3j-ElSaYK7_^b8u_1}9^s^B}cj+HWu*Ivb&7FU_zo#Aw|i0Hbw> z4EsW~?4^m$M#?O=ytw0W6tz)r7n-4{jkx3SqB#Zw#-2O^U|}UlWWN@G$bKygD?vlt z$#i9Q*~qwwC9v~xy?jyx=6oi9xxLMj+|8>$$>#wZ8Mmc=%S31<6wrS$ zttNvr4Jd`nR)N25`hUVS6TC=>0d@kYN`&Ez%2k=b9wp@g{_tEbUvCF=6TG)?alPRh0J}f-XzRMCuj}+Y z;7p0oaq@Qw%u4D`H{i_w0)?FCy95`$HYf(zEx>NX0J{a)%^xo@4&}B)I*WOe`m diff --git a/Resources/Textures/Clothing/Head/hardsuit-atmos.rsi/meta.json b/Resources/Textures/Clothing/Head/hardsuit-atmos.rsi/meta.json deleted file mode 100644 index 45825e1833..0000000000 --- a/Resources/Textures/Clothing/Head/hardsuit-atmos.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/master/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/hardsuit-engineering.rsi/icon.png b/Resources/Textures/Clothing/Head/hardsuit-engineering.rsi/icon.png deleted file mode 100644 index 98c991eb2dd72f6b4b75cf97f8cdbcedf75557af..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 486 zcmV@P)6yo}B(NFFZNz-i=&V6*`3<0diT@E?w0qUDf)GJ~MZ; zva~4T4Gi!bo*bWfiu(p|w6n#*={Xb2moNv6!$kL;3GfJ%p;eq`Z2ZALfQ`*<2~_*; zzO!hnIM15(N?eY)$Nv0qgV8qGD|^4w!i^}GRc$5lgqdn|0^L&p+}#7j>N9A1vT zgi9cYTIdEO>NA}{9TsM%0Jylmb@O!N1v%6bT~@pgtg8DGfRc>3#)b4Dh4dlNfpOZg zlj|#hv#{2*FxuvODF8Foz-XIjP0N!xcpOHKoL1XAfWZ4C92npu$RNhP0QjN*F^mF$ c0AQGU1AcCuH&$9+umAu607*qoM6N<$f|gR+LI3~& diff --git a/Resources/Textures/Clothing/Head/hardsuit-engineering.rsi/meta.json b/Resources/Textures/Clothing/Head/hardsuit-engineering.rsi/meta.json deleted file mode 100644 index 45825e1833..0000000000 --- a/Resources/Textures/Clothing/Head/hardsuit-engineering.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/master/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/hardsuit-hazardhardsuit.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/hardsuit-hazardhardsuit.rsi/equipped-HELMET.png deleted file mode 100644 index 15ea08bad6b21f2b26fb0b558947fb4faa7680ec..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1185 zcmV;S1YY}zP)1v<+YmuqLr7;+_YiuJQcRW{+#YO6b`GIF`C`)r6H*9taG?&poqN0;d?#VwC>tY{@pb%}Ln8K3TLP2rC(8k^#8MgpU+V$h}&B4>$ReO7l7$f34o7Zq~Q2`;idaJ zmDVHRc^>Kc3;+Re58yz>ZJy_mPN#Lc)YkJ%2I_SHlu`&GPTISW_8QP+MtA7pU8+mvxP9p1UH0+&KKhY_ zun7XycHXTlo$mlCW!Pvm7#Ggpf|3JcpiFKbPeDp{@Wx6GHU+|C&6U z0l@1btuMjXQ3(Lk223jfVA_CbB>+qtFs%fDX#=K}05EO9v=RWO4VYE}z_bC=N&uKP zU|IHs#@AGJOmV)PL<<#-Uh?Fvnc441H zag9KvUe5w4Wk?HF?}s{kV3Et^xWBck){yq|@^mE(;ruQ%uii zn5Yjj&J0z`JlI(7`6Dp#bZ`JT8fS*>unaddMAZo2=klZj#UBtc>NtMK)1^=-SdB&l zA#8-OdFT2ygb-x2IRLgZhg2!QqL(wsY93XqO!fUk0J7N}LI`YIAcV~|A!sxjT5C|p z09@A%C-W18gm_+^&8=;e3J3xf7bt9J4%wd@)y%9jJ=jA2<|nMyjoVjAYjgCpj-zdI+ZJs#1ASQoj(c=&Iq|~ldG+|7C}0Q!#bU7| z2wH2vY1`nfP#njJXGK3G-nOxAfl@)7c(GWtT-UYW3i4wHu-ZjVPr6G5Q*_C*-I ziK2oG*LAH{auOe+Ck+JI?YcmV$bJVNVLHJEKb00000NkvXXu0mjftn)02 diff --git a/Resources/Textures/Clothing/Head/hardsuit-hazardhardsuit.rsi/icon.png b/Resources/Textures/Clothing/Head/hardsuit-hazardhardsuit.rsi/icon.png deleted file mode 100644 index 2a1190a2e0d6f59b70f7cf0de2406ba7da704b04..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 472 zcmV;}0Vn>6P)Nkl>hv`PO^z^Phw$&;+uzdXmE?e`ql`u#rJw4JSvUIA196+i_5?5@&DYn=gf;uwHS z#{r<*?bbF9a8hq&*Gi4+69ARB>#eN+^;`;~)D~#1v->6_NkWn&g`T(Xo72@wFOZW;kquq@Bet0 zrYWxL5=Bv&Pud3|K)c<}U>xO(sWz+mzHj|QDh03!+xms10;mAC4)6_${HI|~QQ?~a O0000g$vc zCq9tA;Qi$F_hQdqVD-;|TT-ro$2l-^lQ7p+mVPE`y;D&p+=e_s&zCU^2 z2P_tg#bU8oEEbE!VzHbyoTC=7zP|p3O$cEC?&sn9PRAC8;mH3Q$G=jkj8)(Lymut; z0X&$q#{{qAl4 zi$HZ{1%NMK54zQ!UHYp{=V)4K-UY1JGY5}0N#&z92 z`vgdR4)8pWsg>Wj$d#_G!7AHV&m*NA$^VC*V4KY*%~A=^^Jq4kX;(L00g~38x_OyK zZMAEkx_Oyx)X>&XaNPoNtoz<4MXJl75W;M2Z81GPO|lXItgWq)*biC`6Mujp2*~Hp zva|CqQ4|3T^grq{nEE~-2m<5#eqVR>Jdb+4P83B$|JN%*FK-j?#0dZ$5sJmVaV%wP zq~H(3iQ5PPL{a1fL122{C-I*&n1}#yvV-m=)tz7#u>u@-1&*6jFM!2ju~;k?i^XEG zSS*&)$B93<+<)vYgm8fNfKN>rhHo733_CWT*s1UYX|GAiNALGn{l$N;oG*lU{c{+e z8KnVI3&+qZM$ijWxr9B3~~$*qM2PztSM{;5CY z25{G(1K`%e0^x%PW1VwmMgV{t9~a?C=gv|7(gMffp6~Nj{UM8+Q2uU?@5?^15bZ(p z!5}gtz@=wrazOhcS9oMrVYWn)ZE)A0qZn)c1a|M^MxNX=BR~>TgH;-{uK_5R{cZ*c zfWh!wN)tuV$ipBr_X1yU+%el%&-19%3EnMqk|?x}sn_c~mn}Xxo9FYnOMMr!!^lhz z5JDInzya?Q53OTdw}6zLd?EupeflK%{N3vT0Pcr{ZtzmJdh-r)K(4*}L{aqa^?)!8 zog_sr2|Ne_2Vk6l_mjD;a1aD$oZN$9Tj5L%0Z2dbB69+yjTPXyD{$QW525&O5d;uf Q6#xJL07*qoM6N<$g452zn*aa+ diff --git a/Resources/Textures/Clothing/Head/hardsuit-hazardhardsuit.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/hardsuit-hazardhardsuit.rsi/inhand-right.png deleted file mode 100644 index 7879ed15e9a1949660f3c1856f4b86badc2b6e87..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 899 zcmV-}1AP36P)r%Y5^;oh9 zJY~w3AHH}=CPU$@;jSFK+^gZh%|YO}@^(n2NU_|+G{#Euen5jB%kuL+mh_7EeZjIU z%d#xXvMkH8tc#|!zP{cUlu{ail`<^tAH*7sMk((E)oOKQ$(_Xa=KsUd!0!tSrdF!~ zaR2QaYRgZP_)i-fxhE-->eU7FJSYF^)djQuZ-4$1=^ZJhc?Y!Xb(B*4J$nzO6zzJQ zcN|u>sHBu;XBw1Jnf#Sf>`dq9Kau`2!0ztBrgg+$|9nF0D2b(yE1Ed3WuVq<0`T+y zW%#M&{mC)`;UryOSbygK_=11pPy&9)q)+9tRYw$S*oKk)GZKCIad~4t_UZ2gjN<^9&|4; z!(-a4^6SQ%^LGn08jVt~*Fy*gAsl|Zc>^H?v$JymY`dRnvwF-~is!@y@O|GroPU79 z5Qbegx3`XCnKcD*Pf+ytfT5lNc{9f8 zqIjN{Toq@cjv%|Ik<4$1Q Zz5q-*Ww~h=c>n+a002ovPDHLkV1nXpw^aZD diff --git a/Resources/Textures/Clothing/Head/hardsuit-hazardhardsuit.rsi/meta.json b/Resources/Textures/Clothing/Head/hardsuit-hazardhardsuit.rsi/meta.json deleted file mode 100644 index 45825e1833..0000000000 --- a/Resources/Textures/Clothing/Head/hardsuit-hazardhardsuit.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/master/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/hardsuit-medical.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/hardsuit-medical.rsi/equipped-HELMET.png deleted file mode 100644 index 250192f72b74b580469a4eadf457e8f7c89b472f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 866 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEVAk|>aSW-L^LCbDhH#+7@&D^z ztr6&&`avO?js58+3lY@`Tbg%ih_LVUoZF>fl`@G(X+_G*D^{|6xf}G39$X^8&8NpE z+p2fyvB5%7E4C%IeABCUdTa0fKIwG(x4#N9-zVMq{{LU)`@600lcS@fEl&CbaxZwc z<>d5Nk?u)qMi&^x{+LNmUiSF0bsr1E|1`;)y=n{z3vb}T6Q#XNW6$0;kV z`&`mB>e3Us^cL$jp8F^-X=>Bra0-~Vkj`EZGRi_Q7T zbBf>GsakwPa4$GUK(OZ* z^PykSWlK3@IF5^P>HJ&FbJ*qi zj@9}uwq@v;zGSiSqPT*TsNV-?1#{HJYA%#gbvu&5)^hUx&QjS`nM@qtnx`bj9+{jk z!_dq8<8`q?WPKD{N>OFZEZvo#ua>_re0*!_g3QE8PXjeWA2B>wf4WCcf5yB|*|S30 z5398boU<%DXCJoclGgO?QM!`7!r$0hW_;n0$Zc|G{j{fjQt`a3^#^Xg6;EgQBj&W= z#jZ7BYd5Smj%VD;F!}!{#clQtQ4FTn7_u0zL@=*l4M^r)Am-3(ieK;#eeBU#aligo2TF@gTepcF>6;3_0~cO^b0cd)u6vn z7t2`2CQq({ThIk9*7Lnb&ktcymL;at)uibjzyo-IzW{J;`@&(qP?!yDN?=tTg^iz8 z2M+Uv(m{RUM$IJv`T_@mTm#sg%%;|Q1`Pe;5%@Qa&8?$<~RRGmyi7bg( zT{sJnC9!&WedBmFT0cLrYbU=4*Z}trk8IP^*EhTN>=15udjYh*X8}O7bce7zBMh-R zu-)wi5h0N2a8Ug$kSX3jK5KAC09pn_j{=#3h;Vaz$M$3cL{Ze7D3Gbyg#rdxyVeW{uCU?4jGD|Y#{UB`i?Y!CdzMY*NW(FV#f*=TjAP9mW z2x8G-(^k;!b`6A)ol2!LmH%ZkVT{u%I})XcAplnWUShFZjw1oUe^5tx{|ErE+Dq=A zhJxt|TV)kIf}tUpu*dm3jzlowAB;pXjd20S2;z$*_Q_IL0*ngKTyIFUBZlZ}&>mj@ z4=u-$U`&@EJ0jjc3&sR!t~ccVr!VTHJ#n!O@YAjMO2Sd{{>M6i(J^|TDMKB@cqhnD zw;-;qsgo?t_UL?m{*(Fz1{gTcsHf)-)S{tpJP*1$Q(x6hMJ2)KUp z7JmNtKD>`PjE@66&y$>U96x%YZN>L*AcTPHy0Q23JWm1u=Um%_5CCwY|Fq)(<6i+C z8ALA%y;=@lQ)`Bf(CmqhID~wVF%tz?_Z*fqauTNxlOi3m^ez9l)$vcmW84 zAP9mW2!bF8f>=D}e&TZ4{ReTg#<|T3=SgpSrO@9wIRgL|0{-I~0AyMpDRe0(ut-0351D;qNU&BK>F0IspKv77*D;;qNVjG2qVKnqEy#id6#W&Tp7}G2B$g zdo{h3etYoY65uAT(<%Xq?>2CJQT+mWG&(j|1M z1FoS%mj*I+EF7i^p^(wrb&z$E?oJMpomyAD9|)s&I{UrP?@q_v0|}%)_PLpbAdf4z`Ium5~mqMb{L#4+G|Yc z`x4$F(~~$d@!0&|$~K;S{cdzh?%CDRI(@wvF4EvnPk6UPf}h)_Fe$?!>my4|nPZvXtHu%LNYrzvC<1aie}fr<4Fj@L3!c zq4ArdmF55-f8?Cah;YZ3F3ks(G9U^5>63?0MHN6iA2>!S0b1Q2?%sc(?mv9`j7R-@ zaZ!RZ|9PHLLm&tOk8>_t-Cpke{SpAaNMPtWmj$JVfbIOfeepJK980v157+DA4O3|n zv=tk0{z5XwoI6&p{1(u0rGiAK@#_E*VABq4n#K$87swOLXtcSel>h($07*qoM6N<$ Ef}TMybpQYW diff --git a/Resources/Textures/Clothing/Head/hardsuit-medical.rsi/meta.json b/Resources/Textures/Clothing/Head/hardsuit-medical.rsi/meta.json deleted file mode 100644 index 45825e1833..0000000000 --- a/Resources/Textures/Clothing/Head/hardsuit-medical.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/master/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/hardsuit-mining.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/hardsuit-mining.rsi/equipped-HELMET.png deleted file mode 100644 index 7395c409eaaf7182ac2679c53416fb2cbb63317b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1146 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEU~%+xaSW-L^LAFeM|8N%aeMRA zr_HjZw?qXgIeQ;2SUmT&*O!&rB?hxfQgeP>F@5c=)3rf8wOT;ls-$=`$Dx|YR@-;{ zMrYVU%^W2b885u$FnQ$^w&0$LCbw?2`@Wa^vaECKmwDdn*>8QWJ!Px@r|$meo$BB3 zeE6N2oSeMpL{V4G&fS}1^IyNX)b`u?*E!4j&kf(+x$pUi># z0j_r^GKV=wTq~&e&_A>PHm{*}B7^hV?VnBty}TNG{Oy&=pCZocvmDqhr1F51(cqnA z>Yqy*kLLw4FwL9rR-i2^|E1f%xn0wFqq;P|@Gx|&_xt$krJL4w-k`}=Xa4MSomSI( zqCnd(hM2jTkN%d|?)mnK<41#YgS15B?Q_O|?2Hdq z9&7QP5xOTwAnZV8#_Osd>#dI%>1CbXtnz5$+t>@LBEcLEpVj3zP4Fpv^zeF!pUjeF zuM9qyi$zxLIP>;xSLk{?Id*nYp^n$BaTX^jW|S?yW+o+0|_D;GVdly`Fc`~J*6b~N*L*@66h3m!WzsQi5Oyg!4K zdv}eGk!0KFgYjE#tj}JS%w@}>|D$A&wj)E;wbw5r*Q-zLe(>d6(W@BlwJQbRsi)^= zPx`THQOf48?=+U5+xo!fmu_dwlzCsP_C@A1$Slad6B}2XHOFb@J;tq1BbADQS|@eX zv!zCd-dtU8R=6{>_e0r!hsAl1`F=cDGX?T=gvPAd=S|A zr^#R4sQmnw&Xkw73pTjre_@mO%T%T-mtb|_kwKM^gSwS4v&JsPMMA6iq@UO8JU*q) zw!-=w+f-3@#t1L{;LqPOqZQ8h|6iE@^kRh9^3NZ7kBWccvG{YAd08Es)AELmYyVgu z>y2yN)~C1jh_X;%MBmC6J!X<~?;3pi`=j=L@`kf|av}8%zw{R{oG?>}=4!}c-n5iB eroK(Xf5w9xi;DG4{v`v;6b4UMKbLh*2~7Ye11EO? diff --git a/Resources/Textures/Clothing/Head/hardsuit-mining.rsi/icon.png b/Resources/Textures/Clothing/Head/hardsuit-mining.rsi/icon.png deleted file mode 100644 index 0283ac039242cc1bcf0af3654dc84bd104d03aa6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 525 zcmV+o0`mQdP)D3%9Y{E3z9l5_C2R#A1IiEbr~xdEfkY7)HwH^K?>O9qn!d z*Z?-bdjRMbDT>FU+Rv?R$%vI?SZh=l+}M{IBBAuI!!rQTk&@;P8}52Pa{4XCZ&JlsQaU5%)O9Y{w?n#bkm3Mf}ppnmn$9C%!Q z(vhO}W!ES4D})^IK7PgH^5d0ffT{!Kidr`e2fXr(4k6}*kOP+khpaflWE?&Kj(SdD z9T?FI?tmQhF-^wdW0?}apNb+=zYP$NMYYUn0p{ljEvx}B>^y`5Onm$Rz@L9N;Dr0x z>ifm-65pow+5_-Xzj}YbtR5H+xbz-I P00000NkvXXu0mjf8Vu>P diff --git a/Resources/Textures/Clothing/Head/hardsuit-mining.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/hardsuit-mining.rsi/inhand-left.png deleted file mode 100644 index 153da1557386df694af8da209a287a64cc75683a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 914 zcmV;D18w|?P);hY}`f*=Tj zAP9mW2!imxp=9fzv$Hc^Zm6qK&(zi{ZB0&fb~~G^IiqhS`iR-a{3o`ns;bH`;$#e2 zS^tLe4a>1r7E``qdB(PFO-?n@el9_^LURFHt6#^14SopES)Zf}Kl{c^ z^V(;-56FoC5bZ>)oQppfBU=G9Uj<_1veR0Uvz?$`5CQTXK)w+H@*RL62!bF8f*=Tj zAPBgoqg=y*5p)x$Q(^oo2%IX$$12+j?Hs+ES^Imw#s54`T8AD@Lrf^%ee)a zIMbB?(Zq>m1V4o7cAo$eZrc^uzVEid)8w26Q`$atCBS2=!|=uKiYz``0Vr%-R!-^C zZ26;_+_<+iekI>O-ixvH8oh5&$_hz4okmvz?0tAA63;pKI!eXm z^W1m013&W$j#^bb1E11f-E<{Dul=;aJ^DF<4=T8bx6cRs%pdp@bS1#ro3)XxMJu5| zVPq=$lM_2%Rv5xF0Aw(?=}G{=(Bth>y1g%_A$kRW_g3RC!`Pemh#>YM%mGy=4P%s^KXPJE&bxWOH{e4a|&ph++eZDiyJUqWI2!bF8 zf*=TjAP9nR+AvK{PR39Adb*U(?q1XAP^*&Mv9W#Flx~2!y1FA1cM!DtwP@#{YFFo{ z?RQ3RU`JIUjW^42R23eI(Bouus8!MGPxnAoQVbaBScrEHecw*op3Ug#)N4;Lz`oH; zldTniDcb~7EfY-HCID!%wPw8uBOMEhsy`Wjkt=PxIi=(FG?#BXDamtD87d=?x5j#{ z6aUEcp^7~!{M*xTF0suQw$Suvki{);O8*1{2IkthbE}q1XUCxyCzQ2T_mpZiehMAQMvl0xEk=`Xr&d5e+EU-s_Vd~HlDQY z;Ev@9oXQD)0~}R_y!V*mwf5y;h_`Q^gEmi)V{gDe)djRQcr`nq<_U6X@{oZ6jqSrG z@6sk}-90&o(2(b%!Q&z@^D(P~RLLB8A+#52mLOe8{p2l#(vZtpf>U1`6a$PFU^HTY c(E^O-FM_=%x{D{Bi2wiq07*qoM6N<$f=`^1$p8QV diff --git a/Resources/Textures/Clothing/Head/hardsuit-mining.rsi/meta.json b/Resources/Textures/Clothing/Head/hardsuit-mining.rsi/meta.json deleted file mode 100644 index 45825e1833..0000000000 --- a/Resources/Textures/Clothing/Head/hardsuit-mining.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/master/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/hardsuit-old.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/hardsuit-old.rsi/equipped-HELMET.png deleted file mode 100644 index 311a36f8a71f2319b752827b526ba5f30f5f78bc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1184 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEU`h9MaSW-L^LAFeM|8N%aeKb? z=S(+ug-lG*iTZy*%DiB8n_kj4cM0Ll$ly68qPOfs!npIYyXTsgJOAvvU-Q{o z-P}@r<@)vf%5T=+UR+oGv0cSk+}q_!`lgHAsR&9?d@OdE|9%;eo6^fNoncI`oG^)S<4D6w%dRDb>zqTJG`o9E$776 z@0#`R*&??ZyZMRy{*rqOKK+xpI7KOEXPnH>r#rN>84JR%JvyO(eA?@!2l!;yF254$ zHFMG8uTypf{XeGv&Han|`+m-=qO+L(Eo5J^)b9M++T)&n-ptPv^B6A9shqTX_KT0{ z5B0<^i921E-zm)GWb^&+^)1)rJNB=daY>x(z-Hy{Nsl-L zg7Jizg0wcnO}3O|uwoz94g2%_oxc5_$Fg}| z%l6}n+t~Gg*D&bVD?g~c7{mLpzSTN<&nsXI@x42B@%XuU|5zgSEByQ3)8NVP#F+8> z^F!a>CrjDCe(brjveZ(3!4rUp>ms4bY9DY4-&XzbA&Y0x!!AUG=F!Z+^DvC&cz2h-Ck<-`ukdUm++;!39d@FXvnta z4!M>1#Lq`T_0t6H=I;ptt8BS0PL^f((p+UAvo*E5>%9&&yg9L=I;kFn>FLwe3HKtMiOvR~(mTaIiLBF!2Ik z$Ktu}7rsodTJ>$p#ey%%K#RlL4gM+WDT&rI6A^Y0irLhK5b7G%8 to?l<@^``cK+mT;}Dx{_aaI!gDFXi&|^Sa`TCxImogQu&X%Q~loCIEHkEOr0@ diff --git a/Resources/Textures/Clothing/Head/hardsuit-old.rsi/icon.png b/Resources/Textures/Clothing/Head/hardsuit-old.rsi/icon.png deleted file mode 100644 index 249d4a5db5071ac26d1695c9ea5662dd441936b5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 435 zcmV;k0ZjghP)`Lw{(g!Jx@WPzV|&5V|0c zgdiFs!axTJhb9SyYtcZ3yieS^-*orgp3nP*d22N zan;HTZ?!>*VI!DOYg+$!r#(4~$tq!Ydhq%J0C;@?>`o6RtAxu27pF(ckW@VgjX*9n zFicJJw3$S2Fn}Y*JUSkj;2KA{hk*mKV*;yIU-jkFnbO8w! zG{4QX#pYdMPM9g d0vZ|`8b8>vh9`zWzV844002ovPDHLkV1h|gzK{R_ diff --git a/Resources/Textures/Clothing/Head/hardsuit-old.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/hardsuit-old.rsi/inhand-left.png deleted file mode 100644 index 393596406bdb356ac019dc6a940c536e80120b31..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 936 zcmV;Z16TZsP)O88cDpI+qC)7y8Za+s zyXc|~ClEpiTv2I^6*r-D3j5N?xv+@sV^_-=I9=#WX6hN|oYYg#?`q~f^MBs={O5T; zIOhRD5ClOG1VIo4K@fg4=I9O3+}sSno|2vF)$2EO$J1hLKZ>I0ikGH$KykM3D*fVn zpi)uepZ6VWp0Y6$>Bsh?7sCvQ6Ce1mM^7i(E{(J$V}xG)R55G{1cO2K?W4=&*ud^s z_0{kCdLQs4GWkseDiu{rzi8zlyk4(iQ(&$x^(gwEKO;78B@34+*s}|8xjg{5+#c-N z1uR^qkYj_Is&ndi`kJb9>R5g2ecM<1{^!q(8Zuz;6bQAyCVl=2?v))SEj=9^`)LJY z)v&OGp{Y*=L#F@?r*Uy%7KeRX6B$tLZ=}AhXVUZ^s|VPy zet`D73jik6>zx9I8!(zbFaECXK5`-DK9bSTY6GT&S#uCFD`LP*4?qwEK@bE%5ClOG z1Yx@Q=I`_MqV>#Ct1dz7nW5pY$ESnQwFAmpeX&esz__&o=T8u*RMb>!2TWtY=-Pp% zrp82jj_vdHR7^090m`OTy!p5kd$xl&4|{ps^&dl)4Bij@j4OWt%R5U-aZO>sA4`^~ zcxwR&pY+iX>I9&;5MU|c?%|tn+L)tmx$|U7SzrnSHV1d%a(lS-R~w7hyd=+=pU41) zAkP_1m@rjL@m`?CTgzE%IrqwHXuWU4ALyjMtp@;C{s7@_3k{(TUL>kXlE>5;K=fb2 z-5KOLqs)tDvHS4x?{g7s@z&A;P*$F(Gy(AK%Lk&mVw=K%y{}%)dD?P7b-6v<8u_>D z+j{T^Iw>y9;{Ol-q+CO2`lGNGT1R11EP~$>F<_<#Fw^|-27Cf!v2{zNGpo7)0000< KMNUMnLSTZ}cE9uh diff --git a/Resources/Textures/Clothing/Head/hardsuit-old.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/hardsuit-old.rsi/inhand-right.png deleted file mode 100644 index f1b990c9817385094bc2290d3ce143b893aa907e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 978 zcmV;@11mP)QBxBb4hqmbxw`$mw9@~V1la`s1hR%W8gFa{nu4|v{!H{nF zpsQWL*=J#}b*u#kLg^zB9ZiQK6FRlUGOVTMK^jVJA1E$?+XKB@O#G9}qPf)X>(Oz^ z9iQJf-{0lO-GLB72qA0pxpRVL_+VzcN zC;ZF480=6refzVo22B?x*H+7)JWe}F^aH=R@QtzW`=x#PPzba6jVaL6)1y6q@B`&e zaFrfNIq}T&J^l`-p2SL1AlRX5>*e2Bc^0qNYm8x=z7cseMZBOAM~RB7tOieg69At2 zCR}ATI7(E?ozUHRNlQ7q1$1{_(vtJv`OBG-Kk{g5*>TIJKxpJCh1=ic?x_pd3k#w2 zG(x=Lb`Ii--?r;$Yt75oEzr*D$ zX6W`!JoQb?gd>bs#h70xBEC6e$%v7Eetyu z$^}Trw)MaAa+3n&I)D&D2qA!1MoX& zpGKpW?}Ci40SBvM42>!LqwJ=!7Ao8hc5M$c`^y=Qeo)KM?VE7qYBsZO2-5|4>~Ezn zGzwJXIW)(_q>|79i|-cP1@L~tzGyV-fwL{6b-?v2=d}vAgBR`BhW=)u+Ige>f@y$aR2R+wukY7h}?dE_AJWIRF3v07*qoM6N<$f=}=4 A>;M1& diff --git a/Resources/Textures/Clothing/Head/hardsuit-old.rsi/meta.json b/Resources/Textures/Clothing/Head/hardsuit-old.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/hardsuit-old.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/hardsuit-sectg.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/hardsuit-sectg.rsi/equipped-HELMET.png deleted file mode 100644 index 5b11a41d9f74b71689dd0c0cfe706a627edaa5b5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1037 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEV7}t%;uumf=j|;24(U>nQQCc%?c)aXOlM8+B!1IU zekI#wDO)`>MOad&PVj#DEFj|>Kks7;U!%*;b9Ss&`0G2X_QAR5CT9%Z*Vf;!+&{DN zd(G92-z{c-Rr|PLo4VSab8|MYu6iB+d~(!@shp>x z7v#Noa#+ylweP*^&$>YB(?gC@=WyPqT(d)lKw3JlkLiP zDt|Q8SU6p*+4cI@h5|49m8~~2N*RH8X2sX7vDZTb)-gQKyl*T0;I#g|hwpAW?AL1Z z4b7j(@17AMHnpt%y?%|~(z_40=S{D%c(jUZ3eO5@tEpw|4N)79N*`;#(zSQV)Uxy! zw-r{lp2*D?{QNsJLhOER@#MBtAp2x){=_RzrwpfRAE@Lib$%YT@kafxyzdL7S5kKa?o8Q@ZOyno*s=B#-v*NCBW2XOSb_Vxn={)7qSi1RJQEu;% zmz-WN*Vx+Go?K}htaJTZ+dbKPGyh+isd;R-GMvz|;}PFPpG3Gr+vW zPwPm?CT+PZ4fjIYjMX1(Ip%-IU}x!5!S7-7RPNSxzwD?Z{B`iBKD|xI^VbBDQ$mM3*t&PHwtRK_1n+I)VN@^-q!{uXDR6pN#$ZC+6bvu#BfMB zwoxp$*~UWFMlB?JdpRnFD_vfT~j_iXMowlm@UcWslu+Y=AgRS@>sv zD^x^0FgN!RfF$`vDKx3u7OjEO8iUrx#92xs?c!J_rO;&2T4T{#qZFDrmPsS+YVUw{ z5N&O2j^=y#vjf1FmDSPxw*y}*jI@JjD6lhA;dHOb>0XnanMy8k$Qi}(?8I={;w;T2 p{$BtuRd4q@E&vLE0^r>M`~|7~vnI`K5n%uT002ovPDHLkV1jYs;phMW diff --git a/Resources/Textures/Clothing/Head/hardsuit-sectg.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/hardsuit-sectg.rsi/inhand-left.png deleted file mode 100644 index f0010909afcd2d205db6dc813639c25de4595875..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 845 zcmV-T1G4;yP)+I|_)&77rVU$aR!YTlC^!4EF)C&MWaC~gf$)4kH zssPZ|dkxFeGXQ|D=p)mERf**lkO+m z^n1YLt(XL}6~LHkT|q_?A+Q|ywHz*-I0=3&2Z7~~k;FZ<*E%0<@?mjx1<@v7+3!}f zGyz)a$K`DZEQiI_6$mVcxV&9<{#Ufp4|u#-&zArI>-iG84<9KzZzansKpX9)eit6x zKZm7$mtGas%!_#lEQhS3AXzBl)t$RY7K->>DnVd5TdKg)1Y{%;$wCnTkdEhZT)KpG zd?)B+p;+}c2zb1RY;D5NFvuzjW}i1~?5RpwdBDxG* z(@_=hVdg8|JpO|7&t!cW9@yD?pzSDWc6$t6({Zms?Ljx_YCy73)T_Yda#viC{ij}o zqeHwp;ywrfdgqPqJJ`)p36Nz85n0lY&2}DeSOTo*@NSNJ2-<-XQ0o9{jS^7n0BY?U Xbv8C@w(?Or00000NkvXXu0mjfiU5%K diff --git a/Resources/Textures/Clothing/Head/hardsuit-sectg.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/hardsuit-sectg.rsi/inhand-right.png deleted file mode 100644 index 7aa33f810f096378dc44d1e6282aad67df660d0b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 849 zcmV-X1FrmuP)#B?Yn6t|9z?*Q^g68JtiWIU{<<`He(8g$Yj{$JHy_HvE695Dr_dCk^rEN4FylMb6 zwO!)v_#^;l1|Aly-?@H6w7bVhYAU@x7lGS1>GiotYHBtVyPFPPHDanlOjUR=G=%xt z3}wB%0Fs(Y*yAPm11Blc|JPMyslH{bkeu9NQ=8R@0h$hz)UfzsXU29vaP?-Gh|0G zRiU$H4}*y~oi%%k)?RQN5b_6%u*b`(_wRUpH@4L0a#st5JCtcgb+dqA;fmu z^v&;1Uq7&!4PT2FV@{F=9``%ePMGebH3X)TUx`J#dyK(EoQ8|%iFWrGr`ub(aJh}a zMBMhX$Ay#>fO+xP8ya~rGD5G<#m9+fJRcn=exfP+ovKt?B_%xqbxtSO8ycC{b?RMi z#(t!L%&hX*kDd8`wWI)IszSZXO|Q?zf|90hX%WawOS`YQIShRJ_Ny9oR!vFGR_}5H znN=6&Is$X*{P@!pFCTs7&E(I@S6M|{>IUz01&vfn12V0DcK5FAGMe>0f!({ovc~}- zf50$90JyFF&Y4-ZdjMM+2ds5>IO+)b14gV8)mWhH0HF8^47=NzeOCoZ09F@ZH3`7# b0<882oQyxlG6hy;00000NkvXXu0mjf*R6^* diff --git a/Resources/Textures/Clothing/Head/hardsuit-sectg.rsi/meta.json b/Resources/Textures/Clothing/Head/hardsuit-sectg.rsi/meta.json deleted file mode 100644 index 45825e1833..0000000000 --- a/Resources/Textures/Clothing/Head/hardsuit-sectg.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/master/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/hardsuit-syndie.rsi/combat-inhand-left.png b/Resources/Textures/Clothing/Head/hardsuit-syndie.rsi/combat-inhand-left.png deleted file mode 100644 index e778150ecd414a259393ca80da2ea003a208d867..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 888 zcmV-;1Bd*HP)=LGR61G-4SdkE(f(|Nl@G8_rBDxfK3OWSpLFgoc z(Z@lu7KOskgL_$O(`;}fTL{@57Grff=xi$(>$tPowC@iF-hGGX+2{T5vojCR`+`6q z5C{YUfj}S-2n2#+L(11dC={|FjKdQM1oE;!W=$A7JiK>DH^zNkJ-Tu2cfSz!hrv<- z4EnlybWc?^Ee#ELs;bFe#NV(tgXIE@1cN$2BBc>eY9vzHp7~t7z16#~y)kb!mI_ca zHAi=Q2maL+Tn-teBs`-u}ko zbeN`AADi#mnDCC~w5^$%9r?PD?`*=P-L(JzVp45o>{5+qZu{z8Qme&Cz!JuAxv5k20ce*N0naww^ zxj8wR^ZQ1ELEUlV8tWg|QJgaIq(Wds?Q8!})d2uECnu%P=?xU8oVh-yHx9IT z!+u$fkw|H*d|xM#(pXkw2evm$!79P*qUHA82L%Zp^3MRv-vS1OT(p%Gq!P3fLV%+V z;HW8j0R#epKp+qZ1OkCTAP^KE|9s;z-}48#y2b_T3R}&K$G4==!q)bF_XdUsCD>`j zo9#y1rX?0y*xFXgT(mSapp?1rR8?bq&gcAqEi%A3Fkx)5)$Y!_fK8y~VjF#3J^G1y z#k6l*2ms)keb46ZID4b@(rGV4ug38MU;k$T>eBt_yJrl}RFr3Sj3k+&Ses#~-ecOYEd&@C9+Zrye9hF{p5rzuWELJcTVndPZVLfEExeH~cU&lWIsSI* zd%cH&;X!G1_>r`%#sCN?KLEJW`^0oTQ1qp+Z7RV+Ap|(;0FIiX7vLB1o-{7L9t1f6 O00000G2DShiP(4mDAQkRucW)uuzN1yUEwR#o4m|0CsU!SASIo_yvKvEM#D{aF5$%A@k~;*YFDhb0MdY%_&IS-XNP( za3QC3_3N$#OBW5x-+t&iZ}yd7)mK2{e@?d(HCKY21O=eg0$NSS2Y?_5f*=TjAP9mW zh|c5L!l&8i2cAQ>Dy+xa>WZpWjP=^i>zf;ZsERYYz`cUq7rpJhWpo z%@e#h1Ar&z^ZR?S6>U6#JOIb1Dex?ZP#~z9ArtBffG3$izBn_md;Zilmg5rg`+ML4 zV93!ViN^Bc0BA!Lz{4zo);9Nf$ADr7nUNL{bN*_cN&~4Y140=)&h0C0(#Dc0znlfavrEN0D73oagB~|j#2yar^CM zO=~aMXY5!buq#lYf6JsPS0+%%k`Ax*>iigavqOSss5o| z({Jid35>cTc1P&X=B;9S7F~TA+Y8qIFgn?sd0y^PwRm^Wyu~jQKi4TtxbtM*`|ow{ zcdGCF`L}20Ov!oat4gFV^ae4o9v1_m*Yoqm&IiR?H8dr6I~Z^rIN5J6!qAv7;Vjp} zn0gbj+N|28k^#Zt|JSeA?p;0I2i@{LuT?rsgTn@>SQrt-I%({Y8qse2#K; zsh?XkXZYi%v2(9nxmtZWKJ@m4zlvXu_hw#9Fk`%M_p*1{FB=B_Pu_bZUQP6hZv}<| z`%l%fw|AfC?ygjIZoYYB+kw2y+LsJ5!Y`jXzF=IYxasknNjtRsf1L`x8qSrlxAUyc zkMy%`*Bie6na;mU=6{^ScE-Cu7+;tzkhW*I%U1H3eZlR9ygv+}Fqd!0W8U?V`9iLP zc^$(p-WSLCkrm&R)vJ>=y)&!kXY$AH>t=7`AH81b9P0mRfzh-QhTn%ahHlrA=3v|F ze%U&H-71NI#P7G&!%uBp7@`@*>8J&aKJL?AlRS=Oqs~SSr$1j+~IOV&_4wfdz_3j7cwiz=$@-hu(?`bYyzw^sp z$4B3{pXOQa^5_!Ix(JuBfv hfSO{?7Rw*F@6>#7)#kz@RlxFt!PC{xWt~$(695&@BqIO- diff --git a/Resources/Textures/Clothing/Head/hardsuit-white.rsi/icon.png b/Resources/Textures/Clothing/Head/hardsuit-white.rsi/icon.png deleted file mode 100644 index 2d919621038e92f54065e8f99e06fca1832d46d7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 485 zcmVb<21=@{@h{Y4c;t2puLl>r@3ji7Kh8a14RAeTq6dNgk%>E~%$V}9C z6~?{^l>kgb7x_XFr(Q$Tl6~LPv?NZwM!rx)?v0@VOhXsf_5;`U!xy9P%%wKgvnt-e z0KehQ<+-o;$N)|ccE}fsr1V=@1!f_Y-2|Wn@B&=Hy|u*3a%OY@xnnD28oH=HJ^>wr zqs$?Z_o!F)*Vihorpvaqt86S4QoWLyhA#H^wkWxstYsAdFMEJ&^o)F=NbcBDnuy8( z&-R4?n2ybPv1ED?fU14x#on9-0Q2cJB>?3)AQz0q6Q1!&IKxRe~@XB0u>92TE^0K@3;?qL^n*?Pc}n0?UWhcSo6-N{*C zauxu<9gL@gwEP7)o&&?^z#cmRz3w>VEL>v_3of()F0`@l>)_s)!=@utWd*R0HEV(% zKel(aAP53>cXuEN0=Bj}1U-J($D03I57@_=HIZa_vme5_@8HdTNtAf@$&j`}=)t|G z(uaRN&?DU$aDaih6KoT00co01VIo4 zK@bE%5J!#T`|L_{*sgP|IC3-!g&AqIfBMH40^hvL`VkJ382>+z%V*2hXP<2UCJV;N`U^s zUd>7@tJ(Lm$&7UIo<-F{CTraqRyzKm_AJYOQ z`Qr-ct{eyfzo8mIp$^@Kl>HKkrK&hz;4woH8Z_1ILb^@1Qmc!w)qtsNDxYUPiZrX#EtR>iP zo6(ZBgt=*t>}TWlfN_2ZKK&QWJo^ZSVe#Q{C)m_J}1ADaZmCIJA# z|K(C7&jLa~0K>50PM$_OdkRT?;K$G#I0*g~2>ulS5TEM}oaE=D3a||~>3qBw8=Gqg z27}nz+C(rI#M*`cAMb^2xJmYWnhb2iO}g;P225TAFZ@El(SJOPM*!@jfV1;OC}SIO zC$kNW7hj0u@1Dh3JiPK6T{V50DnU^JT{V57f}#Sr*Cz1UJpzZzE|zfDXhUny2o`g{ zB`Rw|C@LWJZyLA^P8@Fb@m{fn@$W+@vwTWO$V5_n2>kXfLvP^Vd}KVUB+SH7R`gkGP4nWx+H3A9G>9uT|o48!85e;y3OYH|-yR6ux$*<4tS z-l->84Xk5%^^f@ef`5L;IeE!wUl&5L!smZ2UI^{$KOmOYwtA#vKQ>4Os2xCURDjw6 a)bvxh1G diff --git a/Resources/Textures/Clothing/Head/hardsuit-wiz.rsi/meta.json b/Resources/Textures/Clothing/Head/hardsuit-wiz.rsi/meta.json deleted file mode 100644 index 45825e1833..0000000000 --- a/Resources/Textures/Clothing/Head/hardsuit-wiz.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/master/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/hardsuit0-atmos.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/hardsuit0-atmos.rsi/equipped-HELMET.png deleted file mode 100644 index d1876414467a3a43ba40d299c0dd71cc7a9c47d9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 955 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEU~cksaSW-L^LCcMhe)EtvHD;q z$Bnx#?2j$uJ<~19lI_%~z#6+KSjefJuXF;>qG+M19HMTjLR-8iEcYurC8XbUW2sn9 zxuy|+uH3EMzuPD1dX;8c@oauKsqOys$J}54>g_hZf9|)<{ljn07~Ie9?d$twAH1;o z!GmVA>JzIT@31}C$<4oZtI5`Rzobi!DsK&Kk&^DX5@z^g!P#r33TxNPI2_;nZ&Adz zr#CkJ-kYK-8(X`S!D`;u+xuP#Ff5OLWOBde%*$yO4EtV9c&<3*)q0b4QNcfXPVAFe z{4QYi=8dO+uCTrmRc2Ok(#xv#&6F_Pr3{a34a?5^7O&gc{dp=k!<_Xo4`PbNcRyd& z`TfWipEY9jTCMsb8hO*(9&)pOSRQoBbSl%1f@dlWwfa__wRgE3-n+U6NuR#cbMKz|HSJvUg}3YYc3){(w?l9HZmT!7xA#4;WAAzX_tvi{#vN*R z-oLi|xz)|Op`LZE`oVfm;f5`YnLZ4c*p?VFdPq+=#-fnxAVom%;w%1){%?A_IV5xU zZ_!(S{CZIQ&#e{JTdwchwY)~rXvg8_J$r9Gs^oZkG0wWGLa^aZ&cd8G$Bs8_+84y| z?#cWA9e>Qq3WI}gx6G>J+c53>2FruJB>|rGR~e`H?VB)H>B}5WG)8a!-<|p?!>%UC9 zOSIQDHLx;vA6?AZ_kWJYuN4v!I{#9#)@`_S@$@1Q2P0em;It(>+~S4#gx+^rPPSjR zc$UYe`|E7xj8ch5ib4DuSYV|1T%$RPKR3!CTa|s%$H^`;1xVuFMmM4d|v9utpx!Bz)Z>D M>FVdQ&MBb@0MgaMYS{ zL%IayToeR{x*dmxv}AlB9iKy*5W(RkD!r5ZAn<;F-tYV2{T@k#<2a1cK8#d71IPd} zfPVqtW13A?v!(#fL;-*mbqm1i=An3V0IOM33$qiLIfENf3WU`Io-eVQHI)=%`tuTw$pybpBX6UCrrsfxUF zwfbt0z~0)Su(&~CaU%#!!Lm{;D+NQ4FmG?|=(g1Zn7qD@)>q@-p#t<{1%040%ssQ` z#Q*@C)iv6dO>xkG4#5-J&@T=ev@M&XgI(RWdH~yd`{K{N7x~3O0{}+|93h^>0NR$# z_TIkM3rQsTC;a)N9^LGj^-eGffDZiqRf+0!#S;UB5MMr<#7_huj3p6I1rUdbTN?4y t03k%&Pb2;!fY-AB>uZ<+WB~6H;1R^)tKbBa&;$Sg002ovPDHLkV1j?t;OqbZ diff --git a/Resources/Textures/Clothing/Head/hardsuit0-atmos.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/hardsuit0-atmos.rsi/inhand-left.png deleted file mode 100644 index a5e3abbea94cc0dc05aea65265895e46650ac12f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 808 zcmV+@1K0eCP){$!l~Ey}WSH#nzwK6*VUH z&J4&FQ#Ho+7A&S}yfXvx|E#|V#RG6G%%z$QFRx@hf8P4@oG+H50XP=sWL>=xfW96d zw&!o?>+u1gt2dr`5$W~0#uaQAP~j60US7f6+M77Im3T3?_MZAQoK>GqJRDV`y$p&5 z;G6W&u)9US&Bb8VApnC_hxFTAH0*BSoAl(Z*9QXVjE2;4dKfyR0ev8#WV?XE0SrC7 z55Vk_6VE{<0G@+NW|y3&#`Cepwh6}c_&4@3wzuHl*e4j%V~uSq*=mZS0X%s8L;~=C z{hm0nm3T=WC&zOcc8*D#p$Lt2wWrQE*445ZiZJXPQ~ckdDhr`;mqSj!h>JEq?sCY@ zHG3r20l}C)XMM2?A=Orb<1R<)j;+Q!mvm`Yf@)s0l2lmp=G4(TjY{lJn zl=Dv{A58>+K>~xsQRgaMf7bxGI{%)Ed2i}hqPy{2)p=A$OLKis=w6=y*L0zPUVyqw{#1^`gPL(1!bf|+ELAsei8ZuavQjvlQ9h^FK zY%5&~qKgEy3580R;F74Z1{y^vozfxX$eCQ#+@-lR@3S1=`~Au9`*B=ezV`z`5ClOG z1VIo4K@e&U$Li{;sRafH2Q3j&DrWUxHtJYj9Ls!ibnzhbore=|9HxGy0-RTWozY}> zXCrEVFYeApmKVn|<&$bX7tvo}fbYXQZE#|JqiEdD80j>M*PR}uw5kA%42AK`yk%r4 z41m(A+TMhG{YL$#V+C(OVts?IzTs@+M)uLwH>`Ub?2M7lqr_g(xXys^e2BJ#B%_`H z;|<3Ej5i!J>Iu+xkR&`GvRJOQIHOS%wOMQDo1v)9IHS>mIXVL-o;(6zY0XdQupWTW zVLeN0eqFzv=}GOgm2wh^rBVBPiNw-urJVGn_KS|!8Swb&qyr%G^;lhbo-C?1}=^lIk z3fGF&U;n&*U6g#~@*eB|JNHci$uCsDYatyyU$We6+amS5M~#E@dVco)s=9Rc^7^w^ z^dk?v2-rX4Z{fs!2@M5F4PUNW@NWLRWc@Ktb+#AWY$@5Z7p=PIZ?=`sCX(^y6|2y% zb-$VzGdV>!F}}O&zj5cSlcMgr=Z=MKT3PD0%=pgd%uT^F(^8ZUAAcV6LV9XAY|NmtUH)U>|LZ|V&w>J_=(k{O zdYoq8S>2q6YgZquPxRTfZwrI6%PwWU=MB*hBD2gx@96yhGBJJIK264UXPM^*prt@>ujSd zjp{4zoVouwE$qO)i&L*g#T-5Uch173yg7BprReU)n^Y zz*r-|V;~)yWbJ><*W^ZstayM+Bs48WMRs);JR?6T5h zeZ$daGm``ICw*C(u9T?Hx6G>CxpAuIO-|LFe=e5-V|(9>a|#XjC(m|BynpD?s=ha| z0bUKy?k-%uefB~9WCopecb2_=6K%4`{Ji;lhOZASGp0}P{xH+=hLFiS&Rs833ZI%W zoGzUE(Eq&H?XOFfR2O8~M_Za&PA(1?`}O(PvAl=9sq$+$s;YLK-p8b;8>26`g{S?Kd$8YNTl{4I@GDO)i|Rky%y)qC(8I`Y4|iTW=UpAGf8t!E*14EP zmx|Z&p5Ju-$BNC?#hkm1rx%=@P)6yo}B(NFFZNz-i=&V6*`3<0diT@E?w0qUDf)GJ~MZ; zva~4T4Gi!bo*bWfiu(p|w6n#*={Xb2moNv6!$kL;3GfJ%p;eq`Z2ZALfQ`*<2~_*; zzO!hnIM15(N?eY)$Nv0qgV8qGD|^4w!i^}GRc$5lgqdn|0^L&p+}#7j>N9A1vT zgi9cYTIdEO>NA}{9TsM%0Jylmb@O!N1v%6bT~@pgtg8DGfRc>3#)b4Dh4dlNfpOZg zlj|#hv#{2*FxuvODF8Foz-XIjP0N!xcpOHKoL1XAfWZ4C92npu$RNhP0QjN*F^mF$ c0AQGU1AcCuH&$9+umAu607*qoM6N<$f|gR+LI3~& diff --git a/Resources/Textures/Clothing/Head/hardsuit0-engineering.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/hardsuit0-engineering.rsi/inhand-left.png deleted file mode 100644 index d3c367dd2e97d76bdf35db45abc53fdf42209026..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 858 zcmV-g1Eu_lP)3^MS$Mhds~x{J!tA_x-)U-vfdm z2!bF8f*=TjAXFMvW&_O3%vg|yak{#?O!+&kNyEOBM1W9GQ=y=yHh%wC{>5Oq0HL6! zydD<-W5a$0;PtpDbP#6!i=`wL&`|H*_P9`gZ_8Ih{>5Oa0As^`rN`@VHn*;`JDXe4 z<8}Efx}AUS_W*jljz5og@;8EI0*np&)#Dd)4D|OAhz*h)iqQ1<8Ofmtf!H7e{e1<+ zscrO;PDFvV3P>lS)HeDU=YaM;(fcf;25J5 zDK2!o&=jtK-;PU(lrNGy&f024`g?c&GZh~q5^VPzPIyW-nN`d z(%X3uUcJk1qX#u*q!Mf)K%4gTXDFzx?KV%O00&j1Pz7wbZig-Y0->O$z62Hs92(@_ z%6+DP_aP`?pudlfc5l9!qF8KE0RWd@-Xfida{ECF1$>Bq0xj(^b07*qoM6N<$f=6MOo&W#< diff --git a/Resources/Textures/Clothing/Head/hardsuit0-engineering.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/hardsuit0-engineering.rsi/inhand-right.png deleted file mode 100644 index 8a9c0947b0c93150ef7b884921c58532b58f4f42..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 919 zcmV;I18Dq-P)O3 z$nvDN2trUZ1O^1s!<}NlsISVBc0i@ih(DGiyZ{o|$6)OIu_4W~3Gd0j&-CtmclzGf zckk}q??4a)K@bE%5ClOGgl5B&OeX7UU~q7-Awuj@ul|~8M>y{KD&jD z=&v%s&@~nA?F8WL>2U=R?(M`aCTvuH%@Gjv2i}@?I%U1#(9)`OEmj$D_Vlm`zKWwxrL3>4-?V(JOxM!iva<5rjd{l6F%tJqkUg2Ed+r+9lW7w7PB0da zZ9*67r>!eWKC=KUkAQq;fwrzFWARv(39V}zxcgs*`?rTU=JnIj(?>qDz~rSIcO&6V zklz?4r*r(UzY}xu3E|#OCZ}@@L_(bZ{Yq8YiUCJYo$O9*!5|Ypnst>{I4e~`K5j?Q?(KL<;-^~6l@1zWOSIBi?aY&kDl@U z_^+!fgYz~*hOQ~=(K8Ny@lhr3@*fWf1>1=pnyS)Yb0=u%n#vBOVLxyk0;&F*mBD!i z05zAqH|ei>2b2pNdcPv|_R3CWBYJBZu+c``jC>2cZvpR{rZ+$k1VIo4K@bE%5QOGq z-E%*;-yc|yrauvS`UKQJ?9r}PO%Eqx>t8Z09|MsvWAPXY_%_Vh8+2z8r)Ed#=#B}PVvnfN&g!2GR0IXL(^-Ctkhw=aP% z2)qufI~`jFv=#GPW-iXY@NFr@;myS-r5|oa;Fe-!WY{$$z}7op@8Ri}fHxFuuXMhA zAu0P=n#AsjM(KO!*j}olho*|#3fb0eg>38ALf#8_L3sl=BLsfxXZy1v<+YmuqLr7;+_YiuJQcRW{+#YO6b`GIF`C`)r6H*9taG?&poqN0;d?#VwC>tY{@pb%}Ln8K3TLP2rC(8k^#8MgpU+V$h}&B4>$ReO7l7$f34o7Zq~Q2`;idaJ zmDVHRc^>Kc3;+Re58yz>ZJy_mPN#Lc)YkJ%2I_SHlu`&GPTISW_8QP+MtA7pU8+mvxP9p1UH0+&KKhY_ zun7XycHXTlo$mlCW!Pvm7#Ggpf|3JcpiFKbPeDp{@Wx6GHU+|C&6U z0l@1btuMjXQ3(Lk223jfVA_CbB>+qtFs%fDX#=K}05EO9v=RWO4VYE}z_bC=N&uKP zU|IHs#@AGJOmV)PL<<#-Uh?Fvnc441H zag9KvUe5w4Wk?HF?}s{kV3Et^xWBck){yq|@^mE(;ruQ%uii zn5Yjj&J0z`JlI(7`6Dp#bZ`JT8fS*>unaddMAZo2=klZj#UBtc>NtMK)1^=-SdB&l zA#8-OdFT2ygb-x2IRLgZhg2!QqL(wsY93XqO!fUk0J7N}LI`YIAcV~|A!sxjT5C|p z09@A%C-W18gm_+^&8=;e3J3xf7bt9J4%wd@)y%9jJ=jA2<|nMyjoVjAYjgCpj-zdI+ZJs#1ASQoj(c=&Iq|~ldG+|7C}0Q!#bU7| z2wH2vY1`nfP#njJXGK3G-nOxAfl@)7c(GWtT-UYW3i4wHu-ZjVPr6G5Q*_C*-I ziK2oG*LAH{auOe+Ck+JI?YcmV$bJVNVLHJEKb00000NkvXXu0mjftn)02 diff --git a/Resources/Textures/Clothing/Head/hardsuit0-hazardhardsuit.rsi/icon.png b/Resources/Textures/Clothing/Head/hardsuit0-hazardhardsuit.rsi/icon.png deleted file mode 100644 index 2a1190a2e0d6f59b70f7cf0de2406ba7da704b04..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 472 zcmV;}0Vn>6P)Nkl>hv`PO^z^Phw$&;+uzdXmE?e`ql`u#rJw4JSvUIA196+i_5?5@&DYn=gf;uwHS z#{r<*?bbF9a8hq&*Gi4+69ARB>#eN+^;`;~)D~#1v->6_NkWn&g`T(Xo72@wFOZW;kquq@Bet0 zrYWxL5=Bv&Pud3|K)c<}U>xO(sWz+mzHj|QDh03!+xms10;mAC4)6_${HI|~QQ?~a O00004<)#@-?c?ibYihb z^*;@{3-Dxd(bQ@+06zZi9<}8!d-l1lt)W3w&o7#lBmAr97tQ7$!~IXoRGyUyA#TCvv&Z>Ax&%t80e__wk1h@O&q8hjq>bCz>0VkVJp27QS|>eQ z|9!9WUj}MxYXE%uq67!!WsdjHO0H8tN{M%~0zd-X0@&9*o0JmI^Ny|Kd8GpFHUL^{ zT-QCckAd9Z0lx1uz4kMgx!$uiS!eIY1*DWG^8cnU*jB4Wt5U)DeOj$n-p$QdfV6j~ zZ(pTZU+>wcZ(n5(HMI9rT(?Y;=z;RM$aNnegfP3iyUfhYkgfy(8yg#>_T!eb)E^)W zLrSG{?C<|Y9LE4h`j5H~$bBOehM@_9U|_iVzE7jkAdcgq&+8YVpI3=jI02w5g6AF1 zV=3Dw3O);k+zG~U?1W)x`pe^ZP9BU!04R3Q{p7k6oJ6bu|91l{7K_DVu~;k?i^XEG zSY9`UKern-|6tgu@z@SU^F|2a0G%U#GEo#|KG~WW0f5eil)V4WV3U9O`-O8&h?n0- z(U~lj7JdqR;CYU75d60*D=4J^NVLW+mzkZNjc*=BV{*_$N-NY|CHYT=8XUV_q}p2cq!Zc`36(KROjG|=co>EbK$d|2P2rcp^uItDh9*nS!LVg;BBlV0FX3Wh1Q-`@y#W6J^V4nstA7C_ P00000NkvXXu0mjf^*^}C diff --git a/Resources/Textures/Clothing/Head/hardsuit0-hazardhardsuit.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/hardsuit0-hazardhardsuit.rsi/inhand-right.png deleted file mode 100644 index 10f69f8f5e936bb3703b1f6cca0be479e81b2865..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 899 zcmV-}1AP36P)a49sv`np2&5PsNbb)_mnLj;xh;bm z!B(!^`NziF*wsQHJ4JE?hK!29o&$!EV^TPhrCT}9u6Hk5dp@9Io<`F5J_4k(;6Q{Opzp|0& z+5{TyHUOXgRfT`ro3Hgt$V~yI6t#69fEd^SI5nwFDMhVTo01EY;id0GzYl;h1|h_` zy?~)_KoA7Xw|``b$EmH$HYZQ+qm-J4=7|yn0pDbt?e%)}e4ii)==FL-{c{0G-tPR< zM|7LpseS(GBTmqzfBOkSc*L>EwJ#!<2S_RHU@%}|VS!{N0NB~tA+f){oRldKNc01Q zVMw+54yUJo5=9X}q5h#nC=5fpva*sJE2!#qXlNNJQve_zge*nQ!v&dO7>2f1 zJD*2N^$VSc@&#a23NyhdiYj3k+HCtuPbo2l0f6i6be6fxyIgNv0RC?Q4u`|xa5x+e zhr{7;I2>=9OaJ@L`u>5-xbUawf8nA+=`8If82gu)l+y0sy-oj@pL56l-P@(DAQv&# z2uPg&`lBWEoqHG)<9Q-Izt0OEN@-_dB#bozwyN;uoqK4lF(&4-&H*plZH$S5vvXV3 z^6n+bGV%zJQd%KAFfl)Td%)r%e80NNai;@EHr-3GF>$HWVXP^Tl%8wrKJN-IT}x`~ zJ`ehDvBYD#Z1efvvr5@lfsv;`tJSIu1_Olf5W?ew_uoSZ!SeD70Ehl7x@=!^m+~-j z0Kzb|4_6;xu_)DN|KJc~V&d4O8xaouSDZY#KXI|sV5~$aTRBch%ITgba(fGuQl(xA z#`*>nRgSYk34$OU6=i2)wZSNgDp3?wlU)wz3-$;Tm3(muos>8Fix#Gr`$8UT9 Z{s#VPYsE{*TVenJ002ovPDHLkV1iTLvV8ym diff --git a/Resources/Textures/Clothing/Head/hardsuit0-hazardhardsuit.rsi/meta.json b/Resources/Textures/Clothing/Head/hardsuit0-hazardhardsuit.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/hardsuit0-hazardhardsuit.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/hardsuit0-medical.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/hardsuit0-medical.rsi/equipped-HELMET.png deleted file mode 100644 index 250192f72b74b580469a4eadf457e8f7c89b472f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 866 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEVAk|>aSW-L^LCbDhH#+7@&D^z ztr6&&`avO?js58+3lY@`Tbg%ih_LVUoZF>fl`@G(X+_G*D^{|6xf}G39$X^8&8NpE z+p2fyvB5%7E4C%IeABCUdTa0fKIwG(x4#N9-zVMq{{LU)`@600lcS@fEl&CbaxZwc z<>d5Nk?u)qMi&^x{+LNmUiSF0bsr1E|1`;)y=n{z3vb}T6Q#XNW6$0;kV z`&`mB>e3Us^cL$jp8F^-X=>Bra0-~Vkj`EZGRi_Q7T zbBf>GsakwPa4$GUK(OZ* z^PykSWlK3@IF5^P>HJ&FbJ*qi zj@9}uwq@v;zGSiSqPT*TsNV-?1#{HJYA%#gbvu&5)^hUx&QjS`nM@qtnx`bj9+{jk z!_dq8<8`q?WPKD{N>OFZEZvo#ua>_re0*!_g3QE8PXjeWA2B>wf4WCcf5yB|*|S30 z5398boU<%DXCJoclGgO?QM!`7!r$0hW_;n0$Zc|G{j{fjQt`a3^#^Xg6;EgQBj&W= z#jZ7BYd5Smj%VD;F!}!{#clQtQ4FTn7_u0zL@=*l4M^r)Am-3(ieK;#eeBU#aligo2TF@gTepcF>6;3_0~cO^b0cd)u6vn z7t2`2CQq({ThIk9*7Lnb&ktcymL;at)uibjzyo-IzW{J;`@&(qP?!yDN?=tTg^iz8 z2M+Uv(m{RUM$IJv`T_@mTm#sg%%;|Q1`Pe;5%@Qa&8?$<~RRGmyi7bg( zT{sJnC9!&WedBmFT0cLrYbU=4*Z}trk8IP^*EhTN>=15udjYh*X8}O7bce7zBMh-R zu-)wi5h0N2a8Ug$kSX3jK5KAC09pn_j{=#3h;Vaz$M$3cL{Ze7D3Gbyg#rdxyVe9E*vQ&EDx|cV|tOybr==-_DzT@9mq}*_it z&gl9-Xj_&9W4ipr5z+cdFcyGTvmp;YepV-)(8UhGPq(8h@yE`)@9O}@$KZWZnmU2; zPLQ8&Lo98mlO$<-blyMrQT>8~W-u0jC(mCppdp9D;aFIL4#I@|FAQI7fOC$opTa2w zT)S}-KfZq(-Nzip2SSeHNX|KqA3W2t;@ejcLcq4|$on~tBLRSOu4O_90Ju7^GWF!b=>$FK0{#$?oFlz${f*=Tj zAP9mW2!bH~H*-I4mv;X_)THUc&j@8UE1U)WowdSX_v8!!m=CxQYXFdHwJ28^FxWjg zW4>}80Lrh`s!N&$(_93gzq3}@vsUCE$Agsb9|A}ogj@u`di>#6R(0nh0DIPodb-m5 zE}7hPg3Jf>?hybuR7v6PuRo64#amJ$VmXM4mPg<_$h=y)wWry x*S0f*=TjAP9mW zmJMe#8kKrLyWO6PkfM~;zcL>g_VUDJ^c$|ks%8j)-uTRUBu%C9T~`9Y_+=N3lK}vr zcV^a~$pF6*-i%;s2vYWn1fqE=2omjl%)(EVT80+fzpXl*oXD^8j!j9{!pgbp#QG0+4ZD z$Fd;M7*O^B`qs0a5&oJhZ5R(qWkBTo>sOml#T7s}9#}%50Mwc-Jl}Ys&cA&9hOPE` zSe#J#|2#>dF5r2d!#S6=W-GA|e+dBJCD3)O$%4XNz_brvzxWh34kYSF`}0xwz?2#U zO+^QszmtqHYqr-*&jM*|sU(S5`gH&WV9^2=%?F@5c=)3rf8wOT;ls-$=`$Dx|YR@-;{ zMrYVU%^W2b885u$FnQ$^w&0$LCbw?2`@Wa^vaECKmwDdn*>8QWJ!Px@r|$meo$BB3 zeE6N2oSeMpL{V4G&fS}1^IyNX)b`u?*E!4j&kf(+x$pUi># z0j_r^GKV=wTq~&e&_A>PHm{*}B7^hV?VnBty}TNG{Oy&=pCZocvmDqhr1F51(cqnA z>Yqy*kLLw4FwL9rR-i2^|E1f%xn0wFqq;P|@Gx|&_xt$krJL4w-k`}=Xa4MSomSI( zqCnd(hM2jTkN%d|?)mnK<41#YgS15B?Q_O|?2Hdq z9&7QP5xOTwAnZV8#_Osd>#dI%>1CbXtnz5$+t>@LBEcLEpVj3zP4Fpv^zeF!pUjeF zuM9qyi$zxLIP>;xSLk{?Id*nYp^n$BaTX^jW|S?yW+o+0|_D;GVdly`Fc`~J*6b~N*L*@66h3m!WzsQi5Oyg!4K zdv}eGk!0KFgYjE#tj}JS%w@}>|D$A&wj)E;wbw5r*Q-zLe(>d6(W@BlwJQbRsi)^= zPx`THQOf48?=+U5+xo!fmu_dwlzCsP_C@A1$Slad6B}2XHOFb@J;tq1BbADQS|@eX zv!zCd-dtU8R=6{>_e0r!hsAl1`F=cDGX?T=gvPAd=S|A zr^#R4sQmnw&Xkw73pTjre_@mO%T%T-mtb|_kwKM^gSwS4v&JsPMMA6iq@UO8JU*q) zw!-=w+f-3@#t1L{;LqPOqZQ8h|6iE@^kRh9^3NZ7kBWccvG{YAd08Es)AELmYyVgu z>y2yN)~C1jh_X;%MBmC6J!X<~?;3pi`=j=L@`kf|av}8%zw{R{oG?>}=4!}c-n5iB eroK(Xf5w9xi;DG4{v`v;6b4UMKbLh*2~7Ye11EO? diff --git a/Resources/Textures/Clothing/Head/hardsuit0-mining.rsi/icon.png b/Resources/Textures/Clothing/Head/hardsuit0-mining.rsi/icon.png deleted file mode 100644 index 0283ac039242cc1bcf0af3654dc84bd104d03aa6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 525 zcmV+o0`mQdP)D3%9Y{E3z9l5_C2R#A1IiEbr~xdEfkY7)HwH^K?>O9qn!d z*Z?-bdjRMbDT>FU+Rv?R$%vI?SZh=l+}M{IBBAuI!!rQTk&@;P8}52Pa{4XCZ&JlsQaU5%)O9Y{w?n#bkm3Mf}ppnmn$9C%!Q z(vhO}W!ES4D})^IK7PgH^5d0ffT{!Kidr`e2fXr(4k6}*kOP+khpaflWE?&Kj(SdD z9T?FI?tmQhF-^wdW0?}apNb+=zYP$NMYYUn0p{ljEvx}B>^y`5Onm$Rz@L9N;Dr0x z>ifm-65pow+5_-Xzj}YbtR5H+xbz-I P00000NkvXXu0mjf8Vu>P diff --git a/Resources/Textures/Clothing/Head/hardsuit0-mining.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/hardsuit0-mining.rsi/inhand-left.png deleted file mode 100644 index cc4a5c6129ee863a1da42241432c35450322c6e6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 910 zcmV;919AL`P)05jin@qqJ6t#wry{=tI_r=2`UQV0<={QMuPQ!4X!x8Uinc2Iw6U;ysU<5j0RA0vH zfwz>?y{f%8wH2m7pB4UYe=~+>(m+94fFZAIVHebi3|XuIjtgfQ@%bs9yG7>Pbn2jQ{@fz}RV5frA{Q-^gjIrCK?<Sz8;vFeIQimnDAH^2 zbAsZ=8$5G%0!#e_=glgv;cqb?>zWXt-+EQ&ocJEX1I0Ap9`FE5eFO2J2?6#zs0kg) zNQV@K@wxC%j$V90S^(EDuz{SW2>}3IpL;;*b-$m7@YDN~hfV)%cZ;JX<{XgprLZQB k!9*ej*z5o{o1_=u58NIxK3`nyT>t<807*qoM6N<$f)5I&OaK4? diff --git a/Resources/Textures/Clothing/Head/hardsuit0-mining.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/hardsuit0-mining.rsi/inhand-right.png deleted file mode 100644 index ab35af4c15568a9dc4ebecf212599f7004e4c2c5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 848 zcmV-W1F!svP)~lrL*JU1gZfmFb=Ec zCO*zjbDzm$3qD_@3O{UsxjI=M{jx?VZlSR>KIbQ0whugc!E&eLfzFdh-CNIoB?G=N2^WMy0!_*R&FeQD?Ji>g#M)Rw6MnKY^fg5$f}KW%VR_gTa^=p+28iZmdkC z%b~bMH-6olV4u&MKJoPigE0j-3|U_Rh5Z(Nn$W!o77IdvlMdjdDS80}0)apv5C{YU zfj}S-6dwov_$+k)z(MH#71l$YW7kVN7m}CY&;q3S{!-5L4p=Xi0!d*CMTDFLPz(rP z15dKrZZyA7n-U5^gq#Ej#Vv&5&|2oeUV0r!rlrGML4r%0{Cf2bcXZb9i-#Nqc;u9m zZ@&!Q{Jsf*eanN{-jD0vGwNgGEJvd9dD|7ki*RTG8Y>e7m%wcACoDaOie&b6;ByC0 zJ9Y@9d2>LpdL&P3fHbN+ia+w=Y2LD=3g1kXK?vor_mI1d6Yq5Ec(P2+-0w zYzi)IqU7H*4GGO9ewwHKEYE&2w4qAjNN<9Qr$C)rKXo_3{U}6FLD45ig#afVz)4f| a0{jCYfG56`kbKMl0000nQQCc%?c)aXOlM8+B!1IU zekI#wDO)`>MOad&PVj#DEFj|>Kks7;U!%*;b9Ss&`0G2X_QAR5CT9%Z*Vf;!+&{DN zd(G92-z{c-Rr|PLo4VSab8|MYu6iB+d~(!@shp>x z7v#Noa#+ylweP*^&$>YB(?gC@=WyPqT(d)lKw3JlkLiP zDt|Q8SU6p*+4cI@h5|49m8~~2N*RH8X2sX7vDZTb)-gQKyl*T0;I#g|hwpAW?AL1Z z4b7j(@17AMHnpt%y?%|~(z_40=S{D%c(jUZ3eO5@tEpw|4N)79N*`;#(zSQV)Uxy! zw-r{lp2*D?{QNsJLhOER@#MBtAp2x){=_RzrwpfRAE@Lib$%YT@kafxyzdL7S5kKa?o8Q@ZOyno*s=B#-v*NCBW2XOSb_Vxn={)7qSi1RJQEu;% zmz-WN*Vx+Go?K}htaJTZ+dbKPGyh+isd;R-GMvz|;}PFPpG3Gr+vW zPwPm?CT+PZ4fjIYjMX1(Ip%-IU}x!5!S7-7RPNSxzwD?Z{B`iBKD|xI^VbBDQ$mM3*t&PHwtRK_1n+I)VN@^-q!{uXDR6pN#$ZC+6bvu#BfMB zwoxp$*~UWFMlB?JdpRnFD_vfT~j_iXMowlm@UcWslu+Y=AgRS@>sv zD^x^0FgN!RfF$`vDKx3u7OjEO8iUrx#92xs?c!J_rO;&2T4T{#qZFDrmPsS+YVUw{ z5N&O2j^=y#vjf1FmDSPxw*y}*jI@JjD6lhA;dHOb>0XnanMy8k$Qi}(?8I={;w;T2 p{$BtuRd4q@E&vLE0^r>M`~|7~vnI`K5n%uT002ovPDHLkV1jYs;phMW diff --git a/Resources/Textures/Clothing/Head/hardsuit0-sectg.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/hardsuit0-sectg.rsi/inhand-left.png deleted file mode 100644 index 2713413e9ee8c0995aab5d5001979f2242a39669..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 846 zcmV-U1F`&xP)SQ3PKM`(KhrVc&LI^dnhd;Ap~z8TPsq7c$1;`Nu$1i2GDw=lTRaW0q7YX z+OgUu{C6~f=Ihs(9UTLpJ@m9Dqw4@>vYN+Sbms#R1&G;A6G};|I3c`f{ zjy5T0{=4sWI5!Q#o=btGA`^7E@h_ygaQp=Rg)~8zo1`M|Xneu>P(wY_^K*n6>Nngs z8bbq6kbWe)O3>wIdVY?e%S|M^y5ad&6r}HUI9bfB0kD`^qvPPA4bP3la0L`rd#20A z<45P1>9XmnD8{6mA?R|GQdMHPJn!#6AePJXV{MI~%WaAZ3=Ke1k%{H<03;$AjwzQ& zMAnUtqk$E18=&N7K z>P^ZSdTn)t6LETNb*AM%m{bV$clT&Pmz#^ZNP3*^#KqF1OkCTAP@)y0)aqK zeeC&-%S!tXitQR#{f>}n+u~;M_u*>K@K8;YxRzG1LS<2FAcaTz52AWRek;-$$5(+qcxt60x4*=kO@uyoP=yG$!S<92OLQ;`w zFJo>?DB$bZFFro|$@$k={rDZ$dkzYnB#m}QS#w*a4k&!+dTn*Ya(P_^Hk*ChgV4QFVEzk4 zIx4d~NDu^p!5D$)4uOB^;pu7W_H-D}aBfc7p6Rppd!5GqJba(e@AvHa^89`v2!bF8 zf*=TjAP7RCF)c1GW_5tt+FD%-$yB!WoAoIpe-)*A)7Rdi0@O4$@M&@y0O!!4=?v@2 z%7Uv?1*mR(%-5+I0PcC-rmR0{2Kd@L)Sx2M<*?xFdqJ1OLQs+8p%~qQt5fyM5`J0Y z&FCoFYb}(ck^%@SGH#n4*ZL-Ru3W{nzKPprC#cA|uU-d!SpvXQ?qF$c6;HV%;r*i$ z0?1)$|~l@$LVrd_&NQ7*@-DuZdb>@qidx(lF=nlW;XMzvWieN zN`=MBD2+MwMUptQ-&loOc1| ct>6Rr2l5a<#wzDgZ2$lO07*qoM6N<$g5{T&_W%F@ diff --git a/Resources/Textures/Clothing/Head/hardsuit0-sectg.rsi/meta.json b/Resources/Textures/Clothing/Head/hardsuit0-sectg.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/hardsuit0-sectg.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/hardsuit0-syndie.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/hardsuit0-syndie.rsi/equipped-HELMET.png deleted file mode 100644 index 2f587c57972e951a4ed034de437cf0e499239f4a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1069 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEVE*Fi;uumf=k2WX-m}YPj>k(j zol4%87Lml$KS};V$qnQraC0C&;xNLuXSGSv~Nx%7fE;Z*oaJ?a5 zbK;g~3)}pPPX=6@`%99N%rea;wTEz|w143|w#?*y`Vsyu=eeIuR6qIr@4tP2pH#~I zsk50qd-k5Qdlr9scJ%i4tZ(l(Up6-Vz5MFyxeJ7Uc`?or>vvab`NMofST{$fYph zoRN4xlZn{<`^y;(#QTLj(&ttL9Fq9L^x*B)7w<2B_?87!_cG{j!_3o@XZ`A#>}qfR zvqN{A$Jutn@VcTDhgJtGZ><#@t1>25Z{PPI=xEZDmv$>(#jlZzI%NuUg6)~Uow0m?`Q%wJXzOQ5VP$>tZZU#`t3s9{#V5Zii{#}%kl|+ z;x}2x{JT}zZQi@jKbzU*j{Avx*}dN1B(~-EZxcVcf3G~^cQWTp+$?_ZbHtvtlWRY< z{5>SNyx;HZROZ@9pU1?(O+kpY8v9k9kj#^{+kuZ2wvP zy&MgrCEtUiYNv@xGP`r2I z3K;=89+SP>Qc@&-{}BFH@vr>$*D3p$p7xdoIr17$PhWcDsMkhro#J+ zUOi3^SG=9&b^Gz!yu#BbQ`SzAc>Ckg`ClAA**{3loX(~kl7IMJ4bc&Z6xW}xv44FVdQ&MBb@09XMCfdBvi diff --git a/Resources/Textures/Clothing/Head/hardsuit0-syndie.rsi/icon.png b/Resources/Textures/Clothing/Head/hardsuit0-syndie.rsi/icon.png deleted file mode 100644 index 6a4a0e32a49c98d2c959807403be0349b5416111..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 485 zcmVNHP-wxS zT{;LwvM9J!DNb>SH?%a>L?d;`3m5LWIl1S_8}5hHXf&9m=4M(w28aP-fd2rH2$FPm zeCQk;ok}9El**1@-ucy~H0_;f3hh9pRCba}3c8viYZzn=16@s#TvDcjeWgGS_-QbF z^X-RKCKmaSvHkxUX z8`|F3GzW4+8_l#>X||&S5ECzFc1b_>0e=V5kA0RiyJMh{0kmWda4lZ#b|xHH?RF5q zNaO}l;8kEh^r!(+Z=W?_{@|JWn=SyG+Z(*!?f_7;uCX6_(F16vQ~;b$2a5Ijx4U2{00ANTqYeNltvjzDv^a#^h>G>P z)LGY&3wskgp=LGR61G-4SdkE(f(|Nl@G8_rBDxfK3OWSpLFgoc z(Z@lu7KOskgL_$O(`;}fTL{@57Grff=xi$(>$tPowC@iF-hGGX+2{T5vojCR`+`6q z5C{YUfj}S-2n2#+L(11dC={|FjKdQM1oE;!W=$A7JiK>DH^zNkJ-Tu2cfSz!hrv<- z4EnlybWc?^Ee#ELs;bFe#NV(tgXIE@1cN$2BBc>eY9vzHp7~t7z16#~y)kb!mI_ca zHAi=Q2maL+Tn-teBs`-u}ko zbeN`AADi#mnDCC~w5^$%9r?PD?`*=P-L(JzVp45o>{5+qZu{z8Qme&Cz!JuAxv5k20ce*N0naww^ zxj8wR^ZQ1ELEUlV8tWg|QJgaIq(Wds?Q8!})d2uECnu%P=?xU8oVh-yHx9IT z!+u$fkw|H*d|xM#(pXkw2evm$!79P*qUHA82L%Zp^3MRv-vS1OT(p%Gq!P3fLV%+V z;HW8j0R#epKp+qZ1OkCTAP^KE|9s;z-}48#y2b_T3R}&K$G4==!q)bF_XdUsCD>`j zo9#y1rX?0y*xFXgT(mSapp?1rR8?bq&gcAqEi%A3Fkx)5)$Y!_fK8y~VjF#3J^G1y z#k6l*2ms)keb46ZID4b@(rGV4ug38MU;k$T>eBt_yJrl}RFr3Sj3k+&Ses#~-ecOYEd&@C9+Zrye9hF{p5rzuWELJcTVndPZVLfEExeH~cU&lWIsSI* zd%cH&;X!G1_>r`%#sCN?KLEJW`^0oTQ1qp+Z7RV+Ap|(;0FIiX7vLB1o-{7L9t1f6 O00000G2DShiP(4mDAQkRucW)uuzN1yUEwR#o4m|0CsU!SASIo_yvKvEM#D{aF5$%A@k~;*YFDhb0MdY%_&IS-XNP( za3QC3_3N$#OBW5x-+t&iZ}yd7)mK2{e@?d(HCKY21O=eg0$NSS2Y?_5f*=TjAP9mW zh|c5L!l&8i2cAQ>Dy+xa>WZpWjP=^i>zf;ZsERYYz`cUq7rpJhWpo z%@e#h1Ar&z^ZR?S6>U6#JOIb1Dex?ZP#~z9ArtBffG3$izBn_md;Zilmg5rg`+ML4 zV93!ViN^Bc0BA!Lz{4zo);9Nf$ADr7nUNL{bN*_cN&~4Y140=)&h0C0(#Dc0znlfavrEN0D73oagB~|j#2yar^CM zO=~aMXY5!buq#lYf6JsPS0+%%k`Ax*>iigavqOSss5o| z({Jid35>cTc1P&X=B;9S7F~TA+Y8qIFgn?sd0y^PwRm^Wyu~jQKi4TtxbtM*`|ow{ zcdGCF`L}20Ov!oat4gFV^ae4o9v1_m*Yoqm&IiR?H8dr6I~Z^rIN5J6!qAv7;Vjp} zn0gbj+N|28k^#Zt|JSeA?p;0I2i@{LuT?rsgTn@>SQrt-I%({Y8qse2#K; zsh?XkXZYi%v2(9nxmtZWKJ@m4zlvXu_hw#9Fk`%M_p*1{FB=B_Pu_bZUQP6hZv}<| z`%l%fw|AfC?ygjIZoYYB+kw2y+LsJ5!Y`jXzF=IYxasknNjtRsf1L`x8qSrlxAUyc zkMy%`*Bie6na;mU=6{^ScE-Cu7+;tzkhW*I%U1H3eZlR9ygv+}Fqd!0W8U?V`9iLP zc^$(p-WSLCkrm&R)vJ>=y)&!kXY$AH>t=7`AH81b9P0mRfzh-QhTn%ahHlrA=3v|F ze%U&H-71NI#P7G&!%uBp7@`@*>8J&aKJL?AlRS=Oqs~SSr$1j+~IOV&_4wfdz_3j7cwiz=$@-hu(?`bYyzw^sp z$4B3{pXOQa^5_!Ix(JuBfv hfSO{?7Rw*F@6>#7)#kz@RlxFt!PC{xWt~$(695&@BqIO- diff --git a/Resources/Textures/Clothing/Head/hardsuit0-white.rsi/icon.png b/Resources/Textures/Clothing/Head/hardsuit0-white.rsi/icon.png deleted file mode 100644 index 2d919621038e92f54065e8f99e06fca1832d46d7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 485 zcmVb<21=@{@h{Y4c;t2puLl>r@3ji7Kh8a14RAeTq6dNgk%>E~%$V}9C z6~?{^l>kgb7x_XFr(Q$Tl6~LPv?NZwM!rx)?v0@VOhXsf_5;`U!xy9P%%wKgvnt-e z0KehQ<+-o;$N)|ccE}fsr1V=@1!f_Y-2|Wn@B&=Hy|u*3a%OY@xnnD28oH=HJ^>wr zqs$?Z_o!F)*Vihorpvaqt86S4QoWLyhA#H^wkWxstYsAdFMEJ&^o)F=NbcBDnuy8( z&-R4?n2ybPv1ED?fU14x#on9-0Q2cJB>?3)AQz0q6Q1!&IKxReGT6vsbnc2EONbXgJ>2_X<%H8t#%5JrIr<;5hsn9R)$Z>@U?T)PSDZK0cxr<9fs zq8JLrnkH(&fFK2yF-%66WDjml2ij%HJP%{u_g@rk`)1>x@tsq)!6(0Z`r4VlkB_p?1j_{Qdllp5@(LYoE%-(X2-kK}7M>tn+lgAIh%%Ewjz-|U;+A32MGjz1IST2I)UEuxNC*FnX>4_~f5Zk0Dw#>UwJ@3~(rR<}- zy^HvJ!0C3=-QESjlc&$=4~9$+-O1!y<)}Xxa`?T9arN32HZMMAD0jzuZZ%cP8?KfN zGdsU@q@VaX=P%TgUs#k#|5R)Xh-HQC-F5szB3L6T8I@!0cYREixdg ztH!e%ckyi$F!aL1tDQQ8+dDM}jSV%4Vv2OJMFs#oihW0mt#U8ag#mo{xK3nlk;aA^ zBJ)cbkLR`#z<2r#Xh-HnfSFu2B>4br(0o* z((Or4adELj9qWaiseC3+K8}0~nDYJ~AOakB0LRTQatSE&?d&hZ00000NkvXXu0mjf D=53qA diff --git a/Resources/Textures/Clothing/Head/hardsuit0-white.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/hardsuit0-white.rsi/inhand-right.png deleted file mode 100644 index 56388c5bdbcd0f9fe2b9811e9e1cb3ad1b7d0b2a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 914 zcmV;D18w|?P)&?Ev-JVPAX%BJZOe!A$#DzuqWo}Z2Dxw+r!DZ zG04NFXGh37d?b0Ww!b~li)oWud%Y$(`hCH{-6eN? ze&77=a(BN2A%qY@2qAg?`@k$X&^A9KDYv!-m0~(uKUb$TF?7YcjV%c&f%L*`@ zh%3V|(e?IaU()q<48tr|v|icy?EHpdQo39z|F+VNZ)YAc7!5Nt+Jv<)M!*`!+81MJ zw28rJxC%|!xSQj*$mM2$mpveto8jj8Ee50EvLcin0*_~(FrDh++(L#g7M^i#A;Wa4 zi^sE1s*&FnXO5r3J`ebVLCzdM1;7tKj&Z?EX{F!w*)tc+ls24*t0PAb@$B6zT=Kp6 z)VG(;_&tuajWBulLDd@Jl$~*RM;DFFEyeD?TK2LFp}!yAP_23ZfS&#VCU0B^;Aw7- zouPhhs;9X*I=Xv{>mJ=n)2at})4!)Izi;J=ouPiMkk2Y>K87_9%*Tkd zjZ|!WJ$lhdm7kq0u3N3~P@w?!P9lsbrhqn9-MC(@CvU|9tam3~Cieoh4p3`bz5qf9 zA%qY@2qA>nde(gI=k@mo*0SZF2stjmFW<#Ad+fb*n)$lVQ%{o}7oazsSh7c7{lQ>y z3LN`p$+dJ<;HUtFd{!BTNivyWS7!)#J_g^|+`_KT5QThJ{g(Q`6NlHT10%1)FibQ+ z0h$Kij$TFA+xa7t;l23Jp6CgVekH>&>Dm7dgV8VwI1vqV`@!#g_3K`S=9{oS{Ma+E z)Hv<|>5}2*KmVFTp?H|;;_~6E=!@-4x{+=TSzfVqnL`QcoFNdPPhx<#<-z#u0*hL~?7P$}8KYhBr`>f?& o(oG`w0<{iMYf^w(2dK6G0Z&Fe%`H;s1poj507*qoM6N<$f+t|Q+5i9m diff --git a/Resources/Textures/Clothing/Head/hardsuit0-white.rsi/meta.json b/Resources/Textures/Clothing/Head/hardsuit0-white.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/hardsuit0-white.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/hardsuit0-wiz.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/hardsuit0-wiz.rsi/equipped-HELMET.png deleted file mode 100644 index 90346571acc0b1c6cc335e103cf88f6ce3615c8d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1079 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEVE*Un;uumf=k2WcjNovYHeYFf*ifgW$G9R&1g&bN!p2E#|8#`7mtq!=>l)2~dv_Fv>bC>MRT(@QKJ=-gBL5?3}CjW6b&(3s`*K+^+pHH65 zb3V7Rx2NYp^0H~)o2MVTex~<%`J(MPPdkJE{xaQjwEX>z_QUg(Z|qIJzs%t3f;nGj zvVPgZGlL=EiYbfC{Y5LXXRiyNb?Mj3o$2pm=X*N%pKhppn+@}uXfSFsy+U-&#Dh(WC<+ypLh7h6@hncLLaWru&DhcBXrX7+Oi!I zzPyhPT=)H;86SCllJ{c?-;Y<*|8dHEm2+2;Z2mtzx!_jpjsKqwRVEn%#h!B=IQ%6= zN_^XSoJMBzUDfs`&!|EoyGcp6vN>W&Yz> z&N#dJyT2aQzkR>c0v#zM$;vxhry?bv8_hZi!j1usm(U>DO)t#9e^a2H*cx+359n%kB$T zw%4gCKHyH8emysLrv4MLnYSO$V)e3?58bVBx^%{?7<>JI%r8@w{=NCbxGAQ6MHPSI zeSZ&ywA7^5N|rr0D?N)I?5`1<^kl^?4vn>vp}Wm`S;A(VXJ>E#+H?PisK^&3F>d`e z-_t+e?DA^{WsS{0*LQN19Y!MT! eHD8$iu`?8|*#4JkZzQllVDNPHb6Mw<&;$Tj3I1UK diff --git a/Resources/Textures/Clothing/Head/hardsuit0-wiz.rsi/icon.png b/Resources/Textures/Clothing/Head/hardsuit0-wiz.rsi/icon.png deleted file mode 100644 index 762300d0ddd3d043a64e5edfc76a05588a3aa043..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 594 zcmV-Y0A$pE|+SOt0W~#nx&B9Q5T^@p*JWEH`T$V(4~mk3UQHafeK0niHk&BByq@Q z9R%G%Axr*(E*UaO4Yjl}-1X9=O*n_pppfCdP^d%R>AUZ~dw<04Jx%bk1x}tYcw_ zi5vjvoY`a7q9IfRxny}{{iOqu;Lwe6XRZ_=mn^%nM11rdZ7s3t-(=OlNwl>z+K(mT zLJ*z+F2xPqWZAclx$itf(x=F2G5lJZqV7IIhM5(d!&%2cVidwyb-LeRUHP1Oc*FdvzKq#zX=q8_! z-T)xWGODT))B=_99L=icoH)an(?cP{|=nt9Fatj5D^8h|g) zKkz8L0SP=qcy2_wWZB(#{EXe7c@BR!Q57G7K#)P-#d6xHijNt8fTs&D+5P^B?B15A zh9uMpbIG#Xx&MQ~pogp|Sf}<#crfSz3ZeRfXK@g0MA^M9$#UAjQ2b8xE;IfB-JSy| zI9*#vTo?eLP|QnCcX;!^!|B=-ih1E-G|@ON6!X$~|AJpfhgeRV^Zvy|;xNH9yz032 gACf7+6krPQ2bKu9^w(#+J^%m!07*qoM6N<$g062FdH?_b diff --git a/Resources/Textures/Clothing/Head/hardsuit0-wiz.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/hardsuit0-wiz.rsi/inhand-left.png deleted file mode 100644 index d66163f98ecdd4095b7ebed980feec20982f1c05..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 851 zcmV-Z1FZasP)6q;+0vL8v>LXYlcp3RQ1^bfu7xq$6T>x+8fB*n-j)l{76LF5+H!j6KwERV~y;M{cz*{*W)YrO^ zyI2aBy&WxGqj1^Vk-J!m`das)N&IeaoXrz|$=b_7^>4sLU=R&;O_-P;#w(W(#Tfz` z>YCv54<>DY;aUlbY*)lF|JoEL0?FA+MfF#p%uxlOe+b1d%3(HIaQ<02eEuPnIjWNO zu`m}xbM^{6*PUq2Uctg#NbN91RG$Hp!C^$LGnjw$4h&<$oBJIwWtxFta`w?+7}hKs zZjVm`Il|!2d;{kQi=rH6F9*#k z!FzWei+}vfzAj16@m3B9OXog{_oo&v9+*Nmt+P+Cv%>=dgGgjuwr^d`faSbTXz3co4ZBB7-sc~} zhrlQT8&fDOE<|TdpR8G+3jqM&s_Q)_KM#w^Cr*nO=0dO?w;}VVQI=ob2w*l^P|~y8 zYv3%Z#%YILJWBr_U6t)uHv({5alC!_6jAF8`hy+&L{Nfm1TY&dU>Fm=#v))ClWHR9 zLV(`>Zo^V6BHpjA|G+vIN6+j7IE$(QKz8qdt}4OAdM~B$`L8NLEjmVZ@d{`O36Sal dQcc2T&9_`5*N6n>`fs|Qcw}Z=#8>SBwQduMp5=c*Bf65fk9!t)i=_M z{spHd(w6wfNTIn7G&Yx{E%elhHr5No`SJW7fFKBh zAP9mW2!bGpbVD;SF%i=Zs;jHxB19>%>d%xr(P{1q1dm@0J=4VWFG=9A`ZMHyT$Epo z%OzJ(lwTZnGd1ux`XdbJs~HXez?M&hk-dd2pBUDj>V)cdtt=dn&CiGgBb;1 z%3;!VqoaQuCS5lQzLcY>!JP6YgzC?lEtEcg(jV~-uscW4+}H;D{3u?VY%pX5(A?Mt zn`7kPL=hu)=LjxdD?=%NRcdprPs8qvu0LW3ROoAAb68<`QHAWRBRK!G3O0uo75du5 zsg5&?b1t;!t-^BMi1xfyEY7)PuZ?&Dri4*=xDS|r^cD=m;?4aYu$kF_kWkHW!y~xC zX?fh9oB<|h0083e_Gm<%1w@|+hGD@UJ&tVl7*cxR?}O9w5WVXVz3TuV9dlYf>h)m; zSjJj49>I<6olW@te(dhb4A!T2!++)*e0sNJN;Lhl znc%%UkEM=(IoK~7cq(RseKo^@<#QjU@23_o$#!1ar@~R+0qF!8kZb|TChZL%2!bF8 zf*=TjAP6G;IB=O;?Te-dA-g}|Fvyji)wG{L@se1lxhoK?zn|c9QIubdU`<|4`w0{q zaB|6jO11?zay!v-_K8%7cdabo?uF;*tshi{35pEptse}O7)s#WoW^_SIBX89WWr6I z1s(n4SSkDzZ>@ZGZpPRqk1xN%yq zgR!&@His2u1AF@l)Iv%QpvZt= zso7Xshk@A#*zj#(ZR3Y@e%ZUEnp_~RnP71K4-Njm&II?PmR=7f?Te#iK(YlSo3uCJ Y7pGS_S9a>xB>(^b07*qoM6N<$g3$PsNdN!< diff --git a/Resources/Textures/Clothing/Head/hardsuit0-wiz.rsi/meta.json b/Resources/Textures/Clothing/Head/hardsuit0-wiz.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/hardsuit0-wiz.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/headslime.rsi/meta.json b/Resources/Textures/Clothing/Head/headslime.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/headslime.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/helmet.rsi/meta.json b/Resources/Textures/Clothing/Head/helmet.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/helmet.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/helmetold.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/helmetold.rsi/equipped-HELMET.png deleted file mode 100644 index f05663ad0d2bc1a8eb0874c22f55759aa1cfde82..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 741 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEU|Qqp;uumf=k2Vst8O{S9QB`- zl#;QK@p_}v$922E=^y%3fXH z9-_~9|9kND(!|?l63GHi3Z6m*=dw8$=F~3rKJfkT6vH-)zKJTHdUD4NC6e9yeP*Ui zX5X-!pJCnWte4vHOimmgn*7J4d)r>E+tTq^qVF+-gWb=Z81|AJh6|bnm|lOi`p==b<@?eSwmsFqxtd?9 zXWK|EV-R3*+$Y<%&~$fo{7c&eyZO;~^UTj~+x#&(`T3$hA{9F%mt6n8nR#LGN);cghA%`!P(;bKm2`e_TP7_azIAukN5~N z{Z|VwbYJ-T_e|9e$&g!IKZR3e8iIZ?o_=bSyZ!dod7P=4vzl18GG_TOTwz;b$QU5K l;24WTZiAFC175+OyoJkRyB_Rl>H{WU22WQ%mvv4FO#q=7Ohy0z diff --git a/Resources/Textures/Clothing/Head/helmetold.rsi/icon.png b/Resources/Textures/Clothing/Head/helmetold.rsi/icon.png deleted file mode 100644 index 31c3ac73850990e283183d7367180e5b375b20c2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 312 zcmV-80muG{P)_G8i8}}yT}Z{>|?#U+U0VwY3ocMQ5~4SPEnNShgwL7=-Ia-N!O}MboyR&&FQ>>MzAj|EB z8BNU{V(jk)dOc)!9pQUx{ccZ2t^W5P9-rz89{irS?|uFM>hkv=s-sqh9LiNY@HzGH z3IChV-`npBE{nOQ&n)?KCr`p2>mNq3SElvO|GAUb;>VxQmr_1Is(W1iPjsGsf0H0X z!_CY`J1&=eb^Xe_`@hw}R0f7Gx5Oq*RoXRkjqGLa-z%0+-p3U^<^Mmf06lY?LctyR zjH~l^`pGfunyIs9-wXyhw}U6{*o55|n$;L%oRGsOSiOaF?+32?a?9UVYzjJ3`Ac_J zdN1q#Z|xf`TYmnYZeCZ%zxtu+yN~Ox@<_~fW;l@Y;M~z$Yv!}-G57J6n=oX|ofcbo zE$#0n3#&U9Z-ma{(fQ5LaP`BifI8nNz8{WmzCKU&`QLW)ApbZqC$>8(E%#XRg-$VK zF<#MNUcnl$m}h~QL$6Uo6oV-N!NZ}FMm>K_rr*BY@Kg2W^z+-7{xGc zsY=_nnLYn@(#X**Zr!ei#3#!qH@5Cx$j;DEVDju$`lC}%+uj==to*cjYU1bkmGd$u z+cCQxYkCbsT(5uRWGLda+ga zcY=zxYs+H8^JhLVo8@f^+LG+Y+ZiI$e8B4a4yV-zu1}t{`fhggiqO~dR&C?~hIH1| zUFpt8)+|dE+{MbUpz>P5)yK!52~@pYTq6ACkliZ&@>s)(n=G2M*`5?tN4;3|)awl2 zgZEbrt$lwle4?HcllCDekAWk0%MQ7Q1EQxN=a?3(<6+q0s?%L8zra}iwz5LdqWwXY pbCTva+_${?kBs0fe$D%X`NY&LkM(-fw17E)!PC{xWt~$(699@-a^U~~ diff --git a/Resources/Textures/Clothing/Head/ihsvoidhelm_on.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/ihsvoidhelm_on.rsi/inhand-left.png deleted file mode 100644 index 000b7e08c42d5828ce9c25a388253e34d25bdac2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 677 zcmV;W0$TlvP)5Dww0LsDE}A;C(JgBA96^VsS)&A-d+44IhsgN5Dq_6={oo!uSg4L}eCK@bE% z5ClOG#Gv7E+dw*<7LW!%;c(bh{E(P59@yOcYO(WQe@hlSn)zkK^B`0J#%|)sYIiL= zz8i!KkofVhX|k>CqT{<|SY%_@qX7VbQOx78n0NSeZQAy$girwhpnPE>lue-&joCIW zxs6;T^xyH`VIY$^Yp}~e_$y#mOh@MdpcIY4taR?c^=P2weP+d!GJ=GTfE(iy!PyyT z$$8+ONhi?w=5uE&#RSU0JyC>?`7A_FA|{w z9DMuW0f543#$jjI%-=4aJ>}b~X&(SE?w{xw&x4ei;KtgQhF{j+{+96M0rxXO;eP=@ zUT0+>WhU59kN~|-pw|q%00co01VIo4K@bE%3?9laUb@|X&}r3J%BrvoT9wE@tuK3k zhrI*w_{XjvXkQ4hn>ezTmS$S|m_obEpnYaksDh2w;?=F`Sokn0)IT z>c`*HuG;Mz0kq^cPTs9LY$D3#$_v0gbcn_Pl$&QGv(J6?f~#tD-^>Jg_Z+;MnV_sa2g<(!vLOL_oj|V{cmeJK67C78tPSyv00000 LNkvXXu0mjft|34P diff --git a/Resources/Textures/Clothing/Head/ihsvoidhelm_on.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/ihsvoidhelm_on.rsi/inhand-right.png deleted file mode 100644 index 3e5b59964b6444972696645bcfce475dbbaec4dd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 687 zcmV;g0#N;lP)5m?rw%h40IY@AZS%KX2_Ebo34a-9m&djbzw9eP;a>ol z{IILYb|vT~RDeY%uxOqy03n1BLI@#*5JJ3X>gMONpC6dUc2{_sOy=CkX7?3f@~h`h zdmoo#XW3B!xYOK?p{j|AW6Mwk#|1dpJu+T}-k{jf5RSzyW2%~fswVjCkh%!2W2Z)niR&Kb$b@eDY- zJXS)(8bZSwqQL>8!GZaiKR912$ZRGn!RO8stmH~?+%lgh@cheBD!`%>STxTU;2(Tu V8bU+U@U;K{002ovPDHLkV1jc)JdXeX diff --git a/Resources/Textures/Clothing/Head/ihsvoidhelm_on.rsi/meta.json b/Resources/Textures/Clothing/Head/ihsvoidhelm_on.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/ihsvoidhelm_on.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/light_riot.rsi/meta.json b/Resources/Textures/Clothing/Head/light_riot.rsi/meta.json deleted file mode 100644 index 9a60601fd5..0000000000 --- a/Resources/Textures/Clothing/Head/light_riot.rsi/meta.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "version":1, - "size":{ - "x":32, - "y":32 - }, - "license":"CC-BY-SA-3.0", - "copyright":"https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", - "states":[ - { - "name":"equipped-HELMET", - "directions":4, - "delays":[ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name":"inhand-left", - "directions":4, - "delays":[ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name":"inhand-right", - "directions":4, - "delays":[ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name":"icon", - "directions":1, - "delays":[ - [ - 1.0 - ] - ] - }, - { - "name":"on-equipped-HELMET", - "directions":4, - "delays":[ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name":"on-inhand-left", - "directions":4, - "delays":[ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name":"on-inhand-right", - "directions":4, - "delays":[ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name":"on-icon", - "directions":1, - "delays":[ - [ - 1.0 - ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/Head/medical_helm.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/medical_helm.rsi/equipped-HELMET.png deleted file mode 100644 index 250192f72b74b580469a4eadf457e8f7c89b472f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 866 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEVAk|>aSW-L^LCbDhH#+7@&D^z ztr6&&`avO?js58+3lY@`Tbg%ih_LVUoZF>fl`@G(X+_G*D^{|6xf}G39$X^8&8NpE z+p2fyvB5%7E4C%IeABCUdTa0fKIwG(x4#N9-zVMq{{LU)`@600lcS@fEl&CbaxZwc z<>d5Nk?u)qMi&^x{+LNmUiSF0bsr1E|1`;)y=n{z3vb}T6Q#XNW6$0;kV z`&`mB>e3Us^cL$jp8F^-X=>Bra0-~Vkj`EZGRi_Q7T zbBf>GsakwPa4$GUK(OZ* z^PykSWlK3@IF5^P>HJ&FbJ*qi zj@9}uwq@v;zGSiSqPT*TsNV-?1#{HJYA%#gbvu&5)^hUx&QjS`nM@qtnx`bj9+{jk z!_dq8<8`q?WPKD{N>OFZEZvo#ua>_re0*!_g3QE8PXjeWA2B>wf4WCcf5yB|*|S30 z5398boU<%DXCJoclGgO?QM!`7!r$0hW_;n0$Zc|G{j{fjQt`a3^#^Xg6;EgQBj&W= z#jZ7BYd5Smj%VD;F!}!{#clQtQ4FTn7_u0zL@=*l4M^r)Am-3(ieK;#fWF4c{|vj41dyX)H&mWh4(MyF{J&}cakynDU^fGU z?1#yu+D)1RU;xD;DntR%xuB@Nosof|^8b$?KM;Zv2uGlZlK@Bxfuj0$#>bBzGl;(E zh6q3{7k$yq@c8j#s3U3U00ssIhWPk+h$XOeup3RBL_k(S9E*vQ&EDx|cV|tOybr==-_DzT@9mq}*_it z&gl9-Xj_&9W4ipr5z+cdFcyGTvmp;YepV-)(8UhGPq(8h@yE`)@9O}@$KZWZnmU2; zPLQ8&Lo98mlO$<-blyMrQT>8~W-u0jC(mCppdp9D;aFIL4#I@|FAQI7fOC$opTa2w zT)S}-KfZq(-Nzip2SSeHNX|KqA3W2t;@ejcLcq4|$on~tBLRSOu4O_90Ju7^GWF!b=>$FK0{#$?oFlz${f*=Tj zAP9mW2!bH~H*-I4mv;X_)THUc&j@8UE1U)WowdSX_v8!!m=CxQYXFdHwJ28^FxWjg zW4>}80Lrh`s!N&$(_93gzq3}@vsUCE$Agsb9|A}ogj@u`di>#6R(0nh0DIPodb-m5 zE}7hPg3Jf>?hybuR7v6PuRo64#amJ$VmXM4mPg<_$h=y)wWry x*S0f*=TjAP9mW zmJMe#8kKrLyWO6PkfM~;zcL>g_VUDJ^c$|ks%8j)-uTRUBu%C9T~`9Y_+=N3lK}vr zcV^a~$pF6*-i%;s2vYWn1fqE=2omjl%)(EVT80+fzpXl*oXD^8j!j9{!pgbp#QG0+4ZD z$Fd;M7*O^B`qs0a5&oJhZ5R(qWkBTo>sOml#T7s}9#}%50Mwc-Jl}Ys&cA&9hOPE` zSe#J#|2#>dF5r2d!#S6=W-GA|e+dBJCD3)O$%4XNz_brvzxWh34kYSF`}0xwz?2#U zO+^QszmtqHYqr-*&jM*|sU(S5`gH&WV9^2=%?xHWyrQ{gofFTcm~WRoHR9n@a?YOM==jX&N@G zEh}=g-SBNuNIZLWdJ^+9+e!Zf?z8uu-aFy@?|tX@#`N6@-gHw(&e(qibHHQapA#}? z=`2`v@8izL38|^BnbE7N4bq<9_0XfVF*wtm^c8FPhKomV|z`#J1t7Dqy;E=$PP$3i_fEyGq@ zZdf%fT$*9cs@ABpf|Cw>73El=waxxrQcdEQWe@+TSM9EO(d#00+q%X2?cK)RFA`;= z3^cB&Pj4tbep5bPqW5j6)`of+MT-mX-yRotD|~11+eyg^7!12__bvX!+}??RxvSn zpFZtXWp(z?VOd#wwj|{pY#;uZy^Lx%tj|uGV+V8k{Xo7Ns&Z_ilV(n{C7+#?jjHtGd8=!CjkQ(TSQ3Rt%;= z45bWNOBh};T=8JM!nk506EMV;Sp(P?xN$AubLbUukZq7cD3sgFu<$vP=HZ0SCk4*Y z8z+4oVj_c2b9?V)FFCXBq zWO*l$^XxgBg57S8OYEjMxD-hob&`9>vtgCkmIQ&HTl4QJzfNPk-Fmyc*0+3Pi`=z9 zohLhAbH}s9K4vi3X3?0W*grSMZ_Dm!H%~qd(0O9G&4TfPTbH&Y%ewA_jT6`ltSi3X zI46^sQ^>TuQ%)vco}+zd|Km%Hk2)>psV=@zIp4Wpl{|ygrX9b-9tvH!zx?5gCugkr ze*N8$ZF(gAk%jBcX#ESC*REd|WtcI4e)`9m7JeVN9rypA-(yq286d*?w^nLbt(I0b zD?`I74O#ggv3IIomduKciCM5I`~Y|C@u&IhU5CV5e}DXO+x+vJyX~_Xf`fx~CZGIs w{owtjcFwii!Y00E#v8iWqT$&^?jOv}>p~CQ`+mX#mxHWyrQ{gofFTcm~WRoHR9n@a?YOM==jX&N@G zEh}=g-SBNuNIZLWdJ^+9+e!Zf?z8uu-aFy@?|tX@#`N6@-gHw(&e(qibHHQapA#}? z=`2`v@8izL38|^BnbE7N4bq<9_0XfVF*wtm^c8FPhKomV|z`#J1t7Dqy;E=$PP$3i_fEyGq@ zZdf%fT$*9cs@ABpf|Cw>73El=waxxrQcdEQWe@+TSM9EO(d#00+q%X2?cK)RFA`;= z3^cB&Pj4tbep5bPqW5j6)`of+MT-mX-yRotD|~11+eyg^7!12__bvX!+}??RxvSn zpFZtXWp(z?VOd#wwj|{pY#;uZy^Lx%tj|uGV+V8k{Xo7Ns&Z_ilV(n{C7+#?jjHtGd8=!CjkQ(TSQ3Rt%;= z45bWNOBh};T=8JM!nk506EMV;Sp(P?xN$AubLbUukZq7cD3sgFu<$vP=HZ0SCk4*Y z8z+4oVj_c2b9?V)FFCXBq zWO*l$^XxgBg57S8OYEjMxD-hob&`9>vtgCkmIQ&HTl4QJzfNPk-Fmyc*0+3Pi`=z9 zohLhAbH}s9K4vi3X3?0W*grSMZ_Dm!H%~qd(0O9G&4TfPTbH&Y%ewA_jT6`ltSi3X zI46^sQ^>TuQ%)vco}+zd|Km%Hk2)>psV=@zIp4Wpl{|ygrX9b-9tvH!zx?5gCugkr ze*N8$ZF(gAk%jBcX#ESC*REd|WtcI4e)`9m7JeVN9rypA-(yq286d*?w^nLbt(I0b zD?`I74O#ggv3IIomduKciCM5I`~Y|C@u&IhU5CV5e}DXO+x+vJyX~_Xf`fx~CZGIs w{owtjcFwii!Y00E#v8iWqT$&^?jOv}>p~CQ`+mX#mD%~{Hvl1o5JCtcgb+f8 z4d=E2P18K+M)#JMmR!{z@unO873f8yilVR(&)es9(?l+pYkRiInJl|MHD#ZlmCM-8 z@3@|=t$02I6h&dzfl;u~UHiBWj6zWq)=qsnlVxE+K+P}!05!uvSP&p*vTfDxl&1k$ zpS)hx9Rtv-Izl{uYY1{C%Nh+6dR4dU0)SrC(P)@G3Bl8^K#1pYxOI%hwS{Iu{VT$w z0fb{QXZb%^)7~1mMVgQxh@zKWwRsvq-84@Z*A@~d=jSj!eu5aCv|kt37Em|M({|eF z)nHrk`Wlcp+&acgECy{~$AaPUWvvS$-vvsuky;nS)0YNE&=!$`L zb%O(d?d@$20M<7)xb#Yz1?O%YKcb0w`~dL&?Hfn=#aRUpA3sGjG4Ew}0Sw?mXnA>= z#p7{YnWkNKhv!kLRIse%5gNFCft#dcnN82mIm$}K zf@2S%Q@)u2DOqOHgoK)5*ay(uIZnxP*W2d42%yy`5Bz@iV0w10>kxbqfHinQ6j9iD z2SF6=hbW{838i8ItpaL?F9HC7qk{vKiUmA+@dQ9K6e|Qbd~p%HD1Sh5I*EI;aU8uo zfcR_@Kr@6=u>b(}Yo~k>Kt7-60AO`>l_j4i@fqJB27`|GOpXg(we5=lEY<@T>2#W1 zUS8t-q=*NSgsbl+IIg?@gub~3{7F?+u2!o-RaI_tbCU~=TqE~ttE&WPDeS8C{{RKh f?+*0a&^d)s+-yperc@%?>VEqnSb)ZDW5Q2<>}q!teL%OZs>TKnNj(5JCtcgpgsw zR8{Ti04pmiz69b`uknxg6Gm`_+&X1hHhGS-+ik-@u~=kJ7FCa=T;6;+J#DwoYBlV= z-*t`u&IpiY*}MvcVe&8R?J5+8EX(F2#_Ss@mp7w=fR?TU09v|^s31Vf7SU}q_P9G(5pZzac zH@B|=siU1^%qEji4^%cjHU{-TWwU=r0DzQ_ar*A8R&%_!Hn-0$ju8+MQ%J1o*i^O{ z0F+841^}B|TWo!8-Hc=gI)5Zm^SB1^?eix`|HWAyuU@}FA~k3Ux z+c50DQI12sUdR6a{++)<*LgsY@$on=4Fezc_UvS{l4SDnxa;?yT>-iizpu|S^iyFf zK)(a%x1lcpA%qY@2qAWdc(KPX$QNWl*h@VT}N-sX>Uv zP~QD&-;v4O>nWn8Am zaB=)0=?70%-b1UqHaG|5ConIz!<~ixPZ|Rhx3yP0DxmG zP>EYST?2~mb{Ic$h3)NarYH()wOUXVC2+|DG!>?)FcqNR0rcC@7vK*d!wQ#%0h1m8 O0000- zjA@!JdG7^1?knGxaTYk(d^J$0N6)rl_PnDP4&}(a*;04m|Fp&>adIz1R~Z@C7{yzf zpZzQ|w|Hap+C{~B=RV7LcmFlt|9V$^`?_e8{|_0`#D4ESJ@ttgI z|C$3Ro+x1uw_c*{;Zpti&&+){|9IMXM*qRw6Tg`5ak3_GZwO@A#vn~HBU0wTnMK9# zw&@2ry^_mRKWHiL{by4A)Cr&NF*E4R=Kb(w{@Ur=TKk_`iCZ#ddOrMJqV;jd?j@3$ z&w|9*ITS-Ko80}zI?wl(=Zs}5wKh&)@Ruw{fSf+NpZ^2%!n2K=TNQr10Y(smr>mdK II;Vst0K34oCjbBd diff --git a/Resources/Textures/Clothing/Head/nursehat.rsi/icon.png b/Resources/Textures/Clothing/Head/nursehat.rsi/icon.png deleted file mode 100644 index 273a983b56f057981c5fbc8097a062e05284a9cb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 287 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJXPz#OAr*7pPBZK}Y#`t|fBFPx z6}F`xHDiu^=Xh7czj*TtrOQ9$^rlRyW-#5{YS^OEno`CY`OMs@dB*=VH;z!HL)Krv zhLtlLFhJ1_CV}KD0!>!WzuYmY%9AQRm&xIn+!Hlxz1GhOYuIvcGZox=&p0EPDPfix z!>e8Eii+PA@ppCfJ>HR%XU?#%|2XTDs@Q9%SsC8%EsLGb8fem#C{g$H%-$|H1tqQz zH#qs&8TNcx1d8 zHV39O9ckwH_kF_4B0)v=(~dey8P@DG)S`9te75d#t2^?2YBT3~ccWHL2Nwt^Pww** za5^FI_`l1O3qRJ|7}}lvJZH_;mD*h?Ykfc4EZ_Th_qyLR7r!p+zpq@)sMvDlyX~w^ zM^@)voTB<`pF2n5W$!iTk4juL;Z5q1-~W8tUIszK!v+kYt;aV3i9`tnrPx1bF zD;grjR9@P0{rf)Q-JXsK%}*8dl#b-`U+_&c++uLqk30EI|Bro3yYD|gyrYA$0|GL# zeK-=YF$ii3J=y>4+5d_X!=+Q!ZryqF?WV0}%cp!=vwKgZm!`Sz=f6C@pH2S9GAg#* z*`^y4`mo04P^jpwZLS=NqN*{)$0Q!kaqjte{OkR9TmpiZzuRuO|G0Qo!(X}D`_3+B zCLQz^6g1{x-t)b~@KAMsqQt*5{|h)fI$rML`&i_7y>xZu4{bri(%8e*{kzu9fA-vc zgHO-bB*t5eTQ)MhWw;g5P{xp}<6zye?X0+i3k2N${AvFETlI7I2IaVGv`kpLb$c=E z(r0?P;YBlw`4|f9WEy7XpW7{RS9p({+mAWRCMAo9u3-=~d~9*=oah?Yi>eF^%P*ho uc^pyoCdq8S?m4C{%o)k37S7gxz|Hru*fzUbZ#^*389ZJ6T-G@yGywp3xVgRn diff --git a/Resources/Textures/Clothing/Head/nursehat.rsi/meta.json b/Resources/Textures/Clothing/Head/nursehat.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/nursehat.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/nymph.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/nymph.rsi/equipped-HELMET.png deleted file mode 100644 index 02c3a28c3281c91eb92d8d48569d5e6fe1b2c8e5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1006 zcmVJk5yk(}!;&Dm4)U&Qlh*f6eG%^iVm!_Je(&q=J&*f6Q!<&vG&4i< z;mC1F1%MZ?-kW04uu6{a?4Fpq-y5#Q+x0(vc&+I_dG>}`-%M+QoV-t#uyFwRWC^io zSRLhw_v=TFL+VAYgq6pSaFHt^avWmTrwX83#1<@I$rgYuSh)55Q9#CDTySAKu!>rv zh3&v978hL1`qULbXvQU+Hxp>aCDtLBh^O{d0H`%uaM-P=HCjE#X<-VWE}D_f6mWJ3 zq%#H7Mdlo-3Hpyr08lC`s5M&nnXBT*gSK{@7OF*%AbKnaKK&!en!X-f^8y@pYv)C- z$~+EJ0R3sRrq4=4xkjn10O(XgL%C)iYkajkMCzg$#fk!l-3r&dplhs&3m~4_SLdoX za61Lm8ZE67#<~ddgiJTryns?!(JFv-8ctjQ1ak7}OaVK)C(LWm#0EerKra&+z|QW8 zDV-_kUI2j!4S+DU6##Uqpjc6K&3|Bm0~i*jX}=*d^%Y)oZz3iJJdSTwBGE-&GjodtO& z=)FsGmmc}MUssPFbpXVOPnNXqtix`_$HZ4`2UgME%Hr&BxFN)%VRhpGnECA0bh^94 z=}f0Z&!R~+1!B>#>REr9k`7XEd)N4Hc~;FBfz z*StMdGAPu|Q6gHbbRGautSE3h1(Z$&;AMh#$bmR-CXhW90QBnWW#B15zWwjnB8n9S zX5T|p^H&f(7F6?Bn5*7spB?oYP#4XbuIRDgCjAR;r+{Uz8>uf@Dt+n-C{`5IMKhlJ zd-n%)?-v*a-6s`K?W^6rz<2pQ6%_@`UN`l)RBHg)jv{(2J;%qrKcHWa_#ysipbCI= zVygKoYN1g={IGP21`dF9VtlgnR|W7!^jP4NC9rggsILS|Wo7Io|38BMBNJ<%kUD^2 zbYw>Xt1qSsxQ~pq0=j>LC!qppt_TMTfb0i$I|Zz4?%k{TPgvR9Gr64t$Uf#l8Td-@ zTk@@XUr)XpTAxOHoVNkq7yZ;SwV8{mx*0B-}lF#_OifHy_} cybbW?H|GMZHtqK8WB>pF07*qoM6N<$g7qTGNdN!< diff --git a/Resources/Textures/Clothing/Head/nymph.rsi/icon.png b/Resources/Textures/Clothing/Head/nymph.rsi/icon.png deleted file mode 100644 index d9a23a2aa142f3597e971043f4627c6cebfbf689..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 254 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJqn<8~Ar*6y6C_v{Cy4Zv9Pscs z*vQPTvFX6UgN*BKxHa2+Uwi#Lf8fA@387}~g+I?c`fu>@#Fsd?6w9D9DN3$}o1Wf! zCB!3E%EJSqPp6ChSHGIHNv0u(GyexS8*7|6+r1Cs5l=H8F{FH`T*`8|`Fyp6-TEmC z*E!hO*n}=K@YDz-CGDvC%*yO6%*@Pun7fVNDdl&w4LgVDCgYa&Z3mjGpH7_h|HqZb z%*^w6Px4!9H3qWxSS4IxWPaBWXu#!mP=kSC?G~db;V*mAfgWP;boFyt=akR{0NH9^ A%>V!Z diff --git a/Resources/Textures/Clothing/Head/nymph.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/nymph.rsi/inhand-left.png deleted file mode 100644 index 92e1121409e3ca0bb3d944fa15380497cb980fd6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 797 zcmV+&1LFLNP)g&t4y0k7OeSM1e#)6NRLVOA1pwAI_ql_;b%piki@TiunvwW#U*2l* zFW-DH6mNxqlQ#pd2A>iIJbMSEL;(kT>x$9D*EaXL@=ifHZFaEq_#sZ49h7$phU3lR zr~vvT!?_j~!dZlKt^Z!XDSmz~j@9fk2GSU-*=5Yn#SO(Ze%-s& z`kltnMUcTKr;&Som9UlBi^oEUMuO^(X5YEwCU8Z7$=NbHdy;&CPFDt?R)Qp7IGEja zTw4R|FysSh_hdvPLBwMrSD)oM0V=hU@}U10iP;ba(pakmUoC=mV6RI&7DA^hYZc(u zBIr2*7;NzMMhp4kt}BBFJS+gK0Jrg^0QurBS8udjUjPA*3c$Ft6#%GJ(C*2uzW)S4 z5ClOG1VIo4LEKF|zu8c&RA7@a&!-Vp`a(@(PF~#{XJg+dL|80J~<5l+A$g{_)36D`e%Ot*mID4EdZaKMoJW5$3gP7 z0J-!wXV*XUwEzHYJIKBlfGR*&0apGC_+Ege%m$a34S}6cHjD2C0D$MO-g7BYz*1(z b^q1ftLwhGOA==1h00000NkvXXu0mjfvz=lM diff --git a/Resources/Textures/Clothing/Head/nymph.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/nymph.rsi/inhand-right.png deleted file mode 100644 index 88a2363a8bbd937dd93aa24e3cf05b836a35e54c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 801 zcmV++1K#|JP)KVg@6cSvd2!RYK9UL57LUAl2T?J`6N&|(^K?;Qw#|DI~MVw2w z3>h+H>*U}Pnii>e{>$YM8bYsw{p@-1qMni5o$n9iyzl<_zK_rMaoqa?1VIo4K@bE% z5ClQY8r<>m@kBR>Mx%EUh*c(ye@?%1u%FTZU}yJ`E95g88&9Tloc`EEzc@woF@F90 zwio~Nmmf^y=Z!aE$%jJ{p1lLYAqj4rDQ>O9r z#*5i^Poj!-PYj+!b>MM3!s1(74Im!dL`&%)9^1s)YM}49o*NEeToxsKzdXWaQJPx7 z)1Y{=rvX4q>A>e*KuhWLjT;##KwIQdDpzru1xn>A+M=mWwj&XF&jEm3SJ6^B_*rS< z$AjzMxRJR*gW}3O5-*!D#ABPd-abPio6#_W$oGjQ0Sfty7TF5+RbJRO@-&3&?K7-< zVmQUo-9~Qeu%cn_qI%s(<~hE zM%JI5cofEyS~0Db@POgez|4KMozY((EUe*ObvJ_vP_ f{;0Vnc>wqeU3D)HOl!?(00000NkvXXu0mjfU8HGo diff --git a/Resources/Textures/Clothing/Head/nymph.rsi/meta.json b/Resources/Textures/Clothing/Head/nymph.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/nymph.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/orange_bandana.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/orange_bandana.rsi/equipped-HELMET.png deleted file mode 100644 index 217c434bc8f7b0359e8de73e1f3c4049fa2ee5c8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 666 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEU`q6KaSW-L^LEz8>?lW>RP1oFzN?{FB?o?#+E9{?YFAN4~G$KmM+Jf3HA%>+RfYGkLc*%yPGjH#)oODaVfr z_V?Q!h)nvlJmX;A|Mma1w*7f`fc*hWMUBU&z3)Qr?_~DboMm~hb-ncmrRja{lYgov z?3<#KzWvWB`$pkQAK#eG{eECCb6@#F!?uribKaF`&wc+}xZf zuwH3lxWbg>#E`{ks>lHJpg=>EgDD}6=2$75yso_NAWt%P>z0a*{Lc@hs{akR_f*_=#x=$jKF8u1+iEBErag(W4`!d? zn6q3rk8NY>`VR%iEnie^y{BZbb5m^vkGh}dJ~?0ci8^y1eB;=nc09o7-w&gi_f!sK z>YkEm$ej9Sli1G6!oss(q)eJCQvcZ)REHP~oMR`-zi7ddEq_3M?#JD~-|Xv~3`}zj Mp00i_>zopr0Gbpkf&c&j diff --git a/Resources/Textures/Clothing/Head/orange_bandana.rsi/icon.png b/Resources/Textures/Clothing/Head/orange_bandana.rsi/icon.png deleted file mode 100644 index e162d68560208c930016356572f7810e3c4ac5a4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 615 zcmV-t0+{`YP)?hf-afcibS9*F+=iICNj^&o;d2AAQHp+f0;C~Qs zcag~lKkNkHzEK_z-iY|;wbxpk0Bc|;^bK&XD)-E(yE?fY zi`XyBABC#N12wxK%UY7kL&EJ;7dcniJoBl}R@xWyFt-BMz)tAtBAX}#3Zh3CE(`=J8=Q0o0HEX*6zW@g&>1+#*%#R{SrpB-%dTC-^XEy8|Ng? z9+&6dv~$8@#&yIJbFFym#7<=SWhD+@mFJv&S)8zu0PCTh@MxFd<+$XA{?T$IDkyh> zsR>f+`#Ytbu7YM?M5(n}1GTUJI|0WCXG?v+H%?oN`1{HN{3EZ$Sp2T9BkNiL0RFG3 zhKs_rG@-HweB(4DTn9Nc{3cu{HvYfhR=~yu`~|v&!kZ%SNp%1K002ovPDHLkV1j)x B8UFwP diff --git a/Resources/Textures/Clothing/Head/orange_bandana.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/orange_bandana.rsi/inhand-left.png deleted file mode 100644 index dac2f40e283dffb0ccef83cf19fe3a032b4423f3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 578 zcmV-I0=@l-P)bzaTevx=EJ|H+JY^rFm&8p!5_&J2{t8fasd=k3b)Q)R-X~8jY1bo;--_|2{ z>m;#vfNE9^hXwex4qF@k_TY6q%<*TA;e5c8{Sl7vx90BR~2hiwGYd>q~eB zR)Er1^yeQFYmIsrn9Bf0)P-Yo#e1{Hg}n``Ud`x=XQ^H-k&EBRTz5bi3)=zjMFL2> zfV4>fX%~>T+y@|p5JCtcgb+fA{7K}AYn-AkyZ>+5JohU?iM$_>6m{how)cX8FV_I* zhvv+koS6<#UDyBdn??Uq0SYC!|AyKq8`X7ZdW4pp4(POk{mSe1rU-X!^itEpo^9I9 z1fchWr^KpXHvBFDZP+ZLx~|c7-5Q-D+7ACZO=bcZryqiUTy@G8w=) zZP$Y^uBHzmGZ(=y^uA|Jdof(70D!5^e^|f(rX>NST|n9-fV2xpTkZq+2kUc?F_LRb QO8@`>07*qoM6N<$f(T0qeEBjE7{>9xN+~1+0;bRyf`)eJU@~}Wwo{>C{1rlHPo0uQgGUcu>ZwydK*kOk8VrT# zHh0QUJaot+9O6PS6q*FOT!)M6!LnW1a#Tt04}|bx%%j(@Pr`Q~gb+dqA%qY@h@x?V zAXw=GJkLuc$g)<=|0tOl+4VSTP<0!I1K`6gyxW9h(6x`w17};Bdg&W}_uxHn1U%VC ze{VI^VX1II{r7F~c-HJV4?4v?I6MG3@$qvwN+u;h-z&B8V zy}mt8fs3Aflbc}5HHuXL75Zk};wtnFyA>GpVF0{3N4s4oD;GW%s{q<GpuhsBpf5j`C@^=I^5nVW+wa*Y9gEZvb8z&ET$1@JL525HgGyi5%ba%!OZpxM@Jt92bKzM305`We$;=3qe&mrCKX!M{Wz~I+c z7O%OFKQ55sHaz-yPt=m6oQ5fzJ~RuMy%v4)drb^m(5XceCuw^=TCrnJr9FpYr*hE0 z`BUm|tqI?1Ivr@iOS9RW!c&4CRL1EBDdslaQ7H_``EPUZMJ~hXk9_mu{odv`-QiK6 z8@1%q2DU$cYuC7HnHxKJMQ+(D$W(Lo&*#%WCHx+(Sdi1w%X>gyuZ7`y>B-$6w}$9D zGBE7j$6(KKI%C%S60VS=KO8x{G=Y9&V0d!&1dGjYL-kpXI|a?En3rwd+5Ei`7zSHD zKAre#`q64e)&Ga(nx}skSoM=X^MG#UjpPqu5zISS3zB&sh#lxPZHQ(tzs8Wqcn7QC zohRWBvvQiFpQ(IjfAIXVqvP_|Q$OCTWePg=$VlDkr0*)e`aN|_*BB?fEn{%%*u9T4 zqW(r6`%~lVrH&ko^6Td>x#PyRpyA?ehABY{w(6xb{bqgVyH$PR<*yFewRPXzW;0xp zTQH@m=Koc(=D$o)uXpP;n)u4DExkFp;rypsH?#XU8lF~!YkPsBw{=;so#L5|k?T*L zzkKt~$?uXn$E_cK?D0-M?8#oV;ydfsNWouv_X{pD^4`kOspdEM`S|g}J>O=3d2)wY z=hCy^XLcl>uHgLgYtfohi#T)j8JAdb&i=}^D)n==;XaPU+I_d?mEAPC$~OIOQiajX xR|c#16o!8l9fZKvlyGo1NqbI^!q<>=04`Z_f+ADLELn5_+t)DS6Lc&fX>$fi6Kxn8 z3b2DgS2E(-lEubs-?u!2FdxXDA|Ju`0D>S0f*=TjAP9mW{x__19n9zRciTDVGLB-E{WhdVY^1dLJzUtXBf}U#=j;)~;8gwGYQ}8dev*3&1&-uID356O=`c zEKT5g{>j@Q3In;n@~-D=+XkO?IL*=o^@A%4134I;zLG)+IF8e>y3iH{&LIi|xqP|8 z{qqQm$2Z(QY;Y(NTx1mJgS)3e!|LK<1^E7T-LSg&YXWf2Wt;neTKU_DZ5WNhK<&udrN>c5Sw8gE595 z-+s0(z^G${000`b27{r4s;aha&m(lHLQxnYKpe+bRaLuM1Jza*`Pr#+BLo0`@AE88 zcE2annN=1!7LRY8{c25(_06H=$lcQb6{=1?jrjs}VYC1$`C1lvr$Q{iuq~jdr^vH3 zK|P(`7UKliuObsdoRu~=P5@OtyWiH;pK$^J{niN>eF*je3GmSa_-K9sy!j@S`ad|X P00000NkvXXu0mjfny)Um diff --git a/Resources/Textures/Clothing/Head/pai-cat.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/pai-cat.rsi/inhand-right.png deleted file mode 100644 index 839001dac57f7994129d0c51c4b82624335da68e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 687 zcmV;g0#N;lP)>DcE2Ye;u^LOFio1AV71kjY0~%rz%@`fLCTeYjuhZ(K*+^P zvjrM2c07i4_~U{1lhBg}W4-z8nK#Tg06`E0K@bE%5ClOG*M>D54hz5FoXaSREERP( z=ytnDN^L)M`GqVD(KiW)iRk}-xb@FimmoO5}YbWcMV__EbznW($APyhfJ zy{+N69!78L<79aP9M{`$$5`c3q9oNHjGDf_Z zV>%hbaXn*(K^XWl|KuIl(+-21qQ>cDjO~dd41C$VD_62k2q9qGb|&i3R)Kw~V-*Mk zU(Q}{(RsPY==lQ=PiyEZfp!u!o$o)JnW*Dp1$h6l%0wM|3&1&-rc8vuzbF6jv?=3Z z;LD`H=x%aSZY1c>kljwIaq zKrx%$!=ytMrM`d;Wt6a&jT4(BN&56VkF3;tI0S%=`4}U6e#j)}NOASPKqUcI%gxv?J9}damEV9?o2Bln z&U-h3N&@uy11nz4Q_o#}OcbH=B&d#|D(_vj9VDw0Qdt1N%ns+FDsb)u&dt>e@E5$t VEId|76z?;OS>BFMpadT%hSU{+i!cRs)+rfiKJ)EwsU*|%L!_&+p)o2yMHTbnzl+QY)($krEVHn zYuQVI9R=>-Njnh zTDPm+uDho8IsCy`WT~5G&>wJM3-Eb7f(F}fN0y;4%q=1eJ+HNHi=sf1BmjV40E(jc znyoN}Isjd`8)~EP0=LbAzrACQcN1&@=(_()54C>>zGWDklMn`_4Ui@XAZ>s&K>%q3 zqzM8@8z4;(K-vIlf&kJ6ND~B*Hb9ynfV2V9{PzN|4n^Ig=c$K~OEJ|puNhF5WlPzZ z{eBOn)Z}ycB^a{JH&N;(K%VDa;_>kOc9xjD7hKzvQr`6f-iM+?iOJU+&g17IP1E-A zlp_H6Nm7;%u+{>n6gY4ne!v(L(Q;IdZN7Ld0s8eHPdPcIR5$pgiz3FLzKt;v&CbUp zVfm=5OQ1jXUyGu<=ccH?Iw7L9Zr$`aLCe8+DX^A6-82`K8Bj_j8$@Zje#II$VagI< zj)H_aafKhN9vOq39p1z-aHnB#N~%0;g|B^qLW^~-Hy*WJXi=pMkek@hC8jmDUW zBE{JA-ZOx_K8evUSCyn6nK%)O9R;`@EX}QZkkJ|7PN934?!LG-UlZu+67X3^_lR$W zTBs3{Hb9ynfV2V91OcQCkR}KqZGbdE0BHlH2?9tPAWaZJ+5l;O1JDffzd`7?S^xk5 M07*qoM6N<$f~AO+E&u=k diff --git a/Resources/Textures/Clothing/Head/pai-monkey.rsi/icon.png b/Resources/Textures/Clothing/Head/pai-monkey.rsi/icon.png deleted file mode 100644 index 1cadd964a54bd65ecbc144ed58a7256aa3a20a70..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 314 zcmV-A0mc4_P)Lp6zpIA{FpQ;ZqY?C(mM34j; zjmCdRl|G0uE^J@Mq`7U3aW$4PW;6b=Bw$VmA$86{Ykjwg2to+ST3bBOoI~vomtg<^ z4Cl+_p6$B}$fb_gQCVwMypHPGzN-LcP5?kelVtfl`*#t*%t>qgGD*q*X8}Z{L}YRL zcm1#U)fm=L8pG-){4~`9)|Swg{o?{U=N65|%&Bwk{+zFO;#F_LZ|{+l&FvtXG~rFe zW}j8>fm7e(dED~&o%()KncXTNA^;xChltc#vh4TXZ^mn5*l08wKd>KultD~XivR!s M07*qoM6N<$f@#Q&$p8QV diff --git a/Resources/Textures/Clothing/Head/pai-monkey.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/pai-monkey.rsi/inhand-left.png deleted file mode 100644 index 76034daf67e3295b8322e2263471171d66b7ded2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 708 zcmV;#0z3VQP)TMRew8)}cxhumP1AGkx_e1uJS%HF`Ih%63K_n}M_f+1n! zZSi(K2|*?}VSenH$TI-LFbu;m48t%C!!Z9F+1v{>O><%Uxmx+5ZQnGL@1>Nw7;lUT zj$f@-Q!g7Nx&U=uduuI(5S@*V^E@BDUtQN80FKUew#9M@0KxHd1^6;+bb!Nd2LRZ; z9M0a!K1NxVXU+qE#3;)$-jD1NT>zTu&D%c9^E_+b_F3OPhA}2<2LiOtU0nimi7J5B z+5m?G!%+;r#=hWUy}nrMT5G>pue;A=FNz|&l^I&+g7F|G(FHiZzJi<`+EEl3 z3Ns9fT5Dfb6{M5^fL{Qrs`{|!faqC((if$>kd3}e<3b{Y>>(a13tV&Rma}ttC;|Qj zoCX<&VHk#C7=~dOhGFjHLpB;?GPdK?-!2broQ~}nCA}j=6{PKU3n2uQQvTioYSID# zfDi(^mqS-Ly|<4bdR^dep_K9)DRFcTKfZs1b@pZr@fyhrV2sIV{ZrZfJtVmVsLo)F z$*79Fk+O>e_gpKvETFaa{jxc+IhE3e<@8UN1*m-^_T)TppW{TbGl0?|PX9bT7*YBg qYsn*$o&m$0|DHCQWM@FEPLto{$#FszdpRZm0000f`4AzB-~Z?{|TBXbj=swxKnM{8T#Dvkjl*#2*Q!~1>@0NB61 zU);$)cd{(I=sa)|Bg?X2eNO-y>h;GV+HSW|{c(u8_PLYidDQd-XsjKa0v7^ktsMX; zr7kMdJC)BB8vaVDsIeAwQTwU9ODllZ+6f^BJ2_VVXvlX-DIK+yF0HkbQaWRdC&Gmj z)LOg#-|rGCpOX`mQaT|7)@P^JrLh*q7;h>B!{8L=BmmJBVyNSU=LDY(Pk_)O=$d_Q zNGV;CB<(a<$1##52`-KR;CtV&N>gvHYpvZXP1|R(U-K9Li)&7~u{P)rx_AN{ivrZy zz8y-TFARW(iqQWFT5DI9C6Xio0Q><^mgQ|rVG19>Y5A*^ib6K33jjq?JXC-*O})r8 zw4Mp!2|&+*KkeCpc}9ULe9164g{KdL48t%C!!QiPFbu;yAESF_WBK=?%|_zUJ4Rzn z+7YU%%2C#3x7$GoF}UBp6ebCfWm%hW+`qkF9HLk%lLW}~JTk_>7=vFwf8b~>Uan+a zmVlQSxdmekAjIj8aX&C;CXE1^|1am0|mxJv-wBm$l-41Ps!9s%MU_Dtt_{rQR4qHs$&Ll|Q6 z6d>m(glNTBGB-^DIx<5mL8Vkg=ZDvEyx27WaEA{duTNt1kEJe+yQ2WG>?JVq7k9{m UrpNg``2YX_07*qoM6N<$g2C-fW&i*H diff --git a/Resources/Textures/Clothing/Head/pai-monkey.rsi/meta.json b/Resources/Textures/Clothing/Head/pai-monkey.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/pai-monkey.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/pai-mouse.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/pai-mouse.rsi/equipped-HELMET.png deleted file mode 100644 index 92af8ff4a0c1d8a53319b9edeba64dc579143285..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 514 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEU_9yR;uumf=j|-VtV0eWZU3jt zbMWGnb9yGmc`rdsXp#B{A+PXx3tAr>lD?4=cJF{YzoKJT_>8<+i|#(X`tA6qeZB!R zW}eqSc-DKFdtW zaI@sg@^X2GJ>LuGJQon``7Cqq_lmpTe_3)~OC2^jx^3Oo=oL3}%ua4wr@!vj-bvAa zg!ibuQh%^Nf$;`Yjt)a~LoaIr_lAuOIgDmv4Y~)8F>PSI5y7yHL7Mx3SVA%uMGM|D zy|3j_jNwtf9=cS{FY9Mr8i!(5+mgNa_&?k`zDZ}}{r7^&Jq!v;6?f$tGezr-mc2W? zYt^IAr=|HGFMlz|`FY?p)ji)gp5L(Ld%>2~cg{YuZhW`gTe~DWM4fHYwo( diff --git a/Resources/Textures/Clothing/Head/pai-mouse.rsi/icon.png b/Resources/Textures/Clothing/Head/pai-mouse.rsi/icon.png deleted file mode 100644 index a42abb747fb0cf472b146b5707290aee6020142d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 198 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJUQZXtkcv5PCmrNGY#_jLT+x(e zqEb+EUAWtUmq*{7@TglURlI|9d85E#%Lxu;`!210Ce|qM=>E%ZdRwmX*-j{~tFG&7 zxfW&KaCNS?7sHI3?~K-4xVAAIOH3TaM4fVCo@L x)n!481P}1n94cU*@5CfDp@C(eoOT_>H diff --git a/Resources/Textures/Clothing/Head/pai-mouse.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/pai-mouse.rsi/inhand-left.png deleted file mode 100644 index 2a1b2bcc025affa15cc8fe6c96fd4cd167ef869d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 451 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEVC?dAaSW-L^Y)fw)*%N8)(6us z343TBbUq<-Ft*8jMk~u#mN=)Er-Zi%#Z)kRZu-PwZ`;xmwC7MsaQC#XV-|m|?#Wl? z5RSjc6ZwN(K?w{NE#rI@m#{Z3Uh&w%n>o+sMd{|85_)TJ>0?yJw3F9+23wfBnP5&Fi`S)mhC_J6|qYv1i+SmBx+( z63l{*_MTbuuO#mg5pWGOkSb$fSe&^0(mUpct=GOjl2B@jlQ|sqy5w>6urK^Jf}+koCGt2fFKVW zb42!CRp%?SEg384SquLBS@-`hBZK(-hS{14>GjLc-~75;d%>z;R+E46i6EP#xi9c7 q=w;1dzi^Cc3v)&?<1NN5wT$hujlG)|U6cVv4uhwwpUXO@geCy@>$@WW diff --git a/Resources/Textures/Clothing/Head/pai-mouse.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/pai-mouse.rsi/inhand-right.png deleted file mode 100644 index de18ce1f7f298c9f94fd8e52109b648c9365a14d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 445 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEU~KVpaSW-L^Y)fw)*%N8)(6uc zaW0wiKryB7!6}w}18&Y&oO@dIY@16S@?LszO8UoqrzVm026wMG+?LGQ`Y`rQ`v zShcr|p+LiX&k;ig1y7;(ta%qRKPoXvG@pAeRWr|t{n=*TZ>gO>bAsKEMe%Od5fYS0 zR#1{ii~R7clG|gF%B-H<3=JoDREL+#GpyN~H({B8AkQU{Yf<7><~x`_Epkxrn<(yT ztC_teYVD#u8vFLNovS?|e{es?yM|>6jJFuKY-D)La4Vvrj3HOY!Mb7FF>#pl&lZ=x zkd(5G%)Xmp;6~u+wyoj=D^q2|(ZvrE*YE8NSKO*y zykYrL9gFG(EyOb&`Dt;{b^}fVT#&zPF*HOzdxz6phv9)D=95XIcwA2qa=U4ozzHA`B@1N1%SKSo_ zjPox36N%d2uxix|0Vero2B(g+;Nzj8Tdf3F{pvPYyWW<4g;Hp!;nuU;w{t#^S+#JP z%Zl3Tr3WqZ>xEbvEIcD7J{Mx>vYB2u>Ce_^1%`@w-(N7zIOOw>JwWLA{M5jj%92ZS ziZhiS&lmo1OM!>-YX!eRAzxR)&(Y;|?q5K8^&^Xa5~- zZFsC>Dk*b3QsbFs&pW2(gAJwDvJ4K}FE>8cNi>Ugi=4J*?MMCvFYC>s+khf=hZ77k z{wuEBq;oUFgo)wKgR*bo>kmIPJNX~)n&00000NkvXXu0mjf)Ioh( diff --git a/Resources/Textures/Clothing/Head/pai-repairbot.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/pai-repairbot.rsi/inhand-left.png deleted file mode 100644 index 6c929c77031a234c17a52af3189f2b16975bb690..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 690 zcmV;j0!{siP)cYOL#PSfCIgP4iyA01`nYm$V;bIoQJ-EKu=-t(A8V^ zfLztw;7lb;uS0rH6Q`Ce$;iUr4~%tZf8zYNbP|#PLI@#*5JCtcgq#|q>bUNKx-|zPej~xJBl&XHhbzPMtiSm6Pj4?Hz&%qc| zzV9PR66LzC%2O|dK$0X1xDP|Ov+9eeGynh)Lcp>ttgbp({p?_M)q!PM@O?j5z3=-SY@08&b<*XxIlZx4%>WkE`rS#R4mf*^R*9|Qqx+s>>n;$`J) z{OjG9Uxn%(1(>71tV*|lIF1b|CEoXXkWy}5x*f;y&WTXhKPOLp5tYvYdXRA(8~XKc z|1OL%rFRt_gkH8R3yiVjp9BGbd!8Y}Pyv7lL&ZIBuYbWZd1of@z+i-D&{<+N~Bwqfx1eyb%Ea_eX(? zix0+RGBJJw(C+}SSS%1lQK29ja~Lct>oC}uE#OcnfVu}zHwvKc0o08GsCxi)JNW?q Y0A2bQ9FmIe2><{907*qoM6N<$f+ROF`~Uy| diff --git a/Resources/Textures/Clothing/Head/pai-repairbot.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/pai-repairbot.rsi/inhand-right.png deleted file mode 100644 index c7430fcb8119eec124d4e695dc5b68934ab850fa..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 683 zcmV;c0#yBpP)fuDK+p=4AaibfA()jk|eNg8}7{lH;=Lo|P zLI^0OAcQ~|hHLXL6+kJ4>2x~pxSsFYwhg7!F)|;FQVNdaKnStaFNA>OIJx;>tvlF< z@4pY9@C24l;1l|negRpQSxPB<^gJk~9yim@vMl#TQWhqEo^|8jQ_3x&y{-#R0$QJ=m15d0u&vfXq7JjA%qY@2qAnGkzVGAb=cDrrWYc&8sy;j5d`D@(Wy+N9$)=RklfgKBwrl~a?4gmo7 zc)0tU&ravkivKRHzXW?d2A`trkHN|>j8FlJ4p1~IK+yq;Mg=H3K+!5+fIk$zBM9DZ RZbbk9002ovPDHLkV1g|$HtYZZ diff --git a/Resources/Textures/Clothing/Head/pai-repairbot.rsi/meta.json b/Resources/Textures/Clothing/Head/pai-repairbot.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/pai-repairbot.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/paintedwelding.rsi/meta.json b/Resources/Textures/Clothing/Head/paintedwelding.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/paintedwelding.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/paintedweldingup.rsi/meta.json b/Resources/Textures/Clothing/Head/paintedweldingup.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/paintedweldingup.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/paper.rsi/meta.json b/Resources/Textures/Clothing/Head/paper.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/paper.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/philosopher_wig.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/philosopher_wig.rsi/equipped-HELMET.png deleted file mode 100644 index c54f616dfea531200783a0cb996e50d0f239d952..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1148 zcmV-?1cUpDP)Ene` zv_)Y+!_he9?M_gKP_FGAo=kOyiNGcA&~60IZ}>~ z_qRK>hof<;p}_eu`;+O6h=`Vp`Q7iW{7wN7Qy|j@3#`@~ioziKzYR$KgaU^1O$MwGc$vfI*Xy~%#xRv2)83`{0N zpenyp03P$J^+x?o9LK3Ngd5!i8b1$#A|b5&1ItSAa5`sknC!N+T+DL|j^SvWT9acP zX#5ZZZV!Gwa0|cF13=D6wD{ujr~PeR$iYi~K5*RQ+QM(j0bEJVwdA^>t(oVLGmJq> zd#Z+>DFle}YH9=2+7G95+Eff}7P$zn!Mga(3n5oWXm5M=wf^J^a5A0Ug`m|AvjCQk zWm^}apye8({M(|+WS9l8x^o+ePlEHxq{pAtL1hnk7Vt#a1m-0846t}t)v$Xh4{+t5 zIyvX11R&ByXp(Fz?Fl{$+I+jboCmaxUI5<)_(m^)Zv%Xz7r?gxzR?Td+W_DA@dDIZ z3J*u)yKQiy$DI+-D!|9f^=@y{f=cD_IF3^co|mI=-F7`t12~SCYpza!sxa)d_Gd1S zJSiG&b}r{8A?3>H9uaVMeK3)yV?@hAh|Gjo{QimQ5ZPAz?1}0 zkAuoujh>^6FwpwslY&DMQ5ev2F*olN7Ye|Yn@nf9nP06pg$2kiy`YE-WqIxie8;%V z3kn4&s>83=8(J>rh1tLBBq*QZpaicN%Y0Cl3)F3Kc_d9MJ>#AzUmR_t9#{m~H`WA2 z#Zm4Bw}Vsnuf;+Sh{Ax9-8R>`j4OF+q|4a{z@ZIZ-oyT~b&4tg-m|;}4PgJB$6pi% z4;eggIGs~WkY*FN8TqRy3{(NWzdi?CHCMuuufs0k;^Y$pL}5_)o#0G@uKJtI3y*pW zSZaf4FH3^X9Kbu$Aid)eZvkzVCHRq?c_sb$d*UQmLU((NjtcNbTFGPItYT`-l;Fp zDIMg$J-IoF(b`IjKLqsN>;1p;-*Y8Knx=G0U7XbY3~&ZG0~`yW(QIXS9LLFi1;BBf zoS|)*WLu^J`cVKF*p^AN)uu3STP95x%UTe%0j7(ksu-1)DF`EKcYC$=tpzY$EVFjE zN0M=x#6(0Y37FSSVJCpT36DGoqXGmfmyYHj03PLRwNd8|GdzHR@O{^A9 ztujMhm4C%$>huRjr@sZ!6WLeadL`@h2L{o$H#kV$>WL0Kf@A7`ycPdxfKP(WE~aSA RD(nCN002ovPDHLkV1mjTZKKnim*=O}XpP2`MksSVM!%TOh=^#pn76KJ>+dDl z0hp8Mtjk!iT5l-NQuEiPUoPe*BH&E?cIiV2b^sssYn_6T&~@qaETue4&G~jjaD6CI zra&>B86)~av)pZIwceQXaW2<$#}Kuh>e7c0>;OLJSL==Q9Ho@D4S^9ZJ)Z(yj^IuU zA<9nha6C0ea=Dl{HY}s@ME5O@EIc zXd9uv=Ra?^&+Cf@9u@W!x^_QbqB#Kcb~QzZYM@pz3F zMJHbC%qJmV_TsrNmS>3+MNt$*Q4~c{6h--LBt=owZW?3k<^G^-I&t^PvP^svya2YfK^`0MAJv()8I7H!#dLc`J6^7gLr$q(;yxqb2vh={o5h^opH{Rt;ISy{e) zv|hnT`Ed_&Ka=03Kyf-&25}biSMBB}})*tex$O&}zDGPS{ z17*{RJH~*Nf4f<`h=4P3?UO&{UT;$h58;z`jZgk;I-zVjaq`NDz&N76DUdH$ZjxuA zU7U`z+aFy2Ski#Y55?qS2&DWe&-vZ{;C+BG#>$EKL%YN$KTm-sLqPtdC<;1XZ>` zEkSqv)wqq?7oj$cG1eGkp*$};;XIatNeC|)KyIMmyD;+QDw=xXD+C(=%FEId&S4PL z>SCxFgb-{1pTctUL2)|PY6!6tWB}9#c_sF8f4DL;jMK-jtuL(ssJkK8eYJQ_AJU-J zQ`TCi1XorTAbp{KzTWJ&uV12$hSmsZs<-d<2ik7djjMkjyiXJm0q5^OYSm+3!I7w1 zL_J?`Hiq(f8$l`1v~hyNjR5cW!2m%iz)Q_wF`p&)5xwus>`Ul_Rs-<-<~u8RA6(17 z!#)ta2sTw+fm|2*VuYXwklRdr$mr-xDzqA)EXyQhM;KoZ`owRdS2bBir0#G40000< KMNUMnLSTY34wBaZ diff --git a/Resources/Textures/Clothing/Head/philosopher_wig.rsi/meta.json b/Resources/Textures/Clothing/Head/philosopher_wig.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/philosopher_wig.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/pirate.rsi/meta.json b/Resources/Textures/Clothing/Head/pirate.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/pirate.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/plaguedoctor.rsi/meta.json b/Resources/Textures/Clothing/Head/plaguedoctor.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/plaguedoctor.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/pumpkin.rsi/meta.json b/Resources/Textures/Clothing/Head/pumpkin.rsi/meta.json deleted file mode 100644 index 9a60601fd5..0000000000 --- a/Resources/Textures/Clothing/Head/pumpkin.rsi/meta.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "version":1, - "size":{ - "x":32, - "y":32 - }, - "license":"CC-BY-SA-3.0", - "copyright":"https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", - "states":[ - { - "name":"equipped-HELMET", - "directions":4, - "delays":[ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name":"inhand-left", - "directions":4, - "delays":[ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name":"inhand-right", - "directions":4, - "delays":[ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name":"icon", - "directions":1, - "delays":[ - [ - 1.0 - ] - ] - }, - { - "name":"on-equipped-HELMET", - "directions":4, - "delays":[ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name":"on-inhand-left", - "directions":4, - "delays":[ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name":"on-inhand-right", - "directions":4, - "delays":[ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name":"on-icon", - "directions":1, - "delays":[ - [ - 1.0 - ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/Head/purplesoft.rsi/meta.json b/Resources/Textures/Clothing/Head/purplesoft.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/purplesoft.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/purplesoft_flipped.rsi/meta.json b/Resources/Textures/Clothing/Head/purplesoft_flipped.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/purplesoft_flipped.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/pwig.rsi/meta.json b/Resources/Textures/Clothing/Head/pwig.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/pwig.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/rad.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/rad.rsi/equipped-HELMET.png deleted file mode 100644 index 9c95d740a59b8426d8bf0b45140d9b06d3184d6d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1361 zcmV-X1+MyuP) z-}ioV&&g?jKTl6j56?4R(E>!X(8-&k(Wt4asx_{wt0NEycxFx2Jm&Y@R5d(4jZ zJlRylx|Z~9;Lr~lT3Qdxxe3Mm@pKM=`o(1cw0-S$l;748C?@~&;Y-}QgY^Q~wXKq_ z&ON4G0Z#I(>P>3R7`0}MY$}4P-lU^F?MELRfKenK}{^EVd zpF}D7i#MN_s{yDrV*n&Pe!O~;y1LhF=eM;7{FS)Co4;-dH+96yO=kpq{yinaNRgH;0+Yp`N*jXDCw$=nFU&Gp*1`aWk2T>$PTV%GhrH zk`1_hcX=WC&OU{7cIsq0TeuErnr2HtsThNo3HKT#Jbs2o3MLd^LnDPJA>3o0|9WbLb0V{R;pn8WIc!=j~85 zQ*50BVtNDBV;AUe?o)2xUC#02$BFeX;Nd!u~3|0kaNKZjidL<nsZ-h|R zN{l@+@ajpcQ6rwt(cToIySv*~kAUqZ@bLbXDb8z##CyNJ6Hbo)Q!gxsCyVE^$BFXF z@QL$&0IDm>x%BSuN{wVtzqpJz)jYg^1^BS!c#ie}ubw1p8rC>Dnq_j&KpW=!sDOP zw^S;&4Jg*%i%khNl0m#Nrd&OB4l|P@uZ`FiVTZgnf|<#2_0&1yjWMN0GAuosA=&N^ zu)PE{O=CEnXHkVrRi!>Lk}JOXVU8v)RDo&Edw&-z(l@7}$pEX$~>O8Bd5yu4)QRp}WYg`SBV6n-BSCT#}!)>hSl+cA86eM%+Q z2#ci2p_OX{iHfU2qS2tZdqvD51diF|&RFaphGFJ0@BMf)^PZB;W@)AZO^xmY_y9h@ zdjM$hawwO}*@j^_Yas;DXjFL58wm%0Dl0g@uan!zc#J_0000$*kc0RZy=bZbW z`~Uwv|GDSh^MgPj5C{YUfj}S-2n2%v8&a(uOifMcphop{b#>JwZ_-B%<8ojxIt>Pc znxZI$vdw10;c)DFwACtK3A#JLJ3gpg8_1GL&J^lm=58*3=hJ$6FYRbVUOt>!2cWa1 z9+=_WmEFl#imoA$SN`{>FYw?og#+N?*(SW>gW7K76=i`AEkuVFB9oj!Q5Lv1klj(f z8g!ckz2k%0#j{NS9RD8wzt6k>A+A@Rf5N#dCd%E(V&k*26@U&c1VBWxV^U+-Y%gz- zuXPgCH3a^Q+~&m3-G1kVo-J+1hrIr|w`N@6EGug=J5UrKS=m}JyqI=NoZPfv(^F;r z9AGj#fB*oA2Qdz&VYP|E?@nYlf&g2Lk4W~i4$%wU=778bQX-9VV-hXBPV3S-T6!Jj z#w1cAox7mfQC^Xv`gHnPeTNn*DQ_oVExI}2(NY@#>GJ^>sZ42ODwC@RqS0ts`S{{p z{L^tFlAXkA&I$P=v6>qR{^>aJ#k+c`4CojF^#>OC<|ijt&*Z}3xsf|AS(X9FC~11W zI!*4`u9TIx9680*Jh;>t)LU3?wiepz)?%Q>n3}g^IdV!bl>r?c(APgK&H1~un7JEB zV}Es%_uQZGqwfn;wFOmGvDvntz}#-P1a2PYE7pn{oAcMuOWSAYx(*1bPOKZZnRN$T zkCxgP9UUb!TgTYv)5x++GMS`!g|{Ej{bk5IKB!$i6DTZz0FJeRXUtjl`ClvhY8?R3 z(|bwsjOA8rb~!*ub+Wv?Mqj`F#_PeJybKlJ=@WZ#0f9gu5C{YUfj}S-2n2!}*q2{v zim5gKV5d)JB0u22R-h7s!Jrnt=PQ&=W=GAr1BP)xFc{Pt6QA+){PkfFT_4+PvAt z{2Z#P!m-Vg{G()AW+k<`ZQj977$O9YzWBJLoKK>P#w|n^H~I31H}H5oRXqj`F#3u@;5W`tfbjU|4sk^002ovPDHLkV1lv09R>gZ diff --git a/Resources/Textures/Clothing/Head/rad.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/rad.rsi/inhand-right.png deleted file mode 100644 index e35f96874d214a6dbfa48d961adb7d31fa687a45..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1130 zcmV-w1eN=VP)+FT#9dz&0mgGmQi$hV|MHp>hoUiZV}!9-~8#kxfNVlzGO7@;mA` zH^IQfuzv1LBLGLgA+-I6x8B0@!c%wYzhI--lJ&9)77sozw*k8^jBq?kQ&XRi5 z05-cDm;qq7NLVJ?N|KA$ z35AoyB^S$U1tS>O@>*dggu+RZi`PrqnMrC&U-9?DmSs|@6vZCaqd>`Lu(xkS@?Rd-FP@&^#9RXTbO94IcjIFjVX*9os!E0)apv5C{YUfj}S-2n4&r1OMgO z>-hr@LgWWj+kp{_HzG>_oiBR#Og=$X1_%a&`WL>fJc7A&4x6SD3cpJ<`l-Gbj8O3s zn3|f>hh7hwi3r(L1e>O^@oy5(%MRxL2wEnxmQ*|g?%n;3yxc}-a|78_ghbN8tG~V! zQrGXt6`zFiAbb5$)e^92Dp@^gmeutv#kmE2Uw`rwaI%_r)S9Zl0&&SzQqCt<*_>6$ zCswQNdRM5}07jhMNIqzHB$+!I^ZfqpkLZ~k`NWzf0&7jhOCXU*u$s=(bU@}{qqg-R zoi#)2?bxZ$Y=SK+o&kQpU;6O7SBNiel1MrL%;Y53@l6H?2WdULV2#QeVwo!(m?%V* zSJ$9_{1gD1rV$Q@>)IEv%oXnK8?@uz`KgqMLe_Pdk&9MA1^yQ_q`k_My w?uXPzrFuUMRecuN&VX;UuBZHV9{bbae}4SCUbacM)c^nh07*qoM6N<$f_70QPyhe` diff --git a/Resources/Textures/Clothing/Head/rad.rsi/meta.json b/Resources/Textures/Clothing/Head/rad.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/rad.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/redsoft.rsi/meta.json b/Resources/Textures/Clothing/Head/redsoft.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/redsoft.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/redsoft_flipped.rsi/meta.json b/Resources/Textures/Clothing/Head/redsoft_flipped.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/redsoft_flipped.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/redwizard.rsi/meta.json b/Resources/Textures/Clothing/Head/redwizard.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/redwizard.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/richard.rsi/meta.json b/Resources/Textures/Clothing/Head/richard.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/richard.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/s-ninja.rsi/icon.png b/Resources/Textures/Clothing/Head/s-ninja.rsi/icon.png deleted file mode 100644 index 63c9eab42db1171321098f0d1426dbbc1f7c562b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 493 zcmVcou znHJ?VW9i%p!_EBRY|cIRp5MLaeo^&$9f#D>L9-hG27mzoz^u1JCYzRawdZpM>fZn| z*|ZdkhcsjKKoFN;Gr7}st+KUZ@sQ>!=?2JT(-Jr2u@GoE`KH#sg+PNF^288CCE$iU zn1BzxZsW`I0GHFPig|f^mfM(s58RL^8Cn}4nMz0iU_Cj<`|DWtk7nBwoY5BmcqCH^ zsa&e;+z&)0VA&}8{SHYe0HELRfMugZv6=uZ8->kkAx^%Q&1xZnAU*}8GtwKY32=XR zO94PQLc{C#!D2J-G_T)>aD-O%-6f(^Fq<#I4JKfMcG>s6>p!(V6->|$ZZN@Yz9bnM z6zP{NlTAyPS2s8{9|HiUqM&M5`g`35@s+IWF&aNTsuC*gx0t;GhK&@JY*2S|a;ys|$wtHUhQ~YOu jed^#pA_KqxFaSOP$?TT#23<`900000NkvXXu0mjfoC4Q~ diff --git a/Resources/Textures/Clothing/Head/s-ninja.rsi/meta.json b/Resources/Textures/Clothing/Head/s-ninja.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/s-ninja.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/santahat.rsi/meta.json b/Resources/Textures/Clothing/Head/santahat.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/santahat.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/scaf.rsi/meta.json b/Resources/Textures/Clothing/Head/scaf.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/scaf.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/secsoft.rsi/meta.json b/Resources/Textures/Clothing/Head/secsoft.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/secsoft.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/secsoft_flipped.rsi/meta.json b/Resources/Textures/Clothing/Head/secsoft_flipped.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/secsoft_flipped.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/security.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/security.rsi/equipped-HELMET.png deleted file mode 100644 index 08a4f0860073215ac6ac4a412876b72ac5386b91..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 697 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEU~2GmaSW-L^LEz3?pqEb$M#QY zYCJT@Yr>}Xy&*XP?{7MPjF8e=Iz4Wi$i@Fj=YPjXoZ3|VQE6$wM~QD2vb{wkHwA>< z&{h2SsHstA+RKHe8eylF2+IdQFTZHxx$k|gRWj504>tU}&)8-$U%7L>C}{i5N2bRv zJb_7`LP1WhgX-6`}}HqA@ss5`cLXdLAhyi%eStq@8mz& zzqaKE3{JK~1>-Joea0Z&Zh|L9P+B*xrNh*vD zTYjo|KCs}c%5#p0&)~cwad>Ae+c9y5hWGLNm&~7gJJsfI?0N3n+YD!)O^CeawKqUR zfyepAHr*QEhqeudZL`JSRoQm69NjF`ws1=}C#ykc@|oYv4}Kam9N1%jpn2(c;mb#a zGp}8f>^~lnQ|BnKe!!&)wZi#!rAh2rPs=C`fq&BNEIWQ9RtAQB z?>}G6Xz^Ow6tr?l%4dgT){YF_%XXeR%l!X`&Vs7X4RsQi7+)}~;0;*Jyui$%m#^U# zgQ*n*Fs$(iKB;N&seSs4Ipwvssr-cYeL}v%PT|!!%62E^CAr=5!W47mcIAT z|7P}iWHFi3t9I!#=1&*y|NP1DP?bar|HJ(w z{>IOCMOlWej9DcNSJ+luWDJmA;KuHd+aQHaaMoP@2kII<4o)|9D8)ev4I;ruDDI`ut&63E_!iE-MM@D}@&e*0zCcR}r9>zS?R1$0 zv&p%%p(0T)N$Jr0ExCMm_x=C*E_??DgWgM!}6YC<0orhC=$5mNOXdS`NFOS0M#UgC= zx4rSVr->gz=2jerp$dWk+qSVRD>cu)3S{bpz_+N{C4LCG?t;AHxeXM-pBpe342Cs~ WyljMTiBvEE0000BjE6vzKA1se*QiZLZaDAcIJ_O1-YW2vYpUAm+cV}Fax`4%oEB#Rdhg&L10L)Vtd znBYK(p#>p%alir%;X1Sua$_s1?hbtQ`z@B9^p1Pa?~bSA4-f=F5ClOG1VIo4v1=4~ z2N;b;0;Z9lX0yrVe^1Ob)aAa6L3^z>YiL@0|Lyu3Z$7-wTy1^JW|c}MzIR<0uRnd{ zuGV!3Pe8BLX0Ixb@UZ$MwmqI+qStD(EJ^5FHjB!-Ua!M(9O$}^zGX8RNf5dOlK=dC zdb#r3&@}W~ZIfRc6lRfKu zo9w)ekd#jF@5yEjJ`Y=&005Xyr))ePqgJb-TCGY69^g-alui&p6f~0=ya=Rz3v7Gv z0DTNm0tkX22!bF8f*=Tj*gdxX$ck5gaMz*f&YuWLI~A4zukK(S$|QhScd!X1mH@Br zAPprdfLC{rh7t(?#OMyzp~Mo1bO*lg!}on$ot(zk%fS${Ajmzo5*5I!J4i#BMkufD z;J;~v4v)Hpv*XUnZZAT2piBis{HyNZt_o0M4@e?fcc9D?NFq{qpkx9>vhxY}1@Mv+ U>nM&On*aa+07*qoM6N<$f^e-enE(I) diff --git a/Resources/Textures/Clothing/Head/security.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/security.rsi/inhand-right.png deleted file mode 100644 index 9e8e6cf849e5c7d76cc8690d4fa6cb50354097c8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 686 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEU@G-=aSW-L^LCbD_H74|7G+d7`3$tzcA#%|gnl3dSy{->Cps!F#wZ>vIC zSXp?0iT9zEiBOP=dY_88XWf3+OP}Zdxc_F4^edqjan15vf_MO;)B1}^(X#v=94Jf z^(OYIifzw-S+>p9JKZcCvh?Vk4QsByzF@+;NW&>KO6L@3qriv%pSl0q6y$O+ z0Tta|^{ZutSNF+HJjV+e7-lVFWRN-DsB=1CYM4iT0-Fg7WBMeHGj)s%b^m|7`&*{g zSy7sNUTcy{;?9^wF?#H8mIiSy%XFHwBw&632S-!G>Fr)C7A8b$dfnAqmYH|Q>_NlM z++c7 zcrjO|xS3yGlHtuq8?oQlqlM?QeRGsNw!NPDyM9I9o7?P9fwn1?R9#7a`%hs@)Vj^- zx`I_J{+;moQ1-ZVZsQxv2Mb-)oZkLxxLi8dcX{xYEYmg8HG&-_3=AQwL-`nX?-ZM6 z{hi5G-o|0JVi5x(_yu+!-|HS%xn6!p|6F^)sA{b}oR#a98H6kp-j}lIZFB-rbxCI% z_FNbI(J9O1xp^^9rvrIe+5 SQW$~hkipZ{&t;ucLK6VjzbJ?R diff --git a/Resources/Textures/Clothing/Head/security.rsi/meta.json b/Resources/Textures/Clothing/Head/security.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/security.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/skubhead.rsi/meta.json b/Resources/Textures/Clothing/Head/skubhead.rsi/meta.json deleted file mode 100644 index a56cb9d4bb..0000000000 --- a/Resources/Textures/Clothing/Head/skubhead.rsi/meta.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "", - "copyright": "EOBGames/tgstation", - "states": [ - { - "name": "icon", - "directions": 1, - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "equipped-HELMET", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/Head/sombrero.rsi/meta.json b/Resources/Textures/Clothing/Head/sombrero.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/sombrero.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/surgcap_blue.rsi/meta.json b/Resources/Textures/Clothing/Head/surgcap_blue.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/surgcap_blue.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/surgcap_green.rsi/meta.json b/Resources/Textures/Clothing/Head/surgcap_green.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/surgcap_green.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/surgcap_purple.rsi/meta.json b/Resources/Textures/Clothing/Head/surgcap_purple.rsi/meta.json deleted file mode 100644 index f590b6ee18..0000000000 --- a/Resources/Textures/Clothing/Head/surgcap_purple.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", "states": [{"name": "equipped-HELMET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/syndicate.rsi/headlight.png b/Resources/Textures/Clothing/Head/syndicate.rsi/headlight.png deleted file mode 100644 index 190ce31875afe0e68295468e00724c83faa1b4f1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 430 zcmV;f0a5;mP)L?5To*2Qsxvt>2 zi@y;7XtgggYEcO!CItgc)0h;DAbg*b5L;l2BuP|jbsCKZtJMlk)2P@dq3opWt~OqtS@@ zY>J8#mi>gC^??k_vZyzjv|23|iv^zNQExQ0PoAOO2?zaNs^SEIYPHIEJO)5G_R>DE zssdVX0Qe!&>2%U=x2xTJifCU!k!{7dHn0nf0fWI{_yT!IjX(T?QMdpA002ovPDHLk FV1gSjv(*3q diff --git a/Resources/Textures/Clothing/Head/syndicate.rsi/meta.json b/Resources/Textures/Clothing/Head/syndicate.rsi/meta.json deleted file mode 100644 index 2c642dac49..0000000000 --- a/Resources/Textures/Clothing/Head/syndicate.rsi/meta.json +++ /dev/null @@ -1,200 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/discordia-space/CEV-Eris/raw/40b254106b46981b8ad95ccd5589deb8fa56e765/icons/inventory/head/mob.dmi", - "states": [ - { - "name": "equipped-HELMET", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "visorlit-equipped-HELMET", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "headlight-equipped-HELMET", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "inhand-left", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "inhand-right", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "visorlit-inhand-left", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "visorlit-inhand-right", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "headlight-inhand-left", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "headlight-inhand-right", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "icon", - "directions": 1, - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "visorlit", - "directions": 1, - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "headlight", - "directions": 1, - "delays": [ - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/Head/syndicate.rsi/visorlit.png b/Resources/Textures/Clothing/Head/syndicate.rsi/visorlit.png deleted file mode 100644 index 93e919e6f23fa5db9ea2dba463e9a0f974fd7aba..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 411 zcmV;M0c8G(P)?fKWur6DIFa`$k4&5 zOGyVwh_uvPbZb61$mNdveRsM1p`@hbzf(CiK}va6fa|({j$h?n=<(q`&i3cCX`HlT zY6q_KPPFQF8tiR-OhZq{gb=Y^x9AUsCr`AnKsMZUU2NM<-+P{il#=;u8mmg=5)eYf ztyYU<=Tb`E-(J)4AdD~#9dGNaWak$E@V6eOp%a7=FLyqW3A5n#8B9Z0K84(uFbE?6 zMpd7WPkyvfRekrl1s01%#jaZfVZ`#Q$!Z6y9X#EL^m+N!OeHTa0MH){k0jPLf#W!= zYa$IV@+agLNYFHmcBf0P*JHom<2VlOP8UtnRF?t@RKode8Yf5HXf)VtHo)Nm{9N%uo+|jXQ%DwNuB(mxi7OkJU;PyHT$%aLlq4)a^Es)>y z^WL=X-E3bKuWwmZf9CtPIeVBUnTV%OELC~>Aiw4wQ*Diu{F>aF)!84UcJ9#qaD4+~ z24ltzhAj*xISf$@Qf3Ug47}0}VhwG)4%`lh*%q)aNMr{33{BbcD>pW>q)d9YXw|B7 z<@W-POI%9$ZTnhu!R9T25*OZRD&74yRrK51gQpmbU31gY&U^apT9mx%@51%`Gjwe8 z#8gbyF50+CQ2s^5*EHYbYDd_ff7x+M{?|eONd1Ikt2%a7ZB|n%S|?Pvi#4G6f8RQ< z%&4a^8ik*)FPO^cIg5L<#zXssrIqW2jG15jZ9j75!Ct=)QV)%Zb2!|8&xEs;&%T_N TX8i-0C>T6l{an^LB{Ts5pC9}< diff --git a/Resources/Textures/Clothing/Head/ushankadown.rsi/icon.png b/Resources/Textures/Clothing/Head/ushankadown.rsi/icon.png deleted file mode 100644 index af9c3e7cfc23916c2516b3d7d421044576f96682..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 917 zcmV;G18V$?g=&LM&LYV1vX8{s=#S6|0J_ zkdRPN38jdpNlQ`^M+vz&j;}MmPHc}oEP#rgC&s9oyzBFw_xa8_`pzdTFE8^nB|cU6 zbAWSza{$2HDPZNNA9SzRi=rs>2?`fqcw4yt?bmv{StpY#ad?sjU@S05Th}>A<+%Co zdkjQogq{FM77MMmNU5xn$ZOpB{tMk{l_=L#rpJSXhkXG2yuQKfmoFj?d$_Z5k9Q(7 zM*Pp#0v$t_LZoFlXGZ|5MPh${pFnVwKrqB^GJ{&L^Ngntx6?*mDU(;qL?^-&t1A5- z7j?Bl;?bIJ1fXLJEKVP(^adws8N0imaBzf7A%|6xNEeDv;wrUMtQLt<^%U9~<-B6V zzjFm1++Ss3;Sz(xLx=*TvN`?}*L4BgTgNkxV8k>M0|Br{UgqjPv!m zxOM9rW}`7usU%LjowdXPtyYV*?LY9lUHIKDB(sTRR>o`+N#$f3twwJE{39Vg{OA+z z-M!1w`yY@lD7YOq0s}tmR_l|vj9lV4TOe_m#%vO4X@>ke&%k1IR=EA$kGdeV$z%?g zzA%oFFT3fd3kP< zH{y#F|BjavzN+Jm+HL(_(vA2hipzE9-E@k)Y#nG;V4r8;5b`gYJ8Sd zPNvUpMZ?y6fc1yJ5}S=O8FHXC8*C?bxV9Mm3(n@Cu2xZNRgUE*!O*CooM(CoU%c`X z!O;LaiESQlB}g2m(RCeN*C`cpv~{TH9`dS#)wNYaInPvq-Q5FjfAuA=%ug^kF^=Ek zB43aJkV{n_9+!A?>0=^cndfJwdb5oFEx*^trTGQomm_R#CrD;x27PV-EOsZKeg5g+ zrbC8v_T)d%5-b#?k*?03sRALlM$+x#(Z*x6cAMB_m{Qw?Y#JjPyYT-5wCYW+U5!&c zTE}8@u(G~Os-^;2Zd_k5wyXaOz_ZWI3)-owXZLZq}6b9g*s;v+bQkN{`4qSkR)pN#Q*ge4;qLdigf$~099 zQQ}95mH(5FED|I0cs9s3Ktx1DL_|bH_r@{3z-qM;XvX#8I5w*PAkz$cJxX6NOOvMS zxA|guHseg|UrMwKWNFd_VbuBGVzchOi7ZVT-*Y?bmsNdI|0cUYFr6TnPVn~e*_JQi zK0lotLlFyre)>u&r`YaLYvf8xxHQF8scLB04Sx5x>mhE z0Qk-XT^`CH0k~FK)ot1L-1g>=&r7?x*PtHc%BpUU&7=W=GFg6BY>;@1K5fKp)5fS~jLFU>ena(<&n>D`s8KIk68taqi zd83qa{#qP0SuC+C1M~{A@41+~_|RpO6=SOc0Q@YJ*84-dZ@?r7Rs|pkBLrdeYqi*P z^Mo~H!111g9B7Ko8i08KtjYjQ?=~r`+IRznl>v}sO&925x`D#l4A5f$VD=qgZ3al~ m6tOk~q%Z(uH(+dcAAm1L7MZ0xP*cPJ0000RPN%&D(v@!f5B-GUu0efAn#5(( zk7x6R_qXBbyEgtG2}qN;jK-7JliQqxG>OYF@LP}9<3IZdM57_1(GYJRpR(-||LO5$ zYa$a+-F+d1mu+{*wmZDPzMyIgA-rfjY3*VrUAp@K5C;B9{3l}o00<$h?dHEx9F73K zdqUN2ay9|3%J+qAhk-9IUfo}JbJJio$mRP&ZtDKJf%?ZZiAxC4c=BwswstC%@uPjZ zt{>x@U_W8FiwQ6tfN4yC=>Uj`h=_=Yh=~5%#ZTO>e>J}3?!O3WmB!8$N@w$hw_Gku zSL%zMdq7o<4Fey;=MYuf*6MMSP6<#;(P{;@tq5r=tw%szc#!W4w5=|&m3Dc&I2`50 zyYk$tv}OU<@cKf{IHdm`4S&W~qkc&ZhAJ->uyk%fy$dqqWUwEg?8r&`PbHJRTv z;;%2VVmi03;|aruntJv#;tT;X?0ar+=3VrUAyDR#^S%FT?y79}sNa;aqLzgZXwmAj zXsh@Y{r3Yo8Mrw2ZB_d&H+Vv*N-lZ>(eaqRC{{@X0-!SC(FjzB43m@P+aExUG z^9DmgLeHMCu6WMe@YeR%!wi{{i;_jAHIiHAFMr3g^U&;KrvH}G0msajPdK-X;fqj+ zwS!Ah_>MbEb1zNHYra4Ck<#=s@m2i|>uqCAEiakf&e|DsOMdZ1+XX(8=l!vplKpm; x_=@JJ1IrTAtoPWgy(E&|znKUJVR7~|=>wU|x*RytKLewg!PC{xWt~$(6954`+4}$h diff --git a/Resources/Textures/Clothing/Head/ushankaup.rsi/icon.png b/Resources/Textures/Clothing/Head/ushankaup.rsi/icon.png deleted file mode 100644 index e89f3a67cbd909e97790f2619a96c9d7baf40183..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 906 zcmV;519kj~P)BR-?FTKTl(zJ{tVEIWU1SMO2u|W)Te65O(EZ#xaLfek24!7=^~1egKPdfp>FbdvW~|*zvy=V~pFFwm>-pW!bKj4!yu8fI zl=xD!HvyUeO#nb$&!(@w`BqUOVlsB{_Ut*~-}SBE78P5Ek%Rpx;lyL!`*2=(R-6|C zxV3ask%3$?g;r(Yvrj%%M6rt3X{Ayw(&ezSaX-rSOVflFzE)a{4kD3J|>;Z;^`9c`ui|Y=CAM;`W6iii;0=>VHR$#(0j_s&iWb~_x31rtb8 zp0B0@UWbcS^(LYyQZ5w;27`S0#Uihdp26aAbK!%tB%^ycyiT%(#~5S#ym@{Gv0Nk> z*{um6)S8Ctw^x)*rp(X3+(4_*V6obW?zN+cHJRHugy zTRYB9D}KN4#4^+@!M&|*^g11_Is+D$k4#1ap@P|B!sGF9erg82K?f=km7pfR7bAFj zly++yQYK3-m*c2XRbJSE|LXT&e^BCikygE#wL5FXcD5NiGflNxWzgSCws44)Oc8mo zLx0~OXQw7vTw3Dt+{LH5@Z6nneEO0wJNJ$tNfB%|1ILP*_;#3Xmy3=z9igRLw6*Jb zWAZKRHXDg_p24B96XVs@37@7bS3ed2o;>+n85x@(c7K;Y)>jxBevMK^pjbR49#2uI z9Mk`5&xvvV_biwk4|3zj?+8B(qt>({S0Qzfz~%DdcDr%dZOG+f;{bw_Q^Le}07Vv1 zM1@p*A8ThDKP`MuH2Q#*PzaOL);IuwEAL+uCQb(!9U4H9D;zvZ(K9f@-Me=f7#hLa zs%k6%z}&l+g<-#wz~Cz+_oL{v6=pAG#XZXK7Y+&)UXdpJ;@si gP_LQ*O@JoAKjR%Zl5O_76951J07*qoM6N<$f^^xe^#A|> diff --git a/Resources/Textures/Clothing/Head/ushankaup.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/ushankaup.rsi/inhand-left.png deleted file mode 100644 index ff1ef50f1fb40fc9dbe179e6c96db7eca3232d37..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 467 zcmV;^0WAKBP)YlL_|bHL_}kAqT4_m#|FaaFAPJi`ln{XaMzjX2A7L@ zR#$fa_|)3tbnACzYzT-*mVCa$pU!IktIDG&DqUCAzq*_N045jbyR!7_8vwA`rltCW z90Gpe!4Et)p0I*PrguH5uBjV3@uvZf&0%7Me&WRpP+ zfj$QL6>td?U^@WYm;l=W*f#nE5D^g(5fKs5_#AZ(z7O4L_qJ*C(a#7CYH6&AT2-pr zKcKU3z^NXvT+B0nIz#bL=lizlOb;mfyMml2VV`x!Do*u)s@*4DH(>ndOb;kN-L`!M zT{x3~qPBemT{xKlz}!9pr``dFzy#P1z&0kpb^x|90k#9M?FVs_gD?30H97zQ002ov JPDHLkV1jiY(f9xW diff --git a/Resources/Textures/Clothing/Head/ushankaup.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/ushankaup.rsi/inhand-right.png deleted file mode 100644 index 62da932c3a8327a74aab66b2aca95d99e289ad28..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 454 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEVC?mDaSW-L^Y)g$|6vCSwhzl$ zPB=BK$=vTOx^CIFK9{i>a%TzdWoG<^Vx4w7h z>K{@s??;{Ldll{AvT5JlS$W%fFK;gtG>NSIUUv5SaV^FUk89Qd{&MbO#cThSOjem*yVf1Q?phzG?2eBxf#L?rK*!=Yn%jH8|LZa7-G?zoFKuvg;7W$iD}XS z6NR)c2cZCFP89{t4-Fm69!zWnOk6n*N7z*u>lD)5t{vhzx;P<&LA0bX^97Uf1y-I5 ptQ8knb1tyjE#Q_>c%YNS$Z#{C22WQ%mvv4FO#t53WPShu literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Mask/breath.rsi/inhand-right.png b/Resources/Textures/Clothing/Mask/breath.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..7f71ac4831b58c79ba89a5b728fa57cd97ee086b GIT binary patch literal 298 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0L3?#3!&-4XSJOMr-u0XnL+qN_R|Lf@+SNt-) z2jnxB1o;IsI6S+N2IOQ{g+!FNq!uR^WfqiV=I1dmRLltuD<~@c{w28JeBxf#L?rK*!=Yn%jH8|vxe7-G?zoFKt!!obO~jH@Fd zrb*xg3%8F0hey*%W)4OYy*n(7gN!d5dnwF$H0j8s5QX5C7Ix+vEuuTSja4_VkXX{) zZM;^)&|LJ0*^{8Kg0IDlv$+`}Zc6o3OggCyv^Lb!#WBR9H#tFqbqk}ALK4%Y111V- zT@FG4%$zC;oCOUXY$}Yb7L2S?3Q3HU7{pKTr0Dtt*l@M61vrY&Xwx%bj&)#+Z2*$Y ju?dX39GK(W1^F57%wT8U^(v_lXaR$#tDnm{r-UW|<9=U# literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Mask/sterile.rsi/inhand-right.png b/Resources/Textures/Clothing/Mask/sterile.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..25254aa71f013bdc23d2057d93394fd735a7c4f7 GIT binary patch literal 294 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0L3?#3!&-4XSoB=)|u0XnL+qN_R|L=A64+nA> zOM?7@862M7NCR@Rt3o15TvCgZi!uvJGV}8o7%JujhZPi+e*Y3&@bT*tEpJ_|b7#&6 zZwNKGX#C)j&UqirlMF>Yy*n(7gN!d5dnwF$H0j8s5QX5C7Ix+vEuuTSja4_VkXX{) zZM;^)&|LJ0*^{8Kg0IDlv$+`}Zc6o3OggCyv^K=k#WBR9H#tFq)r5hQV;NURLQIpu z2^MZ22M&)WPxclD?inHu91b%WIT!^uNP0v?9Axs)b4crNa%2y=z-n}nRplaU#06HC k3#={|SR*d7u9&CAu%w(tvHMF;2+({6Pgg&ebxsLQ00~`V82|tP literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Mask/sterile.rsi/meta.json b/Resources/Textures/Clothing/Mask/sterile.rsi/meta.json new file mode 100644 index 0000000000..48c2d3d38e --- /dev/null +++ b/Resources/Textures/Clothing/Mask/sterile.rsi/meta.json @@ -0,0 +1,31 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-MASK", + "directions": 4 + }, + { + "name": "up-equipped-MASK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Masks/mask_sterile.rsi/up-equipped-MASK.png b/Resources/Textures/Clothing/Mask/sterile.rsi/up-equipped-MASK.png similarity index 100% rename from Resources/Textures/Clothing/Masks/mask_sterile.rsi/up-equipped-MASK.png rename to Resources/Textures/Clothing/Mask/sterile.rsi/up-equipped-MASK.png diff --git a/Resources/Textures/Clothing/Masks/mask_breath.rsi/meta.json b/Resources/Textures/Clothing/Masks/mask_breath.rsi/meta.json deleted file mode 100644 index 06a2e40339..0000000000 --- a/Resources/Textures/Clothing/Masks/mask_breath.rsi/meta.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/discordia-space/CEV-Eris at commit 9a3a3a180344460263e8df7ea2565128e07b86b5", - "states": [ - { - "name": "icon", - "directions": 1, - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "equipped-MASK", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/Masks/mask_clown.rsi/meta.json b/Resources/Textures/Clothing/Masks/mask_clown.rsi/meta.json deleted file mode 100644 index 0fadeb20fc..0000000000 --- a/Resources/Textures/Clothing/Masks/mask_clown.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "Taken from https://github.com/vgstation-coders/vgstation13 at commit 125c975f1b3bf9826b37029e9ab5a5f89e975a7e", "states": [{"name": "equipped-MASK", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Masks/mask_gas.rsi/equipped-MASK.png b/Resources/Textures/Clothing/Masks/mask_gas.rsi/equipped-MASK.png deleted file mode 100644 index 39c36ed017892241bb444610996ee1246002c0cd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 597 zcmV-b0;>IqP)L_|bHL_|bHL_|bOGgp0pPEJa*GV>^Ed~s%IJQ~9Lx`WftwV&x9%c>E`)F&K1 z)cvH}5(hz)9M!**AHQA~zX{+Rix0w?YNLv&?6h~V<)?Ep%u*TG2PFNTmGpa)e0(-V zJ^)a~?CO!C%vd}IlP#dS;sRx+%m8P$5=Clft0Qpp&{?Y`sK_t?Xz2z3z_M?JE+g(1tZr=M^yI?fv-1m% ziTAe;U*dp33-rr#4}W^Rb4>UZ2RIYx_LPF5*g#W$#Q}i?jAkuhR7(zjeZGfnnL`gC m;lu8M^EcB^LPA1f#P|lm*^cGdq-YcX0000hIH(}1ZDydVu9!e@BnU*f+P7*L_tefz!Z@! zrJx}G9LduE*Io1U>9eo8CjkHe00000KnKpbx{u60awX}^GR!$wPon7HY>}Bdr_?#k zXEXC9oLdDogDw|8(&KF{N$E=@NwxQW)FpG}z5LUiw78L8ttQ?xTYx0JZ#L5BMSEVC zU!618Whwt~t@-jz-@BcB=fp#1SHOEes;Wv^9_#*D%JNtt1ReYJo6Hb`vOL!1bgIdC zY&CA{=;8j7BuRTui=r^e?;{fc00000000007?`e4@TUEMQ?uwJm_Co6l2spJunUlE z`Ur!5YHt35kL^}halCJm{IicR=mki02LJ$F`~vqfaD$|A3(Noj002ovPDHLkV1kFa Boa6ui diff --git a/Resources/Textures/Clothing/Masks/mask_gas.rsi/inhand-right.png b/Resources/Textures/Clothing/Masks/mask_gas.rsi/inhand-right.png deleted file mode 100644 index 2423203a781ce32ead275230f4710191046f3e04..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 360 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEVAS_?aSW-L^Y)glUrT^U+r#{x zR?z@!){B>J1nh1SHZu_0%=P^Nm&RL@O-#k&4$GE>_#E)bS#y^m%(zvu?pVT{?0d_b z98Q#&3pUz)cJ^g z*?yyFsRqx~`*AP+tdpwQ|Cz($d7AHK4eg}6HXf0JtJh`AetPE}B+_Oz_xx1RjkA_X zp0VCBL&bC3^A$R$o8$I8iI0Og4@g!VY%lvc;oi@N*qS+#FD~Df`+x5G%tpIvQHM{( zX$#KZ+r8~4_q}V`bB}JEH^=%1P{y9ik6(`AgMAHSyME3CPqCT#AhSGO{an^LB{Ts5 D3l^H% diff --git a/Resources/Textures/Clothing/Masks/mask_gas.rsi/meta.json b/Resources/Textures/Clothing/Masks/mask_gas.rsi/meta.json deleted file mode 100644 index a30198f505..0000000000 --- a/Resources/Textures/Clothing/Masks/mask_gas.rsi/meta.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/discordia-space/CEV-Eris at commit 9f4bd6e0d5e457b6a36f3c505a8194116a666d6f", - "states": [ - { - "name": "icon", - "directions": 1, - "delays": [ [ 1.0 ] ] - }, - { - "name": "equipped-MASK", - "directions": 4, - "delays": [ - [ 1.0 ], - [ 1.0 ], - [ 1.0 ], - [ 1.0 ] - ] - }, - { - "name": "inhand-left", - "directions": 4, - "delays": [ - [ 1.0 ], - [ 1.0 ], - [ 1.0 ], - [ 1.0 ] - ] - }, - { - "name": "inhand-right", - "directions": 4, - "delays": [ - [ 1.0 ], - [ 1.0 ], - [ 1.0 ], - [ 1.0 ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/Masks/mask_gasalt.rsi/meta.json b/Resources/Textures/Clothing/Masks/mask_gasalt.rsi/meta.json deleted file mode 100644 index f8f285dfa4..0000000000 --- a/Resources/Textures/Clothing/Masks/mask_gasalt.rsi/meta.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/tgstation", - "states": [ - { - "name": "icon", - "directions": 1, - "delays": [ [ 1.0 ] ] - }, - { - "name": "equipped-MASK", - "directions": 4, - "delays": [ - [ 1.0 ], - [ 1.0 ], - [ 1.0 ], - [ 1.0 ] - ] - }, - { - "name": "inhand-left", - "directions": 4, - "delays": [ - [ 1.0 ], - [ 1.0 ], - [ 1.0 ], - [ 1.0 ] - ] - }, - { - "name": "inhand-right", - "directions": 4, - "delays": [ - [ 1.0 ], - [ 1.0 ], - [ 1.0 ], - [ 1.0 ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/Masks/mask_joy.rsi/meta.json b/Resources/Textures/Clothing/Masks/mask_joy.rsi/meta.json deleted file mode 100644 index f9b8c223d5..0000000000 --- a/Resources/Textures/Clothing/Masks/mask_joy.rsi/meta.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/tgstation", - "states": [ - { - "name": "icon", - "directions": 1, - }, - { - "name": "equipped-MASK", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/Masks/mask_mime.rsi/meta.json b/Resources/Textures/Clothing/Masks/mask_mime.rsi/meta.json deleted file mode 100644 index f9b8c223d5..0000000000 --- a/Resources/Textures/Clothing/Masks/mask_mime.rsi/meta.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/tgstation", - "states": [ - { - "name": "icon", - "directions": 1, - }, - { - "name": "equipped-MASK", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/Masks/mask_sterile.rsi/meta.json b/Resources/Textures/Clothing/Masks/mask_sterile.rsi/meta.json deleted file mode 100644 index 7ec693eda3..0000000000 --- a/Resources/Textures/Clothing/Masks/mask_sterile.rsi/meta.json +++ /dev/null @@ -1,51 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da", - "states": [ - { - "name": "icon", - "directions": 1, - }, - { - "name": "equipped-MASK", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "up-equipped-MASK", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/Mobs/Back/corgi_back.rsi/meta.json b/Resources/Textures/Clothing/Mobs/Back/corgi_back.rsi/meta.json index 157fe60c95..e19b37f8de 100644 --- a/Resources/Textures/Clothing/Mobs/Back/corgi_back.rsi/meta.json +++ b/Resources/Textures/Clothing/Mobs/Back/corgi_back.rsi/meta.json @@ -1 +1,173 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/tgstation/tgstation/commit/53d1f1477d22a11a99c6c6924977cd431075761b", "states": [{"name": "armor", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "cardborg", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "deathsquad", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "fire_extinguisher0", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "fire_extinguisher1", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "ian", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "oxygen", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "petcollar", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "walkietalkie", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} \ No newline at end of file +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/53d1f1477d22a11a99c6c6924977cd431075761b", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "armor", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] + ] + }, + { + "name": "cardborg", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] + ] + }, + { + "name": "deathsquad", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] + ] + }, + { + "name": "fire_extinguisher0", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] + ] + }, + { + "name": "fire_extinguisher1", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] + ] + }, + { + "name": "ian", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] + ] + }, + { + "name": "oxygen", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] + ] + }, + { + "name": "petcollar", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] + ] + }, + { + "name": "walkietalkie", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] + ] + } + ] +} diff --git a/Resources/Textures/Clothing/Mobs/Hats/corgi_hats.rsi/meta.json b/Resources/Textures/Clothing/Mobs/Hats/corgi_hats.rsi/meta.json index cffa96ab1f..9de87b0e34 100644 --- a/Resources/Textures/Clothing/Mobs/Hats/corgi_hats.rsi/meta.json +++ b/Resources/Textures/Clothing/Mobs/Hats/corgi_hats.rsi/meta.json @@ -1 +1,737 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/tgstation/tgstation/commit/53d1f1477d22a11a99c6c6924977cd431075761b", "states": [{"name": "beret", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "blackscarf", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "bunny", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "captain", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "cardborg_h", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "cargosoft", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "chef", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "christmasscarf", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "clown", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "detective", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "festive", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "hardhat0_cakehat", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "hardhat0_reindeer", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "hardhat0_white", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "hardhat0_yellow", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "hardhat1_cakehat", "directions": 4, "delays": [[0.1, 0.1, 0.1, 0.1], [0.1, 0.1, 0.1, 0.1], [0.1, 0.1, 0.1, 0.1], [0.1, 0.1, 0.1, 0.1]]}, {"name": "hardhat1_white", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "hardhat1_yellow", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "helmet", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "hopcap", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "kitty", "directions": 4, "delays": [[0.1, 0.1, 0.1, 0.1], [0.1, 0.1, 0.1, 0.1], [0.1, 0.1, 0.1, 0.1], [0.1, 0.1, 0.1, 0.1]]}, {"name": "nursehat", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "paper", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "paper_words", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "pirate", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "policehelm", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "redwizard", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "santahat", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "scarf", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "sheet", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "sheriff", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "sombrero", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "sun", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "tophat", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "ushankadown", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "ushankaup", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "wizard", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "wizard-fake", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "zebrascarf", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} \ No newline at end of file +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/53d1f1477d22a11a99c6c6924977cd431075761b", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "beret", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] + ] + }, + { + "name": "blackscarf", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] + ] + }, + { + "name": "bunny", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] + ] + }, + { + "name": "captain", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] + ] + }, + { + "name": "cardborg_h", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] + ] + }, + { + "name": "cargosoft", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] + ] + }, + { + "name": "chef", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] + ] + }, + { + "name": "christmasscarf", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] + ] + }, + { + "name": "clown", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] + ] + }, + { + "name": "detective", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] + ] + }, + { + "name": "festive", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] + ] + }, + { + "name": "hardhat0_cakehat", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] + ] + }, + { + "name": "hardhat0_reindeer", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] + ] + }, + { + "name": "hardhat0_white", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] + ] + }, + { + "name": "hardhat0_yellow", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] + ] + }, + { + "name": "hardhat1_cakehat", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "hardhat1_white", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] + ] + }, + { + "name": "hardhat1_yellow", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] + ] + }, + { + "name": "helmet", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] + ] + }, + { + "name": "hopcap", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] + ] + }, + { + "name": "kitty", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "nursehat", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] + ] + }, + { + "name": "paper", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] + ] + }, + { + "name": "paper_words", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] + ] + }, + { + "name": "pirate", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] + ] + }, + { + "name": "policehelm", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] + ] + }, + { + "name": "redwizard", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] + ] + }, + { + "name": "santahat", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] + ] + }, + { + "name": "scarf", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] + ] + }, + { + "name": "sheet", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] + ] + }, + { + "name": "sheriff", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] + ] + }, + { + "name": "sombrero", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] + ] + }, + { + "name": "sun", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] + ] + }, + { + "name": "tophat", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] + ] + }, + { + "name": "ushankadown", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] + ] + }, + { + "name": "ushankaup", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] + ] + }, + { + "name": "wizard", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] + ] + }, + { + "name": "wizard-fake", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] + ] + }, + { + "name": "zebrascarf", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] + ] + } + ] +} diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_NT.rsi/sheetNT-equipped-NECK.png b/Resources/Textures/Clothing/Neck/Bedsheets/NT.rsi/equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_NT.rsi/sheetNT-equipped-NECK.png rename to Resources/Textures/Clothing/Neck/Bedsheets/NT.rsi/equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_NT.rsi/sheetNT-inhand-left.png b/Resources/Textures/Clothing/Neck/Bedsheets/NT.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_NT.rsi/sheetNT-inhand-left.png rename to Resources/Textures/Clothing/Neck/Bedsheets/NT.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_NT.rsi/sheetNT-inhand-right.png b/Resources/Textures/Clothing/Neck/Bedsheets/NT.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_NT.rsi/sheetNT-inhand-right.png rename to Resources/Textures/Clothing/Neck/Bedsheets/NT.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/NT.rsi/meta.json b/Resources/Textures/Clothing/Neck/Bedsheets/NT.rsi/meta.json new file mode 100644 index 0000000000..f21b1b6061 --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Bedsheets/NT.rsi/meta.json @@ -0,0 +1,23 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-NECK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_USA.rsi/sheetUSA-equipped-NECK.png b/Resources/Textures/Clothing/Neck/Bedsheets/USA.rsi/equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_USA.rsi/sheetUSA-equipped-NECK.png rename to Resources/Textures/Clothing/Neck/Bedsheets/USA.rsi/equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_USA.rsi/sheetUSA-inhand-left.png b/Resources/Textures/Clothing/Neck/Bedsheets/USA.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_USA.rsi/sheetUSA-inhand-left.png rename to Resources/Textures/Clothing/Neck/Bedsheets/USA.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_USA.rsi/sheetUSA-inhand-right.png b/Resources/Textures/Clothing/Neck/Bedsheets/USA.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_USA.rsi/sheetUSA-inhand-right.png rename to Resources/Textures/Clothing/Neck/Bedsheets/USA.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/USA.rsi/meta.json b/Resources/Textures/Clothing/Neck/Bedsheets/USA.rsi/meta.json new file mode 100644 index 0000000000..f21b1b6061 --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Bedsheets/USA.rsi/meta.json @@ -0,0 +1,23 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-NECK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_black.rsi/sheetblack-equipped-NECK.png b/Resources/Textures/Clothing/Neck/Bedsheets/black.rsi/equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_black.rsi/sheetblack-equipped-NECK.png rename to Resources/Textures/Clothing/Neck/Bedsheets/black.rsi/equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_black.rsi/sheetblack-inhand-left.png b/Resources/Textures/Clothing/Neck/Bedsheets/black.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_black.rsi/sheetblack-inhand-left.png rename to Resources/Textures/Clothing/Neck/Bedsheets/black.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_black.rsi/sheetblack-inhand-right.png b/Resources/Textures/Clothing/Neck/Bedsheets/black.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_black.rsi/sheetblack-inhand-right.png rename to Resources/Textures/Clothing/Neck/Bedsheets/black.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/black.rsi/meta.json b/Resources/Textures/Clothing/Neck/Bedsheets/black.rsi/meta.json new file mode 100644 index 0000000000..f21b1b6061 --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Bedsheets/black.rsi/meta.json @@ -0,0 +1,23 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-NECK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_blue.rsi/sheetblue-equipped-NECK.png b/Resources/Textures/Clothing/Neck/Bedsheets/blue.rsi/equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_blue.rsi/sheetblue-equipped-NECK.png rename to Resources/Textures/Clothing/Neck/Bedsheets/blue.rsi/equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_blue.rsi/sheetblue-inhand-left.png b/Resources/Textures/Clothing/Neck/Bedsheets/blue.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_blue.rsi/sheetblue-inhand-left.png rename to Resources/Textures/Clothing/Neck/Bedsheets/blue.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_blue.rsi/sheetblue-inhand-right.png b/Resources/Textures/Clothing/Neck/Bedsheets/blue.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_blue.rsi/sheetblue-inhand-right.png rename to Resources/Textures/Clothing/Neck/Bedsheets/blue.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/blue.rsi/meta.json b/Resources/Textures/Clothing/Neck/Bedsheets/blue.rsi/meta.json new file mode 100644 index 0000000000..f21b1b6061 --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Bedsheets/blue.rsi/meta.json @@ -0,0 +1,23 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-NECK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_brown.rsi/sheetbrown-equipped-NECK.png b/Resources/Textures/Clothing/Neck/Bedsheets/brown.rsi/equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_brown.rsi/sheetbrown-equipped-NECK.png rename to Resources/Textures/Clothing/Neck/Bedsheets/brown.rsi/equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_brown.rsi/sheetbrown-inhand-left.png b/Resources/Textures/Clothing/Neck/Bedsheets/brown.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_brown.rsi/sheetbrown-inhand-left.png rename to Resources/Textures/Clothing/Neck/Bedsheets/brown.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_brown.rsi/sheetbrown-inhand-right.png b/Resources/Textures/Clothing/Neck/Bedsheets/brown.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_brown.rsi/sheetbrown-inhand-right.png rename to Resources/Textures/Clothing/Neck/Bedsheets/brown.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/brown.rsi/meta.json b/Resources/Textures/Clothing/Neck/Bedsheets/brown.rsi/meta.json new file mode 100644 index 0000000000..f21b1b6061 --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Bedsheets/brown.rsi/meta.json @@ -0,0 +1,23 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-NECK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_captain.rsi/sheetcaptain-equipped-NECK.png b/Resources/Textures/Clothing/Neck/Bedsheets/captain.rsi/equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_captain.rsi/sheetcaptain-equipped-NECK.png rename to Resources/Textures/Clothing/Neck/Bedsheets/captain.rsi/equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_captain.rsi/sheetcaptain-inhand-left.png b/Resources/Textures/Clothing/Neck/Bedsheets/captain.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_captain.rsi/sheetcaptain-inhand-left.png rename to Resources/Textures/Clothing/Neck/Bedsheets/captain.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_captain.rsi/sheetcaptain-inhand-right.png b/Resources/Textures/Clothing/Neck/Bedsheets/captain.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_captain.rsi/sheetcaptain-inhand-right.png rename to Resources/Textures/Clothing/Neck/Bedsheets/captain.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/captain.rsi/meta.json b/Resources/Textures/Clothing/Neck/Bedsheets/captain.rsi/meta.json new file mode 100644 index 0000000000..f21b1b6061 --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Bedsheets/captain.rsi/meta.json @@ -0,0 +1,23 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-NECK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_ce.rsi/sheetce-equipped-NECK.png b/Resources/Textures/Clothing/Neck/Bedsheets/ce.rsi/equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_ce.rsi/sheetce-equipped-NECK.png rename to Resources/Textures/Clothing/Neck/Bedsheets/ce.rsi/equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_ce.rsi/sheetce-inhand-left.png b/Resources/Textures/Clothing/Neck/Bedsheets/ce.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_ce.rsi/sheetce-inhand-left.png rename to Resources/Textures/Clothing/Neck/Bedsheets/ce.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_ce.rsi/sheetce-inhand-right.png b/Resources/Textures/Clothing/Neck/Bedsheets/ce.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_ce.rsi/sheetce-inhand-right.png rename to Resources/Textures/Clothing/Neck/Bedsheets/ce.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/ce.rsi/meta.json b/Resources/Textures/Clothing/Neck/Bedsheets/ce.rsi/meta.json new file mode 100644 index 0000000000..f21b1b6061 --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Bedsheets/ce.rsi/meta.json @@ -0,0 +1,23 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-NECK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_centcom.rsi/sheetcentcom-equipped-NECK.png b/Resources/Textures/Clothing/Neck/Bedsheets/centcom.rsi/equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_centcom.rsi/sheetcentcom-equipped-NECK.png rename to Resources/Textures/Clothing/Neck/Bedsheets/centcom.rsi/equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_centcom.rsi/sheetcentcom-inhand-left.png b/Resources/Textures/Clothing/Neck/Bedsheets/centcom.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_centcom.rsi/sheetcentcom-inhand-left.png rename to Resources/Textures/Clothing/Neck/Bedsheets/centcom.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_centcom.rsi/sheetcentcom-inhand-right.png b/Resources/Textures/Clothing/Neck/Bedsheets/centcom.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_centcom.rsi/sheetcentcom-inhand-right.png rename to Resources/Textures/Clothing/Neck/Bedsheets/centcom.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/centcom.rsi/meta.json b/Resources/Textures/Clothing/Neck/Bedsheets/centcom.rsi/meta.json new file mode 100644 index 0000000000..f21b1b6061 --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Bedsheets/centcom.rsi/meta.json @@ -0,0 +1,23 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-NECK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_clown.rsi/sheetclown-equipped-NECK.png b/Resources/Textures/Clothing/Neck/Bedsheets/clown.rsi/equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_clown.rsi/sheetclown-equipped-NECK.png rename to Resources/Textures/Clothing/Neck/Bedsheets/clown.rsi/equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/clown.rsi/meta.json b/Resources/Textures/Clothing/Neck/Bedsheets/clown.rsi/meta.json new file mode 100644 index 0000000000..f21b1b6061 --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Bedsheets/clown.rsi/meta.json @@ -0,0 +1,23 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-NECK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_cmo.rsi/sheetcmo-equipped-NECK.png b/Resources/Textures/Clothing/Neck/Bedsheets/cmo.rsi/equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_cmo.rsi/sheetcmo-equipped-NECK.png rename to Resources/Textures/Clothing/Neck/Bedsheets/cmo.rsi/equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_cmo.rsi/sheetcmo-inhand-left.png b/Resources/Textures/Clothing/Neck/Bedsheets/cmo.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_cmo.rsi/sheetcmo-inhand-left.png rename to Resources/Textures/Clothing/Neck/Bedsheets/cmo.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_cmo.rsi/sheetcmo-inhand-right.png b/Resources/Textures/Clothing/Neck/Bedsheets/cmo.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_cmo.rsi/sheetcmo-inhand-right.png rename to Resources/Textures/Clothing/Neck/Bedsheets/cmo.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/cmo.rsi/meta.json b/Resources/Textures/Clothing/Neck/Bedsheets/cmo.rsi/meta.json new file mode 100644 index 0000000000..f21b1b6061 --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Bedsheets/cmo.rsi/meta.json @@ -0,0 +1,23 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-NECK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_cosmos.rsi/sheetcosmos-equipped-NECK.png b/Resources/Textures/Clothing/Neck/Bedsheets/cosmos.rsi/equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_cosmos.rsi/sheetcosmos-equipped-NECK.png rename to Resources/Textures/Clothing/Neck/Bedsheets/cosmos.rsi/equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_cosmos.rsi/sheetcosmos-inhand-left.png b/Resources/Textures/Clothing/Neck/Bedsheets/cosmos.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_cosmos.rsi/sheetcosmos-inhand-left.png rename to Resources/Textures/Clothing/Neck/Bedsheets/cosmos.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_cosmos.rsi/sheetcosmos-inhand-right.png b/Resources/Textures/Clothing/Neck/Bedsheets/cosmos.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_cosmos.rsi/sheetcosmos-inhand-right.png rename to Resources/Textures/Clothing/Neck/Bedsheets/cosmos.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_cosmos.rsi/meta.json b/Resources/Textures/Clothing/Neck/Bedsheets/cosmos.rsi/meta.json similarity index 84% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_cosmos.rsi/meta.json rename to Resources/Textures/Clothing/Neck/Bedsheets/cosmos.rsi/meta.json index 4085e1b752..23ab5fd0ba 100644 --- a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_cosmos.rsi/meta.json +++ b/Resources/Textures/Clothing/Neck/Bedsheets/cosmos.rsi/meta.json @@ -1,14 +1,14 @@ { "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da", "size": { "x": 32, "y": 32 }, - "license": "CCBYNA3", - "copyright": "https://github.com/tgstation/tgstation", "states": [ { - "name": "sheetcosmos-equipped-NECK", + "name": "equipped-NECK", "directions": 4, "delays": [ [ @@ -46,7 +46,7 @@ ] }, { - "name": "sheetcosmos-inhand-left", + "name": "inhand-left", "directions": 4, "delays": [ [ @@ -76,7 +76,7 @@ ] }, { - "name": "sheetcosmos-inhand-right", + "name": "inhand-right", "directions": 4, "delays": [ [ diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_cult.rsi/sheetcult-equipped-NECK.png b/Resources/Textures/Clothing/Neck/Bedsheets/cult.rsi/equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_cult.rsi/sheetcult-equipped-NECK.png rename to Resources/Textures/Clothing/Neck/Bedsheets/cult.rsi/equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_cult.rsi/sheetcult-inhand-left.png b/Resources/Textures/Clothing/Neck/Bedsheets/cult.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_cult.rsi/sheetcult-inhand-left.png rename to Resources/Textures/Clothing/Neck/Bedsheets/cult.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_cult.rsi/sheetcult-inhand-right.png b/Resources/Textures/Clothing/Neck/Bedsheets/cult.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_cult.rsi/sheetcult-inhand-right.png rename to Resources/Textures/Clothing/Neck/Bedsheets/cult.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_wiz.rsi/meta.json b/Resources/Textures/Clothing/Neck/Bedsheets/cult.rsi/meta.json similarity index 50% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_wiz.rsi/meta.json rename to Resources/Textures/Clothing/Neck/Bedsheets/cult.rsi/meta.json index c6f3cf5818..a3a72c25ff 100644 --- a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_wiz.rsi/meta.json +++ b/Resources/Textures/Clothing/Neck/Bedsheets/cult.rsi/meta.json @@ -1,14 +1,14 @@ { "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da", "size": { "x": 32, "y": 32 }, - "license": "CCBYNA3", - "copyright": "https://github.com/tgstation/tgstation", "states": [ { - "name": "sheetwiz-equipped-NECK", + "name": "equipped-NECK", "directions": 4, "delays": [ [ @@ -38,40 +38,12 @@ ] }, { - "name": "sheetwiz-inhand-left", + "name": "inhand-left", "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] }, { - "name": "sheetwiz-inhand-right", + "name": "inhand-right", "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] } ] } diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_green.rsi/sheetgreen-equipped-NECK.png b/Resources/Textures/Clothing/Neck/Bedsheets/green.rsi/equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_green.rsi/sheetgreen-equipped-NECK.png rename to Resources/Textures/Clothing/Neck/Bedsheets/green.rsi/equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_green.rsi/sheetgreen-inhand-left.png b/Resources/Textures/Clothing/Neck/Bedsheets/green.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_green.rsi/sheetgreen-inhand-left.png rename to Resources/Textures/Clothing/Neck/Bedsheets/green.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_green.rsi/sheetgreen-inhand-right.png b/Resources/Textures/Clothing/Neck/Bedsheets/green.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_green.rsi/sheetgreen-inhand-right.png rename to Resources/Textures/Clothing/Neck/Bedsheets/green.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/green.rsi/meta.json b/Resources/Textures/Clothing/Neck/Bedsheets/green.rsi/meta.json new file mode 100644 index 0000000000..f21b1b6061 --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Bedsheets/green.rsi/meta.json @@ -0,0 +1,23 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-NECK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_grey.rsi/sheetgrey-equipped-NECK.png b/Resources/Textures/Clothing/Neck/Bedsheets/grey.rsi/equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_grey.rsi/sheetgrey-equipped-NECK.png rename to Resources/Textures/Clothing/Neck/Bedsheets/grey.rsi/equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_grey.rsi/sheetgrey-inhand-left.png b/Resources/Textures/Clothing/Neck/Bedsheets/grey.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_grey.rsi/sheetgrey-inhand-left.png rename to Resources/Textures/Clothing/Neck/Bedsheets/grey.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_grey.rsi/sheetgrey-inhand-right.png b/Resources/Textures/Clothing/Neck/Bedsheets/grey.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_grey.rsi/sheetgrey-inhand-right.png rename to Resources/Textures/Clothing/Neck/Bedsheets/grey.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/grey.rsi/meta.json b/Resources/Textures/Clothing/Neck/Bedsheets/grey.rsi/meta.json new file mode 100644 index 0000000000..f21b1b6061 --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Bedsheets/grey.rsi/meta.json @@ -0,0 +1,23 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-NECK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_hop.rsi/sheethop-equipped-NECK.png b/Resources/Textures/Clothing/Neck/Bedsheets/hop.rsi/equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_hop.rsi/sheethop-equipped-NECK.png rename to Resources/Textures/Clothing/Neck/Bedsheets/hop.rsi/equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_hop.rsi/sheethop-inhand-left.png b/Resources/Textures/Clothing/Neck/Bedsheets/hop.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_hop.rsi/sheethop-inhand-left.png rename to Resources/Textures/Clothing/Neck/Bedsheets/hop.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_hop.rsi/sheethop-inhand-right.png b/Resources/Textures/Clothing/Neck/Bedsheets/hop.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_hop.rsi/sheethop-inhand-right.png rename to Resources/Textures/Clothing/Neck/Bedsheets/hop.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/hop.rsi/meta.json b/Resources/Textures/Clothing/Neck/Bedsheets/hop.rsi/meta.json new file mode 100644 index 0000000000..f21b1b6061 --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Bedsheets/hop.rsi/meta.json @@ -0,0 +1,23 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-NECK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_hos.rsi/sheethos-equipped-NECK.png b/Resources/Textures/Clothing/Neck/Bedsheets/hos.rsi/equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_hos.rsi/sheethos-equipped-NECK.png rename to Resources/Textures/Clothing/Neck/Bedsheets/hos.rsi/equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_hos.rsi/sheethos-inhand-left.png b/Resources/Textures/Clothing/Neck/Bedsheets/hos.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_hos.rsi/sheethos-inhand-left.png rename to Resources/Textures/Clothing/Neck/Bedsheets/hos.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_hos.rsi/sheethos-inhand-right.png b/Resources/Textures/Clothing/Neck/Bedsheets/hos.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_hos.rsi/sheethos-inhand-right.png rename to Resources/Textures/Clothing/Neck/Bedsheets/hos.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/hos.rsi/meta.json b/Resources/Textures/Clothing/Neck/Bedsheets/hos.rsi/meta.json new file mode 100644 index 0000000000..f21b1b6061 --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Bedsheets/hos.rsi/meta.json @@ -0,0 +1,23 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-NECK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_ian.rsi/sheetian-equipped-NECK.png b/Resources/Textures/Clothing/Neck/Bedsheets/ian.rsi/equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_ian.rsi/sheetian-equipped-NECK.png rename to Resources/Textures/Clothing/Neck/Bedsheets/ian.rsi/equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_ian.rsi/sheetian-inhand-left.png b/Resources/Textures/Clothing/Neck/Bedsheets/ian.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_ian.rsi/sheetian-inhand-left.png rename to Resources/Textures/Clothing/Neck/Bedsheets/ian.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_ian.rsi/sheetian-inhand-right.png b/Resources/Textures/Clothing/Neck/Bedsheets/ian.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_ian.rsi/sheetian-inhand-right.png rename to Resources/Textures/Clothing/Neck/Bedsheets/ian.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/ian.rsi/meta.json b/Resources/Textures/Clothing/Neck/Bedsheets/ian.rsi/meta.json new file mode 100644 index 0000000000..f21b1b6061 --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Bedsheets/ian.rsi/meta.json @@ -0,0 +1,23 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-NECK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_medical.rsi/sheetmedical-equipped-NECK.png b/Resources/Textures/Clothing/Neck/Bedsheets/medical.rsi/equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_medical.rsi/sheetmedical-equipped-NECK.png rename to Resources/Textures/Clothing/Neck/Bedsheets/medical.rsi/equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_medical.rsi/sheetmedical-inhand-left.png b/Resources/Textures/Clothing/Neck/Bedsheets/medical.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_medical.rsi/sheetmedical-inhand-left.png rename to Resources/Textures/Clothing/Neck/Bedsheets/medical.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_medical.rsi/sheetmedical-inhand-right.png b/Resources/Textures/Clothing/Neck/Bedsheets/medical.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_medical.rsi/sheetmedical-inhand-right.png rename to Resources/Textures/Clothing/Neck/Bedsheets/medical.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/medical.rsi/meta.json b/Resources/Textures/Clothing/Neck/Bedsheets/medical.rsi/meta.json new file mode 100644 index 0000000000..f21b1b6061 --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Bedsheets/medical.rsi/meta.json @@ -0,0 +1,23 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-NECK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_mime.rsi/sheetmime-equipped-NECK.png b/Resources/Textures/Clothing/Neck/Bedsheets/mime.rsi/equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_mime.rsi/sheetmime-equipped-NECK.png rename to Resources/Textures/Clothing/Neck/Bedsheets/mime.rsi/equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_mime.rsi/sheetmime-inhand-left.png b/Resources/Textures/Clothing/Neck/Bedsheets/mime.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_mime.rsi/sheetmime-inhand-left.png rename to Resources/Textures/Clothing/Neck/Bedsheets/mime.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_mime.rsi/sheetmime-inhand-right.png b/Resources/Textures/Clothing/Neck/Bedsheets/mime.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_mime.rsi/sheetmime-inhand-right.png rename to Resources/Textures/Clothing/Neck/Bedsheets/mime.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/mime.rsi/meta.json b/Resources/Textures/Clothing/Neck/Bedsheets/mime.rsi/meta.json new file mode 100644 index 0000000000..f21b1b6061 --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Bedsheets/mime.rsi/meta.json @@ -0,0 +1,23 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-NECK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_orange.rsi/sheetorange-equipped-NECK.png b/Resources/Textures/Clothing/Neck/Bedsheets/orange.rsi/equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_orange.rsi/sheetorange-equipped-NECK.png rename to Resources/Textures/Clothing/Neck/Bedsheets/orange.rsi/equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_orange.rsi/sheetorange-inhand-left.png b/Resources/Textures/Clothing/Neck/Bedsheets/orange.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_orange.rsi/sheetorange-inhand-left.png rename to Resources/Textures/Clothing/Neck/Bedsheets/orange.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_orange.rsi/sheetorange-inhand-right.png b/Resources/Textures/Clothing/Neck/Bedsheets/orange.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_orange.rsi/sheetorange-inhand-right.png rename to Resources/Textures/Clothing/Neck/Bedsheets/orange.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/orange.rsi/meta.json b/Resources/Textures/Clothing/Neck/Bedsheets/orange.rsi/meta.json new file mode 100644 index 0000000000..f21b1b6061 --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Bedsheets/orange.rsi/meta.json @@ -0,0 +1,23 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-NECK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_purple.rsi/sheetpurple-equipped-NECK.png b/Resources/Textures/Clothing/Neck/Bedsheets/purple.rsi/equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_purple.rsi/sheetpurple-equipped-NECK.png rename to Resources/Textures/Clothing/Neck/Bedsheets/purple.rsi/equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_purple.rsi/sheetpurple-inhand-left.png b/Resources/Textures/Clothing/Neck/Bedsheets/purple.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_purple.rsi/sheetpurple-inhand-left.png rename to Resources/Textures/Clothing/Neck/Bedsheets/purple.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_purple.rsi/sheetpurple-inhand-right.png b/Resources/Textures/Clothing/Neck/Bedsheets/purple.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_purple.rsi/sheetpurple-inhand-right.png rename to Resources/Textures/Clothing/Neck/Bedsheets/purple.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/purple.rsi/meta.json b/Resources/Textures/Clothing/Neck/Bedsheets/purple.rsi/meta.json new file mode 100644 index 0000000000..f21b1b6061 --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Bedsheets/purple.rsi/meta.json @@ -0,0 +1,23 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-NECK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_qm.rsi/sheetqm-equipped-NECK.png b/Resources/Textures/Clothing/Neck/Bedsheets/qm.rsi/equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_qm.rsi/sheetqm-equipped-NECK.png rename to Resources/Textures/Clothing/Neck/Bedsheets/qm.rsi/equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_qm.rsi/sheetqm-inhand-left.png b/Resources/Textures/Clothing/Neck/Bedsheets/qm.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_qm.rsi/sheetqm-inhand-left.png rename to Resources/Textures/Clothing/Neck/Bedsheets/qm.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_qm.rsi/sheetqm-inhand-right.png b/Resources/Textures/Clothing/Neck/Bedsheets/qm.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_qm.rsi/sheetqm-inhand-right.png rename to Resources/Textures/Clothing/Neck/Bedsheets/qm.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/qm.rsi/meta.json b/Resources/Textures/Clothing/Neck/Bedsheets/qm.rsi/meta.json new file mode 100644 index 0000000000..f21b1b6061 --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Bedsheets/qm.rsi/meta.json @@ -0,0 +1,23 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-NECK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_rainbow.rsi/sheetrainbow-equipped-NECK.png b/Resources/Textures/Clothing/Neck/Bedsheets/rainbow.rsi/equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_rainbow.rsi/sheetrainbow-equipped-NECK.png rename to Resources/Textures/Clothing/Neck/Bedsheets/rainbow.rsi/equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_rainbow.rsi/sheetrainbow-inhand-left.png b/Resources/Textures/Clothing/Neck/Bedsheets/rainbow.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_rainbow.rsi/sheetrainbow-inhand-left.png rename to Resources/Textures/Clothing/Neck/Bedsheets/rainbow.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_rainbow.rsi/sheetrainbow-inhand-right.png b/Resources/Textures/Clothing/Neck/Bedsheets/rainbow.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_rainbow.rsi/sheetrainbow-inhand-right.png rename to Resources/Textures/Clothing/Neck/Bedsheets/rainbow.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/rainbow.rsi/meta.json b/Resources/Textures/Clothing/Neck/Bedsheets/rainbow.rsi/meta.json new file mode 100644 index 0000000000..f21b1b6061 --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Bedsheets/rainbow.rsi/meta.json @@ -0,0 +1,23 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-NECK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_rd.rsi/sheetrd-equipped-NECK.png b/Resources/Textures/Clothing/Neck/Bedsheets/rd.rsi/equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_rd.rsi/sheetrd-equipped-NECK.png rename to Resources/Textures/Clothing/Neck/Bedsheets/rd.rsi/equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_rd.rsi/sheetrd-inhand-left.png b/Resources/Textures/Clothing/Neck/Bedsheets/rd.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_rd.rsi/sheetrd-inhand-left.png rename to Resources/Textures/Clothing/Neck/Bedsheets/rd.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_rd.rsi/sheetrd-inhand-right.png b/Resources/Textures/Clothing/Neck/Bedsheets/rd.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_rd.rsi/sheetrd-inhand-right.png rename to Resources/Textures/Clothing/Neck/Bedsheets/rd.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/rd.rsi/meta.json b/Resources/Textures/Clothing/Neck/Bedsheets/rd.rsi/meta.json new file mode 100644 index 0000000000..f21b1b6061 --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Bedsheets/rd.rsi/meta.json @@ -0,0 +1,23 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-NECK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_red.rsi/sheetred-equipped-NECK.png b/Resources/Textures/Clothing/Neck/Bedsheets/red.rsi/equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_red.rsi/sheetred-equipped-NECK.png rename to Resources/Textures/Clothing/Neck/Bedsheets/red.rsi/equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_red.rsi/sheetred-inhand-left.png b/Resources/Textures/Clothing/Neck/Bedsheets/red.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_red.rsi/sheetred-inhand-left.png rename to Resources/Textures/Clothing/Neck/Bedsheets/red.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_red.rsi/sheetred-inhand-right.png b/Resources/Textures/Clothing/Neck/Bedsheets/red.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_red.rsi/sheetred-inhand-right.png rename to Resources/Textures/Clothing/Neck/Bedsheets/red.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/red.rsi/meta.json b/Resources/Textures/Clothing/Neck/Bedsheets/red.rsi/meta.json new file mode 100644 index 0000000000..f21b1b6061 --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Bedsheets/red.rsi/meta.json @@ -0,0 +1,23 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-NECK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_NT.rsi/meta.json b/Resources/Textures/Clothing/Neck/Bedsheets/sheet_NT.rsi/meta.json deleted file mode 100644 index 19ca43cbbb..0000000000 --- a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_NT.rsi/meta.json +++ /dev/null @@ -1,65 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CCBYNA3", - "copyright": "https://github.com/tgstation/tgstation", - "states": [ - { - "name": "sheetNT-equipped-NECK", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "sheetNT-inhand-left", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "sheetNT-inhand-right", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_USA.rsi/meta.json b/Resources/Textures/Clothing/Neck/Bedsheets/sheet_USA.rsi/meta.json deleted file mode 100644 index d8b9f8e973..0000000000 --- a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_USA.rsi/meta.json +++ /dev/null @@ -1,65 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CCBYNA3", - "copyright": "https://github.com/tgstation/tgstation", - "states": [ - { - "name": "sheetUSA-equipped-NECK", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "sheetUSA-inhand-left", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "sheetUSA-inhand-right", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_black.rsi/meta.json b/Resources/Textures/Clothing/Neck/Bedsheets/sheet_black.rsi/meta.json deleted file mode 100644 index 082703043b..0000000000 --- a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_black.rsi/meta.json +++ /dev/null @@ -1,65 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CCBYNA3", - "copyright": "https://github.com/tgstation/tgstation", - "states": [ - { - "name": "sheetblack-equipped-NECK", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "sheetblack-inhand-left", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "sheetblack-inhand-right", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_blue.rsi/meta.json b/Resources/Textures/Clothing/Neck/Bedsheets/sheet_blue.rsi/meta.json deleted file mode 100644 index f41c32d33a..0000000000 --- a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_blue.rsi/meta.json +++ /dev/null @@ -1,65 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CCBYNA3", - "copyright": "https://github.com/tgstation/tgstation", - "states": [ - { - "name": "sheetblue-equipped-NECK", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "sheetblue-inhand-left", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "sheetblue-inhand-right", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_brown.rsi/meta.json b/Resources/Textures/Clothing/Neck/Bedsheets/sheet_brown.rsi/meta.json deleted file mode 100644 index b0399b3c5d..0000000000 --- a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_brown.rsi/meta.json +++ /dev/null @@ -1,65 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CCBYNA3", - "copyright": "https://github.com/tgstation/tgstation", - "states": [ - { - "name": "sheetbrown-equipped-NECK", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "sheetbrown-inhand-left", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "sheetbrown-inhand-right", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_captain.rsi/meta.json b/Resources/Textures/Clothing/Neck/Bedsheets/sheet_captain.rsi/meta.json deleted file mode 100644 index c134ea482b..0000000000 --- a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_captain.rsi/meta.json +++ /dev/null @@ -1,65 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CCBYNA3", - "copyright": "https://github.com/tgstation/tgstation", - "states": [ - { - "name": "sheetcaptain-equipped-NECK", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "sheetcaptain-inhand-left", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "sheetcaptain-inhand-right", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_ce.rsi/meta.json b/Resources/Textures/Clothing/Neck/Bedsheets/sheet_ce.rsi/meta.json deleted file mode 100644 index 90e4c72b3c..0000000000 --- a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_ce.rsi/meta.json +++ /dev/null @@ -1,65 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CCBYNA3", - "copyright": "https://github.com/tgstation/tgstation", - "states": [ - { - "name": "sheetce-equipped-NECK", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "sheetce-inhand-left", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "sheetce-inhand-right", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_centcom.rsi/meta.json b/Resources/Textures/Clothing/Neck/Bedsheets/sheet_centcom.rsi/meta.json deleted file mode 100644 index dfeb2b5417..0000000000 --- a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_centcom.rsi/meta.json +++ /dev/null @@ -1,65 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CCBYNA3", - "copyright": "https://github.com/tgstation/tgstation", - "states": [ - { - "name": "sheetcentcom-equipped-NECK", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "sheetcentcom-inhand-left", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "sheetcentcom-inhand-right", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_clown.rsi/meta.json b/Resources/Textures/Clothing/Neck/Bedsheets/sheet_clown.rsi/meta.json deleted file mode 100644 index b85d02319d..0000000000 --- a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_clown.rsi/meta.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CCBYNA3", - "copyright": "https://github.com/tgstation/tgstation", - "states": [ - { - "name": "sheetclown-equipped-NECK", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_cmo.rsi/meta.json b/Resources/Textures/Clothing/Neck/Bedsheets/sheet_cmo.rsi/meta.json deleted file mode 100644 index da738189dc..0000000000 --- a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_cmo.rsi/meta.json +++ /dev/null @@ -1,65 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CCBYNA3", - "copyright": "https://github.com/tgstation/tgstation", - "states": [ - { - "name": "sheetcmo-equipped-NECK", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "sheetcmo-inhand-left", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "sheetcmo-inhand-right", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_cult.rsi/meta.json b/Resources/Textures/Clothing/Neck/Bedsheets/sheet_cult.rsi/meta.json deleted file mode 100644 index 1f927071f8..0000000000 --- a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_cult.rsi/meta.json +++ /dev/null @@ -1,77 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CCBYNA3", - "copyright": "https://github.com/tgstation/tgstation", - "states": [ - { - "name": "sheetcult-equipped-NECK", - "directions": 4, - "delays": [ - [ - 0.3, - 0.2, - 0.3, - 0.2 - ], - [ - 0.3, - 0.2, - 0.3, - 0.2 - ], - [ - 0.3, - 0.2, - 0.3, - 0.2 - ], - [ - 0.3, - 0.2, - 0.3, - 0.2 - ] - ] - }, - { - "name": "sheetcult-inhand-left", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "sheetcult-inhand-right", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_green.rsi/meta.json b/Resources/Textures/Clothing/Neck/Bedsheets/sheet_green.rsi/meta.json deleted file mode 100644 index fadb56b0b2..0000000000 --- a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_green.rsi/meta.json +++ /dev/null @@ -1,65 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CCBYNA3", - "copyright": "https://github.com/tgstation/tgstation", - "states": [ - { - "name": "sheetgreen-equipped-NECK", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "sheetgreen-inhand-left", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "sheetgreen-inhand-right", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_grey.rsi/meta.json b/Resources/Textures/Clothing/Neck/Bedsheets/sheet_grey.rsi/meta.json deleted file mode 100644 index aec4baf13f..0000000000 --- a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_grey.rsi/meta.json +++ /dev/null @@ -1,65 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CCBYNA3", - "copyright": "https://github.com/tgstation/tgstation", - "states": [ - { - "name": "sheetgrey-equipped-NECK", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "sheetgrey-inhand-left", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "sheetgrey-inhand-right", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_hop.rsi/meta.json b/Resources/Textures/Clothing/Neck/Bedsheets/sheet_hop.rsi/meta.json deleted file mode 100644 index cc1bc3fb16..0000000000 --- a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_hop.rsi/meta.json +++ /dev/null @@ -1,65 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CCBYNA3", - "copyright": "https://github.com/tgstation/tgstation", - "states": [ - { - "name": "sheethop-equipped-NECK", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "sheethop-inhand-left", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "sheethop-inhand-right", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_hos.rsi/meta.json b/Resources/Textures/Clothing/Neck/Bedsheets/sheet_hos.rsi/meta.json deleted file mode 100644 index 8cf217b195..0000000000 --- a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_hos.rsi/meta.json +++ /dev/null @@ -1,65 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CCBYNA3", - "copyright": "https://github.com/tgstation/tgstation", - "states": [ - { - "name": "sheethos-equipped-NECK", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "sheethos-inhand-left", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "sheethos-inhand-right", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_ian.rsi/meta.json b/Resources/Textures/Clothing/Neck/Bedsheets/sheet_ian.rsi/meta.json deleted file mode 100644 index 5825584df9..0000000000 --- a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_ian.rsi/meta.json +++ /dev/null @@ -1,65 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CCBYNA3", - "copyright": "https://github.com/tgstation/tgstation", - "states": [ - { - "name": "sheetian-equipped-NECK", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "sheetian-inhand-left", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "sheetian-inhand-right", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_medical.rsi/meta.json b/Resources/Textures/Clothing/Neck/Bedsheets/sheet_medical.rsi/meta.json deleted file mode 100644 index f44a801c0f..0000000000 --- a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_medical.rsi/meta.json +++ /dev/null @@ -1,65 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CCBYNA3", - "copyright": "https://github.com/tgstation/tgstation", - "states": [ - { - "name": "sheetmedical-equipped-NECK", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "sheetmedical-inhand-left", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "sheetmedical-inhand-right", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_mime.rsi/meta.json b/Resources/Textures/Clothing/Neck/Bedsheets/sheet_mime.rsi/meta.json deleted file mode 100644 index 885b1ca01e..0000000000 --- a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_mime.rsi/meta.json +++ /dev/null @@ -1,65 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CCBYNA3", - "copyright": "https://github.com/tgstation/tgstation", - "states": [ - { - "name": "sheetmime-equipped-NECK", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "sheetmime-inhand-left", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "sheetmime-inhand-right", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_orange.rsi/meta.json b/Resources/Textures/Clothing/Neck/Bedsheets/sheet_orange.rsi/meta.json deleted file mode 100644 index 7058cbdb04..0000000000 --- a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_orange.rsi/meta.json +++ /dev/null @@ -1,65 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CCBYNA3", - "copyright": "https://github.com/tgstation/tgstation", - "states": [ - { - "name": "sheetorange-equipped-NECK", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "sheetorange-inhand-left", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "sheetorange-inhand-right", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_purple.rsi/meta.json b/Resources/Textures/Clothing/Neck/Bedsheets/sheet_purple.rsi/meta.json deleted file mode 100644 index 0b3477c875..0000000000 --- a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_purple.rsi/meta.json +++ /dev/null @@ -1,65 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CCBYNA3", - "copyright": "https://github.com/tgstation/tgstation", - "states": [ - { - "name": "sheetpurple-equipped-NECK", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "sheetpurple-inhand-left", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "sheetpurple-inhand-right", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_qm.rsi/meta.json b/Resources/Textures/Clothing/Neck/Bedsheets/sheet_qm.rsi/meta.json deleted file mode 100644 index bd25887f5b..0000000000 --- a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_qm.rsi/meta.json +++ /dev/null @@ -1,65 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CCBYNA3", - "copyright": "https://github.com/tgstation/tgstation", - "states": [ - { - "name": "sheetqm-equipped-NECK", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "sheetqm-inhand-left", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "sheetqm-inhand-right", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_rainbow.rsi/meta.json b/Resources/Textures/Clothing/Neck/Bedsheets/sheet_rainbow.rsi/meta.json deleted file mode 100644 index c1c91fa82a..0000000000 --- a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_rainbow.rsi/meta.json +++ /dev/null @@ -1,65 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CCBYNA3", - "copyright": "https://github.com/tgstation/tgstation", - "states": [ - { - "name": "sheetrainbow-equipped-NECK", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "sheetrainbow-inhand-left", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "sheetrainbow-inhand-right", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_rd.rsi/meta.json b/Resources/Textures/Clothing/Neck/Bedsheets/sheet_rd.rsi/meta.json deleted file mode 100644 index f0cd42d9bd..0000000000 --- a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_rd.rsi/meta.json +++ /dev/null @@ -1,65 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CCBYNA3", - "copyright": "https://github.com/tgstation/tgstation", - "states": [ - { - "name": "sheetrd-equipped-NECK", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "sheetrd-inhand-left", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "sheetrd-inhand-right", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_red.rsi/meta.json b/Resources/Textures/Clothing/Neck/Bedsheets/sheet_red.rsi/meta.json deleted file mode 100644 index 3f5703ef18..0000000000 --- a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_red.rsi/meta.json +++ /dev/null @@ -1,65 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CCBYNA3", - "copyright": "https://github.com/tgstation/tgstation", - "states": [ - { - "name": "sheetred-equipped-NECK", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "sheetred-inhand-left", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "sheetred-inhand-right", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_syndie.rsi/meta.json b/Resources/Textures/Clothing/Neck/Bedsheets/sheet_syndie.rsi/meta.json deleted file mode 100644 index a9baee05cf..0000000000 --- a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_syndie.rsi/meta.json +++ /dev/null @@ -1,65 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CCBYNA3", - "copyright": "https://github.com/tgstation/tgstation", - "states": [ - { - "name": "sheetsyndie-equipped-NECK", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "sheetsyndie-inhand-left", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "sheetsyndie-inhand-right", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_white.rsi/meta.json b/Resources/Textures/Clothing/Neck/Bedsheets/sheet_white.rsi/meta.json deleted file mode 100644 index ad073f3c38..0000000000 --- a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_white.rsi/meta.json +++ /dev/null @@ -1,65 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CCBYNA3", - "copyright": "https://github.com/tgstation/tgstation", - "states": [ - { - "name": "sheetwhite-equipped-NECK", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "sheetwhite-inhand-left", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "sheetwhite-inhand-right", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_yellow.rsi/meta.json b/Resources/Textures/Clothing/Neck/Bedsheets/sheet_yellow.rsi/meta.json deleted file mode 100644 index 4d2597c8a7..0000000000 --- a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_yellow.rsi/meta.json +++ /dev/null @@ -1,65 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CCBYNA3", - "copyright": "https://github.com/tgstation/tgstation", - "states": [ - { - "name": "sheetyellow-equipped-NECK", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "sheetyellow-inhand-left", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "sheetyellow-inhand-right", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_syndie.rsi/sheetsyndie-equipped-NECK.png b/Resources/Textures/Clothing/Neck/Bedsheets/syndie.rsi/equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_syndie.rsi/sheetsyndie-equipped-NECK.png rename to Resources/Textures/Clothing/Neck/Bedsheets/syndie.rsi/equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_syndie.rsi/sheetsyndie-inhand-left.png b/Resources/Textures/Clothing/Neck/Bedsheets/syndie.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_syndie.rsi/sheetsyndie-inhand-left.png rename to Resources/Textures/Clothing/Neck/Bedsheets/syndie.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_syndie.rsi/sheetsyndie-inhand-right.png b/Resources/Textures/Clothing/Neck/Bedsheets/syndie.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_syndie.rsi/sheetsyndie-inhand-right.png rename to Resources/Textures/Clothing/Neck/Bedsheets/syndie.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/syndie.rsi/meta.json b/Resources/Textures/Clothing/Neck/Bedsheets/syndie.rsi/meta.json new file mode 100644 index 0000000000..f21b1b6061 --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Bedsheets/syndie.rsi/meta.json @@ -0,0 +1,23 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-NECK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_white.rsi/sheetwhite-equipped-NECK.png b/Resources/Textures/Clothing/Neck/Bedsheets/white.rsi/equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_white.rsi/sheetwhite-equipped-NECK.png rename to Resources/Textures/Clothing/Neck/Bedsheets/white.rsi/equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_white.rsi/sheetwhite-inhand-left.png b/Resources/Textures/Clothing/Neck/Bedsheets/white.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_white.rsi/sheetwhite-inhand-left.png rename to Resources/Textures/Clothing/Neck/Bedsheets/white.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_white.rsi/sheetwhite-inhand-right.png b/Resources/Textures/Clothing/Neck/Bedsheets/white.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_white.rsi/sheetwhite-inhand-right.png rename to Resources/Textures/Clothing/Neck/Bedsheets/white.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/white.rsi/meta.json b/Resources/Textures/Clothing/Neck/Bedsheets/white.rsi/meta.json new file mode 100644 index 0000000000..f21b1b6061 --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Bedsheets/white.rsi/meta.json @@ -0,0 +1,23 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-NECK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_wiz.rsi/sheetwiz-equipped-NECK.png b/Resources/Textures/Clothing/Neck/Bedsheets/wiz.rsi/equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_wiz.rsi/sheetwiz-equipped-NECK.png rename to Resources/Textures/Clothing/Neck/Bedsheets/wiz.rsi/equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_wiz.rsi/sheetwiz-inhand-left.png b/Resources/Textures/Clothing/Neck/Bedsheets/wiz.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_wiz.rsi/sheetwiz-inhand-left.png rename to Resources/Textures/Clothing/Neck/Bedsheets/wiz.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_wiz.rsi/sheetwiz-inhand-right.png b/Resources/Textures/Clothing/Neck/Bedsheets/wiz.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_wiz.rsi/sheetwiz-inhand-right.png rename to Resources/Textures/Clothing/Neck/Bedsheets/wiz.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/wiz.rsi/meta.json b/Resources/Textures/Clothing/Neck/Bedsheets/wiz.rsi/meta.json new file mode 100644 index 0000000000..f21b1b6061 --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Bedsheets/wiz.rsi/meta.json @@ -0,0 +1,23 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-NECK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_yellow.rsi/sheetyellow-equipped-NECK.png b/Resources/Textures/Clothing/Neck/Bedsheets/yellow.rsi/equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_yellow.rsi/sheetyellow-equipped-NECK.png rename to Resources/Textures/Clothing/Neck/Bedsheets/yellow.rsi/equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_yellow.rsi/sheetyellow-inhand-left.png b/Resources/Textures/Clothing/Neck/Bedsheets/yellow.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_yellow.rsi/sheetyellow-inhand-left.png rename to Resources/Textures/Clothing/Neck/Bedsheets/yellow.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/sheet_yellow.rsi/sheetyellow-inhand-right.png b/Resources/Textures/Clothing/Neck/Bedsheets/yellow.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Bedsheets/sheet_yellow.rsi/sheetyellow-inhand-right.png rename to Resources/Textures/Clothing/Neck/Bedsheets/yellow.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/yellow.rsi/meta.json b/Resources/Textures/Clothing/Neck/Bedsheets/yellow.rsi/meta.json new file mode 100644 index 0000000000..f21b1b6061 --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Bedsheets/yellow.rsi/meta.json @@ -0,0 +1,23 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-NECK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Neck/Cloaks/cap_cloak.rsi/capcloak-equipped-NECK.png b/Resources/Textures/Clothing/Neck/Cloaks/cap.rsi/equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Cloaks/cap_cloak.rsi/capcloak-equipped-NECK.png rename to Resources/Textures/Clothing/Neck/Cloaks/cap.rsi/equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/Cloaks/cap_cloak.rsi/capcloak.png b/Resources/Textures/Clothing/Neck/Cloaks/cap.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Cloaks/cap_cloak.rsi/capcloak.png rename to Resources/Textures/Clothing/Neck/Cloaks/cap.rsi/icon.png diff --git a/Resources/Textures/Clothing/Neck/Cloaks/cap.rsi/meta.json b/Resources/Textures/Clothing/Neck/Cloaks/cap.rsi/meta.json new file mode 100644 index 0000000000..7920dfbd39 --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Cloaks/cap.rsi/meta.json @@ -0,0 +1,19 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-NECK", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Neck/Cloaks/cap_cloak.rsi/meta.json b/Resources/Textures/Clothing/Neck/Cloaks/cap_cloak.rsi/meta.json deleted file mode 100644 index 5d9600b00c..0000000000 --- a/Resources/Textures/Clothing/Neck/Cloaks/cap_cloak.rsi/meta.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "capcloak-equipped-NECK", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "capcloak", - "directions": 1, - "delays": [ - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/Neck/Cloaks/ce_cloak.rsi/cecloak-equipped-NECK.png b/Resources/Textures/Clothing/Neck/Cloaks/ce.rsi/equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Cloaks/ce_cloak.rsi/cecloak-equipped-NECK.png rename to Resources/Textures/Clothing/Neck/Cloaks/ce.rsi/equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/Cloaks/ce_cloak.rsi/cecloak.png b/Resources/Textures/Clothing/Neck/Cloaks/ce.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Cloaks/ce_cloak.rsi/cecloak.png rename to Resources/Textures/Clothing/Neck/Cloaks/ce.rsi/icon.png diff --git a/Resources/Textures/Clothing/Neck/Cloaks/ce.rsi/meta.json b/Resources/Textures/Clothing/Neck/Cloaks/ce.rsi/meta.json new file mode 100644 index 0000000000..7920dfbd39 --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Cloaks/ce.rsi/meta.json @@ -0,0 +1,19 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-NECK", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Neck/Cloaks/ce_cloak.rsi/meta.json b/Resources/Textures/Clothing/Neck/Cloaks/ce_cloak.rsi/meta.json deleted file mode 100644 index 8357eba499..0000000000 --- a/Resources/Textures/Clothing/Neck/Cloaks/ce_cloak.rsi/meta.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "cecloak-equipped-NECK", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "cecloak", - "directions": 1, - "delays": [ - [ - 1 - ] - ] - } - ] -} - diff --git a/Resources/Textures/Clothing/Neck/Cloaks/cmo_cloak.rsi/cmocloak-equipped-NECK.png b/Resources/Textures/Clothing/Neck/Cloaks/cmo.rsi/equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Cloaks/cmo_cloak.rsi/cmocloak-equipped-NECK.png rename to Resources/Textures/Clothing/Neck/Cloaks/cmo.rsi/equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/Cloaks/cmo_cloak.rsi/cmocloak.png b/Resources/Textures/Clothing/Neck/Cloaks/cmo.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Cloaks/cmo_cloak.rsi/cmocloak.png rename to Resources/Textures/Clothing/Neck/Cloaks/cmo.rsi/icon.png diff --git a/Resources/Textures/Clothing/Neck/Cloaks/cmo.rsi/meta.json b/Resources/Textures/Clothing/Neck/Cloaks/cmo.rsi/meta.json new file mode 100644 index 0000000000..7920dfbd39 --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Cloaks/cmo.rsi/meta.json @@ -0,0 +1,19 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-NECK", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Neck/Cloaks/cmo_cloak.rsi/meta.json b/Resources/Textures/Clothing/Neck/Cloaks/cmo_cloak.rsi/meta.json deleted file mode 100644 index 3ade071e01..0000000000 --- a/Resources/Textures/Clothing/Neck/Cloaks/cmo_cloak.rsi/meta.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "cmocloak-equipped-NECK", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "cmocloak", - "directions": 1, - "delays": [ - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/Neck/Cloaks/herald_cloak.rsi/heraldcloak-equipped-NECK.png b/Resources/Textures/Clothing/Neck/Cloaks/herald.rsi/equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Cloaks/herald_cloak.rsi/heraldcloak-equipped-NECK.png rename to Resources/Textures/Clothing/Neck/Cloaks/herald.rsi/equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/Cloaks/herald_cloak.rsi/heraldcloak.png b/Resources/Textures/Clothing/Neck/Cloaks/herald.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Cloaks/herald_cloak.rsi/heraldcloak.png rename to Resources/Textures/Clothing/Neck/Cloaks/herald.rsi/icon.png diff --git a/Resources/Textures/Clothing/Neck/Cloaks/herald.rsi/meta.json b/Resources/Textures/Clothing/Neck/Cloaks/herald.rsi/meta.json new file mode 100644 index 0000000000..7920dfbd39 --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Cloaks/herald.rsi/meta.json @@ -0,0 +1,19 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-NECK", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Neck/Cloaks/herald_cloak.rsi/meta.json b/Resources/Textures/Clothing/Neck/Cloaks/herald_cloak.rsi/meta.json deleted file mode 100644 index 6666fef9f8..0000000000 --- a/Resources/Textures/Clothing/Neck/Cloaks/herald_cloak.rsi/meta.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "heraldcloak-equipped-NECK", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "heraldcloak", - "directions": 1, - "delays": [ - [ - 1 - ] - ] - } - ] -} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Neck/Cloaks/hop_cloak.rsi/hopcloak-equipped-NECK.png b/Resources/Textures/Clothing/Neck/Cloaks/hop.rsi/equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Cloaks/hop_cloak.rsi/hopcloak-equipped-NECK.png rename to Resources/Textures/Clothing/Neck/Cloaks/hop.rsi/equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/Cloaks/hop_cloak.rsi/hopcloak.png b/Resources/Textures/Clothing/Neck/Cloaks/hop.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Cloaks/hop_cloak.rsi/hopcloak.png rename to Resources/Textures/Clothing/Neck/Cloaks/hop.rsi/icon.png diff --git a/Resources/Textures/Clothing/Neck/Cloaks/hop.rsi/meta.json b/Resources/Textures/Clothing/Neck/Cloaks/hop.rsi/meta.json new file mode 100644 index 0000000000..7920dfbd39 --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Cloaks/hop.rsi/meta.json @@ -0,0 +1,19 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-NECK", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Neck/Cloaks/hop_cloak.rsi/meta.json b/Resources/Textures/Clothing/Neck/Cloaks/hop_cloak.rsi/meta.json deleted file mode 100644 index e1419bef8c..0000000000 --- a/Resources/Textures/Clothing/Neck/Cloaks/hop_cloak.rsi/meta.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "hopcloak-equipped-NECK", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "hopcloak", - "directions": 1, - "delays": [ - [ - 1 - ] - ] - } - ] -} - diff --git a/Resources/Textures/Clothing/Neck/Cloaks/hos_cloak.rsi/hoscloak-equipped-NECK.png b/Resources/Textures/Clothing/Neck/Cloaks/hos.rsi/equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Cloaks/hos_cloak.rsi/hoscloak-equipped-NECK.png rename to Resources/Textures/Clothing/Neck/Cloaks/hos.rsi/equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/Cloaks/hos_cloak.rsi/hoscloak.png b/Resources/Textures/Clothing/Neck/Cloaks/hos.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Cloaks/hos_cloak.rsi/hoscloak.png rename to Resources/Textures/Clothing/Neck/Cloaks/hos.rsi/icon.png diff --git a/Resources/Textures/Clothing/Neck/Cloaks/hos.rsi/meta.json b/Resources/Textures/Clothing/Neck/Cloaks/hos.rsi/meta.json new file mode 100644 index 0000000000..7920dfbd39 --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Cloaks/hos.rsi/meta.json @@ -0,0 +1,19 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-NECK", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Neck/Cloaks/hos_cloak.rsi/meta.json b/Resources/Textures/Clothing/Neck/Cloaks/hos_cloak.rsi/meta.json deleted file mode 100644 index c130b066cf..0000000000 --- a/Resources/Textures/Clothing/Neck/Cloaks/hos_cloak.rsi/meta.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "hoscloak-equipped-NECK", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "hoscloak", - "directions": 1, - "delays": [ - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/Neck/Cloaks/qm_cloak.rsi/qmcloak-equipped-NECK.png b/Resources/Textures/Clothing/Neck/Cloaks/qm.rsi/equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Cloaks/qm_cloak.rsi/qmcloak-equipped-NECK.png rename to Resources/Textures/Clothing/Neck/Cloaks/qm.rsi/equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/Cloaks/qm_cloak.rsi/qmcloak.png b/Resources/Textures/Clothing/Neck/Cloaks/qm.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Cloaks/qm_cloak.rsi/qmcloak.png rename to Resources/Textures/Clothing/Neck/Cloaks/qm.rsi/icon.png diff --git a/Resources/Textures/Clothing/Neck/Cloaks/qm.rsi/meta.json b/Resources/Textures/Clothing/Neck/Cloaks/qm.rsi/meta.json new file mode 100644 index 0000000000..7920dfbd39 --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Cloaks/qm.rsi/meta.json @@ -0,0 +1,19 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-NECK", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Neck/Cloaks/qm_cloak.rsi/meta.json b/Resources/Textures/Clothing/Neck/Cloaks/qm_cloak.rsi/meta.json deleted file mode 100644 index 057ccf70e8..0000000000 --- a/Resources/Textures/Clothing/Neck/Cloaks/qm_cloak.rsi/meta.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "qmcloak-equipped-NECK", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "qmcloak", - "directions": 1, - "delays": [ - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/Neck/Cloaks/rd_cloak.rsi/rdcloak-equipped-NECK.png b/Resources/Textures/Clothing/Neck/Cloaks/rd.rsi/equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Cloaks/rd_cloak.rsi/rdcloak-equipped-NECK.png rename to Resources/Textures/Clothing/Neck/Cloaks/rd.rsi/equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/Cloaks/rd_cloak.rsi/rdcloak.png b/Resources/Textures/Clothing/Neck/Cloaks/rd.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Cloaks/rd_cloak.rsi/rdcloak.png rename to Resources/Textures/Clothing/Neck/Cloaks/rd.rsi/icon.png diff --git a/Resources/Textures/Clothing/Neck/Cloaks/rd.rsi/meta.json b/Resources/Textures/Clothing/Neck/Cloaks/rd.rsi/meta.json new file mode 100644 index 0000000000..7920dfbd39 --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Cloaks/rd.rsi/meta.json @@ -0,0 +1,19 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-NECK", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Neck/Cloaks/rd_cloak.rsi/meta.json b/Resources/Textures/Clothing/Neck/Cloaks/rd_cloak.rsi/meta.json deleted file mode 100644 index fcc4c9f9d8..0000000000 --- a/Resources/Textures/Clothing/Neck/Cloaks/rd_cloak.rsi/meta.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "rdcloak-equipped-NECK", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "rdcloak", - "directions": 1, - "delays": [ - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/Neck/bling.rsi/bling-equipped-NECK.png b/Resources/Textures/Clothing/Neck/Misc/bling.rsi/equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/bling.rsi/bling-equipped-NECK.png rename to Resources/Textures/Clothing/Neck/Misc/bling.rsi/equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/bling.rsi/bling.png b/Resources/Textures/Clothing/Neck/Misc/bling.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Neck/bling.rsi/bling.png rename to Resources/Textures/Clothing/Neck/Misc/bling.rsi/icon.png diff --git a/Resources/Textures/Clothing/Neck/Misc/bling.rsi/meta.json b/Resources/Textures/Clothing/Neck/Misc/bling.rsi/meta.json new file mode 100644 index 0000000000..cc8b8f54f0 --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Misc/bling.rsi/meta.json @@ -0,0 +1,20 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da", + "size": { + "x": 32, + "y": 32 + }, + + "states": [ + { + "name": "equipped-NECK", + "directions": 4 + }, + { + "name": "icon", + "directions": 1 + } + ] +} diff --git a/Resources/Textures/Clothing/Neck/headphones.rsi/headphones_off-equipped-NECK.png b/Resources/Textures/Clothing/Neck/Misc/headphones.rsi/equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/headphones.rsi/headphones_off-equipped-NECK.png rename to Resources/Textures/Clothing/Neck/Misc/headphones.rsi/equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/headphones.rsi/headphones_off.png b/Resources/Textures/Clothing/Neck/Misc/headphones.rsi/icon-on.png similarity index 100% rename from Resources/Textures/Clothing/Neck/headphones.rsi/headphones_off.png rename to Resources/Textures/Clothing/Neck/Misc/headphones.rsi/icon-on.png diff --git a/Resources/Textures/Clothing/Neck/headphones.rsi/headphones_on.png b/Resources/Textures/Clothing/Neck/Misc/headphones.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Neck/headphones.rsi/headphones_on.png rename to Resources/Textures/Clothing/Neck/Misc/headphones.rsi/icon.png diff --git a/Resources/Textures/Clothing/Neck/headphones.rsi/headphones_on-inhand-left.png b/Resources/Textures/Clothing/Neck/Misc/headphones.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Neck/headphones.rsi/headphones_on-inhand-left.png rename to Resources/Textures/Clothing/Neck/Misc/headphones.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Neck/headphones.rsi/headphones_on-inhand-right.png b/Resources/Textures/Clothing/Neck/Misc/headphones.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Neck/headphones.rsi/headphones_on-inhand-right.png rename to Resources/Textures/Clothing/Neck/Misc/headphones.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Neck/Misc/headphones.rsi/meta.json b/Resources/Textures/Clothing/Neck/Misc/headphones.rsi/meta.json new file mode 100644 index 0000000000..efdcf97059 --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Misc/headphones.rsi/meta.json @@ -0,0 +1,73 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "on-equipped-NECK", + "directions": 4, + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "equipped-NECK", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "icon", + "directions": 1 + }, + { + "name": "icon-on", + "directions": 1 + } + ] +} diff --git a/Resources/Textures/Clothing/Neck/headphones.rsi/headphones_on-equipped-NECK.png b/Resources/Textures/Clothing/Neck/Misc/headphones.rsi/on-equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/headphones.rsi/headphones_on-equipped-NECK.png rename to Resources/Textures/Clothing/Neck/Misc/headphones.rsi/on-equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/stethoscope.rsi/stethoscope-equipped-NECK.png b/Resources/Textures/Clothing/Neck/Misc/stethoscope.rsi/equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/stethoscope.rsi/stethoscope-equipped-NECK.png rename to Resources/Textures/Clothing/Neck/Misc/stethoscope.rsi/equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/stethoscope.rsi/stethoscope.png b/Resources/Textures/Clothing/Neck/Misc/stethoscope.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Neck/stethoscope.rsi/stethoscope.png rename to Resources/Textures/Clothing/Neck/Misc/stethoscope.rsi/icon.png diff --git a/Resources/Textures/Clothing/Neck/Misc/stethoscope.rsi/meta.json b/Resources/Textures/Clothing/Neck/Misc/stethoscope.rsi/meta.json new file mode 100644 index 0000000000..bc5ec2dee3 --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Misc/stethoscope.rsi/meta.json @@ -0,0 +1,19 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-NECK", + "directions": 4 + }, + { + "name": "icon", + "directions": 1 + } + ] +} diff --git a/Resources/Textures/Clothing/Neck/Scarfs/blue_scarf.rsi/stripedbluescarf-equipped-NECK.png b/Resources/Textures/Clothing/Neck/Scarfs/blue.rsi/equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Scarfs/blue_scarf.rsi/stripedbluescarf-equipped-NECK.png rename to Resources/Textures/Clothing/Neck/Scarfs/blue.rsi/equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/Scarfs/blue_scarf.rsi/stripedbluescarf.png b/Resources/Textures/Clothing/Neck/Scarfs/blue.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Scarfs/blue_scarf.rsi/stripedbluescarf.png rename to Resources/Textures/Clothing/Neck/Scarfs/blue.rsi/icon.png diff --git a/Resources/Textures/Clothing/Neck/Scarfs/blue.rsi/meta.json b/Resources/Textures/Clothing/Neck/Scarfs/blue.rsi/meta.json new file mode 100644 index 0000000000..bc5ec2dee3 --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Scarfs/blue.rsi/meta.json @@ -0,0 +1,19 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-NECK", + "directions": 4 + }, + { + "name": "icon", + "directions": 1 + } + ] +} diff --git a/Resources/Textures/Clothing/Neck/Scarfs/blue_scarf.rsi/meta.json b/Resources/Textures/Clothing/Neck/Scarfs/blue_scarf.rsi/meta.json deleted file mode 100644 index cf0bb40cae..0000000000 --- a/Resources/Textures/Clothing/Neck/Scarfs/blue_scarf.rsi/meta.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CCBYNA3", - "copyright": "https://github.com/tgstation/tgstation", - "states": [ - { - "name": "stripedbluescarf-equipped-NECK", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "stripedbluescarf", - "directions": 1, - "delays": [ - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/Neck/Scarfs/green_scarf.rsi/stripedgreenscarf-equipped-NECK.png b/Resources/Textures/Clothing/Neck/Scarfs/green.rsi/equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Scarfs/green_scarf.rsi/stripedgreenscarf-equipped-NECK.png rename to Resources/Textures/Clothing/Neck/Scarfs/green.rsi/equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/Scarfs/green_scarf.rsi/stripedgreenscarf.png b/Resources/Textures/Clothing/Neck/Scarfs/green.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Scarfs/green_scarf.rsi/stripedgreenscarf.png rename to Resources/Textures/Clothing/Neck/Scarfs/green.rsi/icon.png diff --git a/Resources/Textures/Clothing/Neck/Scarfs/green.rsi/meta.json b/Resources/Textures/Clothing/Neck/Scarfs/green.rsi/meta.json new file mode 100644 index 0000000000..bc5ec2dee3 --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Scarfs/green.rsi/meta.json @@ -0,0 +1,19 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-NECK", + "directions": 4 + }, + { + "name": "icon", + "directions": 1 + } + ] +} diff --git a/Resources/Textures/Clothing/Neck/Scarfs/green_scarf.rsi/meta.json b/Resources/Textures/Clothing/Neck/Scarfs/green_scarf.rsi/meta.json deleted file mode 100644 index f7268a2ee9..0000000000 --- a/Resources/Textures/Clothing/Neck/Scarfs/green_scarf.rsi/meta.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CCBYNA3", - "copyright": "https://github.com/tgstation/tgstation", - "states": [ - { - "name": "stripedgreenscarf-equipped-NECK", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "stripedgreenscarf", - "directions": 1, - "delays": [ - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/Neck/Scarfs/red_scarf.rsi/stripedredscarf-equipped-NECK.png b/Resources/Textures/Clothing/Neck/Scarfs/red.rsi/equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Scarfs/red_scarf.rsi/stripedredscarf-equipped-NECK.png rename to Resources/Textures/Clothing/Neck/Scarfs/red.rsi/equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/Scarfs/red_scarf.rsi/stripedredscarf.png b/Resources/Textures/Clothing/Neck/Scarfs/red.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Scarfs/red_scarf.rsi/stripedredscarf.png rename to Resources/Textures/Clothing/Neck/Scarfs/red.rsi/icon.png diff --git a/Resources/Textures/Clothing/Neck/Scarfs/red.rsi/meta.json b/Resources/Textures/Clothing/Neck/Scarfs/red.rsi/meta.json new file mode 100644 index 0000000000..bc5ec2dee3 --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Scarfs/red.rsi/meta.json @@ -0,0 +1,19 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-NECK", + "directions": 4 + }, + { + "name": "icon", + "directions": 1 + } + ] +} diff --git a/Resources/Textures/Clothing/Neck/Scarfs/red_scarf.rsi/meta.json b/Resources/Textures/Clothing/Neck/Scarfs/red_scarf.rsi/meta.json deleted file mode 100644 index 5130125131..0000000000 --- a/Resources/Textures/Clothing/Neck/Scarfs/red_scarf.rsi/meta.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CCBYNA3", - "copyright": "https://github.com/tgstation/tgstation", - "states": [ - { - "name": "stripedredscarf-equipped-NECK", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "stripedredscarf", - "directions": 1, - "delays": [ - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/Neck/Scarfs/zebra_scarf.rsi/zebrascarf-equipped-NECK.png b/Resources/Textures/Clothing/Neck/Scarfs/zebra.rsi/equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Scarfs/zebra_scarf.rsi/zebrascarf-equipped-NECK.png rename to Resources/Textures/Clothing/Neck/Scarfs/zebra.rsi/equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/Scarfs/zebra_scarf.rsi/zebrascarf.png b/Resources/Textures/Clothing/Neck/Scarfs/zebra.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Scarfs/zebra_scarf.rsi/zebrascarf.png rename to Resources/Textures/Clothing/Neck/Scarfs/zebra.rsi/icon.png diff --git a/Resources/Textures/Clothing/Neck/Scarfs/zebra.rsi/meta.json b/Resources/Textures/Clothing/Neck/Scarfs/zebra.rsi/meta.json new file mode 100644 index 0000000000..bc5ec2dee3 --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Scarfs/zebra.rsi/meta.json @@ -0,0 +1,19 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-NECK", + "directions": 4 + }, + { + "name": "icon", + "directions": 1 + } + ] +} diff --git a/Resources/Textures/Clothing/Neck/Scarfs/zebra_scarf.rsi/meta.json b/Resources/Textures/Clothing/Neck/Scarfs/zebra_scarf.rsi/meta.json deleted file mode 100644 index ce2264b686..0000000000 --- a/Resources/Textures/Clothing/Neck/Scarfs/zebra_scarf.rsi/meta.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CCBYNA3", - "copyright": "https://github.com/tgstation/tgstation", - "states": [ - { - "name": "zebrascarf-equipped-NECK", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "zebrascarf", - "directions": 1, - "delays": [ - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/Neck/dettie.rsi/dettie-equipped-NECK.png b/Resources/Textures/Clothing/Neck/Ties/dettie.rsi/equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/dettie.rsi/dettie-equipped-NECK.png rename to Resources/Textures/Clothing/Neck/Ties/dettie.rsi/equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/dettie.rsi/dettie.png b/Resources/Textures/Clothing/Neck/Ties/dettie.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Neck/dettie.rsi/dettie.png rename to Resources/Textures/Clothing/Neck/Ties/dettie.rsi/icon.png diff --git a/Resources/Textures/Clothing/Neck/Ties/dettie.rsi/meta.json b/Resources/Textures/Clothing/Neck/Ties/dettie.rsi/meta.json new file mode 100644 index 0000000000..bc5ec2dee3 --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Ties/dettie.rsi/meta.json @@ -0,0 +1,19 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-NECK", + "directions": 4 + }, + { + "name": "icon", + "directions": 1 + } + ] +} diff --git a/Resources/Textures/Clothing/Neck/redtie.rsi/redtie-equipped-NECK.png b/Resources/Textures/Clothing/Neck/Ties/redtie.rsi/equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/redtie.rsi/redtie-equipped-NECK.png rename to Resources/Textures/Clothing/Neck/Ties/redtie.rsi/equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/redtie.rsi/redtie.png b/Resources/Textures/Clothing/Neck/Ties/redtie.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Neck/redtie.rsi/redtie.png rename to Resources/Textures/Clothing/Neck/Ties/redtie.rsi/icon.png diff --git a/Resources/Textures/Clothing/Neck/Ties/redtie.rsi/meta.json b/Resources/Textures/Clothing/Neck/Ties/redtie.rsi/meta.json new file mode 100644 index 0000000000..bc5ec2dee3 --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Ties/redtie.rsi/meta.json @@ -0,0 +1,19 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-NECK", + "directions": 4 + }, + { + "name": "icon", + "directions": 1 + } + ] +} diff --git a/Resources/Textures/Clothing/Neck/bling.rsi/meta.json b/Resources/Textures/Clothing/Neck/bling.rsi/meta.json deleted file mode 100644 index 076ab3df21..0000000000 --- a/Resources/Textures/Clothing/Neck/bling.rsi/meta.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CCBYNA3", - "copyright": "https://github.com/tgstation/tgstation", - "states": [ - { - "name": "bling-equipped-NECK", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "bling", - "directions": 1, - "delays": [ - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/Neck/dettie.rsi/meta.json b/Resources/Textures/Clothing/Neck/dettie.rsi/meta.json deleted file mode 100644 index b64be4b119..0000000000 --- a/Resources/Textures/Clothing/Neck/dettie.rsi/meta.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CCBYNA3", - "copyright": "https://github.com/tgstation/tgstation", - "states": [ - { - "name": "dettie-equipped-NECK", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "dettie", - "directions": 1, - "delays": [ - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/Neck/headphones.rsi/meta.json b/Resources/Textures/Clothing/Neck/headphones.rsi/meta.json deleted file mode 100644 index b3ab764332..0000000000 --- a/Resources/Textures/Clothing/Neck/headphones.rsi/meta.json +++ /dev/null @@ -1,125 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CCBYNA3", - "copyright": "https://github.com/tgstation/tgstation", - "states": [ - { - "name": "headphones_on-equipped-NECK", - "directions": 4, - "delays": [ - [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ], - [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ], - [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ], - [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ] - ] - }, - { - "name": "headphones_off-equipped-NECK", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "headphones_on-inhand-right", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "headphones_on-inhand-left", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "headphones_off", - "directions": 1, - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "headphones_on", - "directions": 1, - "delays": [ - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/Neck/redtie.rsi/meta.json b/Resources/Textures/Clothing/Neck/redtie.rsi/meta.json deleted file mode 100644 index a105dba279..0000000000 --- a/Resources/Textures/Clothing/Neck/redtie.rsi/meta.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CCBYNA3", - "copyright": "https://github.com/tgstation/tgstation", - "states": [ - { - "name": "redtie-equipped-NECK", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "redtie", - "directions": 1, - "delays": [ - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/Neck/stethoscope.rsi/meta.json b/Resources/Textures/Clothing/Neck/stethoscope.rsi/meta.json deleted file mode 100644 index 201efa4641..0000000000 --- a/Resources/Textures/Clothing/Neck/stethoscope.rsi/meta.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CCBYNA3", - "copyright": "https://github.com/tgstation/tgstation", - "states": [ - { - "name": "stethoscope-equipped-NECK", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "stethoscope", - "directions": 1, - "delays": [ - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/OuterClothing/armor_reflec.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Armor/armor_reflec.rsi/equipped-OUTERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/armor_reflec.rsi/equipped-OUTERCLOTHING.png rename to Resources/Textures/Clothing/OuterClothing/Armor/armor_reflec.rsi/equipped-OUTERCLOTHING.png diff --git a/Resources/Textures/Clothing/OuterClothing/armor_reflec.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Armor/armor_reflec.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/armor_reflec.rsi/icon.png rename to Resources/Textures/Clothing/OuterClothing/Armor/armor_reflec.rsi/icon.png diff --git a/Resources/Textures/Clothing/OuterClothing/armor_reflec.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Armor/armor_reflec.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/armor_reflec.rsi/inhand-left.png rename to Resources/Textures/Clothing/OuterClothing/Armor/armor_reflec.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/OuterClothing/armor_reflec.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Armor/armor_reflec.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/armor_reflec.rsi/inhand-right.png rename to Resources/Textures/Clothing/OuterClothing/Armor/armor_reflec.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/armor_reflec.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Armor/armor_reflec.rsi/meta.json new file mode 100644 index 0000000000..940cc63fd5 --- /dev/null +++ b/Resources/Textures/Clothing/OuterClothing/Armor/armor_reflec.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cev-eris at commit https://github.com/discordia-space/CEV-Eris/commit/760f0be7af33a31f5a08a3291864e91539d0ebb7", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/OuterClothing/bulletproof.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Armor/bulletproof.rsi/equipped-OUTERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/bulletproof.rsi/equipped-OUTERCLOTHING.png rename to Resources/Textures/Clothing/OuterClothing/Armor/bulletproof.rsi/equipped-OUTERCLOTHING.png diff --git a/Resources/Textures/Clothing/OuterClothing/bulletproof.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Armor/bulletproof.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/bulletproof.rsi/icon.png rename to Resources/Textures/Clothing/OuterClothing/Armor/bulletproof.rsi/icon.png diff --git a/Resources/Textures/Clothing/OuterClothing/bulletproof.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Armor/bulletproof.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/bulletproof.rsi/inhand-left.png rename to Resources/Textures/Clothing/OuterClothing/Armor/bulletproof.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/OuterClothing/bulletproof.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Armor/bulletproof.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/bulletproof.rsi/inhand-right.png rename to Resources/Textures/Clothing/OuterClothing/Armor/bulletproof.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/bulletproof.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Armor/bulletproof.rsi/meta.json new file mode 100644 index 0000000000..940cc63fd5 --- /dev/null +++ b/Resources/Textures/Clothing/OuterClothing/Armor/bulletproof.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cev-eris at commit https://github.com/discordia-space/CEV-Eris/commit/760f0be7af33a31f5a08a3291864e91539d0ebb7", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/OuterClothing/cult_armour.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Armor/cult_armour.rsi/equipped-OUTERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/cult_armour.rsi/equipped-OUTERCLOTHING.png rename to Resources/Textures/Clothing/OuterClothing/Armor/cult_armour.rsi/equipped-OUTERCLOTHING.png diff --git a/Resources/Textures/Clothing/OuterClothing/cult_armour.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Armor/cult_armour.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/cult_armour.rsi/icon.png rename to Resources/Textures/Clothing/OuterClothing/Armor/cult_armour.rsi/icon.png diff --git a/Resources/Textures/Clothing/OuterClothing/cult_armour.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Armor/cult_armour.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/cult_armour.rsi/inhand-left.png rename to Resources/Textures/Clothing/OuterClothing/Armor/cult_armour.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/OuterClothing/cult_armour.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Armor/cult_armour.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/cult_armour.rsi/inhand-right.png rename to Resources/Textures/Clothing/OuterClothing/Armor/cult_armour.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/cult_armour.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Armor/cult_armour.rsi/meta.json new file mode 100644 index 0000000000..8f2d1b6bdc --- /dev/null +++ b/Resources/Textures/Clothing/OuterClothing/Armor/cult_armour.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/OuterClothing/heavy.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Armor/heavy.rsi/equipped-OUTERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/heavy.rsi/equipped-OUTERCLOTHING.png rename to Resources/Textures/Clothing/OuterClothing/Armor/heavy.rsi/equipped-OUTERCLOTHING.png diff --git a/Resources/Textures/Clothing/OuterClothing/heavy.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Armor/heavy.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/heavy.rsi/icon.png rename to Resources/Textures/Clothing/OuterClothing/Armor/heavy.rsi/icon.png diff --git a/Resources/Textures/Clothing/OuterClothing/heavy.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Armor/heavy.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/heavy.rsi/inhand-left.png rename to Resources/Textures/Clothing/OuterClothing/Armor/heavy.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/OuterClothing/heavy.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Armor/heavy.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/heavy.rsi/inhand-right.png rename to Resources/Textures/Clothing/OuterClothing/Armor/heavy.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/heavy.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Armor/heavy.rsi/meta.json new file mode 100644 index 0000000000..8f2d1b6bdc --- /dev/null +++ b/Resources/Textures/Clothing/OuterClothing/Armor/heavy.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/OuterClothing/tdgreen.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Armor/heavygreen.rsi/equipped-OUTERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/tdgreen.rsi/equipped-OUTERCLOTHING.png rename to Resources/Textures/Clothing/OuterClothing/Armor/heavygreen.rsi/equipped-OUTERCLOTHING.png diff --git a/Resources/Textures/Clothing/OuterClothing/tdgreen.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Armor/heavygreen.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/tdgreen.rsi/icon.png rename to Resources/Textures/Clothing/OuterClothing/Armor/heavygreen.rsi/icon.png diff --git a/Resources/Textures/Clothing/OuterClothing/tdgreen.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Armor/heavygreen.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/tdgreen.rsi/inhand-left.png rename to Resources/Textures/Clothing/OuterClothing/Armor/heavygreen.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/OuterClothing/tdgreen.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Armor/heavygreen.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/tdgreen.rsi/inhand-right.png rename to Resources/Textures/Clothing/OuterClothing/Armor/heavygreen.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/heavygreen.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Armor/heavygreen.rsi/meta.json new file mode 100644 index 0000000000..8f2d1b6bdc --- /dev/null +++ b/Resources/Textures/Clothing/OuterClothing/Armor/heavygreen.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/OuterClothing/tdred.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Armor/heavyred.rsi/equipped-OUTERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/tdred.rsi/equipped-OUTERCLOTHING.png rename to Resources/Textures/Clothing/OuterClothing/Armor/heavyred.rsi/equipped-OUTERCLOTHING.png diff --git a/Resources/Textures/Clothing/OuterClothing/tdred.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Armor/heavyred.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/tdred.rsi/icon.png rename to Resources/Textures/Clothing/OuterClothing/Armor/heavyred.rsi/icon.png diff --git a/Resources/Textures/Clothing/OuterClothing/tdred.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Armor/heavyred.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/tdred.rsi/inhand-left.png rename to Resources/Textures/Clothing/OuterClothing/Armor/heavyred.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/OuterClothing/tdred.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Armor/heavyred.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/tdred.rsi/inhand-right.png rename to Resources/Textures/Clothing/OuterClothing/Armor/heavyred.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/heavyred.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Armor/heavyred.rsi/meta.json new file mode 100644 index 0000000000..8f2d1b6bdc --- /dev/null +++ b/Resources/Textures/Clothing/OuterClothing/Armor/heavyred.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/OuterClothing/magusblue.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Armor/magusblue.rsi/equipped-OUTERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/magusblue.rsi/equipped-OUTERCLOTHING.png rename to Resources/Textures/Clothing/OuterClothing/Armor/magusblue.rsi/equipped-OUTERCLOTHING.png diff --git a/Resources/Textures/Clothing/OuterClothing/magusblue.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Armor/magusblue.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/magusblue.rsi/icon.png rename to Resources/Textures/Clothing/OuterClothing/Armor/magusblue.rsi/icon.png diff --git a/Resources/Textures/Clothing/OuterClothing/magusblue.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Armor/magusblue.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/magusblue.rsi/inhand-left.png rename to Resources/Textures/Clothing/OuterClothing/Armor/magusblue.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/OuterClothing/magusblue.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Armor/magusblue.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/magusblue.rsi/inhand-right.png rename to Resources/Textures/Clothing/OuterClothing/Armor/magusblue.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/magusblue.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Armor/magusblue.rsi/meta.json new file mode 100644 index 0000000000..8f2d1b6bdc --- /dev/null +++ b/Resources/Textures/Clothing/OuterClothing/Armor/magusblue.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/OuterClothing/magusred.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Armor/magusred.rsi/equipped-OUTERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/magusred.rsi/equipped-OUTERCLOTHING.png rename to Resources/Textures/Clothing/OuterClothing/Armor/magusred.rsi/equipped-OUTERCLOTHING.png diff --git a/Resources/Textures/Clothing/OuterClothing/magusred.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Armor/magusred.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/magusred.rsi/icon.png rename to Resources/Textures/Clothing/OuterClothing/Armor/magusred.rsi/icon.png diff --git a/Resources/Textures/Clothing/OuterClothing/magusred.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Armor/magusred.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/magusred.rsi/inhand-left.png rename to Resources/Textures/Clothing/OuterClothing/Armor/magusred.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/OuterClothing/magusred.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Armor/magusred.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/magusred.rsi/inhand-right.png rename to Resources/Textures/Clothing/OuterClothing/Armor/magusred.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/magusred.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Armor/magusred.rsi/meta.json new file mode 100644 index 0000000000..8f2d1b6bdc --- /dev/null +++ b/Resources/Textures/Clothing/OuterClothing/Armor/magusred.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/OuterClothing/riot.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Armor/riot.rsi/equipped-OUTERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/riot.rsi/equipped-OUTERCLOTHING.png rename to Resources/Textures/Clothing/OuterClothing/Armor/riot.rsi/equipped-OUTERCLOTHING.png diff --git a/Resources/Textures/Clothing/OuterClothing/riot.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Armor/riot.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/riot.rsi/icon.png rename to Resources/Textures/Clothing/OuterClothing/Armor/riot.rsi/icon.png diff --git a/Resources/Textures/Clothing/OuterClothing/riot.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Armor/riot.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/riot.rsi/inhand-left.png rename to Resources/Textures/Clothing/OuterClothing/Armor/riot.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/OuterClothing/riot.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Armor/riot.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/riot.rsi/inhand-right.png rename to Resources/Textures/Clothing/OuterClothing/Armor/riot.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/riot.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Armor/riot.rsi/meta.json new file mode 100644 index 0000000000..940cc63fd5 --- /dev/null +++ b/Resources/Textures/Clothing/OuterClothing/Armor/riot.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cev-eris at commit https://github.com/discordia-space/CEV-Eris/commit/760f0be7af33a31f5a08a3291864e91539d0ebb7", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/OuterClothing/scaf.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Armor/scaf.rsi/equipped-OUTERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/scaf.rsi/equipped-OUTERCLOTHING.png rename to Resources/Textures/Clothing/OuterClothing/Armor/scaf.rsi/equipped-OUTERCLOTHING.png diff --git a/Resources/Textures/Clothing/OuterClothing/scaf.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Armor/scaf.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/scaf.rsi/icon.png rename to Resources/Textures/Clothing/OuterClothing/Armor/scaf.rsi/icon.png diff --git a/Resources/Textures/Clothing/OuterClothing/scaf.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Armor/scaf.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/scaf.rsi/inhand-left.png rename to Resources/Textures/Clothing/OuterClothing/Armor/scaf.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/OuterClothing/scaf.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Armor/scaf.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/scaf.rsi/inhand-right.png rename to Resources/Textures/Clothing/OuterClothing/Armor/scaf.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/scaf.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Armor/scaf.rsi/meta.json new file mode 100644 index 0000000000..940cc63fd5 --- /dev/null +++ b/Resources/Textures/Clothing/OuterClothing/Armor/scaf.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cev-eris at commit https://github.com/discordia-space/CEV-Eris/commit/760f0be7af33a31f5a08a3291864e91539d0ebb7", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/OuterClothing/bio_cmo.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Bio/cmo.rsi/equipped-OUTERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/bio_cmo.rsi/equipped-OUTERCLOTHING.png rename to Resources/Textures/Clothing/OuterClothing/Bio/cmo.rsi/equipped-OUTERCLOTHING.png diff --git a/Resources/Textures/Clothing/OuterClothing/bio_cmo.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Bio/cmo.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/bio_cmo.rsi/icon.png rename to Resources/Textures/Clothing/OuterClothing/Bio/cmo.rsi/icon.png diff --git a/Resources/Textures/Clothing/OuterClothing/bio_cmo.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Bio/cmo.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/bio_cmo.rsi/inhand-left.png rename to Resources/Textures/Clothing/OuterClothing/Bio/cmo.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/OuterClothing/bio_cmo.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Bio/cmo.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/bio_cmo.rsi/inhand-right.png rename to Resources/Textures/Clothing/OuterClothing/Bio/cmo.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/cmo.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Bio/cmo.rsi/meta.json new file mode 100644 index 0000000000..8f2d1b6bdc --- /dev/null +++ b/Resources/Textures/Clothing/OuterClothing/Bio/cmo.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/OuterClothing/bio_general.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Bio/general.rsi/equipped-OUTERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/bio_general.rsi/equipped-OUTERCLOTHING.png rename to Resources/Textures/Clothing/OuterClothing/Bio/general.rsi/equipped-OUTERCLOTHING.png diff --git a/Resources/Textures/Clothing/OuterClothing/bio_general.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Bio/general.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/bio_general.rsi/icon.png rename to Resources/Textures/Clothing/OuterClothing/Bio/general.rsi/icon.png diff --git a/Resources/Textures/Clothing/OuterClothing/bio_general.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Bio/general.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/bio_general.rsi/inhand-left.png rename to Resources/Textures/Clothing/OuterClothing/Bio/general.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/OuterClothing/bio_general.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Bio/general.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/bio_general.rsi/inhand-right.png rename to Resources/Textures/Clothing/OuterClothing/Bio/general.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/general.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Bio/general.rsi/meta.json new file mode 100644 index 0000000000..8f2d1b6bdc --- /dev/null +++ b/Resources/Textures/Clothing/OuterClothing/Bio/general.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/OuterClothing/bio_janitor.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Bio/janitor.rsi/equipped-OUTERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/bio_janitor.rsi/equipped-OUTERCLOTHING.png rename to Resources/Textures/Clothing/OuterClothing/Bio/janitor.rsi/equipped-OUTERCLOTHING.png diff --git a/Resources/Textures/Clothing/OuterClothing/bio_janitor.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Bio/janitor.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/bio_janitor.rsi/icon.png rename to Resources/Textures/Clothing/OuterClothing/Bio/janitor.rsi/icon.png diff --git a/Resources/Textures/Clothing/OuterClothing/bio_janitor.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Bio/janitor.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/bio_janitor.rsi/inhand-left.png rename to Resources/Textures/Clothing/OuterClothing/Bio/janitor.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/OuterClothing/bio_janitor.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Bio/janitor.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/bio_janitor.rsi/inhand-right.png rename to Resources/Textures/Clothing/OuterClothing/Bio/janitor.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/janitor.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Bio/janitor.rsi/meta.json new file mode 100644 index 0000000000..8f2d1b6bdc --- /dev/null +++ b/Resources/Textures/Clothing/OuterClothing/Bio/janitor.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/OuterClothing/bio_scientist.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Bio/scientist.rsi/equipped-OUTERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/bio_scientist.rsi/equipped-OUTERCLOTHING.png rename to Resources/Textures/Clothing/OuterClothing/Bio/scientist.rsi/equipped-OUTERCLOTHING.png diff --git a/Resources/Textures/Clothing/OuterClothing/bio_scientist.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Bio/scientist.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/bio_scientist.rsi/icon.png rename to Resources/Textures/Clothing/OuterClothing/Bio/scientist.rsi/icon.png diff --git a/Resources/Textures/Clothing/OuterClothing/bio_scientist.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Bio/scientist.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/bio_scientist.rsi/inhand-left.png rename to Resources/Textures/Clothing/OuterClothing/Bio/scientist.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/OuterClothing/bio_scientist.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Bio/scientist.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/bio_scientist.rsi/inhand-right.png rename to Resources/Textures/Clothing/OuterClothing/Bio/scientist.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/scientist.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Bio/scientist.rsi/meta.json new file mode 100644 index 0000000000..8f2d1b6bdc --- /dev/null +++ b/Resources/Textures/Clothing/OuterClothing/Bio/scientist.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/OuterClothing/bio_security.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/equipped-OUTERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/bio_security.rsi/equipped-OUTERCLOTHING.png rename to Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/equipped-OUTERCLOTHING.png diff --git a/Resources/Textures/Clothing/OuterClothing/bio_security.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/bio_security.rsi/icon.png rename to Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/icon.png diff --git a/Resources/Textures/Clothing/OuterClothing/bio_security.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/bio_security.rsi/inhand-left.png rename to Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/OuterClothing/bio_security.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/bio_security.rsi/inhand-right.png rename to Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/meta.json new file mode 100644 index 0000000000..8f2d1b6bdc --- /dev/null +++ b/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/OuterClothing/bio_virology.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Bio/virology.rsi/equipped-OUTERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/bio_virology.rsi/equipped-OUTERCLOTHING.png rename to Resources/Textures/Clothing/OuterClothing/Bio/virology.rsi/equipped-OUTERCLOTHING.png diff --git a/Resources/Textures/Clothing/OuterClothing/bio_virology.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Bio/virology.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/bio_virology.rsi/icon.png rename to Resources/Textures/Clothing/OuterClothing/Bio/virology.rsi/icon.png diff --git a/Resources/Textures/Clothing/OuterClothing/bio_virology.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Bio/virology.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/bio_virology.rsi/inhand-left.png rename to Resources/Textures/Clothing/OuterClothing/Bio/virology.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/OuterClothing/bio_virology.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Bio/virology.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/bio_virology.rsi/inhand-right.png rename to Resources/Textures/Clothing/OuterClothing/Bio/virology.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/virology.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Bio/virology.rsi/meta.json new file mode 100644 index 0000000000..8f2d1b6bdc --- /dev/null +++ b/Resources/Textures/Clothing/OuterClothing/Bio/virology.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/OuterClothing/bomber.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Coats/bomber.rsi/equipped-OUTERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/bomber.rsi/equipped-OUTERCLOTHING.png rename to Resources/Textures/Clothing/OuterClothing/Coats/bomber.rsi/equipped-OUTERCLOTHING.png diff --git a/Resources/Textures/Clothing/OuterClothing/bomber_open.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Coats/bomber.rsi/icon-open.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/bomber_open.rsi/icon.png rename to Resources/Textures/Clothing/OuterClothing/Coats/bomber.rsi/icon-open.png diff --git a/Resources/Textures/Clothing/OuterClothing/bomber.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Coats/bomber.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/bomber.rsi/icon.png rename to Resources/Textures/Clothing/OuterClothing/Coats/bomber.rsi/icon.png diff --git a/Resources/Textures/Clothing/OuterClothing/bomber.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Coats/bomber.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/bomber.rsi/inhand-left.png rename to Resources/Textures/Clothing/OuterClothing/Coats/bomber.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/OuterClothing/bomber.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Coats/bomber.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/bomber.rsi/inhand-right.png rename to Resources/Textures/Clothing/OuterClothing/Coats/bomber.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/bomber.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/bomber.rsi/meta.json new file mode 100644 index 0000000000..70d61b867c --- /dev/null +++ b/Resources/Textures/Clothing/OuterClothing/Coats/bomber.rsi/meta.json @@ -0,0 +1,43 @@ +{ + "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", + "directions": 1 + }, + { + "name": "icon-open", + "directions": 1 + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "open-equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "open-inhand-left", + "directions": 4 + }, + { + "name": "open-inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/OuterClothing/bomber_open.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Coats/bomber.rsi/open-equipped-OUTERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/bomber_open.rsi/equipped-OUTERCLOTHING.png rename to Resources/Textures/Clothing/OuterClothing/Coats/bomber.rsi/open-equipped-OUTERCLOTHING.png diff --git a/Resources/Textures/Clothing/OuterClothing/bomber_open.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Coats/bomber.rsi/open-inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/bomber_open.rsi/inhand-left.png rename to Resources/Textures/Clothing/OuterClothing/Coats/bomber.rsi/open-inhand-left.png diff --git a/Resources/Textures/Clothing/OuterClothing/bomber_open.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Coats/bomber.rsi/open-inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/bomber_open.rsi/inhand-right.png rename to Resources/Textures/Clothing/OuterClothing/Coats/bomber.rsi/open-inhand-right.png diff --git a/Resources/Textures/Clothing/OuterClothing/detective.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Coats/detective.rsi/equipped-OUTERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/detective.rsi/equipped-OUTERCLOTHING.png rename to Resources/Textures/Clothing/OuterClothing/Coats/detective.rsi/equipped-OUTERCLOTHING.png diff --git a/Resources/Textures/Clothing/OuterClothing/detective.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Coats/detective.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/detective.rsi/icon.png rename to Resources/Textures/Clothing/OuterClothing/Coats/detective.rsi/icon.png diff --git a/Resources/Textures/Clothing/OuterClothing/detective.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Coats/detective.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/detective.rsi/inhand-left.png rename to Resources/Textures/Clothing/OuterClothing/Coats/detective.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/OuterClothing/detective.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Coats/detective.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/detective.rsi/inhand-right.png rename to Resources/Textures/Clothing/OuterClothing/Coats/detective.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/detective.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/detective.rsi/meta.json new file mode 100644 index 0000000000..8f2d1b6bdc --- /dev/null +++ b/Resources/Textures/Clothing/OuterClothing/Coats/detective.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/OuterClothing/gentlecoat.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Coats/gentlecoat.rsi/equipped-OUTERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/gentlecoat.rsi/equipped-OUTERCLOTHING.png rename to Resources/Textures/Clothing/OuterClothing/Coats/gentlecoat.rsi/equipped-OUTERCLOTHING.png diff --git a/Resources/Textures/Clothing/OuterClothing/gentlecoat.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Coats/gentlecoat.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/gentlecoat.rsi/icon.png rename to Resources/Textures/Clothing/OuterClothing/Coats/gentlecoat.rsi/icon.png diff --git a/Resources/Textures/Clothing/OuterClothing/gentlecoat.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Coats/gentlecoat.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/gentlecoat.rsi/inhand-left.png rename to Resources/Textures/Clothing/OuterClothing/Coats/gentlecoat.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/OuterClothing/gentlecoat.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Coats/gentlecoat.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/gentlecoat.rsi/inhand-right.png rename to Resources/Textures/Clothing/OuterClothing/Coats/gentlecoat.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/gentlecoat.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/gentlecoat.rsi/meta.json new file mode 100644 index 0000000000..8f2d1b6bdc --- /dev/null +++ b/Resources/Textures/Clothing/OuterClothing/Coats/gentlecoat.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/OuterClothing/hos_trenchcoat.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/equipped-OUTERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/hos_trenchcoat.rsi/equipped-OUTERCLOTHING.png rename to Resources/Textures/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/equipped-OUTERCLOTHING.png diff --git a/Resources/Textures/Clothing/OuterClothing/hos_trenchcoat.rsi/hos_trenchcoat.png b/Resources/Textures/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/hos_trenchcoat.rsi/hos_trenchcoat.png rename to Resources/Textures/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/icon.png diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..0a4b307734015d9e805fca88ef1c12b5b95a6390 GIT binary patch literal 377 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0J3?w7mbKU|ep#Yx{S0F7ZDJd%}tEi}`r>E!Q zV!*udX)92au_VYZn8D%MjWi%9uPP*>#3i*jxhS)sBr`vcfuUkfa9BZ6>GvSI(O!L@P<%>i^dNg>74h`Jjqbh)4RjMILP?2v6sS}N0W|B3Q-8wRNlX1iH51Z zrE_PuvFhd(5=$m_8?V(cG#5Q$_9Q5*;A=6XG%v#e6X`osdDRMmHqZ8SaSZY3d^_bJ z=V1c@me$J+ih2$&)-|}SXh;Z6IQ{o}(&Ki&@{j*`8W&tlmtTGRzQy&If4V+asQ;@F z=g}80HMsD6;`#YgV)t1c%=C(5-8^BQ$x*W#hjw2Ox}CsX{K#VaK_RoaymdKI;Vst0IqkCt^fc4 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..9ed938b2709be6a71f5ea757c84a2a489b661f57 GIT binary patch literal 397 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0J3?w7mbKU|ep#Yx{S0F7ZDJd%}tEi}`r>E!Q zV!*udX)92au_VYZn8D%MjWi%9uPP*>#3i*jxhS)sBr`vcfuUkfa9BZ6>GvSI(O!L@P<%>i^dNg>74h`Jjqbh)4RjMILP?2v6sS}N0W|B3Q-8wRNlX1iH51Z zrE_PuvFhd(5=$m_8?V(cG#5Q$_9Q5*;A=6XG%v#e6X`osdDRMmHm~<|aSZY3d^^RE z>#zZjYv@vT4VAmSOW$-Bemk~|J>$~v`Aa3eL^fOy(h&Kx*VgvW-UtR$Q~UF|)?&vP zn~cPLBsXcZR++?~+1TB+A-PAlG_^fJCcH}XP@kbI-%1gd-{$(Kq*;_V>py4j(bk=% zaAWbM4TW&)kg;OXk;vd$@?2>`3bldk{( literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/meta.json new file mode 100644 index 0000000000..8f2d1b6bdc --- /dev/null +++ b/Resources/Textures/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/OuterClothing/insp_coat.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Coats/insp_coat.rsi/equipped-OUTERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/insp_coat.rsi/equipped-OUTERCLOTHING.png rename to Resources/Textures/Clothing/OuterClothing/Coats/insp_coat.rsi/equipped-OUTERCLOTHING.png diff --git a/Resources/Textures/Clothing/OuterClothing/insp_coat.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Coats/insp_coat.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/insp_coat.rsi/icon.png rename to Resources/Textures/Clothing/OuterClothing/Coats/insp_coat.rsi/icon.png diff --git a/Resources/Textures/Clothing/OuterClothing/insp_coat.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Coats/insp_coat.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/insp_coat.rsi/inhand-left.png rename to Resources/Textures/Clothing/OuterClothing/Coats/insp_coat.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/OuterClothing/insp_coat.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Coats/insp_coat.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/insp_coat.rsi/inhand-right.png rename to Resources/Textures/Clothing/OuterClothing/Coats/insp_coat.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/insp_coat.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/insp_coat.rsi/meta.json new file mode 100644 index 0000000000..8f2d1b6bdc --- /dev/null +++ b/Resources/Textures/Clothing/OuterClothing/Coats/insp_coat.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/OuterClothing/jensencoat.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Coats/jensencoat.rsi/equipped-OUTERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/jensencoat.rsi/equipped-OUTERCLOTHING.png rename to Resources/Textures/Clothing/OuterClothing/Coats/jensencoat.rsi/equipped-OUTERCLOTHING.png diff --git a/Resources/Textures/Clothing/OuterClothing/jensencoat.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Coats/jensencoat.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/jensencoat.rsi/icon.png rename to Resources/Textures/Clothing/OuterClothing/Coats/jensencoat.rsi/icon.png diff --git a/Resources/Textures/Clothing/OuterClothing/jensencoat.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Coats/jensencoat.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/jensencoat.rsi/inhand-left.png rename to Resources/Textures/Clothing/OuterClothing/Coats/jensencoat.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/OuterClothing/jensencoat.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Coats/jensencoat.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/jensencoat.rsi/inhand-right.png rename to Resources/Textures/Clothing/OuterClothing/Coats/jensencoat.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/jensencoat.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/jensencoat.rsi/meta.json new file mode 100644 index 0000000000..8f2d1b6bdc --- /dev/null +++ b/Resources/Textures/Clothing/OuterClothing/Coats/jensencoat.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 0000000000000000000000000000000000000000..60a4025dbb6cf780eb5b9465f45528e3fc567167 GIT binary patch literal 1289 zcmV+k1@`)hP)ww3?=l9Q_0RStR46@lQ0HD=u4z%%)RusZc9~u2X+n^uaFrXU-0N~)@;6d5X zhO`41rOmr^NAPfsJ6 zOu{rxDgD6z3kVpc-h8K&Vs&-ZD}OESM?e$;JK*Z-3h{V+V9ptTJAzT_m4^vK8Eo6e z`1nJ!Z*Fcv^(VE>+z+oxr84$dStv_F=s(6N^%V+*LZMJ76bgkxp-}uc2z7X1nkF|4 z1Fq|i^gcikMB1KG8tO1a`c&97O)ky>{i*U%9fm%J(DJ9{S65f14@9LgO_SH_b>5+r zf4jWo<#L(VYBm0vPVoQuTCK**ULiEg(G#uzH)GLp$; z=){b41lYEXMxz1CvL4ilZ1E_0OvAD)G#ZUiiBjnZuqq^+!ROb-x00000NkvXXu0mjfk@;wJ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/icon-open.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/icon-open.png new file mode 100644 index 0000000000000000000000000000000000000000..a83d9ec3429447483106c8acbd56485b27217122 GIT binary patch literal 490 zcmVye#QNR24_Ewc;34rUmoqDz| z_Ix(>+3j{rr_(wY1OZY??)fezzO@y9T`mF8bsZ@sK@jl6acXg0*8zB4F6*0m zih;X$k|fx+O&rGvA&^o6Af-eIK^(`}woQ^GolJahQx!bFD2g^MYg&!q zP8fzLrAX7X5l_<;r4(Tpb`o!G;Cj8*=dod+lp@b_0P;LXDaF_@ep~+(19249UnhiU zh#ikd#)g3q0=V5$97U}Se7OUz>%MrNS1;7h_xDELvMfIK`$p_=IIvo+I{gn?;dx$l zilXWiMb-U0o6Q=ru01;~A>77cnr8iMSr(>gcDnXIG60Ze8JEiixa~leWeU=)000x5r!{Lzg`CN}k-e#BlR1^@s607*qoM6N<$f{;wyHvj+t literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..f01e2606973f1e4166342b04768c41c227815ad1 GIT binary patch literal 483 zcmV<90UZ8`P)8qBR*_of2*@d2-p8uV1HoT)Zd>f*?RCh3mQqApj6U;JPkKDS{xNC<-ePS0+J4QLul0emAbFDyph7NvSa! z!I><}kWx~X?gZ7>*cJRY_0OE$l!r>Ezu Z`2)_bzxT{18V&#e002ovPDHLkV1ktt<^uo# literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/OuterClothing/labcoat.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/labcoat.rsi/inhand-left.png rename to Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/OuterClothing/labcoat.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/labcoat.rsi/inhand-right.png rename to Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/meta.json new file mode 100644 index 0000000000..70d61b867c --- /dev/null +++ b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/meta.json @@ -0,0 +1,43 @@ +{ + "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", + "directions": 1 + }, + { + "name": "icon-open", + "directions": 1 + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "open-equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "open-inhand-left", + "directions": 4 + }, + { + "name": "open-inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/open-equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/open-equipped-OUTERCLOTHING.png new file mode 100644 index 0000000000000000000000000000000000000000..23c551dada753ef9176220c418b17898117e1b0d GIT binary patch literal 1199 zcmV;g1W@~lP)TEQFMdhb+45z3!yQYOwekze4To|&NnwV5k-GZMm(8JVm6z-SSOiG!m=#B z3MW{W#lM`KfH8)@zJEu(Ugx50XJ-d{r4llk3;;;!|0W|20J&VwABkXjE|&uUd^tH; zD3439^S6Tm_DUseZEg9Vy;2Fcg8>+0%h$Ioi~r!9-#ZTPcDuaUZ1Q%y&4q|%S-jnD z^JcTjyWK9ocO3qMbG|Gig8HKEAtCW7*Fj4=%F?%u37olY^GPQx@Q z1*H^}5CFi#!vi)pHbl7l_C2i=mRB8MSr$JyJjC$s4!vFv0B~?{fa~jPtgo;8^<39Q zrBcD=<)we_;P4QToR2T*Q$o=1_W=OEZ*Jn#r%zyvA(P2~F$Mtm^V>JLt}Cto<{Cf= zL9f^ISKWM}fJ&u;$z%fH=ZajZRFE$e006C4E79xq{LzSu=zMV1za0$b>I9EltyZGn z?}yfZ(*eTs0!`EW&I@#++KE`0v@`gNgR z_vU8qI5=8yh&p{_^h4bSgXo3<-7wxf_p2c707?jSU7tIr>-y5>d|1TdC%&U1?EnB6 zkH_#l4*=kK9>(KwEF;1qG+$Z-MY#;29Z;{=c{-hjZWs%5zI$^6-7t_&r{^9~mx*bb zJfF{FI+^&3o*4bzViDWh+sNnhFilfRKlFbA0VM=iS68rYI{`p^ucXsYd3<~XuowYP z%Vh}d0MGM~PN(PQ-1+%AKR!NA0RN0elrWTmF^09ZMYE%H9+3PyEW%5SzG<2~_&Zp( z3c`f$=c1?OmNiU8ne6wGEbB$LUw zO@&76Rf;?MKtu;nLXgd7VP9N;Qi`Km4WrR0wlQHDjYc@C)j%nQeQ|+oHXAuNDV-T& zjKOi7NMftPaU3{~gKRb{eXXIWIP@(Wlw^%13I0KA7(>B_yfBpaf N002ovPDHLkV1g2?E&l)j literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/OuterClothing/labcoat_open.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/open-inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/labcoat_open.rsi/inhand-left.png rename to Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/open-inhand-left.png diff --git a/Resources/Textures/Clothing/OuterClothing/labcoat_open.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/open-inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/labcoat_open.rsi/inhand-right.png rename to Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/open-inhand-right.png diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 0000000000000000000000000000000000000000..463367432850760ac82db858fdf7394d67568088 GIT binary patch literal 1345 zcmV-H1-|-;P)6GhgF#2LdvG8)vO!**Y{(%#*wVq59OPr0b9!*WtK4FvKOt<$O)|8H<_{>A zdoZ-5_~0){_aq0C*^@S4h)BFx1Q$VY$n+rZcI8ja+H#t99uSgdM*Ew2=iPZ%^A2b< z8jVJy(P;jk^r-9>fRMX2%S%^Q}MmLi?``FVNg&K;8I_p6AfQYl)k z*12s`sT7Xm$X*!1aUA)0VFBOw`SayV02$UzO-*rca*}j94WOj|jfyzH=;&xP6Y=`d z(NO>%FD#s@zbf&;@6>ACo17$*$waSvlauV!YWTjdtbeJcOdVnVcuIonblo=Z%pU-o2bcEwL^62P@d_GTRYz%0-o$I=ILL?pc zh57(HwOU7;_;*$POQV46x*gvQ!vNZb`2OKTet!PEqdfk*!NI|1lGg8~|IJn;mVQJb7|0VK8YpRnhM%492mtS*&apfQ^lf zQ)OQp$_DU+h}?a6co=BA|8?E--EwjfOp3Ar0D>T3YjYDJ1Y4V%1VM16PISxR;URGT zA{f@I(6s?drIIvFv%}T1vCmdEi)osaN~LRk3JkGrTV^sDng<7rPfP&+%>MYq1h;SB zCX>lv+qRN^*Z&1VJRu?@2qBo6nTg7K&8JVFfYTmuvR;L*4RCmPh-sP~_gv@!o)A%a z5;s)A_kH^NPj@@X;6d^4@JaWoR4RREl_ly)0{ye-rM^a^(P%UpjYgxvh)F))FO3l|7(duXn^-yI7Rr`G8z5 zcOxDUo>8!}+0MT7It-o_=E9KpSxQ+b6nY*83x$IGEM*k>y6NLZBubCR@q{1<0)ilj z&I|OC;o;#(?>Z8)$_A)btC59Y3n8bbr?D&x!!QsxkRcYw2Q)0pVrqJtxEI9x)-8z^ z!SHDih-L#i&kOX5P$RAzJ_ROO1eFXBPkoq2{LZ^8c28Xfzs)=4<9}a8bQ5?=f5=00000NkvXXu0mjf DpTC$} literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/icon-open.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/icon-open.png new file mode 100644 index 0000000000000000000000000000000000000000..70d976c24127c94f1ba64fe4f34e69fa33157ebd GIT binary patch literal 526 zcmV+p0`dKcP)1u-PLYr`MI)Nfl2jm8Pm`-buzv#sa@%y>O474n`3rjzgMqC<15;O7K~r)e z!S)18?=VNpac8cNn$Gvmyl>|FQmCk?_}@{=h<)GB0BW@w!{IPLJ06d-$;`x zEG+hYKdaSh9FIp9iv`_oH?PfRGlUSF>t#ZGDr)}hH~?sxh7f|;Y{nPc&doJV1K`J7?j8XEq>#`* zty{W|Wm%+Y3P75sSe8Xg*H41}hrS?%0)$fX5_tfqs`}FmSg+T#bRAVy0eFc#LRmb( z=W7DjbrsL^@`3vH_I6P>O_TTK@?vkbS}_`pO8pNC;dx%Rl``8(nVr|YUhiVB?45;L z@GGH|7>1F5o2H3j7^R;5j{*QBNy6c908TTIB*{(YHw7@-?Tel_n@!%AON@5=-vkJy zWImr`+cp5UZ8M!tZ*D>9NgWIZ89=>Wr_pGz+wJmpOeT~2Pku#3MaAFd2ggv$nV`O_ QhX4Qo07*qoM6N<$g36@yZ~y=R literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..79b19b5605f6aa56f17542c27ff34e29332cd861 GIT binary patch literal 518 zcmV+h0{Q)kP)k>HTO!*!r=Uex`QW=!J=D6i>{vQs(&FJn2lMy+uV&2 zDIQQ|iG_g6|_;a8pqfMr<-Aqc~ePZt;UaLcj) zxbnPuQ?Fv+VR)LRIF5r-3ez+ZLI5Cyz%)&iQaFx7nx?HxJZZo?nbSM#vES{;^Zc*c zJkQzhcJ$7Acqen6`A-}8_B((njIS?=;}|I=S(ZK0WLbukk~oeTUthxXzV9^*03;%T z>D}|`V1Sg8vMl*^b3<8{NGUlT4DJNed%Y&_bwnyj_?h|un5J19`7)XCeYJXY{x$U( zeb6_cbzOYluLCt2jR5#~e$J28iqDe?nc=1QXW>U3zGai9bMt3RQ1PN{;ERC~;5GLh}W3 z2sjJs!E{fhd+3TBoI)}~57MEbqSV9`7ek>id+h>}0z;KM=AsPxIcqc{5Me z3?L8)1OkCTAozch;t@6sg8@LLQt5fFU)iuQO_Kq@+1VMMK7AVM+1S`%6B82vfX9y? zbLqbpSI{sFmd$42dEO6Yve_&Q!(gLuf@zv;ZG9b{=i$#cZ?Lhk!Gf}zH*aEoVFB4} z762HJ6Ml&!WEck9+TI2L6bgl~x1;5SLID7;0KdRR;zp#Mo*RO}i{K5i` z>UDUYhqd+fFjC?$&{OO=7 zoSMSS@(iE>sRw*RY>QN14O-}-FEs=u!T48vgeS6A_3$_6yR zwr!M3CHTJIB^UI*ZFl5eOxd`+>@89=47o^61^mV{_>Fl?IgC4m*Ucc_T-re0DN*d(N=>gGqgh9kggHdEf zfvhM4@BJ)rJAe`bNs_we07;UDHs<5<{Un$aZU+EBqtWPlJt_jH|7a2n%6W+G08P_a zKA(rIC_TMR34yFA$mjFWG;OGFfdRU%vs^BR=Ghr;&CLP$r}uBo&0%_a8o68!x~_BS zkNsaDfD(fJ{eA51?WF(&XSTe&%v%*V-@bhV&>I2Ym-7(Y0YP|0$6TdSVTNI(qW6=8 zArGGC;o7xcvy(I);BY|D(~;jeJUski*|4!JD-|caEz26&-*JIJAP@)y0)apv5C{bS z4HA7k&~=?Dih_2#o%q}RurN)NrPFB;LK1xp;r=SD>pD|a6#y_hJIl2cJ#0+VWV5rg z00320xj%>koDN{O!Bka+tSDG1m*M;Vl{q13yzl#1DVHHD3RG1EyA3W|xI!jas|SEj zwNH>F3BOtv(&;oBjmD)72h%i}BuQwu+jyw!Xfztg+|6_fIrk-SMZlxCI-qrwWbS4_ zDdjSJ6i`Y#jsM%OM{jkm=eg&AgG?3V4(TWa@KD#$Znu$6r+KSNOgfzodmjLx0pt$p z>?7bL(b5FFs}%4JYWVeRbT*_TS&&!6aC|E2OdG%hH z#bU8%Pl9DxDc)TviROSPl#okX9*@#!G={P#f!hJqYBdbA6GGTxu?Sg~N4_W;rPXRd zmSrp!i#Q=9v?pp?ToO%!)oPUm;dd3iALtEqpAf<*A&GX2a7940m!skLWOMUUS7j~B zN8L0(%d9 z$NL6gFc=I5gTY|@Ke5mVH;n`o0C+$CB;&q|+VTa_@#*8=SPhP;dKv~sl`Gf2ff@Z} zG|IWE8l+-d=gM$ZHE0?MD1|UW(?~#h?C;0&P6BVkn*gAYwyL&nbc(fbSK9CcK&8Kg zMmYdnZ@Hs-Lfd}5phPT?GlQF8_&=OeQNnl=%Un&>dKSXT*&`6h5NYOZ?Q~jxjw3P?LS!ZcPiqHKazrObyia82(+&Vw4USnN zGa=O*xk4td&H8hjyE+-|_toH-g&4sIml_~CJEi+B@K!WC?YMuh2dQWT_wV(f*=dKs zTQ9uNEZO>LudPs*fVH0FtiWQBFS+z+{^fri3_|nZ)@HtXOo~=s0{!Bax#tS z@HW!1510;bLr$i18iY}fQ~LnUPlBYK2Eztu7#LOf8=`IrSgXEOKYIlS_!}Y`21fI` z3nYmCVa0LtHe&mSYSJU#Z?CODxl4rO=52`nVJiL9IY5%*su9w$54!7xMmhQfATt8a zw$otP03^JUYfF&e0q`XPBsq@c+LBJLP$buuU@5(laox=10m`4lXTvKzIbq3m&D2Ot z=+8zW^)na@27|$1Fc=I5gTeT3VCv<8=pR%^C)rNzu4b=#%!7)oQjLYJ*pBm@dHdjzLe2;9b#Ceb(8AZb)iVlS!J!*V z!5@PqTzS^bhEH_j;VoCuBH-aI7kr{Kqb)o+VJYFtsrt(~2}*Jtaxx7$na0)A6C;J> zYPCz%myd!hwE^x1->6|W6k1Sxq7&X~2L#@V#A$)FkR;ZYAn;ars~zx(P7H+>)bVJ? zW)xFN@NV#pLQ3T1aD>2HVXOBb`b&NeN1cbQ-lOUzx`#pwinc;c162fQOW$Y1FEIYJ zD3#gpVDuNW-KcKts;H?8;-US6u{sEo@_YZ8Rv5R>0AnOiZ zcTv)VRHZN%SktwF(T1qd?BJ3uF!1+d3WMcyO5S^U@B4f2psBs z*(t~G*1~Ud3#uAkoeMj4Cjx@vhusS%@&@Neb&}&bv{D5CtyCd7 zp5y$e&P3keuzMjTVn|f!zU|x^({ZopxL4%0q-a{P5d>Jf+Ze?%o^3_!o^4?i%UHYH zGU>zxnC)MuFJw{}#WL4tr;*}?OzMyEcO$@dIN8|*Kv$JWF|Tb=$fVF!1%Q*CO-zAt z1>Cv=2OBE`+3HfbQ19!}_9vb^<74xC#MY{9(fsg6=vNe4!XR00Vb!13(*V?d`n5oG0a8l{H{;M%g}&zkFr=o@RYj`pe^5)mYr{D8P%tz8x@>;(lYe}I*spz53jqNE|2rKr$s>!a4S&^Z{_Pwj@)f9`4g^jQeNK=@D8wi+3(#qEl3S zJ~snE@8|?tI*W69#MjwbU%Yp80)YA4jNhp@G2n@xRc{$i7~Gr}i44Zk(pdnsbe70q zoSX9^!wG}4>aCQCkf_sR%Xv1(uH9qT?n!77(XwJA@GuW{Fj5&@%WR9gmWh$dU>@wq zloK~lDF6NYq#ngcWe6!MKQ_J*QdEpohNK>SGXHH1SPqxFTL8qu3Q0Z6^wcD7*<^ZZ zlB6Cb7FGbb+})xeFfNa0ci?1gsbeU&;4jqAVzd2UhIG_{&j930m9{(Ad)t&Y*M**< z&=PvZ;&aQ5u~@escgsyPUTm)=R}`rwgyuNBc89`E;aFIaYWu4U09bc*@}&xO`-*(2 zf^}Dak@$-Yw2naO|MX=1pBZ>`Yi+Hr+gJW~!E$(XYtja!76zd8MRclNZKARZ7!VK; b@GkfRCitsVZqdLU00000NkvXXu0mjfoB;J% literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/meta.json new file mode 100644 index 0000000000..12c0d9c5e3 --- /dev/null +++ b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "icon-open", + "directions": 1 + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "open-equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/open-equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/open-equipped-OUTERCLOTHING.png new file mode 100644 index 0000000000000000000000000000000000000000..44310161e6a1e79c776ef4acd2d716bbafa9b81a GIT binary patch literal 1253 zcmVbC9LK-WEe7+ab~R22whKelijt+6sx${LNsnG~%Tc!ArI0{RUdmoP2^IDtvZM#M z-g*o|w->30u53YP-4_2;a19}ojYTIhPPJzCVBd6NqM0|7=yvygAS5&I&+on8@ArQ5 zGQS5f7z_r3!C)}{pIB%r_rxX@0C@N0QCYi-%4!9XalHQloAC)%j(2oixpw_q7?J-C zjc{w58*(;%ZXIiz8$Gc}r5;M?iA^dGBVnxX=J9$f1po>uYx56di1(nY)sCM4D)|jG z!U5n$-(A%b+VUHHcL4woBjK`gvuG#3l-k1(?}7chPW3ayd$5$+!}@NXT7FecX@w_q zGS=Sw1}oQr{9l`R_vDeKCpM|rZ+Rh$Np$xQqQhZ5wZz=>nk)ycd;sWbwL{2Aur_|N zoqSS+uiaTvN3VQcOJIFBk7ZG+S}$8TLbhiULAL_DqvMM0CJ!Iy zEVH&CO7L+`*lzOhj*i!K7f9eEQN?-t4zh(KHRuuR4|rP8+`+?n`wsX>luABz3=l*K z>6g#3H8*7eK)w|O!?aydqnsQADEEM~JQf}y+s;lcd?4%0iZ-|}9n63Cf^!}Jaw+z*)Q%di4w zXQm-!E;k!g2_Yk4c4pdeds7|&oO;2hLLSyOx7n_AV{LQeQz38K`hYXCGcX zdkP^VVI<&3?)_WSgV9Uw{acI#{17q{UOamWM`xem+$42o=wN#dxs6pr!slL zRX95PsM}I2Ah)qv^1Ky-;VXFzk~0a~vDE!B*kElg+idtaCqlf7R<3D6yh}ZoK-ij_ zvNTwmsroS;1O-vLwDhSkk!6(z*G;A?l*Jt?ZCC>P*sKlQw^ z#ELo|?b!5UCh4-78W|@gl2t!7stlfeSZcZ zw!SPPZWsoQMuXDwGUxBlFazwqKSN2D*uQfp0|Ns9ekYs|=mTr|o*(|!j{Y}MPCC73 zpI<7Kuq+EjQ2-e1?nYHr2D`ffP!t8rvM7~GoZhp~|5SUTH0wK#(^B7c-B|jcb-?L8 z`~0&vZy;T`1c2i>6bc2-dGDB-n&O=IjzXaj8YW%1#MzrSzL*m>>T8*o}i z`Ffq%h6kyxbwa=<@$0p>NRkwO4sL*`exy0z zZtX3%mlh?%Fwis&P1C|o2X{f!Gz`Pw_R^wsxArz}pFgYbI1atNz4Z3>;`@I1*>Rj$ z`k!>b!4pS0bp09!PaFjxlgZ#XPS|N6bcW+NWHOnS*TtokzNTs6WN6zqj^kii7MiBT z(ie^cf~BbWu@9VKSysp60K+hNy|Thjb`|H$DYRR6_&uAUufIQ*e&jd+V8~r%&a%j6 zv*Dc&-fi1v$X#VYtWUyNmIc5cdv{?^O_ANZi>hr?efct0dqNISM@JYcKVZ(b!x=w# zA97bwM@OKz7|W2T96o%QR4Nrlp~1WBx;%dTShzhQ2h_?BP)A27e2BvX@gN?rl^+Nj zAVR%f=fJ~907!rR4L|;Xbm0=a>vaJB^xg@#8EF-Ok4w^lhmY_)kIBhNDWA_vlarH@ z=Xo4>_=ub$Gdz&}qETS8{$+XlC(pSoZx_~&?0|s9BO{ysc@>LAY4OO2Xj8EX!rw-t zvF>{ugdGt47Xa3IyZQK5;dx%$Z3sEw#j!C|Rc-m3s;ay=HrBR5TTSFOGuVWDS5+*l5e` zrNz!VK-cwkn~p>7Dgbk-u8t-}Hrmjv+l;6ULR(_GuKTX*GUTq}x-N!cFqi5gr^uZ5 z{7ug31iG&K=RKdCA~Toj!Y~Y)Z4$L1vIBz757Wijn>VFe zQIaJL!@#mEt|&V=d-DdvbO}2_=m`iq|Mb^$9J+oD*LA6XNJ?yc6gx?vRj=1^U6(`G zukrNPbDR{P3nw~Bv(^(m1n$z<5JZChK0h~PL5@87?tTCK9Q zv?MJ7w^<8}o=s2VmdlabiaZ3;=``hXxnFL>YJfF`?<#L&H zI^7xJR?CZNn!c{A7Eu=B`JL@#q{k7Z>z;Jz|V10Vg}K+IMM;0pJ$s zcDvl}=Z!Il2&?^(oQlc;fSfbld+q@i3l`4dy;pbMaIyo>`)I8trG)pMe!q|Ro|F>S zS^!?EE0utg9hktGgOYPT%BPe#%)O=8-w^;Gm$0GPH0S);y|tD}jAxpfs%KbL6*=cG zn>M+ssx;*QP^op!mBxib+Z!<=Li|k!Mlm8H-#Q>7jDGMER07r^FprVVW`l?v#d(aZ zLr@D)*)@f-4uMXmgE5BTaL97Gq^@gryB*gL4@{Ib)vTbbpo9>PqV@-DX=!QsGrR*i W{;X7*9!jkM00000P)BF zoVtfx8kS{yNZ1^*W}!Y*rrBVKw3V@2R=8Rxgf8ny#nxCTvaQG)B%9soVKgI+qF6H% z%Y{}y5FWpg-v66#zW3(M`#xyWq)C$|O`0@m^8blN?-wV>-4Z}HC$LcHBoU6PzwP$> zq#+@N(_R4J=Cr80Uo-lvTU#%j|Ix8yru2WHSA1%si@|;yPJ4mgu>jqEpQL&NIhq;-)8Iz4eIY~Y-uijXJgB>eq9G#IDbM~T+Ra!{&G`o&nH*akAiZ3aXHV0 z^C$Kt3SOqav$2I3xT0RXS^d}ad?}j~n7;p1Jr>h(0D8v){OixNa=Rd~xSVHkIZrkx z=;>BBmHOZ!5uT^pe}?r4IDtfX9>A3To)IuP?v|YP0#18@Y);U0?Dl%t+1SGE^=J&u z<^+`Ayy{#~OMgg6sppRmm%lqCq)h489RlO$+5xzG?}^1}FA(rq0T5$x4!0dcjLFdu z@L6%%3*5c;!~!ri(M9BX3NFowu(KRFAVc zf!XLT@L~kaMt3z4l1M$*7-)v|h}=&teb7cgwSJ}Ddr{W`i_3XJ=^ncMK1ojmbo+gh zV!&sThsoS!U4~RMnY+wql1IIeYW-q#^q~7)tl3$8N8O?4wl8 z2oPiOQoDfL>md{aSkZ07%TOl1P`c*@eJDl1L;1K;UyQ{oY!~;`(Df8>dp)$+TGho) zfDBjX;;PuSkqlsEaXHVrt+m1lXjY6yxH&CalxTXX{)fMPslF1K_1JR=B*IaPBL3jo z2bOG3;Od-9y$g!SY;>2ab1t$ufd|(+OYzUS15XeEX2y~Zm)+^kMD4*18y4W&>)S_*Yz$?$<#y_-nAKqgcONz z)G{Qb@UG3M&+A4rey+WyzTW44HHICa7@@p+I_(A1;%1n>|Fould8up+Lqh=I54Zmf zpe{PJ>-5GVuSd=>egDo2`Vadqmfi{We(Y6a$N`E0puB)Qktd+R$~I#Ln4x^JT75GZ zjsWG&t6p29*l&H^b3iZ{lx|;q#_fyG=a@UHifA$?s#Ad|^(<hGdYWwJ(`U}1Ky2xZQ ze00xM)~*WqM0mc+hW*uV(xgd~CQX_&Y4X2_;r+YnbW`ljAYv@u(7nJ~bo+gh+v~x* zHlt}bTAN_#by(h}USY7`hX1rf&c-g!@b%d5033{*M}47MJsM`+brT z8+5-8D;@`U%iW^+tJDh|6qPjz)wa039@R;D&>aD`kH0{?^mDR;yaiQRgdoP^h_Sfh z1VeYg2ud}Il9H!GPQfL`qM8;L({XGce*wMv?yYVItVb;TuymZw32NFan-jP;lHtS6 z5lyi|qfpXummPD=MzwZS+Nu}b4mdsx!=IOTf+_`Pqq~TO_<;cLa3L0ZOX7a{s@@nkV4167X5oWND*OB0$k?vF5qkb%V(Dlw6MhhSKu7 z9iZgm!(VPPHPMCBUZA*ZV>Y@gM?fiE-e{DRyrNs&mFJ@MNcqAm>jvtfdkB2hYq6~V zNs{=yQyq6L);uFWYXcy;dB73ikb`{g?;A|!E;E>#0${OZtKR+$tpkn^L+BH2%|J2w zR{+FE-{Q0vRJ~BThfunQ?J67VVd#0?cd}IiaQx!ewAflX z_4p2%o$qiRJ_IzTM79>na$M1V*msd)ew)p|d;-AZueWvEVc6iagAVEGh8%vrpW2yQ z>jt2Zd&c_GR|n#N;{!jI1iQRVKk{aR=s$7*w6|IL+v27n8%!D8cd}LToI0Z3`D{*5 z%hL{u3+GQr%CkSS^BwVr&kfyq1ykwq_BJc7!-p6@*RDPi4;rVvz|=$+>R zo3;LrYGBF%zZrFz5^E%8Z88p0x zDCC}*>E@MqkZwgN6-NQArso0U>km^7fP<|G*o#-S!_*uAsPzB?4i}$J(y+RKS_FeZ z>C;IVaJW=E%woy`Zm&mE4{#&&w&A?IS(I9V8=<$UtXZfm+c$!#iL2Z1lLj2}teeS{ w-@IKe7c(<64V?^w!Jt&F39z)8F|{B0A2i1%TWqGX2><{907*qoM6N<$g0zT6 zuvPNX=#a|*NM|J0vdt)ws2RuY_ZdBsiqnw=V0um~$#J_9@=&ma$oe6%q)x}P0DvLR zI|c(dSKs38vg7Zr2QW&BC|iKH%Z{QR;qR^|mekQxJ9G>N%yT`p1AxD~9z{LE+hu2Z zPP;JPt#ZhR`&x}yQU@Tiepo~*egfh=med*UYc;q4WoICrk(m4V!?d;i1dvbt*AEMM zza$Y$>co;d>5Nn|p5-PKjVFi&*0RmGWDm9WI&%7Nw0MFZNj1+!Gs5`|Syl;#o-_b3 zySQz0IehHWCAsh$TLfoE;1r(Ck+UsySvUt1f1UO)PDPfXN zJU#$wh$VIQ>~#eqD4Li8mP?>SqBcRkJTYlYXC%g#8qF+-^e;q@8DDB7osn3cn6%ZN zh&YcND%=H-pZRWoFG^&!=-RDin-TttNDEPR2?Y9^wqRq6oIJo<{M7G~J#=o&(Afmj z7UGn33;snY*n+$}PmiRcM54AHNk!hBClqY49HS}$kRMKB+BqFrb68nL#U%iE{q7rZ zI+_dj#I*~^52RiIl*lTuoo_&Iq3_}~EKqd`szp^L$p6dBeWhS&4m=tgF8_W8r4lr4Yq*>5GSyKE9rs1cr9ELnA_W*00000NkvXX Hu0mjf|0{me literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/OuterClothing/hardsuit_atmos.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/atmospherics.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/hardsuit_atmos.rsi/inhand-left.png rename to Resources/Textures/Clothing/OuterClothing/Hardsuits/atmospherics.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/OuterClothing/hardsuit_atmos.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/atmospherics.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/hardsuit_atmos.rsi/inhand-right.png rename to Resources/Textures/Clothing/OuterClothing/Hardsuits/atmospherics.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/atmospherics.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/atmospherics.rsi/meta.json new file mode 100644 index 0000000000..8f2d1b6bdc --- /dev/null +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/atmospherics.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 0000000000000000000000000000000000000000..02154c65cd67b2daa2bb9ef7c3695b77c4758847 GIT binary patch literal 910 zcmV;919AL`P)2R&EY0KMXYo9UUD}MgtWU6&xEI9v&VeJ{1lQ z4i+><4-XF$JPs{#w}k)z00DGTPE!Ct=GbNc003=zR9JLGWpiV4X>fFDZ*Bkpc$`yK zaB_9`^iy#0_2eo`Eh^5;&r`5fFwryM;w;ZhDainGjE%TBGg33tGfE(w;*!LYR3K9+ zIk6zIC^x@IiHkEOv#1!PkBc*{C^0t`#5UwoR&e!m0h9b`u?wa6Hw2!guQQXe;PliIxq<&g&}&|+kVwPCO*|KC!Rij zfHON+N1XHv8@Tu0z=`L@Nnqw6Zkam-6^}6*IIWx{e1hOJNaD4RO9*IPoO4-M5n;4- zE&0`j;wMa9Ky&Kg#4bnpb}QoijM*IsfOA0biwoStSqhdH!i*MUk(X_%_&Eeb5W@M0 z>lUpPv4Vs(L|R|Bsp97#;zYvvh$BKLEmJi|;$C8`I3j=pL~z707t=NbHY3=r{rrM! zcMdMi$${Yh&leX$n|g<@4IVm)rY*1};jncuQjZ$~z~XpoKaT{tuyDy;f*M3FKKXLY z(H(bO@HwpiX+TD;XKMhwdtbcA(;z?*f-2-<90qWF~*J|w(V2cm|Hpw8Mv@EH0Kg1I=2B7PY z_zp)gPe>5+)GuU~>4s1JJnIXTFd!Y?q<_QT_O{=$zY3s_59I+pDFnw|1_%Q(bes)L0!FlrWTLpymfEDl6Qs37YlFdz^D?n+$4lO!0(ngxEa#859U+cWt0R> zgY0ocz`TqJ7UmJbRwclH4A8sZN^&(752HQM%YTqXz2a?oP;tHdM|IFNf^AJ4j9#Xy kAqE8X@*fa1jqq%L0Qrd=I!c0Q7ytkO07*qoM6N<$g6(R79{>OV literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..1bcc6adef92813d0b8ed8206b0a0e5e23783d7f9 GIT binary patch literal 381 zcmV-@0fPRCP) zMh_1U6Fd(6FwTAe0004WQchCR`1uRgi1YcQ=(F#pMqa11y~&Qe(kL=DYw{iKjTlMskN562EPDJByid} z26nseZ+Y*0&H#5DavW|3Xl2NmbONZ+CXIOlNOUgVX>uL`0!(9qW-l}lSO!L403#BJ bzyH(+s|g7YH!P5<00000NkvXXu0mjf)ys#J literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..1c5a054bbaee9f87c26740f5471b6c32ed69de38 GIT binary patch literal 669 zcmV;O0%HA%P)V=-0C=1w$2|^%FboFJIX=ZF*inC2y`UhJ0qzii+jxMY*ln-hp>KOFhH**@ z;+*Is)%10M(RUXLU){WbalcV0qR-<0m}eI-nl+zx=2h&i-cZ=I8W=r=N6ot!7*}dB zE)j7~^aCcC9TVYa;fDYK0pdwSK~#90?b<&}8(|y=@b8m6Nj$y$5lcbP!$1}x1iLut zmaPsQy7&gV_y$~EdLPH~vz9B_W;8!xobsaauQ}yKGn$_;xsq-E_20*4NxrX7WD7WslXL4GrN$MKDGMvh z+N>;VlT2Aq;|gxQqa4S{1X~VHVX7tN*oc zAIc&kA|fIpA|fIpA_^w-^Y<`F_7OzS1^Pv@k05(A)+dsEgvgTWBSdlwNcIsTIRt$Y zeS}D^0G~u3A(BJzjzAwF(knosj}Yk(AlXMCqQP_vBqs+{jSrht00000NkvXXu0mjf DS}rd3 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..60c4c9631efd8d0ae84fe9ac6cfa01e1fd76206c GIT binary patch literal 733 zcmV<30wVp1P)V=-0C=1w$2|^%FboFJIX=ZF*inC2y`UhJ0qzii+jxMY*ln-hp>KOFhH**@ z;+*Is)%10M(RUXLU){WbalcV0qR-<0m}eI-nl+zx=2h&i-cZ=I8W=r=N6ot!7*}dB zE)j7~^aCcC9TVYa;fDYK0wPI7K~#90?b=Uk(_kD2@Nd?%UD|Zbm<$FpbkK`3io5hw zZ@t-rsF%F~LH7oB-Nkp{#SLGB2OW48S)G?zL_x|x=D@`|qir0nk;jWIwINwjle*OJ z=lJ9g-#k3ebI9)p5D^g(5fKp)(f>sn9$3D$CIH~4-NoBS5B|7*>H2Mvkdrui-`xB3 z^6ARBLjH}jGEWT;q&`1KHNOQVmv_8O$>mYaZ{ebPbS0v^p*t(HJUn1DkFk9?hid!=+#xx8`G<+Vs>d!XeCv6J^QZ(&Ft6$x~^+x zqa#TR5>jae8|$*zSeHdAtw36kU^Y6EuIpMJ!9I+GeN1PvkgZk(k;4@X^ z0pGrws$490EaT7wfK0Kh)gRtF-~0dO-K>3jia2E^A|fIpA|fIpBBF8f^~-qDdIko$ zmc|B6TF<~B_tMyaN$VLHNt}BIy!hGzaqJoJD^T4mt~~=@e64_7%TOD P00000NkvXXu0mjfTfI-n literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/meta.json new file mode 100644 index 0000000000..8f2d1b6bdc --- /dev/null +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/OuterClothing/deathsquad.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/deathsquad.rsi/equipped-OUTERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/deathsquad.rsi/equipped-OUTERCLOTHING.png rename to Resources/Textures/Clothing/OuterClothing/Hardsuits/deathsquad.rsi/equipped-OUTERCLOTHING.png diff --git a/Resources/Textures/Clothing/OuterClothing/deathsquad.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/deathsquad.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/deathsquad.rsi/icon.png rename to Resources/Textures/Clothing/OuterClothing/Hardsuits/deathsquad.rsi/icon.png diff --git a/Resources/Textures/Clothing/OuterClothing/deathsquad.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/deathsquad.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/deathsquad.rsi/inhand-left.png rename to Resources/Textures/Clothing/OuterClothing/Hardsuits/deathsquad.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/OuterClothing/deathsquad.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/deathsquad.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/deathsquad.rsi/inhand-right.png rename to Resources/Textures/Clothing/OuterClothing/Hardsuits/deathsquad.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/deathsquad.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/deathsquad.rsi/meta.json new file mode 100644 index 0000000000..8f2d1b6bdc --- /dev/null +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/deathsquad.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/OuterClothing/hardsuit_ce.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-white.rsi/equipped-OUTERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/hardsuit_ce.rsi/equipped-OUTERCLOTHING.png rename to Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-white.rsi/equipped-OUTERCLOTHING.png diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-white.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-white.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..9312de4a0cc69b08cf907faaee130493c3a29ca1 GIT binary patch literal 1068 zcmV+{1k?M8P)&9BvKug1P1umMXjiQ1bi4vAZNE*o4Bxy{9EWP8#EL_M<{fJAK z;5sv}&}He|LIPU11RXJh!DbVa8q3FE>i`2C-vgG36pk0ozqZoVwk&$XbM@vu=REIo z-uJxc9N57QcJMz#N@vlPi!K4s?)KpI4sa+}%DNpC>vyM?gkGZ*CQ~W4dJ6!-k)Evg zKJ57Oaa_C730_)hMWxeXtG8e>7BUhPYXUa)8l^B93$fK(Q0cUkR$9qDRIzsMe+`=j@rvsC*5SP=z+`=jVg$5JB;20{MmW;eNH=l@ry6P%1Gd=;p zonddpf9iA_a|^4SI^7oW$>THQ6Lfd?g(_crF>V%;7Vy3Mj0EAj2Yfze#wWt|4*fkH@9Fil>*S! z)4$o&cpQM|e}>UGoGA&A>ke$lt(GVQz$U=uj`P%7pNq?x^hH!xT_t4OUg5{pQvxK; zfILsWlmLz#wa3IvS%AI5PeH*!{Exzy5kRfAf&KgTFgw4@<&N_}I9nyz9o)M&77?5M zXf*q)?y*0jd6VvfwUq}7Ik@(nYl?QahgxexWPEmhIbzpZ8)$cXc<98x#~T|NC9ue^LhF`bczPLekC8YTLCHMQ1;nD(o+HlWW}f%9&cKY5&ZoiwK_hH+5P@~duVO>0D#|r?aFNYsCzvTPfA@7jZe;gLs!=& zS_xk|2i9*Yrgy&@vejECt+Y~IUB|nxXZRU~XY$i$B`u`)%a0ACZ(`Hk*ate_hnn z)QD)ixVU)h_ESVsB~U7rXf!Y2a5Tr*{|U;=%f--Oukib?3$xiQMn?L@&`_WF?n0YT zt8=%VfrKb4D-(l*z2a71r#O7rEQW_~2yg$l!eB6nl9Cef%T3R=1te_4qN1Xh0P@Mt m$;km=bo4gU)4{Y`8Q?FKk-!x=p2>9p0000GT6vsbnb|`EU*Ix^+tE6Nm#SVp$>`5UiA`uT75z(bX(6xg89ilp9$DnI;i0WV= zL_we@F$iO1&9;>c++AuIXVPU!GjlrZ{zlDho!KqA_=SNt^ZU(vZ{GL&-fv(X>sZHs zhNqC1uASOx0jTi`lDfw5=!ETO-|jjqAp9sn6M*XvKIDy2T1fD&?oMJO{eVeTRXuI6VMQ9V=Dn@E3~MK@9egx_A5Vuaj+bVb3T@D2d_28KLJ z(B$;NMF4aoMP)@9x{(6l^ua}xph@4rkO!cvyOXC^qHyNfDk@x2pc%SttMLldc*Yh! zFH>e3;q#&!Dek{20hX#XlZf!;b8ermDxgL)oVK^NSWYS+#itoM&wd``+V_jAd^)bc za^4R#E4+TAu2})OPYN;@TzA2NW`(+%YUaN5XM0?5^I?V>-AHlyga8&%qtn#YR0Cv_ zz}CcaxEjT`E}XUMYN|PY?y{%7wZ%&68Uf+ATM@AD1Hw<=z>w$B-J90LWP(e#@8yhD z&{+VPnZG^g=Tlr;(RN8)Lq1=AM*In`DUdk2cOzhu{^ng#0pat~ButvbMutb%_T#Dx zen(e#C;Mw>2?#&KqZ6Kh@Uy>mmagtj$3BWm05Zc#PCF%N+QZ5z3Z?+y$>UyNsYRF0 ziSd7*!1K315I!#ex{=X9QrDPYl+RL*{1i<=u_%gyTwm$*%OxDmfvcx>T8G0s=y_4f z9`Adk9gD>n8yhQlmViSFBB@<$t=_}=BMU3+zkxLq=;-LM&L3G|CJ~|MMJdvLIp|#J z1t%bbYlhC9Y;eucx$xjC10O57adJ!13FPH391gGegOQsng#chY7UNx!8u$h1o>)%h SYv0fS0000<2V&JKY1jNh2MX|&l{2(saPdk4PTs3U|>*Td*<*#Y`^qDBYv<1h>Zj4=Sfsr|b)Zr-h^ z<9{NsD^~N>>#w9Y=xz>jO_bV0Nmg^cU_vTz?z2<5ex{b^wj((V;%M`@Jtz z@6!+fpaPE&0*lwr$!5lYa=BbnfAUCP#em@n^C^Au)_QC?K6t+&=}8w)AH|379|y3t z2mEkt8s>>_R5=ZaDAd#c@z)i+`&L&&`hjMF;_0L4?Oes7<5P7#pto}s#nVTX5mEW% z&Gfca{Jo|A;U?(UeL9P`FUsD|Rit)}rD$%|X9CA@DyBYrUZmu5N&fLy2X?>lS;NcH zxb;IBxOe9cH7(N95JITn1ON+nAI94k`GOY{dX3kVZ{d9M`3OaGU z2*ssecO6hop-{kJejMrUb}Za|m?H5;=l!72d|#~}_5CAs2LM1Wm(x~TAOL?K56Uvx(%`D zlelGBGMmlHY&I(`%aQ<4T^5HCoO5YeR>c;a-U0d+on={}^aHs|Hk(xqc6D_D0PVh{ z7-N#QqE=Q`)NgLxy45sSBz;{QfYJw^Y=@Bz&D2jwNJvOXNJvO{9tpi%q<4U74jeep z(xvA!v4i&;>V=2$@s?#tDW$Y5OKxUVGa(()thOa=Ryy#Gklrxm>FEW;^E`0Q!{{~y zokOT)OSP@_2;2d=Uw#Gv+`K#n+qRW3;3p<*+Xm-+Q`c+;8?U-JcwtT@L-d0iH!qJ> z*cybuTVjQ^RdD#}CTs`+euoTx!84G6=3y@u$~o~ zohpV($%o1d08o(@@YB}EJ}o{|5BU1~lQ2(=)%oS-gz5kir5o+-T*dH&*^;LZ0B5h> zNmYA6Z|5C#UD-AtlL5Tnki6fJi?=UIxm;2!G1qnF=ultmt3YCOs88uymL=tKNiN>L zD9OGsZH0bXqeFd?f{z}EmL9CdnibO7yK{%6gHpN;>7F*6y?Q6U^8o~%-5D4u0q_G+ zoaX{+VVb6-;74nLDCdzv2SLE^X7mhL^q0Q{TRPieN2OVblbcekrUk`xHT5;+L!|F?1mAoQ7lXyj04C>Uds;GC<^ zmWabom+RV6N|i2e39jqPY&NU5qv-rVD>^~fqOCBpB}#jdTxPQ~0bN~Pux&e5H{_hl hYE9tDd4;g;{R?mKpU;g|%a{NF002ovPDHLkV1gZEE+qf} literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/medical.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/medical.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..70a025791589a5a72bea0d66a11b9ed2a1b21991 GIT binary patch literal 341 zcmV-b0jmCqP)P&+$2JUcrpDk`Q! zPImwR00DGTPE!Ct=GbNc007NNL_t(IjpdPn4#FS|L^*m;n5gsrf7WA5G!fVjcxlQ; z-^!JR@P~r*T_*Kt(Nt89Q^FYSRHRMn2|UZ$j7Sq8;XrcEKpFw`U697yA4Z>$F`P0S zZ@+-H-Ak8y07sxVmOUL}#~Gu?RMkO?I@C0}RDJt&*y?1Ax`k3;G?WsyI^Kii?((WU ztsX{ozL&+n>cCA`oRrsq#s@C|QXM#6(#Is=XIcS$0Kb^x3ILnpzWOwTcB5hqG*W>j n(1-`|+_?gt(!RI$`YpTxk%|RI?#(~|00000NkvXXu0mjf@uZS( literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/medical.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/medical.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..e457d87938b3b4db5c90434cbcb4e25bec831e4e GIT binary patch literal 648 zcmV;30(bq1P)xD^Bm4x(TP4xxg@L4qLoH`Jwr zBD~NsE#-v{9h?FY9YQTHgwl?$L%4WtFHJ7*n}oyXvxWEWo9CYU!Eq137-Nhv#u#Ia zF~%6nN=j*@l%`rPnNe$tsB01zYy+f}MhF2SLap9Bvra@1LLf^M=Gips2DDZi=yto% zT7!t7lo}SUlrm8-LciZfYqgOn6F{b>P0O>{IW90R_|5x|C)T50^l#fs5&%%CRL=d+ zWM(qY_kDz6XjN~Ti?#togpJL%S1p&!%9CXT*L+;Pav6t5$A}J=pw>FT19+s!Xst74 z;>9!bd%ri#oCWI!XsuB#mrSkR1QDgKx5|x)4}Mgp@B3H}!xP&{Db2VmY8OHrtD9KwQM* zM-OrR*1eHez@H!6==}VJt({#=QgB*k+B4wo%cth`+NZ@fAQs(TG63-I!)Fi?wAOg_ zd<6iY_BvDjPn=l{23LUX*-qmuFn)T+2Mr9G0gQk0PntPxBhO>~9*`u2Krtvl?RC6j zP=FA^X{Lh`&v1SV0E07i`nQWry9ya&j4{R-V~jDz7|Sh}(`ct3Md!iwG&*+;a6OIA z)tA;;Orx!bqx0r^8lAfaxSmGm>K2&AG&)xe0NhWbbJu{Ft7&v@8{ldhoxAsdBp1`@ i++G2*m_{@9ANmW1-*SHl%Z7Xa0000+&h3<|trTW^IR@YEU;dvfe83fma#STEdR;APF01yPh z>4`xQSfvzx+h=cYk9w^-mVz%**zrNN<_4Vr#I69p?f?7kH4Q+yT<*KhB<<|%*l+>? z-n@Ll(&`$}U+dMl3n-=VeLttQwkykv ztEJ~09iMP;*rAZ0qS0*SUVn(MHFf}uF;q%L3$Xs_YixVHR82+awbnK|t8eR{Pq%Ql z#=*75Zh?BO%G~S>8=G6~AGFV`fN)g9c7R5+HL)#FDHUz>_n$rOPTsHIZ2%VLpA4+E zZv}*%pT2jOhmRLx?*qmd{`~yG#^%;UI}b27J42({I&&<#0$jB^i}xQ)TYz^T*HKDg zjA3PY5rANOH&r*jUg7rLKj^LiSFO%Yg#QR(r=dF-kiI*Auil9RcdfC{0lhrWqmZ8> z*xt<*@>6)8cVUH&%P6%b+5+K4qo4n)$}!7QtwIPPgb+dqA%qYjl`d;qJoKd~T)wop zSE2zJmKGahGLsfZ4SicWEG>p^`U(t8VACu%9F20N#Yqy_G)pu9Nz!6h0-I)u1|SSf z>$R#gExwfZfJ&)o!?gI${YTEU_{+EN6HkjrHBzxzO^aPdDmtrau}h-ofL>Wli(SsO g1t5EAu@EBGU;3?n1LbP%Jpcdz07*qoM6N<$g4~uu+W-In literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/medical.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/medical.rsi/meta.json new file mode 100644 index 0000000000..8f2d1b6bdc --- /dev/null +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/medical.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/rd.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/rd.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 0000000000000000000000000000000000000000..3465700d9b47a80d19635e997b251c686a9499a3 GIT binary patch literal 2070 zcmV+x2J+F^W+z+9qx3N0u=` zA`)%WMPp26G2JwqU>HZ5T}&~88EMSGID?5mepjH8L71S$>*DF$xlbQ6?>)^Z(9R!( z-n;MWo^#JV_ndR@If4#4=%9lRI{3du*N@FW6f7^!x<}jI|KQ8^&*db-VZOJ5{_^6i z`?T=6`?T=6YumPdmTzIl{7D$%0Lf(XL?Y7OE+O0+yzK(StR5Vv$~*6Vf@N8}^X?}& zPL-I|vQA*)BJ2+~OZ$G`nuyvJN1gGD$lMwH_u}aM9Ar`w#aiemq-{{DYW@Pul z1ZDMvRtQ1pzo|hcH_~o7F zS_rXNT=#RFs-FDQ&wdUNiisff&B@EeEz3Ig9##lVw?J7v(a%dO>&(xM>-XYD#kcZH zE9<;@a0!4tMAI_U^u~kGw0T;0nC{y&af-LnCJ$cKrcs2Ii_jhN(wYx8Qd@-*l-*tZz@b-S!{Y~B0-`5SG+rGO};_=0NAo`~Y zV0m%YotjKDIx?i&lv2#kjWaqj#MES(SS*h8nV%ciD+K61QN2PknRGMREuY41evR*W zY&d?bO)x(<9*BNmHwb7AC~j16oGRe$|KdhPYk-OO?tDQeyA_6n#=)=FIC!{5CcDMV z^Z=G+VLwRd?}_XF-vIW51eRrKj}!!<1h8{&4a>4v&DAJwRCx4Fj^ajz)m#nBve>z| zru%;M$2_S=YvkWrYcOJC{Ni!_St;ccu&lPZ>S7cD&n_Jz?sTTt|BVv#+D}H1Cbj z&eQY?6^)Q7}iq%{#wDOm@p>duD*8 z6~*O+6abeOQYh+y*!&!NJI+iur_<0!E-%iyGWqS@eRl4xad{!7iN#`ZZ38mdE&aW} zubV=-%KY5;nGPwoZM#C-q**Nfhu{6FzP0}R`xK+2Z}@l-9!jNBL;6jblNetqMd`+- zx5|CpTJ6EpfbHFV@^7taLj;h|=g%Ao+P3Y2XVoPLgSvK})V8#;4$yS+5aKv2?qoGr zV0VZIHP6T#{>bE~CevYt z3yrDCv|eFxubJ$Y4$h*`4|Ez7I8OD@zk2&DpU-zClSxF?|2uwP4s zU`B*T)gS!A2unY(2AGGO(-=63xmLlv`#Va@Y-=YE9dyt^2OV_K!T%OQMQgTgyK)*k zmx6>4kaNn?%6g!yFhSssGI=vYEC-?}47UpY3z_LjuF&kA1V_cwpHh{fVO z`X&e9%l@=mAZCGvoIP9*fBe=9gI|q34|F38Aq4Q|4@rittALlWef#4sohBDS z2->whj^_Df;*PV!S0B1Q{vKb<2NFQ2D=~lCx5DNXdAm_h%I@fEaJaw*UH3P6 zd^6#@k6X>vSX!y-6jYs=_QEXBk+j*^SlpMWSz1~5Y6;$Gz7qopVDoFR51;E7k2wlu zd?_n9-z^|{!tLFCGTD9p_SvsBeKTv^2!Sp|6W7tnNfRg43!Ddz)+9(R!FzYU(8U^N z-9RG*)&MS{)6KHlJNMSG7E<-Rz(%F50n+;)eA%_Uh)&T-O+wGAS4&W(&ST3p;3T*= zy^0OV3&81xl&ye_ZPp~XHxs&+;4gnjHs$#!0%?GIGeO44w~P8od77>lpnf~t4#?P2 zm1362&CiW%&ydM(;jSc_jOHPb29!#rE}eWZD#D~P!_IDE@GbHWpf{ZO108qNIsoRCOwj728%ZszFhV)&$^@p<15EHBQwQIEhTLLY_% zp6Z=n2z(O6?nEudga}(eAR%zOYXTZU>J`lFbXY_ZfT;g@)C4qwS+8(f;Y2e;+5%>E zmUx5nMkc#;_}?pao}%DPHb5dXr4-3z(mk*H!DKS&)+<)e7JNmv0ZJ(fDUM>;M1&07*qoM6N<$f)h{# A6951J literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/rd.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/rd.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..8081c5962db3d78cd94c939e95a56469a5146ca2 GIT binary patch literal 801 zcmV++1K#|JP)W0C>Cz(u5s>?$hy1>N)qTqsq#Y@z5v_fi<0 z%m+xo#FW6uP!Q~U0Vf4lT}&78Jtk(-%#3#Dfxw%an|toud+vP!9`Jw%WW@I7VtAMD z1s>gnyi_X1k_dZ}Bp#sk4HnVZ$zk+iB!0XkYpd<%MpMz3G`Z4B%u^t%j z}AK$oA$^VUuiYs)k8xz+aMn={_W)=m>||2zc%^drB!jl>m* z3d*qqTwYy+b1st*Jr~IlLh$n06O^sIjIpx5JHnS}3br>F!)nEXX{gdB$W22f>etvfnf3qx^fnqGgut-_ zwAvnyj%~Es9vnLWAq2gRhV=dL(Z$?R1MYldBu?T4gt`IXwCm&Sa9}T6d0Ar9P-V~0 z4hMb$2hI4niA1=)xfoKClj<&NiWFf{Q-*}**a1$vz7*kU*T>rO4EFXf006G*4sj-` zz{>jW)NOLng18EZ7F=Fkqo^s^+G(P;Fg-$^xB>!V$8*lnd3T1=_qmZ#6C>)*H=uue zBgGg;o;m>mF;0#hplszqNlt#pcwgFq_}Pyl^AuDo7Rpv0jvavUzWfOCYQ;(vC-WX) z%)ePo9`^Px;JWTqsZuP!v6v{yNx=z0GS*Anf<#lG>w4^8D?$ir3)3SS5STOpK#CR=HASx0=s8{k zz~$9-qPVFvKnRi7Z1fyOQeuILCDL_0ENTjX!Q~>(;x6cPI+>Q4z&}MeiTpk=u?5j9 fHF_S`g0%PxaL#{Fn2gF3Z+t#5U5y>Rzv7euo6X?O>&gOPv(y zBnFxxSUD>yM^a*{kXs6gT&_b&(WRm1aJ=*SKgroa=odmBzkBz7pZDJP{ocWu&UB{# zRny)DLy{z8W~|$=$7ja64M~!WY43t@)Vp>yHIn@Kz-QxfWR|xdH&`vT;rDb{&oZh; zzk8FL*E-2BJ?8$0E63)j8$cunD3vQHg)L%p1icdxi`z?7?>^Rj_2g2d7ai`}eN@0t_P7k8} z?%R3t`Fz8*1nMxMyS>Hw%CWbd>O_EWIBZN`{{_J7^^1tMQrJ3u0Fk^@t}yrh0-`

OU<&5>zX-X!TyVcbVv0V*iLpb)6vy_!42YQj6&RCc?zwCm9UGKsKvmG6~@OzTj5n zkJYeRsYR~<{1yP`GvxDyB|=?iaNQ9Y%YfQ#QwhZXR{(!laOLv_@tm%I7jV2(0qfvlrlehGO*@&O;8<%q9KqCDiLDI1lH;jq@1*fUyh!;HRJL zrE7YA9&*&{C$Zjtrvj>#T4Y&ec-|O=Z%**Vqb~sfosNTSR)=92;>c!obUF?I;EP9J zqVUZLJZ}ukDkmNa#NTeWmXv821~{K#G6|sT43kL!&Sx+TL$oo?9NO(xEdF2JCx~h0 zFnZsD_P7WD2m+2y$3YNqF(df?ry0O?hX_9owq^mQnSkUxrL%7y$<6a;f0u;`&E zi4tV~soO`jQj2-%jXN=du#pxe7lg&~gsVB`){RihL!mVsdy@O^*jOdmUP zhpBWr9eLgugW>f?;qYhtjpxzhY!u$d*fz+shane{ zDMfxkz{PVF#8$vyc%9NT7SW39uyl;U@EV7uW3<~XF(h_11Qyd-RIGl7=|4Z}(`hbLyUtE5t`{pw%`*8IR+#ix( zP~uk_0%U%-Ei_~+*d-`DmWSX<2Ph%70!Zt$(2?PJ<6G}<8>>rW8LRt(aS=-aviXw` zt3BX(V-dFAw*XOvyfC^=$#gHt0xVXeyQa3m@H(~bS)6zOH}LPV#~yp^vBw_&n@F@> zEnn|q;iH00jNQ|;)aY;g~+SL-&89=SztP>{Ju2Gh(Xk|DMN~MxtvDd1!NA+XRz(JU@QY&XP{~lS=KmE@&U3H$m4Le zPGA>PVYhdgTCGVSP(=zb@BN+l0M{LfGBnE1$+%6hZR0KuIc3NBOsNx;daBxZ9x?W{ zNJ~-W7HwI(?g%4yxYIzWkUxs30K;+SDe-U-2OO4;!TG z^!yPVrwz+0FNVcX<(0~y0u9IMBX89a1XD0Jmxud9<>99s2ocet{s@QqBXIv`gdtbX z%5DNm(Q*H0NseTSSF!*C<>%!*VHolUNk(*gmrKbI%1O%Q`YK3d0ptWJ_}Eres0w6m z*$Jv5kp-;g=z`#3dY?eG3c%*|h{_5e6O>n84>|s2$TGCstwf!W$O0%JqJU$UWifXl z47uQ6l*A@_Pa*{XpAQ4oy|_(4dz0I!M@ZxZiJY9DY34Ti-vAZR=8VkkdE>-Zn5f6r gmBQ`X8E%{V-wL_@tu%ydCIA2c07*qoM6N<$f^SL9%>V!Z literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..4f04fd6bf458f1a11494a86cbbe082084461cf5b GIT binary patch literal 740 zcmVZVDLv!?`bs=OUx_EEdT%8VCa8`=632Ba6tB$9 zJp?-rg~W#T1S45%&(3ds~tTx*T25Z{lCl$V#m5J2m*y^Hj_EW z86^6=Kr$Ixt#)(ZIbjP;>P%UYCHs~v@*;)^CY4HcRu5(Zp%lGw%HLX>!Dzln*B3>Zd*(@;^j zPEcx2uh&INNwr!_9w{ZgUKge2)U6XvLxo{fvJmhz0ISuGOtXpSO{wi4vAy*k0NZvb zmvy9+$x|-t*tP?}_SSo9`$u@*6w_>O48^-F3`~BWqkX6Y5CjU_b_fEMWWMh&E5LQf zguh2GXP|$5S#X>Io;O`Mzq>_<5}nR5L7*NTg($(@ErwCS^QJh?;Q2Wahrlo@aCb|m zbDU{MF(AXJWD3E?B=o!~0JB+uQgdwESv$^V!OFT#vX-9u?p|aV6-nZ`S%)n}nJskWvCH>RdKZ{xETr9sz`G;JU-4G}GPkSpfRimxVA?5x~S97cAL` zgeW1U#P|J`F?Kd_$Ax0C7-iW#LNWY=);-;RZM_mmjC6qwDzF4E!6G)ePBhGtA#!s2Ovc6#*h z`tnovm{8sOFTa*JerHgE1KpV8E4?3Gu`S<|yZ7DZs@v>t6JJ}D1~Xi9o6+OGyL0}$ zIXgA))f?WfTCSeH`@ZRGqql}#Duu7s^iFubeS_Jdi-8@R)|B1<{73BcZ0+|O<5qqD zdfPH}pYQKjZlJ17ZzMMVy!$Tc^PiVW1mu0yFh2Lr%`P}xJ_gB5T zGcUF?JXO50$0C_WtlP53@cg{=E6IyY60~{PBXpi|G%Y`GAQSNVYvZkkRksu@WRfb2 zw~EW~1%^sz?X?S#PRMPk+RMan<+bRV-i)u)rr&@0-QFSZ!2Q!(UT=DveY3j*1~`I+ zmalvNw>C_!@mG{hXRx_sKhPhyo-oxIe&)Dxw(VralU)$bl(!$>E=k+$&G5E}@x5gG zO!oz*3s&ap9S}F}cle#YujX9L^_T|zG`Yra0x1w3Ti6VW8TUz4vP3b@*vSyzW5cwT u@eELnn_T0yhG(_k*MIwZv$Ey?C1rQ}q6HCod4|B`z~JfX=d#Wzp$P!rhX(rq literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..1fb781159dbd5504a191f3eb684edcd0d641c3ec GIT binary patch literal 604 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEU{dyUaSW-L^Y+%ptlI%1Y!B|M zc5hHnk@Awgz$(e|^}-_e4IeLDOt25Uw?u#P(q_;02#Xs9yoH&LMy!&$t+x+u^q7+E zsub?g_&>U5ozC3(%8L(vXK;Z7hIh8{p^^EkuYanuD80zraIs)ctj%n{D;XAH=BjzO zmfS3vl&U>>`{L*~)%%1FwN8=dc=+hkB{v!Mn;WM{ues*^cB`*6@9|Y$_cs4=y8k&; zfX5)-CPm!4(n7t3`{!@{rUalrdVN>S`tHiipwK70WVi03&GqN6E!J?_^}E@^&RlK} zU+Sl<`3dhYPi0~_{p!%R-32o2fg*~Y-#jkcG9>(dy|C0@o?%}dXUNn&x28Y1tZ&`d zY!GvxQ0DE=Z7XMm-)>O8{Z5HTe8ZZ<%X7-R;*Q_ppC93=F(`ftD6`&3m42C~HOniT{6 zbNBYs@AKCGGQFztC)!5d$=q0>rQ0fouR>8n#TCEnfZMertF3 zPQ#hr(c%SyEX=^bN&c?C_2kc-vG=aA|)1x!x;Ue}!^@!drLchwfr@_dUz=Jt}_)w%k zf}llhAkE3OK__VvSukQ+lr7RCK@MpyOHx{Cdsyv;q-1J$CE94q2Ow6OotfV|?|kf% z?+ZhQ3>h+H$dDmJ{y*_Ksq{g5!La_ms|HC-#<_9hhTV2`b=4>p%Uo`??KU6YUvt#= zi`GB3(g*1UI))sr!P5Yiz&uVv4j?&*(&jN61 zd9~|*FZz8Q@ZtS6-`d`u-RVE{mVNK1v*+xOg>~O*a~fNqQ~yg{$A`jGSpc9~`5ORF zWdR=wU+VgyHpkJ|z}3}NLrQah)wLS2iqWfID}0ZXl0RR6jo zh(=<3^RKTwuYijemJKD~N8jB?)0HlLAp}xN``W1=QFN?!$LTBmZq~ILJ~a+t530S> zV(HaI#$yqxHO;09H$+8v)yjpI|}JXpKqi$-DqOo#;8Y}Wovhy-9R`QA3(hyQH--r2XVUi4iVm`bG# zOVAoLKt-19*~wJJ)FS z29anOAq3fMwoBi-@0Q~?$pKTzvqn|cNhYU=Mq-52F{G5fkUB;*5+j+MqAKf5CC{Gd z{r_3arP79?D9p~Jh(=;ehy+qf--JjIjl`IpNuekTbE&i|ea8*}h(yA~<8k8g?!(P0 zi$ub1x^vC^{43;go0LjLM#iTB7#W|YR4S6oZ8AUqit9cdZ-IPa%NGiT4NYs%Y&Mu* zxkmo8kCh+H$dLafm$L|>}tpd;$uLm<{Abok&SbqJjf&3oW$@1%O8R^Tb zM(0=GPJ3Efh3g-`=hzO%4tV$Ns~Cpa?{*--b|Ao~z8{-+<_rvy-h6~leSX^>0K+hN z_wB2W`*XYn8uc##h^s1JPfpn7mx>k8G{B4!51LMmBW=-twABfY9k7w}VYJG89t;yG zmQe!c?0=$<@KSOf03pVCkiG9%+zZx^q5z-B0^{fj>Fw&#?n? z8{e{(&l3O=lW{u+Kao7oOCo97BF1_0*+)*h^n{roPzB7?7+N*--F*_1aq?T+Y~}Oh zHokS-pX0}c6_-(hfve_)bQI+;ii{PlrlkLJlABR6VlQb-?_D+jbD%ItH zR@;0!IE@jyiVR69X}8-v%-7I#g{rJ0gs_+7(yNPZ$Kx7HqrKBY2tifW(R77}`5NtZ z+l~}F#YJq;T;`}TXw}S*8tba#R@@7RG>)*xw$%Zyma7oLNTpJC;z2|)bAUDP&cL9k$P&w!R%~6Z-k^|w(q)?)Tzwg`(0BI< zg~BwO4fNf8N~I!&{F8w%e=rBRzJAXDGZLgI3ZYOKeRtnef1Vs*1tKGn@N)axrU;wTm|67j`!q%&Oj)bVe=P3rw!}t_dNCC$pKa#K)Gzb4)-Q3 zJP(@9hOHlu$35pJcya(7-Uf52^guF0j$$sAHk!@Gshm5mAA?|ezw-b}Bqo`enRcC_ wd5p(q%wu8RQ=C%IOj)oXN3uL~eeSu}=id1P*SN-i3@a<~*>0fp@e8|5 zZL7-R;i1WIG#aY+y3d1nYI44M)lAjT)WEadKs_y&0Qh=3LL}}mAGFPHny2$tA@d0I@%KrLMG=7g{lIWePMQEH5?(i}oz7zJef$v{zQw?c5G{o=de_H4SL!7{FvQ z&a9WKf%9(1avWFbf4TSYG3VcY!`{QkoF0FNx`|WHLt2{4!2Ye>N^;MXm<)Z2z`+=|$tR8+kNy-v=~wp;~QgX&JA^ z()Jz+i-rikcF&@uzmtv0Ns#W{&uN}yOJXggv{(txjA7^UoK>^Wc00000NkvXX Hu0mjfi_?#6 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..f808f0c9754b5c8b6a71aa4fbf4f0b193c3f2549 GIT binary patch literal 565 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEVEp6h;uumf=j|=~?As0!Y#-EB zyEiDPm|ta;^;n?j+->LNWY=);-;RZM_mmjC6qwDzF4E!6G)ePBhGtA#!s2Ovc6#*h z`tnovm{8sOFTa*JerHgE1KpV8E4?3Gu`S<|yZ7DZs@v>t6JJ}D1~Xi9o6+OGyL0}$ zIXgA))f?WfTCSeH`@ZRGqql}#Duu7s^iFubeS_Jdi-8@R)|B1<{73BcZ0+|O<5qqD zdfPH}pYQKjZlJ17ZzMMVy!$Tc^PiVW1mu0yFh2Lr%`P}xJ_gB5T zGcUF?JXO50$0C_WtlP53@cg{=E6IyY60~{PBXpi|G%Y`GAQSNVYvZkkRksu@WRfb2 zw~EW~1%^sz?X?S#PRMPk+RMan<+bRV-i)u)rr&@0-QFSZ!2Q!(UT=DveY3j*1~`I+ zmalvNw>C_!@mG{hXRx_sKhPhyo-oxIe&)Dxw(VralU)$bl(!$>E=k+$&G5E}@x5gG zO!oz*3s&ap9S}F}cle#YujX9L^_T|zG`Yra0x1w3Ti6VW8TUz4vP3b@*vSyzW5cwT u@eELnn_T0yhG(_k*MIwZv$Ey?C1rQ}q6HCod4|B`z~JfX=d#Wzp$P!rhX(rq literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..1fb781159dbd5504a191f3eb684edcd0d641c3ec GIT binary patch literal 604 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEU{dyUaSW-L^Y+%ptlI%1Y!B|M zc5hHnk@Awgz$(e|^}-_e4IeLDOt25Uw?u#P(q_;02#Xs9yoH&LMy!&$t+x+u^q7+E zsub?g_&>U5ozC3(%8L(vXK;Z7hIh8{p^^EkuYanuD80zraIs)ctj%n{D;XAH=BjzO zmfS3vl&U>>`{L*~)%%1FwN8=dc=+hkB{v!Mn;WM{ues*^cB`*6@9|Y$_cs4=y8k&; zfX5)-CPm!4(n7t3`{!@{rUalrdVN>S`tHiipwK70WVi03&GqN6E!J?_^}E@^&RlK} zU+Sl<`3dhYPi0~_{p!%R-32o2fg*~Y-#jkcG9>(dy|C0@o?%}dXUNn&x28Y1tZ&`d zY!GvxQ0DE=Z7XMm-)>O8{Z5HTe8ZZ<%X7-R;*Q_ppC93=F(`ftD6`&3m42C~HOniT{6 zbNBYs@AKCGGQFztC)!5d$=q0>rQ0fouR>8n#TCEnfZMertF3 zPQ#hr(c%SyEX=^bN&c?C_2kc-vG=aA|)1x!x;Ue}!^@!drLchwfr@_dUz=gG^*@ZYLn=uYX zC1p?|rIMD06ewIOAN@#!&>V+yE(P1t+e%z`lAC)z?m6#sp7*)$flFNC68{;ddKOKX z%>rPd&jrBzN>ty+=T-&4t<^XH(}hCS7|rzrf9CEcbdbf_(u&r56F|s$zoKyP;XMz0 zL-d<|K`1J!kua>lo1r_x;pm}j`vibHl%L75rfB=|1JkZDdib5zB)BE>ZT1iAB=X#)K z0zuD!NJJyRiLrccRrnPJD5{Xj7ZpgQGrBRQVV!C}Q$H8~idSA3Wi(zYTBbCmON@qA5cyeqUNxp6Z0GgI0kWT>Ur|~NaHmikHHiyk>!Dh7pCn^Q< z2{bKPX-i|j;kUhg66-~ogPs8q$R`LMr`=_D5Z~G?k~`9vF`LD7p&*8kXUvbZx zJs>5WE)+~Yw<=_gr4OVBO7kzjD_vVR0l6U*E1y&VAlU3ErXihS>PQ1%W<95qm1~T| zGDOJdR)u^@$7_M%Qd}C`)qNd6oV^RmjsJ5@n9X8o*i-hTOT!)^^L`!-m*TUS?X`+( z{R<3sMKaj^J zee+T9N2G+%3V~MqmDM&b?Xsg?lwD_cW*KZ$Vrg$5hMBmMb!S~l```zby)$?2IcL7- z+;ay`IN^lQ63&L{%k#JP>NPTR5l;UhMM4UO-se}32 zKxuBJ)jE%Uu0T(HAKCnhIH=NL-t+2Ql@(?dp91iEcD-nRSz9Q&PSpPjz|7)PR9PVs zjtWZPxdyIWxGVtb3mpI~{W30{9N8T#&=?9;YNo`WsnFnBEcCtDJ`dfy??!3hA zyoBYCWBKC%T)+4^0QtEI00O=s0G2;aU1uI=O@GT!Nd?LWaBEz=oVw4oOE*xO8=07$ ztZ`HreKu}O{QUz|S;5>k0N9?@*)Ggnj;$A^ZI|5zz28pJ^RwVLYnjZ>CScdWP2)=#1v5BK zlN4e@U+1PV48U}H%>LgQL$Mn9`Ww3-pC2axz;>S6bQ_E1k2B+sqv;vi)fnb$gMcr{ zWA35K3UvUpb|dOd4G5Y`+xD~zdTR%Y8cKi5kZ{uRICzhMFNnEqyj5Ultf&hfUSDwl zhq-d$ve5Jls;r>t8TY<(t;))gTkjwhwPFWN&(I`?(DZdwS$XGuuXx%8hiOQ+al0@~ zz!yZ*Gwv_o3v#e?MtS>e^%VvQ;*TwS|Uv5jNZz`@?$kZ!Z9y>>uk z&#bu59CZL4?8InHAdAnA?oJQnm<7on#;W@-Z8q6c^h@-h1(R4gl=8 zZIVJPYYXn!lnt`FQS_X17F0snJVnA$;mB%k8?MBO!S9eqVxDtdin2A(kZ$AbUKi%J zQ8adr;A%NC1(9%6489p*>s*SZ)oBJ#+hdaO_m6kM?)p_xQh`V~DjvR>X0`Dr9<6?b zGd6QM0KPc&uxjUUL=ALzcbEK%ktB&^GD#wls4D;e3;qFvj&Ah6AoM5z0000-7qN#l=Me zfq;}x8M?c>g?il3(4g6umzTBUiHQj*eSNV7old7{Zf>T%y`5dVb^&O?*zI-_i3C+u zRTvBgF*!N8+9=;!(rTRxA6P@Me7&U0A8A3>-XokoNX=fE{fFx7#iD@86#eSg%J2K}Sc2c3lX8 zUazO6rG=)ZCV-+Fp{h`U;lXNg`C}gjg8_rV0HhniYPAvw1h87Inq9s2w?9oXJXkGW zztrD|PvP!@v9U2`XJ@r*27`gc z#l@`3&(6*=Ha3R43of2dy>=sH>d(x~5DJC1EguSnn3d&CV;b47zo!Qx04jno~O-&8c)6?3|VD5cIN0Wow?biJG z{eGRt;}NZ`t*D+y=u(%;@7!w{u^RhRr43?>2I*eVx9ZHW7=(*x1;}TXth(gIFv^Ur(Dj*1pdB z-9{QVmkMeWd<2#vQCb?!ywe4@X0j`rnFCbb>G~Nhjb@f2(SqW|py~tMc><3fJ<9ut z#bPm1sTB4DjZ*pre+KJ}29_dG?o7Sx&F9ab1L>Jx<~hKfsi!POqSP4;>;x^1X5xti zfnbDGDn%-lVtILa%U>#$0w55K5KknuMk~a&BVc?^(eYx&H$JE6h6f|!;`sod{MC!q zYSl(SFc{?W$3Cw7qndx;Ol93ua?OET_kYlQ-MasSZg}vixOhIrAOGUnQufb(7~7)% z;{Kh(Znq1s*DHLZ2;V5eZnta4Uawc!?e-m+{JaW}$0Ix*kMNBmqTjvz^Nk|ZYqCD2 zUxo^mDd)?O-EJ4Ht*zwyB?yH=ghC-{{i5dq01k%(i^T$fqA1+EcaI}Sj%3*afq;xl zDI5+5)6>(hoDn)44r%>@NiY{hQMBVHPoC)V*~^K?;dlUN6@6uYixj@$EYvq7IAfU@Z^8jBt%w{Me7&+2z>qDR}ZepN-}GzTn;ivo?2;@J5x_-++F-D zaD@sLDpaUYp+bcUCDPg1Df;{S%lhswLw|q2=!24;c%94=4wp2 zQMJ^L2#3QMjmDBAIIr*;&QoA6eVlZLb>SZ=s-~vTrL+*r<3vV zae~1h09P*gInew-%AZsNsLRb~PK*!^hc&y&WWwcgF*i3SC0+`1b91;{E=(qqW($YI zoH;R)6=ShT=YY$9@7InGG(X_n$epcZ6#Vl)XPKX$M^O|qkCHO< z^|XmhEk#ji*j(b&u_nBS^;t0%i&O&$A=q0R)6U=R*-w3aJ!Z2x%T_KjeVff@>g(&X zYk!U|^u^v%!IZ0ZmWU&x}WQc}#j~th>9Lk<0%A;Or;A0pQuQ zXDlo%lyzAwH;#S#_OWNr9)PTPCMG7N;*eSzgLGw2{{ENh82}3l3$kurn@r8zcw~_7 zv3#2(91aIJZrpeyy{|GfG$f{{r?=S4x;Ux|3=Iv5%uNwL6}cNWO6i1>dd)YAP-lMr zsq}yEsq)SM^Thy=8AmBGloWKn$KXvRz@3gk`VoMwdjfJ7E8hgBRG7xywOjTp$Wrn| zsHM@IwJu+-eF6E%-78S+rpSDhGy(u^H)v)L^!2of9p9XogZi$ajzBe*QYoncGWP@g iRO|AAU_^`Mb@(5vcnz5Gp79X?0000JA+Um}9YS?*78B?pmm2&BBv5c52Oshm^x(gt^kmaR z4!OJ6h9K4#^^ydEOqcbcf-sVaE#r-<^$L4?5IfPvku-snUi`i6zBlvc`<*v$-Y#6> z3Rk$o|BNBsiMd=Z0uVv~P%IWz?CR=j1R$jZz;#{ib%%Ayg%G4tDQ0J985T&Ea&0blXFbd#J26eB63IZ>;|vYAYOLR#WaT#8m}sl9X0u5chDa$1!;ogPsm5+hv{|_g>vty^ zZq@pdgT^&HY@BjEJxL)Cum0*>v1+vnbZQ`ek5S0qoBQ z@-62(&mVsJoaD+}5g*xr4VActfIVt+hO7g`yJ-wTBTfU1LX zxy<6?BJlD2OQn*E)yaVNkHe>80H&s{a-+3U}=6P>fULo tQoFSCoRv--$Jc;5%edw0K&Qp(;$IDfT5ZN9go6M8002ovPDHLkV1gy9q(%S$ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/OuterClothing/firesuit.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Suits/fire.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/firesuit.rsi/inhand-left.png rename to Resources/Textures/Clothing/OuterClothing/Suits/fire.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/OuterClothing/firesuit.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Suits/fire.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/firesuit.rsi/inhand-right.png rename to Resources/Textures/Clothing/OuterClothing/Suits/fire.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/fire.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Suits/fire.rsi/meta.json new file mode 100644 index 0000000000..8f2d1b6bdc --- /dev/null +++ b/Resources/Textures/Clothing/OuterClothing/Suits/fire.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/OuterClothing/monkeysuit.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Suits/monkey.rsi/equipped-OUTERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/monkeysuit.rsi/equipped-OUTERCLOTHING.png rename to Resources/Textures/Clothing/OuterClothing/Suits/monkey.rsi/equipped-OUTERCLOTHING.png diff --git a/Resources/Textures/Clothing/OuterClothing/monkeysuit.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Suits/monkey.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/monkeysuit.rsi/icon.png rename to Resources/Textures/Clothing/OuterClothing/Suits/monkey.rsi/icon.png diff --git a/Resources/Textures/Clothing/OuterClothing/monkeysuit.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Suits/monkey.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/monkeysuit.rsi/inhand-left.png rename to Resources/Textures/Clothing/OuterClothing/Suits/monkey.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/OuterClothing/monkeysuit.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Suits/monkey.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/monkeysuit.rsi/inhand-right.png rename to Resources/Textures/Clothing/OuterClothing/Suits/monkey.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/monkey.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Suits/monkey.rsi/meta.json new file mode 100644 index 0000000000..8f2d1b6bdc --- /dev/null +++ b/Resources/Textures/Clothing/OuterClothing/Suits/monkey.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/rad.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Suits/rad.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 0000000000000000000000000000000000000000..50872d177ea4dac4378fe9f8cb61ba16410176b9 GIT binary patch literal 2080 zcmV+*2;cXKP)^083zw~kFqNgLxdup6ALo$gP! zrZ!~38{=%vk`Qh7qr@ytp#&m9+K)EH4n+(YTQ$Y55){j>HL?fSG8*gkWAa8CNtWKo z8nY}qFwAJ?>YaD*ym#lldoNH$6;)JGMHN+4u}cVoKzN=fd&!r5E*CXMgvSR^l5Fs% z07;SzwQH1rb)Cb=otMzxv#FgA9aI1Sy+g)yViq1B06FCYS{i} zLzd-=8z7h8{@PQlJZ{#`lz%eF;lnY7nSUR12Y%zmWRSz+lB#U(vA6`h{_8^gf?4%+Ik1r4l0UH3P5zRluP`b@=r2Ml1#!bTT7%761VE znrDzouqnq1%0C(A@NN%BorjuO`sOQ^X0H=Jw`ECyYkr?&L#rXfy_cBrm5m(17d9t7MZDYU9g9*QAh`*=- zR@XVC5-R!XI)}w21>fG53d$}nW&ZPMNu$9-X>t}jS+ZVPNZJFgqZtPTyQr7S56_7cv2RBNdv^= zaU_#TtgWp9Q0ICJ#5_6b1E^d)9%t?ZEC1SoTI~C(9}gq%q4R@L9F2JKUw;S>|M8@3 z{-OqWF@K1nD0F#CCW9Q#o>tJ(n31Ckp+g5VavK{PyWSJz^4GhZWbKU+blQ&TMnLBW zr_kvOmBnwUgVee7_iW5O-s462)x-8#Ke@U;JqEIeOEf6pc!PI)yS(CG`6&Clcm zC_cWRegd!D-~nuE_ebu$gyD;-XYL&`(xNfEfA&X>zrQC0AOy7T5&!rAh%)CPo8N(a z)W?zR{rE?H9NGL%eO{?0@Lus78Ub`6a=A+ZAmhU^;7@;)ak)#;79wWC41Q(<^bVmW zJL1#dlbHgCJ9zEdj97q~{Dy>io+mDs3-Ndyu~-bUEZ6WnPaF;h8X6ifJ3DKd0nFlO z4v74}g4qDn>CDc~7JN?c?>0zTioa5F6ifyX1c9`*wZY+Vz~OKp7K`bg$6_(QU)oMjDnFIhtqfuC`R!CCeZF4!u z=BGRy$7yGJ&n*5bs;HuhDypdBe;?(f=M8U$%-rm-B0KDz8~&!xSo_H&#Pd9%BrE}k z-DHD`p&0j-8)|Nnatne$Si)l^m%`Z%(NvW;u#HehetIf{-KE3|fpYJJ!JAKY=`clM z%Se?p0BtB+`MMLe@CLRpeS9WQesKv1M=SugnL5CVaKwW7IZ+plra0We!})a^yn!u* zG$XK0fs(sHS(a<4@)Ld$G*w-9q87)e-MBht(bWlD%3J^B|QF(fb@241@_mTVmTn=_7`eRfSNHD z4UI%515oQbk8UHC5H%u2QLr44HOp6`CZHIo@{~_eGQm*#VgTTulNRPt$Q%;;{)gWK zfL5dgATLc#@0*Eij^%)?y=|>VAgiw|U^2kzGw+hOh9A9{R~b+5JICi0OPP&aKHoVW z;fO`!4o56_YxogPpLw^kvB{IZV`O{)L=Xhh-ri2y+uI4P4iyAJyEZE`1gKLWmoK+J z;{zZkea9+SB?hP?AlB^%psowj=`?IM8|-#FmIE@P4CT9lmw{fVL3<)W~f2 znRQdX|2y@=|K&j)zoIC3=MTRCFt!dclpGzsyIpgs%R)Gg(^BOWYRWvnc*zXhx_8#j zJOE~h(Gg(S0Dykc0T^3(RRVNn`u^FB!PUa8Vq5gWD9ZqJ0YV|mdo%a5F?x3!x9(^9 zP^fs41!cXp0y+7z+u8*P&-2Kw7ckmLwLV}sf2K77JkOVqtUM^^PW1|`D9Z-`nVJ9q zbSjWNnhLt1Py13X%Id5js0GQnc=qgB*=-sCIdbGk-pz6=Q-1}Xwh(~PA7U&30000< KMNUMnLSTZ&*W-); literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/rad.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Suits/rad.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..c125b0affd8f6cab81ab8124d04c62a35b0eae15 GIT binary patch literal 666 zcmV;L0%iS)P)ZZYCQxADZz_9v?sxS1Fs5R3KsJPQuHDQ+Jl!$ioHk`57HcR zZ=ffov=<4M=&5^iTSz7}gitat9@?}?woPVZ3Lf%@4pKJ1`HT*1vrjl zY;8k99H*0Xb-cJLQA&lRltwAl)xQW5{LwT_j>GjEao_WLIgjgsUeN$(t*!iCv);h% z7@3^F^-hAd57&d4=aRdrI{;KF6|3x8WngM0W=3X*`O1CB{pQJI|J!A90 zOu)=*$=KKkAF|`PxtlFE%j^39Y)tG?FWY#vAf3eMUvX2&V$w-WZ5tz{G_`Fm9qA;d zkUd#v(={D4P&^XU%XzkTPOe=~^Zlc`(AM?N*KF-*Cdcy>j|9-U8@is+o0q}>yn3%g zQc9z>X6JLoXE*)SK?s3TD%8BDoBu#Gj>K^s->^-2JJv$fpkB_Sb}ts9UI@Ga*Mmv? z!CZf5T4Ak(4H|0L9z2r^{4PMi3@on7Q;n~+s9`22SY97R2mxH&C4Jez+ZT%YXL01i zeV}%Be|dcrwR?}XPk9znf#Ua8gom4OYtA{lceq)(x*}}-xu~=RZsG8HrFF~8>*oIO{15hXw08Xp?eBKW(&485BL?RJN zr4j(eVv*)~<2e46OVbw)hr8-}wOYmI$Me7DFI_Gs0ZHpQIsgCw07*qoM6N<$g4j_s A(f|Me literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/rad.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Suits/rad.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..81c7dcb99f1f15e09cad199e72b791f8856bdd17 GIT binary patch literal 460 zcmV;-0WT_R(1>NBnx{2!5l$IZXl_1gLsbZA0(}i18icNG=bbeQca3w zWc|y!^F|!`evRv_Jm0*T-DVy@L_|bHL_|bHRLf}CH+crLZM<$g_pFY@PJS`NMiKH1 z=FrLPD&|QlPu}G5M&h<8Rf|xL=O^P;7aBo2ZJ^nTm)DlbW7BNKD`SVmGkLr$g0F(8 z6aWD3pZ)+8iRW3d8_MH#p#6OPc|jCKNYk|Pf9;BQb*q!F7o%a{EM~>qd;MA~ zo_5ZF;!Du7&#%^VtR2rA5i!#V%yd$$l)V;_S}V6Lo@Ty8L_|bHL_|bHL=+P3euSWC z_ag*FyC31wPnv%1>qh{94yqrjsvnIVi&j5EkOk1}M+mL}+WiQpd)~f>c0WRpwE7W( zdj!_G_74QRO+>_ey`=zvhi5cw|G>?iod5PG((@0P`644s5W8If0000S76;n>V9*4`^s;XlQ6? zX!xIEnY_I0tw?*xK{6Eh6n;>@?XGUfWGDb2bAQ$>dn=N@>vAUDFT*Vp;r5aP=C;7x z763?l$pHW)Ljm9Sz~d2?y%kx95p?+%s80L72LP4imo@;w;}MwKg714cISDfg)D3xA zUM7!6m!6lUlmV8#6-gbomz=_m^LV5@0l-YXfJPrE?j+r#cTBwC%9rx4M@G?%Mj5@~0ZWaTowV2#!zT2kUU> zTm?Vh_u%^;?5B6Zc?>DXIQ(veFp4Z8c;@%lMF@^CimYc3KZ5fZ0MaRV(NO^4JjSz! zA2agHFx3G4?T!)%r0#ff5<$D zKRKWHP8s<|LCR~lrQPT=+;l)%3ptpaQJ!wVt-JmL+{;NBl$)zcYoiK zVt)X~VPMQv_c@Ot1czg{OGVzQ&;aPNbsg}VgWivS*JpsK9$>d;w)9P6*;|oPjsXCt zyPLRkbgcdY)jYsxC#YLr2oB4-t=46erKc*XtaOdH{`v=g&;gE)m0p8E-?&ZVt#C#m zZC%zkM)M*c{2YfNj3T2prmg~$gbKmo90Y|^VV>xER2hB1&;#`KUF;7KMv+Sc zs3qv=7$JZ=N5`-o1|iJmUKMP6G2Q&|7*dmeogJrf446a^bY`~oorDm)aMuT14v1wj zjsZpUY|{NY(Bn`TMVPcNX=rF@XlQ6?XlQ6?m`0@o%zUzvzSnsotkYfHka^iv4`hvh zpchF1$RtY3CM2%|B}+-3u16IkRH_ikD?p<_r^9s_fjX~epo{b|F+%ABk%9^h0LUat z=W#Snoz!X(6wGbGUUFb^PHA)?Qj`{_%q(ST>ox)n0R1h}$pj+R7YmSb460)=rL+O` zz(NO*hdbwLF7CZp0IV}(1&q0<382_>xO1M-DX;5Q80Q7(0Q7Ws6C#OVKfQ||{yf7U z-2PmSS4bDu?KY5*46d>tp^B# zj>_27?fyWT5Ty)t5Oi>V>w$XKU0XLE1Y?D%^i7|KLD0cq(4UI|NC%Rc&kURDV7w0q zqsXG1Jk9%gcAj*g&NJq!I)N%WR7#Fgq14v`)hkq?k^!hTKvj#}fH7!KLIId`GNn?D zQ0HYoQ>u0o*;z6?>Ct)FN3TLV)uzCdJpD~To>+y-RbnLYCUf&&gANT1|8f2W(%EMC TZMBIa00000NkvXXu0mjfCLE&C literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/spaceninja.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Suits/spaceninja.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..8c3605f8b544cc10a1e53198eaf6feacd6785e16 GIT binary patch literal 524 zcmV+n0`vWeP)W%98(@#;v^^}=0!6W6|f_tAH~0BrR?selkX zpS}j5s%q4c2B7N&YYnbl{UPo?UZki6aP0~JYYkm5G5AAyIcCzaIq}w-cCRl4QMd2SMKbG7-16 z{=ov4^BK;yvEB7TRn>UE#<_Mg_FY)cXXr)Aaz2Z5oolz+`$#GprYOADIpKsuLVw*f zNqdemVGOb;k+WO0&dKv>?02q3#GzF|-83m%K4At_kz55KH3Nf_i#W3ERjdi&{il*7 zU>Bt(bls*V3=2~V>3>1E??w67t9VucB5o60=g8S@vg02uKj%@4X!p+m O0000Q%gI~qC~!n$RX)=3ntv{Qx9VCn!Nq_LG1F_6$S zAyJ6{5_~|grA!k-TQ@?bZra8dMCeOIm#Qr(G-;criSyDnwp%;#OKjhJ_uh+ zoAL$!zxbYW&wc*SdCqgsea<yZvZzlw;4flwmGPnG`BnevXEf=0G zainoH=H;iZ&(B2C+P>}gYUbB#X|zWal@>_?pti;ez~zP(<+m4md845Py1Us~Wd>k) zBnYCYET<9nh@#S%myamuXtL{YB;x$(>TIWRV2K-AJAldmJ+~-cK zudS|zi@nrVSJNU%7i6RQc;XLjde>)uq~$dxj_n)&XZ-b?7D} z&HT4*Ft_uU#wYmb`#ZKAlbh_~qtRTpFL?<&hw-)L2y)Uj(%^ zR$d+n^2E*ZC7lj{*JU|lBh2UjWZFn$UOu}co>ZIp1~{1S;`~g6CcjrRzizP`enFsK zR)u$sh1e*H0Q8C?6>q*quP9PmV@)dqY!pR$MUlpm66$3czmS~+%;yir)j8;_tB&Jk zD>&<_!;G9(1_;KbjQAHdz+%|mv7a|SKFs!x{R@`wHi9z>t=BH6=7M#eAzH6pCOD%k z@#Ml-)Bt*05vNP+0I3*-SVZrS-xE&TrX5u&SSf!*(u>Pf%Z3!R}fg*0ClU zdwMv&Y83@06Vss(I#Hy*zd!3qa4!GmVGmZF$WJQG{Cdq4Z+%^uYL_hkXFNnumN-%C z(#*f4i7aL_c83F3bu|Eoe{+Vt+dB9|RS^KredFxi)-!P9q5W;9J!sqpBmVH|f=`&)kXo&*x9dpUXECx81@IWW>MZE3jtu>NG+7YnpkcyPM&WAYvrK z@JNtny1Ut5)2v2;Hx+lxaoamVl0TY|kt{N4J>d|WgR}f{g$tt~WW=v&gxcEL zl%$oP>F(yd-=F&KgKGK4k`mt8x|O2Chk0L;gtoRe<>=9)%d#Gr&wqGzsAf z@s&5h`I!iB`@O=mB@U%AFQ2szJ?lI}>{!>95x=HMFo~U2=0!u{7D=ME#!6RD&s|v# z$93xW|6Jb?RJia->im=ZJ=Zq`>+7iP`hHjDr7>zI#ml&8)@ApXw zUa*?8TbbO3->)bP$`T3ShQXS4|AxUz0vMDf{ECth|B@ciVJlP~FDqm!8e=3TaXcEQ zM5p6)Ufw3-Y&XcQ?dFyat&%JYG#JDv=a{HKHJ7MS;D=O?Gasb6zJ zFV z=w^>7Do&f7!T1cFPM7kOO-)?LR)K7gZr&I@K|FpZI)f zvY!h8JX&3@MDE?f&mY*5%1Z#yTZ&WHNge+f(3UEvc@78_>cJP`^9uE-+-Nj1F+R@5 zzCNCAbn(O&uhH3W;Vr=Jb}It|1Iuazx7)1{3h=xBQ#@fjLT96kch7q`y?#9vm6gO| zF+8KAd~d?5>Kf1{SMw|2FdFDCx2GL_C(rF0Uh%PaTL*8haUxo+)VN%k^-cq7TrNbb zl{eQo*}JWShF5%PIsg=yOmvsqaTpDn%f0h{r=&D2Ve^gacO(5FIrGVSHY1nh`REW)JYj)ScE)B!bWD#pm^+2m-B+N_Lh? zl$DmUJ_HSwRV=sr0}Kod2o050tPiRA06R-1S{;=rf{@ZD6p5tiss)-oV0c9XEtl0a zm|j2-1omAI@lZ{ar>om=o$19>TSi}14RA7}&S`}z8(e34d3r+|?{XAIyu4m)Mo|=6 zLV=X7j9$?sGoz7uc*hRq+TnPiAhY7M02r#7)x-Ed?Qm4%Z7X88;G$4&BX#H zNg{7za_NWWA*)o*N~;=&uXU>5+e()2EKsu!H#t)}ShLGZ$SMw4VHEg|Szrbo{|Y3~ z>Aq3#2SA5_FQM?DO-~*&rzC;#EaYTm08tQdm#B-5<`M(14o$PW+^zr|yyCm7)=2WK zl&5*AZZ;j~%c<{#*&%`p*$9_&)&ut!v335EB3Z002ovPDHLkV1iXxL4W`N literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/syndicate.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Suits/syndicate.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..1ee3f2e6e3337561409c688d56582283d3fb37cb GIT binary patch literal 928 zcmV;R17G}!P)ViLUt0-lK?0A8?T*g_&wzNvEVtLLOl6GPY0rEDsVgRb6z+o~!7-hFkFbbgaN*#e&g z+*OO)AQ*6SCtKk93!YZ1cm3418*+B#fT<`<*fs#sjS^>t03aa*$3L4VAq2sIyMY6o z6@r8i7`o1cZDT6U_wBj_tuVbX$AhI6rWfW~@@~*o3EtC(CBUrVA)VhOx>2e^lm; zvDx;_&NY%em}z=4=zn>8?)y@^z_LS%9RRZK>Vh{VqlREvp+)vFB1hG<#HSz z9PAjcYX_3aq*AU_YW6$RaK!5c;2YC!;33Q6!rB_nnO64qBmm&_sZ&HEks6;1oZ&_+ zMkZT8?Cz4u7Pt|MF&8*foq|9l62ar~w2j$Q36_?ZmB-uLa^&)5z6I{aVx&y7*7pe^ zz%;qLy2_UqFLHEcW#5>6ZNqaQonaKRED}QS(6SU~TswkN;V>g!FH6hI|IRY1$Ba*F zJBmY=MKItd8jtV0j{BN~SB6}*VdUJl9)_-W+!OWa=)mHrBDePbUSh8dC~WOXwzf;4 zsw9Nqr0WpB6nA^k-++A`czXyk&#E7XPmfF98nYO(ZI0{|o6e+6vugou9k`_L_ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/OuterClothing/syndicate.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Suits/syndicate.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/syndicate.rsi/inhand-left.png rename to Resources/Textures/Clothing/OuterClothing/Suits/syndicate.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/OuterClothing/syndicate.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Suits/syndicate.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/syndicate.rsi/inhand-right.png rename to Resources/Textures/Clothing/OuterClothing/Suits/syndicate.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/syndicate.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Suits/syndicate.rsi/meta.json new file mode 100644 index 0000000000..8f2d1b6bdc --- /dev/null +++ b/Resources/Textures/Clothing/OuterClothing/Suits/syndicate.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/OuterClothing/detvest.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Vests/detvest.rsi/equipped-OUTERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/detvest.rsi/equipped-OUTERCLOTHING.png rename to Resources/Textures/Clothing/OuterClothing/Vests/detvest.rsi/equipped-OUTERCLOTHING.png diff --git a/Resources/Textures/Clothing/OuterClothing/detvest.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Vests/detvest.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/detvest.rsi/icon.png rename to Resources/Textures/Clothing/OuterClothing/Vests/detvest.rsi/icon.png diff --git a/Resources/Textures/Clothing/OuterClothing/detvest.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Vests/detvest.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/detvest.rsi/inhand-left.png rename to Resources/Textures/Clothing/OuterClothing/Vests/detvest.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/OuterClothing/detvest.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Vests/detvest.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/detvest.rsi/inhand-right.png rename to Resources/Textures/Clothing/OuterClothing/Vests/detvest.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/OuterClothing/acolyte.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Vests/detvest.rsi/meta.json similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/acolyte.rsi/meta.json rename to Resources/Textures/Clothing/OuterClothing/Vests/detvest.rsi/meta.json diff --git a/Resources/Textures/Clothing/OuterClothing/hazard.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/equipped-OUTERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/hazard.rsi/equipped-OUTERCLOTHING.png rename to Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/equipped-OUTERCLOTHING.png diff --git a/Resources/Textures/Clothing/OuterClothing/hazard.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/hazard.rsi/icon.png rename to Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/icon.png diff --git a/Resources/Textures/Clothing/OuterClothing/hazard.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/hazard.rsi/inhand-left.png rename to Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/OuterClothing/hazard.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/hazard.rsi/inhand-right.png rename to Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/OuterClothing/anomaly_suit.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/meta.json similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/anomaly_suit.rsi/meta.json rename to Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/meta.json diff --git a/Resources/Textures/Clothing/OuterClothing/kvest.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Vests/kevlar.rsi/equipped-OUTERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/kvest.rsi/equipped-OUTERCLOTHING.png rename to Resources/Textures/Clothing/OuterClothing/Vests/kevlar.rsi/equipped-OUTERCLOTHING.png diff --git a/Resources/Textures/Clothing/OuterClothing/kvest.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Vests/kevlar.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/kvest.rsi/icon.png rename to Resources/Textures/Clothing/OuterClothing/Vests/kevlar.rsi/icon.png diff --git a/Resources/Textures/Clothing/OuterClothing/kvest.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Vests/kevlar.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/kvest.rsi/inhand-left.png rename to Resources/Textures/Clothing/OuterClothing/Vests/kevlar.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/OuterClothing/kvest.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Vests/kevlar.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/kvest.rsi/inhand-right.png rename to Resources/Textures/Clothing/OuterClothing/Vests/kevlar.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/OuterClothing/apron.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Vests/kevlar.rsi/meta.json similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/apron.rsi/meta.json rename to Resources/Textures/Clothing/OuterClothing/Vests/kevlar.rsi/meta.json diff --git a/Resources/Textures/Clothing/OuterClothing/mercwebvest.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Vests/mercwebvest.rsi/equipped-OUTERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/mercwebvest.rsi/equipped-OUTERCLOTHING.png rename to Resources/Textures/Clothing/OuterClothing/Vests/mercwebvest.rsi/equipped-OUTERCLOTHING.png diff --git a/Resources/Textures/Clothing/OuterClothing/mercwebvest.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Vests/mercwebvest.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/mercwebvest.rsi/icon.png rename to Resources/Textures/Clothing/OuterClothing/Vests/mercwebvest.rsi/icon.png diff --git a/Resources/Textures/Clothing/OuterClothing/mercwebvest.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Vests/mercwebvest.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/mercwebvest.rsi/inhand-left.png rename to Resources/Textures/Clothing/OuterClothing/Vests/mercwebvest.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/OuterClothing/mercwebvest.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Vests/mercwebvest.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/mercwebvest.rsi/inhand-right.png rename to Resources/Textures/Clothing/OuterClothing/Vests/mercwebvest.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/OuterClothing/apronchef.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Vests/mercwebvest.rsi/meta.json similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/apronchef.rsi/meta.json rename to Resources/Textures/Clothing/OuterClothing/Vests/mercwebvest.rsi/meta.json diff --git a/Resources/Textures/Clothing/OuterClothing/armor.rsi/armor-equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Vests/oldarmor.rsi/armor-equipped-OUTERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/armor.rsi/armor-equipped-OUTERCLOTHING.png rename to Resources/Textures/Clothing/OuterClothing/Vests/oldarmor.rsi/armor-equipped-OUTERCLOTHING.png diff --git a/Resources/Textures/Clothing/OuterClothing/armor.rsi/armor.png b/Resources/Textures/Clothing/OuterClothing/Vests/oldarmor.rsi/armor.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/armor.rsi/armor.png rename to Resources/Textures/Clothing/OuterClothing/Vests/oldarmor.rsi/armor.png diff --git a/Resources/Textures/Clothing/OuterClothing/armor.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Vests/oldarmor.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/armor.rsi/inhand-left.png rename to Resources/Textures/Clothing/OuterClothing/Vests/oldarmor.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/OuterClothing/armor.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Vests/oldarmor.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/armor.rsi/inhand-right.png rename to Resources/Textures/Clothing/OuterClothing/Vests/oldarmor.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/OuterClothing/armor.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Vests/oldarmor.rsi/meta.json similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/armor.rsi/meta.json rename to Resources/Textures/Clothing/OuterClothing/Vests/oldarmor.rsi/meta.json diff --git a/Resources/Textures/Clothing/OuterClothing/vest.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Vests/vest.rsi/equipped-OUTERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/vest.rsi/equipped-OUTERCLOTHING.png rename to Resources/Textures/Clothing/OuterClothing/Vests/vest.rsi/equipped-OUTERCLOTHING.png diff --git a/Resources/Textures/Clothing/OuterClothing/vest.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Vests/vest.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/vest.rsi/icon.png rename to Resources/Textures/Clothing/OuterClothing/Vests/vest.rsi/icon.png diff --git a/Resources/Textures/Clothing/OuterClothing/vest.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Vests/vest.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/vest.rsi/inhand-left.png rename to Resources/Textures/Clothing/OuterClothing/Vests/vest.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/OuterClothing/vest.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Vests/vest.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/vest.rsi/inhand-right.png rename to Resources/Textures/Clothing/OuterClothing/Vests/vest.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/OuterClothing/armor_reflec.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Vests/vest.rsi/meta.json similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/armor_reflec.rsi/meta.json rename to Resources/Textures/Clothing/OuterClothing/Vests/vest.rsi/meta.json diff --git a/Resources/Textures/Clothing/OuterClothing/webvest.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Vests/webvest.rsi/equipped-OUTERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/webvest.rsi/equipped-OUTERCLOTHING.png rename to Resources/Textures/Clothing/OuterClothing/Vests/webvest.rsi/equipped-OUTERCLOTHING.png diff --git a/Resources/Textures/Clothing/OuterClothing/webvest.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Vests/webvest.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/webvest.rsi/icon.png rename to Resources/Textures/Clothing/OuterClothing/Vests/webvest.rsi/icon.png diff --git a/Resources/Textures/Clothing/OuterClothing/webvest.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Vests/webvest.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/webvest.rsi/inhand-left.png rename to Resources/Textures/Clothing/OuterClothing/Vests/webvest.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/OuterClothing/webvest.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Vests/webvest.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/webvest.rsi/inhand-right.png rename to Resources/Textures/Clothing/OuterClothing/Vests/webvest.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/OuterClothing/ass_jacket.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Vests/webvest.rsi/meta.json similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/ass_jacket.rsi/meta.json rename to Resources/Textures/Clothing/OuterClothing/Vests/webvest.rsi/meta.json diff --git a/Resources/Textures/Clothing/OuterClothing/acolyte.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/acolyte.rsi/equipped-OUTERCLOTHING.png deleted file mode 100644 index 92a1f7c968cb1ddfd72a067344933493c02935d2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1670 zcmV;126_33P)VBq8E&V_<6{R4U_bmY7-C=9_M ztczi~;=M&klR2 zV~DO%fl@4Bt@$};_yT>yA$NAz^CcJ+{NMptgPa`W(KQw)Uf^)p-rqEXL$;Ig4$RbIwX?-&bu7aGfBNt%8Ah%rEN zX6mw`2$K!s@NV*X!RTVd7*?cn00o!8Hfnf#pkc%q`ch>|@e#8OR~t3^ky!wMJE8bYLEn90KT36+KttZP zwIn&uBORmbF5&P%>*37%2MR#5e5!XRNAg&bBvczUG~|2sb(g(kyw?X9F=iR$ewzd+ z{*e6^z$uCK~+w<;t)H}xWJ5N)28{AS`Cg2vE=Rn5*{}(nte02K({H#Yg??os9<|Q^s zBtD|>3&c?n+5^b_0buWkKXPRJDhJPlI7EeTCiwi$(_C9sOaQ3EiL`cZu3L$b=te{o z?6g!N4m%+@gi3|&#K>oPNiy-dN`w-?*>akF?on(?!AN=%gkwNkRZOLLVek6TnoNJ` z9Jy#3Xse3J58TTEu!IT2K}dkMs+emV>vn4FeH)|irKXIvjrCMSpdDwL$HDggrup3laku~sON25m>}yI*88{Tbr?3Ez?!U|hxtF(zAq|`wL*Kzs9|Ivw z91s>@OKq7|PrZM1paBBaqBJpL43~G^ytdSqnOa?7RbHMdf2TR?v*5Mq$4dmU^8mYK z#g)s`1Pz=o$;UycJYY+0nY0AnUjGVvyMF<2S8Bh%{V>&4;Fk|Sn}EAM@!;!w`0(ma z0M?FGn3X892k5&mP=_@Wd{t&k7k~c3!iqyR08S;SjuYs+FCuTthmHZIri@Zko>_nA z+gFo@-@VJl0yLJld4)x+7|sVLTAzx5fzc%1t<=@ zD>UqGu=n}^)kZC~(m3Jqn;Ws%xvPgS3pjbm&~BCpi&%L8-@}&$l6VP=6$Ggiy&|2b+85wO zTUAW*z_^_$u~z}=3D8*nN<^ThNxokp4kAAS^p6Q)wx5y&zXKKZ`3Hdi0Lyl1(R diff --git a/Resources/Textures/Clothing/OuterClothing/acolyte.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/acolyte.rsi/icon.png deleted file mode 100644 index a3baa9270f1fa4ac2bce0eee4410b4631658c30d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 690 zcmV;j0!{siP)BjE6vuy#yTsZ;w4|1?gBFo2@nEvtQYfA}1TuN))HzV_(htxj(2_49=+e@qU@~eg z?vkJm!ZNXI3NnEXvL{;|>^p2Hu}^VIDC8}Y?jHAky!Z6Km-+MYH;-u>j~e|6;0fRf z;GqHPu1L<#kCJ}^P$(;*BlZ?(2e@!&24(kKtZgsr2yTiPq)!mshzc6Gq|x9VnNhV5Z$Q19>B;E z?AyCs1TC_@$7Q@l&bZru5XWGk0*@TA5?eYiS9xzK8F7j2uD1Df09CC4)F7G$yr{7Gh1(4-}lDDp?lbU=0A-d|lt0u56Jr z3<^#W$9|#wMnQ`!zs(?y$xeN5YuwZT@>gnn9#buD5VFZ2j=A#NbAB>-&M?TE8#LNu zDpkGTP^$;_jB6V0vDSf&_Lx26TFVzSl~5{Q!6^dV$N(_6CuMn+3c`vK0P2vpKi(y? z-94N3f>WI9{L=$>WngLl*F10$wAR{R8$bq;J@D<#*9=U`ai8Fz(F4*x9K6reU6BBk zfXjFbnCSnWaSi@Nm`-b+cKuTUz>F~6a?9xo&sqRpvd6_# z+*9t!GCe3j-4#itdZ?s%@oJXeJ7t?n^)MBLRtZ8Z^3w^(i#FBG2dH-s12Of{ogD!F Y0%d3y*cQ3VV*mgE07*qoM6N<$f;_@OssI20 diff --git a/Resources/Textures/Clothing/OuterClothing/acolyte.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/acolyte.rsi/inhand-left.png deleted file mode 100644 index c67abc75dfb1e67d41dc58a2f53af7f4c3109d0e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 772 zcmV+f1N;1mP)mcOFx50U->E9^El5TO?t+pu`j zrC_L5S1)=SX-_sgXoC9z{%A5LeLffS^U3Rz*Sx{!1tEkGLI@#*5JCtc#B&k~BIu!B zaH{o7FSenpPBIba&BxCRUGMzt#JQ;4@w)gDfQ!l<8Typ#ZQtALdqB7G8TxeCCPSZO zBF@%+mO;asn}qYT6KBw{0NC2k0^qI#3ny_=FZ>K<=&CblSY#NHOvFj@0K};cBjg(v z--n~QF$UA)I&71le(~BcLO$`Z(D}>S@H5z0%d?p~re()|*?w=^+{QJ=T7GVf&D^oq zb85o~wPD0t)=H;-HW%=@2ZYTU&FQk+@DAI6?d_kZY2A>aPs@%GRVLe7c8pg_pQd%= zXLA9cd%!_4$Msc@sD>4A%qY@2qAyUtra;*?(CWS;kn)qm@pVsyobD%LJ6`?T|Z>VlTVPk1rpXos+bT zwM>AatByNa;@#W#-dv(ptYreq^>(Odb~!2)D5f{KsNAg_Yb_Hn>o%^f-2GwA6X4E6 zc#5@6K(&4u+8LQ-=szjW+9trS`2uU3fZyjItm-E|>k$4BmP3yK0000ON9Ki7}#RV=d1Qv@Z28N4HCKx*0LSjrb%$g1Z9DAX$~g64saLgoi+tjuKj%$?!CK9e(%RS-i7xAA%qY@2qAJv@mQ2MpT2lrKW+ARx2=QXHLo{b0&q~gCP|aM@|i1sSBHIbk|r0- zlcY&J7G-WVMXOSq`Xub{Zd1T6aaP`aK%4!w^7KXtyZN*k`D1$lsG*girx;P zRcc(dJC7az*jj@)FPKLg3|w!A&|*E$_+Q*@+^8C}*)6JOWay%u7=xly%841F?Y zvs=#0)!QNTcE~wa^EJMyWu?hU z?c8DNqHua#Wo;w-$l;G~p<_75oB14@`JCrDo9hRykV#uN zsz$@8JADatk)WY_{)$eULMCnXXKg=jz!{6zN-#770QSmfftAz}33ZXKX_8PESxGJV zV(@?yXF^@1Vbp0Dbte&CW0?891NzTV!>IH5``18NQLM)d__=u|V4-6Wq`zb&X%g@B zo;0X&mCA>K0%@x|Sj~clPU)T*?0N+L1@@b3SWyTo3h`K!LMH7wlU)f|&*Ut?c^9xh z?S4O~nh}ciTc=&D-@4vygb+dqA%qY@2qA z^XMaCMRAHM{A#2}0Q&VeTBU}5XB*v*MoK`bd>GJTudK_cN+LSxke=4ao1=O=#7b&u zsF1>s#@ZdWYi{0sc<;+45XMMA*ECt^7<5f@lJPvbvFihtl^>IcaYK1Mz3;v6_j#Xt-{<}DJhnvJ!+eqPNWKNgH&zvpZvpa+RR!c*fP7w{<3UJ z(DV2BT#QaCJSuvIT{JknNGA9V4T0MAX9$LFW0$HZak>aZl}4*qAPOZ;7j~(NLq~qc zkG|y7~Pgz{{EfiBxHrZ3;k1Uzp>$PhA%0+LPSqHQY`i{&QVDTAqFgoa^c_#h-B&IREi(&VQ`j z@A)c7kJYeq=T6+G-o$_F6DWs0#it4VU>m=B^*3~Pcc(397U}qRG${N4bu}BccXu@G zHpQRO1{~|K$#vF*rLS=9rmz4?ERQBlL;b@(N-Il=#o^iU_wY|E>47M?+sxa6xBsei z;oww)-)^twUzhr5c=r3+dp#E~^SvK#B^aDw!_a#G*vpl?rk`f!H?$52M3rCZu^Ps& z4RR|wlVpwm6P*Fz@h6|by*LBamKv!!GlEl4XHDk+aAc6WnvI&_1EnW?I5NuPPd>x_ zp~UP2(6j_cMg;_-iU75x%KiAYL2VwM9rg017vS@Eplop(9KSXQB;L;!YC}@_L*WRs zqlvjbq~o8Bit%SOg6_7k#T`s^Wj%RqDO5kLkj;*I356p_whG*BVT($hP50NAe;B`d zWy5cHF96VTVV~UA;-zp3V&yP4l-Q75y*|(JP8Z9$1Ww1_^@o0qZ#npdw!;k$FPk?h zgucFc?Kf5qg;Pp?E}_(4#MSHb6e_c?#-GR+gQ)`%U*9~w31$E7n?UOkD*^S(>-ooq z%-1KZfVWT2r%lgB2vInyGe3(!SOMRD`oT2E)}plOxqvzZjixUJVFhg7RD^FLInCFX z7?Zh%YI}^PF9qQFbNJ01t^1$Ok-UZF1vroBW+JaU}>Tz)=nFe6W|A?R#+t6MKYw!gJOpyMs`(eJ_71 z`#H`svGPLO;orXR0wUBuW7fyNM zZ;DSo2$FRG_AkmN2;ph4`_6hM0~-J(AVKdV)H_Ub0ew6IB!V&kCIcJj zzO!DqPGJQECgNQ2#A0_W;{+z+sYRBAumUDOTj1j0eE>@C zou{SsrKEiStxtr7Fp53Jr<0yrT3@2%-gy8n4&E0wfFP)V(DW7n3P$EA7@6Z6XXfba zctgt%hHi7r;u03ZD6EaoCp~v|yn%CKPLoG3qfrPcK(bYE^O8aoh{E5iAUYXU)&=26 zl0C=;Lg5I(&}~9tWi1k&jG}t40d8KJOA4bi0#mWVdY`>I4e8?r*k-2Ir7=6|<)ati z^Iqs@@q>_EJc3XUuuD~_(~!CdNsSlCHYOkw+-+ft8k1n3P+|hqm_<;Q!=f{h@TqXi zg?-vm^p&4@HLvj4khy4WGf;x2tpMEoV45TDgxwL14={Bs{?-k`Uo$U+8LS(K!xp%lrTsBgI@p`|;&oPV2f^PV z=9kX~$2x3sAPSAdlMYB|6|c+G5J-&)XtXP7%N-Yx4qD^wOS|ojz_bm}$K$F>SSjcm dub0CN{s(7f@w<D6ojZC7J?K~sfFrcUy7LCN`$~7A`+~?UaUZfsGxd?AfzD42!e>( zf@l#zp?UGe2Tj&tTL~7dpp9u|!x7u4jh!B*S=U^4$A3lOfnjFOnR|X8=iGbe3TC&# zzqED#RDBI#4PXu6zXJ#*WGnPcw(`Y}+?1_QB7bZ}0Io#NS^c_7WE%d22tAXn1`+yo zl`D~Ri-IU|EACUg07S#TojDMZX^5IoFH86oFYT|6Sr7I<7FGisiD!Dd;%U!H;jB$q1EH@_oT~aU+3PE3&?H6hqlcpkV~hEdbLE1T?Zhog*J$8 zG8dTxjzPOH_-M%!W0-HEPU;HLAr*6j>rRK9c?38M`ciV3#2TKg^XjU=NRT}vj8op zA@XwWy{QU9$X3f?_sh^#3-XCOn@#SH=ftn|x<8z{sz5&BT+8*j-GUwa1r69WPQ|yB QX8-^I07*qoM6N<$f{@{d2mk;8 diff --git a/Resources/Textures/Clothing/OuterClothing/anomaly_suit.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/anomaly_suit.rsi/inhand-left.png deleted file mode 100644 index 09b5f629aacbd1fcb9a40b6ecc84c2884edecf82..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 723 zcmV;^0xbQBP)OEVqHRg)Rx@>G1llC1vmX?p^fK|8v>)!tejSdw8DbeR-b;gb+dq zA%qY@2qAokQOBRE`iqBVL5M?>jim)8hJhlz)oDJrQi5Ie_4kc7S4B=*E%~$rZ#AA zJ!3C#ldA=1#!&IEH`(3Yq3z^8AuY&ec8kvk4Kz2m(0}?N*QbAf&ZBvNY_5R+Y?r0H z6DQm(wwxIzpUNu<<%OEa#nYwFgXnFuG?sm!T;gBY0J(DIKGn%K#ABI==f>=TnhcLTQ~; zWY%*2pJCp{!V{>~MfYS6j9j^9(YKfIHSMK3!+;*04+@_|yRrPCtbiFFO%hgG+ z;*IeD1n_hk`U3Xi$!9QEGQLkt!ueJ=FYafq_ki(URI-RMn`3;=ZNgB{+BhEXMVVRC zTFE%>@}&wPgb+dqA%qY@2qA>`ga=S7mz=*atZYx9ebpOtn>KPgZKnuL(#e+7-wLIAXiRmc-#wPCq@H+O*aV<{{ zfsu=Yl}T?WZj61WOXr^K0rN|`FO>c<>6ydfzoXUzYIU);HA7GK0MnDlMQYtY;MwN@ zfRDvfklw4QhG!dKycg9K->d9HaLThoz}$s;bT5Hj-vN?e4=>xVE};Mb002ovPDHLk FV1l8WVO{_L diff --git a/Resources/Textures/Clothing/OuterClothing/anomaly_suit.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/anomaly_suit.rsi/inhand-right.png deleted file mode 100644 index 6248c2645e1ef24780d1d303c2d663d69424ee68..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 744 zcmVP)6d3c^52qAIm&j5St-Z}K|KS6Aj=KH27l7^MFmAuTKiwaO;R@sJW-q_i-bO63 zN=x%az&QWDj)@V}^3Mkp3fo*dvx`sjvX)-w$8Q%+O>X=bo^d~D-y$5$50K8}Xl%V~ zn7_WfF`pVBo6VwW9e?}MnH-wdK{lIZJ~dE_<1npKexPc8S9#+~e1>=)=zL5pu}V6V z<9mJ!fMR6kg^-0GM01@AQZL z`4e-K_>y4~bCds`zjPZ31yCPfRlkkcQF-p8^4A;v5q)3e&Ny`q8z&R;q%~}Cto+6W zNLn4qo?I1s7xV`pfR{n&_S7toC1SHMmDl$JPvB~^@z_H%V6+Pr+eE*bqW?~e)Z-hQCDs)5N ztPWNyrV5~WKJcg`NN3+5Q)~KbbEh&@0D$bxR<_j+ZofVooXT_o#>a}dcjm3kaw^Of z;Cw%>&jk_-1$wSuBeE2=I9BbLDu7S(63>I%-^;rfLA*m@t8>}k*zh@}Ry>YdJ8)3t zufxZnwe0Ze>keDLT)?h{k!s8IMG*8w2u^2u2E=9|2E_BuJ^N5;q2w`@9)(Mb4@wJ^ aoaPUzC=`FKNSO2h0000aSW-L^LEz$Y^g+U5E3-YO$WOh%`Oj&Wk@elW;rB2g)WQ|fp-UMjukhpZT{-EQEW^Z-PjX_*Z zWdbHo7R|Y!HK+SS*@pD>&vI(c%g3*HpT5Vsc3ySGee?B|^0&`_FONu<3zS~q#^R9M zASKAKl`+eO;R@S|$lnZa_Q;-A^7{-l?^T1x9wLe1Nk&x9*%`D||g zKeaah@l8&(%|gr#88`k;zfoE_z4p&FR)&~4cXV`HQo@pco%UPQerUD*XAX}v)v~HB z%nTZ#(ch1JtvMW%DwGz zKefo<74w0@o9)G^{LfFx^_{kpnO>XBzvmY}+XRo_5hick7GHLazRJKbJ34yV`E8-R zy?){sH%NDG$yZdI@lx8bYU3jN%TgevI!|2IU2_MLF5e!<+&tVa{yyiY(*)NPd#|h4 ze$=hIcKqtiyN8w?T=H*=>4C0)KEV%Oy*W2+^;f}yn-9NQ9CHp_e(~j@*M$lXHtGL) zdiKlN4Xf-w+d2HdbTUz5;$MTf_%EmJm#j|?y?@DV#oDZZynM!lS9fC6CRcraQJmW{ zYp>$0y%z&|9teNa=a2kTSYDHVQ{rpl4UV&m&u_;{s`aqm(*W2^?yG0|6-O%t2u8+}!v;O6tJWrezopr0CwNJL;wH) diff --git a/Resources/Textures/Clothing/OuterClothing/ass_jacket.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/ass_jacket.rsi/icon.png deleted file mode 100644 index 34dc11840cd877b21912b250988b4c59e233d22a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 402 zcmV;D0d4+?P)3qLKh`dzCs2ESD_%%+D*t5 zsA6&Rb>z0W2d> ztSJGB5;$%Q5+%59yx`*bk^$@G)4Q#lZ%qj-Bj6eX*9a^lP#iZ#yR4#CEx`+E&i6u! zTD63BS%u@q+~M2+83cgM7&7VI7Pikt!U2I-uq_fL@Y4?f$nC~H5&~GRzOY=aN1@{p w$9Jdf?2vA}eWb`QnFNpk5Nq@;|)P zSNX}JE0?QNnJl_Sc~e$)bvATWIOxdPP3feOuaf%*xw?C*yq3;urg;;Mp8%~~Z{IxI z&I14d000000002^U*gdF)~&I%%h5Jm^hJ$=p3H`B?M?W#9U@ieo`L>hr*;E{+iXeg u(MSKKcc85OA^-F*P_DPu8Ych%*a6Q&xnP+##>?dZ0000h+#mJ-#fjVGR#Xalxwj3;%o9(WHdjnb91wZpklJD(Uc}X*4UQEA`9y; zIXS*rdjEXULzYAD<<6C@;{cit1P#tff6E*8Pjc(C^WXpE)0>E@n|nUa%eMDvYZOaW z-J6rQbmHRc2Y1HYnSRV9+lZ%R=d~&SGj>k+ZmWCBYo1?TeYR_)=e_S?b-Vgs{b??Y zcDt-C*>hX^^ZK`5Lbs$!V|P~0h^)MS`OR17cX9iAXEs>X=LY|q%DLj~J$rG#%QNQ5 zLtFtQZ-{$lNN?1=x2(`|m+zHQ)o-qsPZ;hJv^G`X%>C*g`*O>h)^Zkhpm1{hl_~AQ rzGbr-Ziv^`2(P}p>E?cBhJaifQbP0l+XkK$1Ics diff --git a/Resources/Textures/Clothing/OuterClothing/bedsheet.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/bedsheet.rsi/equipped-OUTERCLOTHING.png deleted file mode 100644 index 996b51b9ae2154a8c764f976e0ed5fdbe7c33b50..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 961 zcmV;y13vtTP)rt7GQmx1sWh06~1a-B$O;aSSrR7qM+{jsTUI5VF~397p(g zr971rQrK|uF~CGj2-%#K*obX|lLPde>-&E7GqsNa-!Wa=JEwr~ym(mrlgkjJZx!$R zUe1ij#n>>-KEPvQd~NVv1%wmmTgCP3&qjz1-VSgjidhU(q?CYH5p+SSVrUEhP(*it ziWoDOa`pin91vna>?jDGeHYuEBH&2)9ht$G(Vy^A1YEXbHrvFm`n(4mx`&IzV8Fh;;$_)XIk!L0OfNki`xz!(F-b}Bq8GLG@5JFH@)n*h>N>}Z3U@szFY%w|@WLI~+UcLLIgzXu29iVSy7-P<%mLe5=xb?QC zO__5Ipp?o``~3XeY=beDZDKk>9m_WEG)+J$bspQR2#WB&T(-L*gcd0R<^g>f;{V6U*MDakpP4~!6kx~_q9`)+#kWJu&c zz~6PWZCkkC@3KwXwu?UMJ@xf7^u%cE1V}B2CVtgc^*Od|SUEr?RzH1<>tYbSu&9HZ zjJG+$weKFkZYRLwv;7{w*V*8|h@>Ay&wy|5fYa#%V)LI$ACQ9oH2Q#4{HM|fq~JfK z4^aP`+8;$qeL}E4K%a@!`T!HZa6$;b_cAC*bnoXnJ<|F0>%Itj4gv2l z_)nt`NX1{gJ|H!J@%n(&{6*^na_|T119DXT9QuS{eSq!QDW*Ok1g`w2(+9-nFIFFr zi@#`nKo0)X=>uZ(7q1UU&0n-WAP0Z3`hZ;gr_cwaYX0K&0jc>ni{O?%fDp1cgI8Zs5kiZ5bzK7h{L$x(tK(`La`G3g j56Hp)Umx&n1D=g9`cZ;y8&J|_00000NkvXXu0mjfPHfH< diff --git a/Resources/Textures/Clothing/OuterClothing/bedsheet.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/bedsheet.rsi/icon.png deleted file mode 100644 index c19f9ee4f1ac41066e6be60172db636813c48f06..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 499 zcmVyvUw;@B_G#s=~I{spgu z#{CEu03293@x^l!9xmqY@mD2rQ+Y zrfGGR>`Nf0ApCs@ramyr?2ZDbX^QGtYpHJet00hYM}f=dEnpL%2BQ`us|YFJ7URc<;#)b5cRB z0q0zl{dT)$ZIn{chDw4pj)S~i*8$>sl}b5xXRWR7l#6{JEJN=-D5YY6-EOz(Fja~I zatczXQcAd9uK;jgC66?wDgk2*oX_W3bsJ-%3gLMxi7Ej^gud^i{KgnS#7JP7_dtZ2 zhHMdr`~&><0Wmz3clP0Pd~)G*|@KKDMn0q(ex3pippcz2h*>9EJOU pG(ZSCKepwGh*zJE|8!GI!4FtF?z7nR`V0U7002ovPDHLkV1kzk+g|_x diff --git a/Resources/Textures/Clothing/OuterClothing/bedsheet.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/bedsheet.rsi/inhand-left.png deleted file mode 100644 index efd146b02c94f414676b656cf70594ca032dcb40..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 532 zcmV+v0_**WP)Lk}?r|7nUS{+YA^CYbH`xUMUI)B20b@+kwH(wcQSq8|Y62oMY0mf@l@+jrwKk~? z-U+p}j8e!dz@`q)_1j=Bj`|N`)cgV3?DZeaDRKoYvG=1%Q34$GA1qOn0H4@X21N;= z;Xf!!fS6qVgQ5h`@E;T)8 diff --git a/Resources/Textures/Clothing/OuterClothing/bedsheet.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/bedsheet.rsi/inhand-right.png deleted file mode 100644 index 5627783100047ad1a46c1b85dae06a8b4632e093..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 532 zcmV+v0_**WP)`Fg~$Qa5^(-hlnmDqlu>_hgYh>XYM@m4>bPO5?+BBL<|)>;67a}IsqXMNb0 zIy>iXk1^&cqFX08pO#ae0+8!4HNX}z#>{#L099#_)alXyTSG*~B@>p-fE?CZ70Y01 zqH^}{(+2V8r;VuzDrLp&3;=X2gQ@h-*}pF}aL&EZtZk56#>EWS?e3qFY0qFZ40N}lUYM6VciC}+v7@D;Q)O8Ku9-yt#G|kR?pPj7B<&y35vz#!F9#wd!1)T~_+Zyl5&bu5#rB+ZtxtxDH+{8-i@ zwQ0uGrAwNQhH70ix00tqr!=(cii*%^n-4X?UXvvlYMbxS)P}%JaqYVw?!CbV%Do0+ zY2%d;_si#b&wI~3=iFnfM*lFx|FhKbHV|(u2M})q@z!zx@iq`|Ee8;91M${!0P!{u zZzagRu(qpC0GOPdBtJi&UFvF;c&;&I6+ZgtBUY?f0l|aYE`rXUJ2P4T+ZFNW9R-qfI*wbd zB}u1~Syg#_vHZZBzh|oKApk~;9{^yg>>-4=4`DKy02J}( z4M0r2u&_`v6kYiAeet^J))K3t%h7KArNk3kK$1>}>h6cX^mB7*&S9{krvdXT#{f_b zhG^>ELvC&^6%`e;raR&H)6~>NcXxOAv;R^{pJm3tqz-Si z_yKM{`*Qf2*24^~wE(d3ACJlA&)EWs?&((@EjUQ<=oo|5FOidz13*(#6BB;F6he|t zCsiIGCntx&>X!%}9pli3Cn>t8KcF4C+P+3_?ugj&V!t?O~#>dAQA0OxZsxmHh zb>Z=NxYX6f`Bi1oIY1HrOJ{;ppMTDkt5-SiaNu&e&}cLOGsb-^tE>4^{fx%#q zT}e57QDR32(9zLBX=$mn?{qo=6!GVs2sH#=761kZ2idl5TZDn8rY0&XDk2QDw6t*R zt+xWONBiRiPlQCiMx(*&^28 zGBh7woEA^#LwNcd3tx68*iNR+}-z^fyf!mn$zT)P(FV-K{QhLtymL1cjQ zV@OMZzF{c)2Hf`@NJ-by@Rv;C{)~l(Fr9zd6RteW-!z&!haB8u@udpO{3Ss|6}3H?gal=^?(1pz;XcbHV|(u2M})q@z!zx z@iq`|Ee8;91MyZ&0aUi^5bFBs7xcyFVydpMUZ`x@5tARq0qpFk5z^AqaJ$_R;GG>c zH!Kj5CEf_P+f73X8=;Pfrg;MMWGKKD1;l z;lS`Ap{S^co}L~o77JBXRqU;);b46|5WX=+qft>yh`AGVyWP@uN=gbAi-j|1&cs@r zY@IoC28+c)N=nMCUX)7Fk{G~1e?NxRs{yF0s-nzn2B59IolToI;qiE4HZz|xGBU`{ z&PEUfi3?z}*(7gDr6>Tm+s)wG>RJF2T?8<49V z)z$cXK50KID+`0c5ccqepVzlqIS?pAuh+{iS9SpT`S}2RH8)o}*4Ez6z`y`{y`D~o zgHDHo!NI{9En+cr+-hZTa8Tmt^?C*d254(p=8?x9W6z#F zK)Clc8jaEqCdBc0DZU=xrLI=h3H8ETZ@tCik3I^3(P)%L0Dy*u28xS|2?UmCRruh@ z9|eF@r%s_(tJ%GKH)Uose|zmUu3Wjo`1m;c*F3tUGr_vPdLcPEnN_P+@q_#BqpiK2 zW5xE(YN7jGr&=Z-u9;;*DxSuh&a+fEOAY@%emQym*mUw!FBcl^6BHcXkRJ zHf$h0J)H-4?UF_Vuh&bH#j41I;+ddcucxG>L>l_U$|oi!DlIBzB_<|v@#00PQ!F!^ zDJdyY)cJ{09DvvBjp+5yojV7>OXlZq$lagL64?+Q6{06+a-?`FTyB1sh6bc2S8jfn zH&1U>3|T2|Qz2rry6bE3)(98g(s{W}MyikeE>0S&O8u(0EIf?@SD7rlq z{+j$VHGh8_)ZDPvFG-DxPdkVc6|ohu=Ou z#@^QT;l+}>{=KAWh@5q~WBleZ8VLV7b7C?W uOOdiPF&QKTJoiEnv9h0hDxQsPZRfvZ(|jP#fNJaj0000|(~Xu}DKVAr4b!a&Y5L4pMI|9s-pJ!i;;7rGg;zB6#RQa%d?5k)G5` zB-leWuDQtUA#_h3L=eSG-5GPrtQ~i@>_2m8$~wVqGd+Zv{AtITRiu|Z7?}6I?|bj} zz4!e~-TS1?)0B~?8vPjH7~mM-7yw8o?YOwP@Yh!%X=fGRM2)~x9o3hY%n%9 z2EfNNS5pyg{vE*L=8~^z8gqq0X#4ioEkF3b_(mzT*DQ<0%95WHBDMri3JxHOBHeBm zQ4|l^=L!WhO$#&jp8$g3ilR`ntkB-~JQPL2bzKxiq3?NNTg|di6eTf4B*4MoSwWyu zsT_g;&@}CkUb8GJl?quwNDL8Mf~+90S}r5Y@?*0-DvF{Y%QCCwGFd^0bDazzn6;{^ zA<$9h2lb%e(QHLY@ z+cCBTuH#TF7DE74Rk3Y5OmWS!ux&d`y(CE#i$z?=iE|Ca97KOVctCe+i(f4Z$8i`P z9R+yoOb9>#9LHgOeVwVPsYC#&xJT*A;42@X)oQV@uz;c{VVhwX=(-;2wrx|bR+*ff z1mIHUo!HYb79fxtyJcThRT_;3q9|gTCe3D(>FH^X+7I3nagz8l0+^qlr`PGw_dKfA zDge!96J6JtD-@VGeHzm=hjBR^K(EtbwOkJMYvPBgYmMuEumdiZN>M{2W$5>Ss;Z>Z zY1-|*(zV-d(&==#3;s6%Ve2wA%fd8G^7%aH&a44&?#vqbd>+#@saY1n*5#o95--9Z z$oXz>Uw?4|&eKjs*^>ecwFcgO6Pz||{{`L7zWtS#Vf*f3_?`ODwf54pveE$oadI8)X zFah=*c>V-5JMh}8@Yd^a;$()EFLVCe6Y&tS0K35FUk^e(lYzPmr%vwo3G^Rt?|m>J asXPL5b5#9p5~e)>0000?!krVA`%D%)hTEdHeu^fgk>m;QlODU34(!Xji`IVIw zPkBFDgKRc9IEZ4gh`nmHQ3JqUwTfb~*r?s+>)hu3I3HxQTOaPBW&0P303Hnw0|441 z5xk$B#dYxn$hcR$dB<_ER4!v$2ROMS0zX!t>!3&*5bdbd z(GDQeRvUMl9~n5D9~p3;_bTu&pfd(ke*l|1wR&x{Hr5$)pMU%5Z*70C)o$~QF~%5U zj4{R-V~jDzj?r@36YwjYPLplhh(@CTfI^|*Yc0WFxBds?GKux|byT*teD@0F2E<}9^e2;8D3$QonZuR*P1v^Wt5+yD zV0U*H0I;~Yh->e*@bT_!<1Fwhlp9c~Q~&^)reUE}!u0esdU|?%^=iuPaI=}F*|NO6 zOo>FIF*Y$V5!!z=-%_a*SxQkVmGXUa9O_-mKWilbxEMc&hx*S@uf?P~yfnynX|G`FgTmzX8tSjHD<|UV;Ds002ovPDHLkV1k2_WP<}y`-MsjE&*`$OtNx3I;}h>r{!=~gA1+~h!vg?p7mKGp$2UB@ zd+@f~W4M-je$Vr;T`XdMe;?b$B0SG)J-_2PR7z26%}gdktu>WWbR4Ir*MFVkI83M0 zB*{!BLy}CV(^tz+l3HsflSyi=NzxaCuOmsN6qCs$l~PyF?;68wHcJ4=X0vpS@zn&l z#!x9m08mO@n!mqU=h{jX!9VTbQ37i#i7v$Kp0$-|qrJQN6uX-jUwdv_T(rT^05CjM ztA~ex&_J!f<4L<<(FSLyPUoMUx;X#2Cm<3A%D;evqguUpQ0t3?yOg-YB4Oae=fCxj zpS9XA`GpWd2qA*m<%?J49hXX_=o&-IvY5-|xW2yb+ljc=|K0I; z94{s(QLR=xmB$}qu^20}L0Xp8ID&H9nQl}p7HbSVpU?Yx653h@o}!N~47A zOO|YTLTSjvcz)jfU;JO(<(%*N+;h%7-+Mkc!P?RUd|Kc%2m}I~nHt&vtM18QV*%!B z?|^v_h`rg&P!APW@FV}OpY4QDf0Tc|9-}&+WqqNVX3b^xglX)ceq3%`Z_U-Q5(}a0 zt~{Me?)mQQF;2(c=$L!Kzh5hXFC8<;pN?Tj=r3US zA0aY(_qulhsNXV@MkXZ#5cnS}lCfd)m^S&~aEXv;{fQ ziaVa6JDj_*Q#^3qI7=y6XWS@5j*z=ULAVh*oF-}5i=g1e+N}8Aztt&F6<)Dy9ZgEK z<%_HCE__>!T1}xe@9p2VIoWtX74l3^iBuyanwhjtbuBYHDp35{rKrH6%ll8`dePGT zf<)4we{tuimEz|VzU}o>je1<9a!8K!*G##{lc;$<4IJ2y-tSbr$Z$I9> zLdPVOS;-$iVey->m5u!sKD@E)pCq;ZyZy!wMNQyP)-#fS4V z2zPPP#9GFPv`fK;C!xO0UDy(-oIxDdq$7^xEV6qyH?a{E&|Z*6a39vBP(Wer>WB1&#}DAQlx;Fd51BH*c)AwKWyke#v_jh+PYD`WqC z9lAh2WVU|=-d~fRblvVwFU}Guk-H2g+B^1C?>yj}o>hS#gAdOxQgLm8!6=%O2#=$W zz+^{9rrjcSG;p?o#|aZ;d)tb<`B*v;Y!e3fu9|k}p+8_<=#6Y40EN1swfY2&iB~f> z8tU%5Q{LBwJT|n5SYC<@uXKGARWcbpv33ymRqNtVQ)f3pp`2T2Y}nVgbnr}hA7XDp zle?q0WIKhI6Kjk1lQ_S=dOt{z>63W>2nYN@g|k1da%Je)I~{Y0O>``X=N6Z!w$8qn zP^20Ba7WExbXCU_8lPo?JDNhi|$VgV89ezh_h0xNH`Z7No*uQf}y+_kDz%pl4W?M|q1 zKPVr<0Fuu>YhXNE^u4JS)k^EMu{i8}5B?b!ved?$gEBG#2mYy4brYZG^yk@XR})qQ z7!pHSVFqsc?QPYdbyE(|@rvJbmYLI#!E&bGdO`0kQ@UN4%UU zH=6+1Nl0z7M*C$MM`h$3$8FDf*SNGNBlfeM)-`)d@JZ+Sg_e5<|Ov#NWA6b zJX2ry$6eU*MxcQQjI{x*z9sB#w;EYiQSs}0R~B=OyAMYm>XBQ{js3zW&xJzMV0>cd zz^VJ?dRF&g`O`5{cK2a|@u4Yz3c6N>(JS+CV*qJ&?at-utsHL{sb7&U0x7Yt!6=G<=$c62gHGQexokce9T53 zVx)U5IKt9jIZsJ&iE%LQyi{qfbmB6{*^>IHX!WHI{<;@j@A2YH0>>eo(R-=#BO|Id zG|KC)$kE@L;0%$R-k?`lWV#kNEvnC%bV=Jwx8#(hKoE;0TDL^${|KR-42f3psMZ>2 zQdXk~MNtNt@LxvPkl<&`)^((XsKjtGAs5tfD>34~QWY8DQ zJZRPsWK7N%p8^d5nLQrB-1+)QN}gFi5erL={(TWm)J|&x;l4L5BZo%{k7Q%ox!K?!tXdeBW{!LIvrC7+Be7*h8tI|}OH|w>HEl}8 zJ-gDzq0#3+(o%P%B~q`ww|19Pv2F;o=sf?II+;KO$TQ@9TZ-Sg+z z;#eQKfEuzI6GC1F?6Q*{Y^{y(9r&35?QHRuYkH;3hl3-L<6dH_i9=?Ad6Z-~URR-K zN0i)l=wa6ID%!Y^%=%H9J&rZNPbBM%{3SD2i_&FLpbrC0TN0sBN*>UYL?jMi`hA** z*VW%={_Y!bKe^hNMLlhdc7n0iQ4bqWB7y8o-M7+c4uE5GPdE{X{7JhKtM3Z`XoJu% ze!WAx(&l6dWY=A89U<$YTKtOsun!2osP3D`Q{%!IldmwS%LT!(NZ}fL!L`mv(PUXZ zF+s9Auyv?K5Vg5-Y1nGV@zdODJ*D>yOD(Uf@}jOlJ`H?YvLLXIX~|T}jMuxl%K+xg z29G&i`Iqo3sW*k#>3e>7MIGcRXBy+PJmvEj;v2pOTyS?<=wVdR>ZDJpfEKDA%brTn zz>DbIDK6?JyK>PB)6f!SK21d5s5Qr2j>DP*Z?S0+_c?Pp9r!VikkDP?zMkOGKVkwD zN2s^;EQ{*1*6RMc6kBVzp3U8z>%OrCH|GUN{DH|=4_;o5nOHkHb+S324^QB)W96*c z^71N7a+|me;0ea1U#DkS!zSpdG6E@?9!}=+3) zn|O}ZA&2fC3%yk#mIXc}IdIS#6R(`;aN8#MkAi8KKSVB%8VLO3KxRgkhIRUGG5-NK Cq|)&K diff --git a/Resources/Textures/Clothing/OuterClothing/bombsuit.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/bombsuit.rsi/icon.png deleted file mode 100644 index cce6fbc9dc5188fe5bf0b5f7bf05b4ef627a1583..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 906 zcmV;519kj~P)Uhk_4nhh3jTg=S!3Fz8x3 z_76t;(86pHeJGTUq-4Fq6(aLKLGRC7aiWa4!>Tax*L<^!s$r`5n&p z!|$Bm?_5jin>_DQ``)Sh9>5;J9>9ACFsz2OJGN16r`R3as5Y#Ic8t9hfMGSH4P3bl zzz@ZN*NpUWZ%>#;Ar6=|Z*_>qcs;kl{E;uT|BgK!4ggvmBExD(8};6{nAzJ>?=2Xb zjB1~KX$2sa&T;X=Ii6%5u^3BotoaxKXHGk5ce+_vS~fuDM=DGVM(aY z9l`Dbz|-MiVQCq`?xHK`+2SQaUzh2N%+ehY4YTQ)IlLdY;rB}@ zij4X&OIOf`V0Y2#$k7*>Wjq>Y>Dpm7q^X)2cq71vl8QHI4`Jo|!{0N$)2W3i&lU z0}_S&8jGYfo>QOgYhn0gI$J$P{# zfNW-!{mp*@P%Lhf-K>D~L_@~9OlQC?J|~-5C7W3#((hxd(gwg*rHx3x&xpCj=M4cg zlz~XUk5oEGyVH$ZR1L6prUf>xNt zJQ_%#rJ1A%VX<=Vpstp4i3bIzvcuaU-hov3?scy*`hQM)o|oT$&-)+G^B&%T5JCtc zgb+dqA%qa(e_}GCsJo?F>3cF``rBAbKHr*0MVS?!Kg73Cm_+i4NKbY_cT2U>amxju z*v}L&|K%&K%?!g;L%er_H)&A_l_r& zcR3na2?iLOoM$B%z~yK(Vwr#ek3j&l*-U4Tmv_@Mrn!ZfQczfwP`<6}89+P_b4Dx^ zFsK2p`jeb0tl{j%83yjTSP2Fg8q%KcYOeyIVR~lYXCZ_TLI@#*5JCtcgb+d;iXneG zI0{XT{Fnjp+Pxc3gsmydHiA$ zy$widPN!3GI-Sa4YNX^DpenU&a<{$aUoS(Xw4dhk6NFa;Jy8Gv002ovPDHLkV1n9t BZ@B;f diff --git a/Resources/Textures/Clothing/OuterClothing/bombsuit.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/bombsuit.rsi/inhand-right.png deleted file mode 100644 index 8fcac00cd1129982a7676ae8a4934f9e4addc1d5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 749 zcmVb7`b$X8OCZPu1ql@vc@FB`I3| zuRGB_+w}6s6=1e|sfd_S*4JXQrt5Vm>uXd*%$V)oG{jCFE&s-*5;x!2RCM#l6)@?D z;#?guczvPRED~1m`a(EYM+}pWz0GD4E&uk`7H_8(a8J+T^@Z5p+S1J*SAceZXb%vL zw$9}HAAaVWn_s54%SKIAG0iuxGB>{*w|%#)Uk3n=Avc}vtvq?|!hFGkW5}J>;HhS7 zwGs&WnVMN75cFefwd(G>=QRkBpPx_PfQt`v9>c;?R4pkjPg~e@=C`@IZ1DA9GdFl$riX-Hy fE2+#Q!~y#bqvs4&HTWCO00000NkvXXu0mjfG8t-P diff --git a/Resources/Textures/Clothing/OuterClothing/bombsuit.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/bombsuit.rsi/meta.json deleted file mode 100644 index 117a2241ce..0000000000 --- a/Resources/Textures/Clothing/OuterClothing/bombsuit.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/d71760fe0c0e9ea3a9aa8e9e794daf7e7f892d8c/icons/inventory/suit/mob.dmi", "states": [{"name": "equipped-OUTERCLOTHING", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} diff --git a/Resources/Textures/Clothing/OuterClothing/bombsuit_white.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/bombsuit_white.rsi/equipped-OUTERCLOTHING.png deleted file mode 100644 index c3123e42d7125756e160f800ad40df38669ac706..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2565 zcmY*bbzGC(7vBhlDUI-w1C*4M6zMS}Mz@TV?jb2LP(o5l8b=62L287Pfgmrb2na~Z z$br%=DDXc1{`-AC&vWD4bI-Zwp6~fSPoj~*eHsWm1Ox)n=xA%20KMAZm+A`8zVSfK zgFw`ubu`t@LW{Nv(TMC5u0DIKR-*=gNV!9u|Hm$#o9!#QN4i>XX=+<_37b5!cq7E-uMtGyFMf zUb+M_-2L3{PMBb>((p;x%i-S#k*b)TgYyV9@>z%>>xndpVm8L%p+&UAJ$moY5PI*c zPg1SHPqx(RrR1k*`{AcOM=It{`*ee|;_{~1XU5Nv;f;JHf0iC&q$hs1&C0sHnXrsP zo!i#wvkpqsp8QA+18HiC^1!nUk_5Ow?NZMNcJ)~P>f0N?rj9Ns{a*fzY%Px8B`ZKf zYPf?VI zP)O^mlP8Vdl3DQd(9F-)a@3iw3P*~ib{1<_<$O_fq+s45E{<^=Xpg=!HMLHAP!99^ z4D&Bqd~jl38)Od$CT~ZL(VLQh*TY_=q?4Vz9Br!IYFWj`Nfy8=y`tYmRk+655VmCo zaXiB}s`~oRGQ^00PN)-{h`S?9qsFYBpB+D+m$0`=JebP7o~`3CZkCg5T!PRo7o3oF zVbI#YN7-hjvajG@tBW9!j?{~u*s@$IQ&OdepUsthT)6xd{UK9M?}d;-2?6l2PB;xc zn=@r}6h&u^bPjDi1y#u^0{&Uio~Z^A;`F>Gr#r%G0T!%m%GC;}KSIN+H3GZfBy)a~ z2Cv&|KSiC{_wQP|l{!sYIGHCdC9LC%Cd{CBwY7#tGI0W`bKC=}j0Rm_0J}?m-kM6e zxB{lW=b588PmMHGVRVOCjA{MB8(!1vI|8LKA2aU&iSW)50a}ROpgSWw2rV5pk)Bvx z!4Uac!yxiL@7-!I=1c7qRxqfJ{SFEed{~i0ZQmK&-YHmjZ#Rl)Xp_SR~StDx52(rH_LzA52 z+q;OCdDR8F>}Ffvmy%=%4m}uw82)P|s4te2cUeF227n3<9Xsi!+1xT6Ah)7gpy(kJ zc#TK~5cnp>mli*H5FoXG3X=b&+VpU2F+*Qw;VJV4it?Yt54ObBLg`7O6Mzs$oEezD zT2~Xmkf}9o=k8mZngYu^J~~DqFjy--%5Sn&G$oN~*j6l6HI$l3JwPO)c>@B34-z68 zBPw|@2w2Ay7n$>F?Xu_Ojn@J$%bTpthe0jLrRc~Kd!_9S?=?Ws=%dR`(<`#v^ANbp zg28~sfXT#Z%!z@7UONBlNU3%G`Ac_m^03&Um}c)K?nc z-0Mq1uaQhy|CLl~Y-QdRgaczCp?SV!q8&t}lKSbIlTvS5!7| z7-9-5k~P53*nXCTu5mM8P9*?=W|i2oj+zW^cMGsJuR z-VvI|UyUXzafcXkn8wKMvxHyxr;mgk06^^c^+y4e>{KpwgH-Zu{ask3k#~*>?`<-~ ztUOTFfXM3QLWo0{#y>z+A#%ynhA05eI8>=mj|;&Ew>0F(wT8RQX7j6=_h3K@=xsPl zk5=+(1&2MsG|JcPH1K98UCI*P63?t{5PM;dA{r(S{~uT0R;%Ztl5?e`Y9a6HtpRlf z^GvoHs6V2oZ+2vUTG4G#{BRK z0f7C?=m=|%Dj!6CF{}0~ly%bzNk}=m*=eJ^`%(hnRO8o)vG-r}AHjktG;c5aLxNGV zqzxPvJmNX_I@eqD2WT1BFqQ24{*w*0!oL#V4SlgFOYSehV zm9{ZtNC&iOUraK}N3%!Nz@!r!kO_k=4wr*an()b@R~K{3#m`wx1K z&af8jJ#Z7?7(lgMs(o+{z^_Bsp*=1*v%PWMn+rrHf0eI_gO56&#ZqhC;zk1U$oQ1$+C`!JwghB4ti2 z9@u)Z0~-i?x%Ok*DdlBL4+rGX(Q>Q@Vc#DFhqfd`|k781Y(d%)b3q zFRr^c=>e!yoE6VH=?$Kr{sTF;$CgGI#mpW_%oGzxX219BZaD&$33VkZ)Df8Rn z$F+BbeUV1uNnL~x!Tk7$ads{{KjJG9K}tJ6sAp;#0;WQ0zh^9-#2^pbw0)EbY)Oke zV>3?jACPmwe*8w4ptUvQ9~5X@e?$(jG?2J$+OYF_&cKj&02BZTq$Mi4x*M7SW~hPE z4zvhcM~CEa(IuM1J`y{QwK`SvU0~h>z84;C<5b;WyA9>y6M&(1B`*}~0DWG)T+yz3bj)Lr` zU~~+p{-SR%*iqsn4BpdsoybkfHFWpzM13g&fjC5OM*vZzR3D6}6c6o@w<%bysWtF0 zKKj-Lb@9)(yv!UPTO(E6cn~0$z3{6s{%5)CW2JLW$?>5%2dahWQt_2R@Rf8R~tVgLXD diff --git a/Resources/Textures/Clothing/OuterClothing/bombsuit_white.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/bombsuit_white.rsi/icon.png deleted file mode 100644 index d4dbe270acfaedd6d8ad10b65c7946ba350ba897..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 923 zcmV;M17!S(P)0~@7);+->&d3?a({TegJR)Z~*Y$0Z7?^vgnvn_KGb!rW7d~*faK40Hka{=?#Se zNNio(m8i7t9vDV1geCwf8&CwRU0vrM&y)J_C#7`d9?z>W!D`n9VW{>k5FBsbB|<9=7d=Q;M5s64X$PqV-k(7CIG@czZ32Y8L9zPR6vXbl{H5mv&{)W zqpOL;n1tEp#MjnA+m)|5b;ga^=G>LsY;&^a$RkFARh1|UP)fe>Y@OP=dXh02fWwDB zQj?_OQ5CM_PsU_w>+0Efwyp`HEP&m+f_tr%JLA7__WT6|s~xk=iAk_BIxHE^);Y_(Dfm%-o~L?@{HQ%S_WfFid9V zKB;(=%*=hd2Zou;OasL-_4qyH7iRH=j#NwzP*d%JpTC-+@ai9OUKw9o2j2EBMn?uI zwd7}C_{lHK;%)CDzc5QOCNn>IoZQh3O#o%PK*|P`)u~1buQmwxg$%zwA5jj~6nVYv zU8E=C0IKwpw{HUQ-}W}Gbpr-55>)I*PlM|Yy^bHsc0i;um;~#d&%IRufXm`lSd6*=bSV%X>Sr!9O@phM7R$H_*5GPZ$Mqk-jqe{obo6@w{!Cxu xgz1>-5A|Jo?N9IWYcb7-aKG&R`YYZK`yY&mV2Z^BLLUGC002ovPDHLkV1kPivcLcU diff --git a/Resources/Textures/Clothing/OuterClothing/bombsuit_white.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/bombsuit_white.rsi/inhand-left.png deleted file mode 100644 index 8466711f046d5147ec2ee82c17ea22df4306d8cf..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 715 zcmV;+0yO=JP)w?jMhpvuI0RTCB&tPr! z9fl+006;e%rUX6t&MpToT)F}Pu-bd@^4ViV10G%Ze`?S+LS-pO*>sZ1QjSzb-nTz! z8#(YvYI#+WD;aI8CvU`|S{8G3^up`&!)ourTx=8oFc%wz)!qZI&ksjOude*=x39mQ z(~~!%rUTG7WlkuVY>j#f^1zmz?Muv*^limJ0ihZcVFtLzVY{s>n1G8ET9h*SOtoDoZ(<2n|qK%8}dcuIdJeh_dMI3ZB^yZxy}LrmNP4YD_bDko~*}Z){oY@0HC#UwRtVG z_cvpVF~%5Uj4{R-V~jDznp3FXMcSOfWax5p%^OVL@R6#>q$)BcVqwa^U!+jK%g`Xy zWooS6ws*Dx086O^R^DcCKeYtQv35hXYPvq)Z&TGRd|o|{CwK3_vRgD%qag=CTQ^XY z^Jp=(;zQ;Y+FFhps@0HxfiK0MD@cwUHX)v$6}~T=qWQ&-h89pYWCvWIP73015azaa xyqUk(Twj2_L{TJB6q|Pd9^DF7)*&!v%n#w{Q2=KH?Rx+K002ovPDHLkV1lLGL!$ry diff --git a/Resources/Textures/Clothing/OuterClothing/bombsuit_white.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/bombsuit_white.rsi/inhand-right.png deleted file mode 100644 index 4e4d762b983a2abf00463815639d33342ddcc83b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 700 zcmV;t0z>_YP)pE1;G#&J#gSa7>ow7Ee5p* zD-K!_^xz(hdbD8=E)eFUb>hk3^oemaM$m(A58~Wxxuu+<_p%9dFF%aW0RXu@7m)t?1@~jq z06`Pym%h=?Rnpqc0(NuoeR z^#7MZ0I*mr2!_H~-$OL;ooV{cq-16=m@0|3@HQYNpICrr)O_5=FT0RVj|8D7~y zk|>m$_rGS0F~%5Uj4{R-V~jDzSnZ+#FKMbmFQ*>0{XKW{(H}X;e#!;_2tIfW;LpPc zMu*Ce(K^PRtLJF^OpE}a zBPSpl@RGijM1fYHJ?*Rs0QRl~-b)wTdhm6f1OXuX%Zk;7B&;V+8rjoybx%OIxdeCr i6?B_RM)ok)WWNDSc21M9#+e}i0000P9yJ diff --git a/Resources/Textures/Clothing/OuterClothing/bombsuit_white.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/bombsuit_white.rsi/meta.json deleted file mode 100644 index 117a2241ce..0000000000 --- a/Resources/Textures/Clothing/OuterClothing/bombsuit_white.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/d71760fe0c0e9ea3a9aa8e9e794daf7e7f892d8c/icons/inventory/suit/mob.dmi", "states": [{"name": "equipped-OUTERCLOTHING", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} diff --git a/Resources/Textures/Clothing/OuterClothing/bombsuitsec.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/bombsuitsec.rsi/meta.json deleted file mode 100644 index 117a2241ce..0000000000 --- a/Resources/Textures/Clothing/OuterClothing/bombsuitsec.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/d71760fe0c0e9ea3a9aa8e9e794daf7e7f892d8c/icons/inventory/suit/mob.dmi", "states": [{"name": "equipped-OUTERCLOTHING", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} diff --git a/Resources/Textures/Clothing/OuterClothing/bulletproof.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/bulletproof.rsi/meta.json deleted file mode 100644 index 117a2241ce..0000000000 --- a/Resources/Textures/Clothing/OuterClothing/bulletproof.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/d71760fe0c0e9ea3a9aa8e9e794daf7e7f892d8c/icons/inventory/suit/mob.dmi", "states": [{"name": "equipped-OUTERCLOTHING", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} diff --git a/Resources/Textures/Clothing/OuterClothing/caparmor.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/caparmor.rsi/equipped-OUTERCLOTHING.png deleted file mode 100644 index 11fd643d426e20867a76ed091858846be22115a4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2121 zcmV-P2)6f$P)QFSTG>o0^*GY z14Mt&ptw|#_PIub;!<0jRa3ZHoK>n>{sf~Zwm7TQtgHgw-}Mz7aH)r^9hOK@@1OmO z&F|KzUT-JW{%e+KeVIWdf1bk+uZNGl-cDM6+e??En&P(@T?#v!3Ur6}CdyR5o=v2H zcgF4dx&D2fb8djff4JrVx4Zjz;-f$5-wkehiHzJ#>QA2)<~L+O+NEN3Ygr{3xtV%f z$1hKj=djQvskn~S>g~6?`?%t6W#D_C%$W&kmx@)Z!v;WQu8WM^Om27g>ECO|t=$~} zDAKTD{#gx}P7ZK%`#68_f zMH<$RweyYe8_of8Z-6UOE6Mo|Dvn5OElbqDt7vkQobO;#QjmKC*t1iNc54WelEQ>M zMuI&_A6#SvDAKUrJ|T}WDJh2gjyely|GwNC0ANBMW5^?M{X`iVxtaRw`iU}zJd%E% z+#A5^u#tADIHs9lCVs2KHih5nu<3&r<&SE>ggl1a8=xc@(i2NK0^Hp0?$citN5T;R z;RI9?3?cUhbU|h@6Tc!2PvO@hzzly>14@D+_9n_CR==UQMT-CpiPdkgH&Lb}7&15V zS@>s)05kkib3j+ok5Qg^j*sjvJ(*|`@TeRx*nS6qi)#;AHl@4N{?9%(JXjI_nR0*` z{-_3gQCa&?79H|PBIavosJEUFn)tfLZ>?DLFX?e#5hX1}zbJy<;>s zx!G{g&X7lr`Fa=SZ}hyw*0M^jxLfshGZ4BLNU$g2K2wF&VdK?{lO*Rmc=h5WR)-Du znJN86z$bh;n7AlUoX|8>mw_aS#kVoRJ7Z=l9`!p3t z+|+HE^A+$z{0a6X^G|XW89TaI8xi>(9J;@Zm;d=piuqx9QJjZt~rS8Hg_UsfE zJFJFRUuH3#Kf#{Fggh1#zwqtwQ(wQpqRHn0(C!EqO+L?4U%w#QRm_+RvxSmi>9-G% zUcQ6Stp`)kidFl0@|ovIU!6&5tZHU~w#56T|E_R4VoaD9VVb{tQPzQGKbJ>P%(*vo1mbnU!fy0IIibBya5+mZ#YH^v35D)t9RO zI@~_zGeJ>(sajZEz{)fyz5)Lfe(l&d;1}jMWI$1Usk*MD5P-j3_yB;Ou3O-Owre-= z4fp}j&Y5cyit0<%v?o{UgM=`z#-Ee7dWtC`{Durrl#wvu4Cv{)HRXM-p(rEtblsY< z|5*5i7DE4vSlAeew}5zK!GL%Rh&L7th_`@vW5IxU3y3#_ABsYFt2**{KDNUjmkwbA z8WfkhIcoy|Wv^VLBp4#=-5NEg{q$osp{KM)J-w@k8!MLMK2sIe_T|*N1tSnPpzgvb zS*tqPb5i1P%>e*@vg;Hzzv@)IUk)KEKokv%OU+u9%;{Y{xQ^B00?J-F%kO{Ypzgvb zhxUo}Cv-31Y${NJW={B0HJMh4W^PHga>cWPPxA` zQwj7D@ZE)Pn(fgT0>1ELuQ$6Bx#Dico}I#A`yJf`QJ9(rr#pRg`#2f7nWU^tH6=m> zDJxUS$juB#T@+15Art{6!4RKF4{tw(%VQpY1Vlo6R4%$DFB}28M-`8nzHWjF8Qn>uA zZi|J@8#hpK#Le-YOGUX&~EC0exi)OU;U?E4mTl>3I7SE9*aAh3RHV`iazz2 zA&wQ!rUEsxVnpr@n9^W+B?#e)t$5T00Qxli??rzxy$FIBlc4I`9Ih8gkF6Ta3_|HH z(#vNNy!yM8yX)8P*~eyDzW<8#)P z6ms()9eTZhS(rB9QG4>SiZKG;fPdC{1rhugG{-7pd!^x_00000NkvXXu0mjft zFU5#2t1u9R76(o!SZyi6mimWL0<}p>t%~+SmfW;gi%qW&Sq_R_doNXF&@UX$<#!I} zeD3dj&+phWzdqw*s_3Kcz5%cSumSMD1c>O0VI}_F00vz3M%>?OT)*`Eoy{V;VqCxU zoVdT$7;x2F015?p>IiMey%P1xQmKv}=nI2s7C zqq;)G#?N)LSGF;!8Yn-tiTI48SQxIzcl=XWJhwKC(RILE;2fR;#cLmi^TEfZ{4IU2Bwv0!hM61PlF)zK0uq^eT0 z%dT$1!ryC&6aY)wBH5VAa94mG)fJ)*cLm7CR54FWq;SYi%KE))8gf;DC2bKck;0eG z2xH|l5arR-jA+63d+BG2~J*A`TdkcWu=E;dz8*2rYo?J>9+v# zb>Yo|^UJrN(s}hIQdKFR$PThG)pQ9i$ntYsv)n{c?ic_qj&U16QSKNu%S~370xTYZ z|MTxD|LPku(=#Hrb>~Sw+kc4iT^0C0G{D%EZVmvmbMxqf5eT)R4@Q^;wmjL)*p+Vh zx#hzFI5s=;oBaD-==H$}V{gQ)$dU*2`31s_4b*x)=<^FAR_pZ;Zfp=SD>9vdx*or= z&9#jK2Ng0YjqPPF0K$z8?A^DAEu|9oM*pU+$8S9N;g0E>U<#nF$8UV$s|DcCtA7Cy zpPU8-MsAJr?CBf;g*jFrOabWn3r22@{^xjna{8^_ie3XVU06#ZouPaH0000(F0_aCKUnC{|6mXv zJ1E`ULkblHK^F;j#a*b0gjtjX0JVd3nSmsUZ895_Peo(kfG;E+)u6LyHh(AKN)ufD(1Fos$I^jW@#b z28^d?*z(dM)U6d{PlHgmRgS%|K q1KxdngT(V^rgGT!eY;h213v-53D;4*Blutd0000o=+k2u9T|o<9&|(#+I5WtMa1&f8a(<-EN`trP(-xrnrZ%u z2DoE>GPVyfzqnLUG{3k6WBU;9n7^T$;Ews}D3e9eC{!FT8U-9>vZnbf8W7&u$I#%U z>B)x%ClTJ+w==KptmJo@6^oimt^*hbpc12EDB!_Olup_Me>^tK|v8w%H=V$ zx`0wH4?z*@o7iR-$#2?#6EAKa*dFdO{oc>TAmsv^RmSPztZ!WL;gM6r#Ne+r!mU z(I_CFJI3*+@2-6A_|#CW$=Bf{k0KKQcodm@9lnO1{?*DemtTt+(-j~|%}7q^0D$C_ z4oPaROVD}=h5Hfc=>`AQ^E1X6V~jDz7-Nhv z#v0UIx{qq@y*t6VJ43as{CR@dt?TsuU8mz4aUr6nQoF8^sHwERGEUE4PdK&#mRCS2 zmxpq@&CV=W!cqh7{rrWlP|EHsS3;1ptq{5)HN7u{TwtJ9+8I8xK1E zNnm-eOw?2o6cI(E;HbAps{PYrP;PsUyH7vZ6vbgYicB6wruz?~j=lvfuK-DQBRQpG v_uCIU^ISU1_ip*Vd!VNqpFd_CIS2j%$td6B{|cL`00000NkvXXu0mjf7_~`f diff --git a/Resources/Textures/Clothing/OuterClothing/caparmor.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/caparmor.rsi/meta.json deleted file mode 100644 index 117a2241ce..0000000000 --- a/Resources/Textures/Clothing/OuterClothing/caparmor.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/d71760fe0c0e9ea3a9aa8e9e794daf7e7f892d8c/icons/inventory/suit/mob.dmi", "states": [{"name": "equipped-OUTERCLOTHING", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} diff --git a/Resources/Textures/Clothing/OuterClothing/cardborg.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/cardborg.rsi/meta.json deleted file mode 100644 index 117a2241ce..0000000000 --- a/Resources/Textures/Clothing/OuterClothing/cardborg.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/d71760fe0c0e9ea3a9aa8e9e794daf7e7f892d8c/icons/inventory/suit/mob.dmi", "states": [{"name": "equipped-OUTERCLOTHING", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} diff --git a/Resources/Textures/Clothing/OuterClothing/cargo_jacket.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/cargo_jacket.rsi/equipped-OUTERCLOTHING.png deleted file mode 100644 index 58cff08e86c6d5296624d394e6c8f1f607097847..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1002 zcmVT%v-v#oONc7xb_2R6O-$3$mxO2a8aT{WpaA4|tKK2TM;D zqEatg5Q1uRY1#Qe(99%xZ@+o-D{mU?^KUFNFLXPg8zX>j2Xtcu z(CvV3i~zbF(9OaN@KW`LmA$oeG`MU`TRv-6_SRCzaVE++=O|-eDFTj8+bIBS?r)`X zIh|8|UC{F_%YyIw;;<}htX_qw1volwr@d9+Z08=FbMd1$_qS5cInH+O(Oa!g1lhjp zx`^Xg9Ioq@wm+2sWc=b57+wR8XjSUR1v-&zj$lC`1+qT64ptSvG1)w*5 zaSPns0SD(@c%CQfsXZQ?cX4xh50Nh01lVcRysFhqaYK@>$w_MeP^&Hb&^^E@!d0AxRwIv&Dt z98pGMFvj3{Ugapr+mE71ba;6z%R&@I%J!da0*o<4Q6z>K>Uapw`B>R#aM_5WNH|@U zynXUPMm|@y|7;T=Rf#Yh4=u-WCd%l(qVZalynU7Xrm_E|06*V^}w7tJp6!6)qYD<_(2?zB#B;N&q?JQ6jhX$!}6F+OW@JqvazzaR_jVowlDv!O2Z^Z z791mhZU=N@1kmk(Zj1oB9ng&tK(_<^rt!8$%LWNz z_oNNraihZaaa(IXAdX{fAGgKk2-(MJQSJjieCvul;NMc!^Te_&?4GpY`~JhrP}`SK zdKmnd5+YT6QI3FF<^5+(9LJ@6Q;vWnNe~2qvZ1;Of}qrJtP}x76OHa+FU{}SnHP*P z{CGDU^G7v9weVA6BY^4+-NRlg|4+L%=MC);&HJPJoKkB6GDK5R9U}u{46f@=h@eWT zCP0SC5n#Uag8V)K*&kJu)8j?Gtm8OZmcvD&t1gGl{s7$$=*9@3+X3Ae0dzZ{n}rwP Y4;!im#P(m$#{d8T07*qoM6N<$f}0rDSO5S3 diff --git a/Resources/Textures/Clothing/OuterClothing/cargo_jacket.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/cargo_jacket.rsi/icon.png deleted file mode 100644 index 1916256374e091a4a2615c11a3171545f82896c8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 434 zcmV;j0ZsmiP)v-lKZWl9Bqz{W5m$h|VQo5IYnqe*sM zVwS+(ZqB{K{r1eyG7-JLqsq9ew0jLu1JnTj65!$GF}+6rRe;gBnF2s3=>^T)*yV2m zFd8@0ehZimj$mfrw3GBwX2x`IM89=CL?Hmze7OfE8$bvFW(EK-GurJoCYw|KT8LZ# z_od4{usZ<5Sr<}DpBF*^IO)5?sV+M&FYb#J4QE{}7K_hjI>x~! zvX*C0!JhzFYcCwoS_d2RrT{>N4lpx_2+Zs^+BRNAS^cH}0D?Qg{es=uFB4JyFsT7* cfT{sL0Gt=nTCUNRwg3PC07*qoM6N<$f_enH*8l(j diff --git a/Resources/Textures/Clothing/OuterClothing/cargo_jacket.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/cargo_jacket.rsi/inhand-left.png deleted file mode 100644 index 080a5397bbdf173de5f3ff16a769c17eb8abe9de..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 448 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEU~KnvaSW-L^Y)fu)?ot?wg>l@ zCIqb5Y~mC>?aawJ)+O(*Fn?jN^m#sSq4*0Cqh-;{9MpvUg`PO7m3qWZa*&SRcx%^B zdjq4k_-#+y#cdlpU_j6F({26_qRBn_=Re!@f149-s21znF!xHJ6X!%BkyDGcqNUYi2Fe=we!Yk>m19 z6UqMLb$0U?Uw@sr`)*zIx#K^BuGVxM(_Wy##c-f#r;Wtv*P)+hpM93FX4d-E7gE$-oJnLt@n)ST n^MtiW3oLrBIl8(0zi+K=xA;}HhN&_zW*9tO{an^LB{Ts5os`9C diff --git a/Resources/Textures/Clothing/OuterClothing/cargo_jacket.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/cargo_jacket.rsi/inhand-right.png deleted file mode 100644 index 87be8f21133186b2eb91caaa0ca74e4220fe0832..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 447 zcmV;w0YLtVP)2#L6vpwtmIZ+f>O8132G@4&CKpJ*Coy}0bUDNpIZ7InQq6)Z<5a?`Jm3LWvxS)u zZDb_~C6>td12JMy@y*ji%@c@-h=_=Yh=_>DcM@GYz-P&_%!m7;C@!A!N8RRTg-?>i z10+e}H!FPIbA7d0;f*nbt117R0zCY}KRv^2HUrM<)AM=%6Ek-v!b7czI%5xcFCXHg8Q4I%Pd#XssQ2b z|9;GvPN&@_`eLm+;O_78W&So~tqYLnd6zk^rd0u~wK(UZ-EKG7k6+Nb0{|wIi4T8Z p3{~y_0Ut4+&pn*y?;;{Y^$)CGp2)TpBBuZV002ovPDHLkV1kZh)U^Nr diff --git a/Resources/Textures/Clothing/OuterClothing/cargo_jacket.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/cargo_jacket.rsi/meta.json deleted file mode 100644 index 117a2241ce..0000000000 --- a/Resources/Textures/Clothing/OuterClothing/cargo_jacket.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/d71760fe0c0e9ea3a9aa8e9e794daf7e7f892d8c/icons/inventory/suit/mob.dmi", "states": [{"name": "equipped-OUTERCLOTHING", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} diff --git a/Resources/Textures/Clothing/OuterClothing/chaplain_hoodie.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/chaplain_hoodie.rsi/meta.json deleted file mode 100644 index 117a2241ce..0000000000 --- a/Resources/Textures/Clothing/OuterClothing/chaplain_hoodie.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/d71760fe0c0e9ea3a9aa8e9e794daf7e7f892d8c/icons/inventory/suit/mob.dmi", "states": [{"name": "equipped-OUTERCLOTHING", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} diff --git a/Resources/Textures/Clothing/OuterClothing/chef.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/chef.rsi/meta.json deleted file mode 100644 index 117a2241ce..0000000000 --- a/Resources/Textures/Clothing/OuterClothing/chef.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/d71760fe0c0e9ea3a9aa8e9e794daf7e7f892d8c/icons/inventory/suit/mob.dmi", "states": [{"name": "equipped-OUTERCLOTHING", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} diff --git a/Resources/Textures/Clothing/OuterClothing/chickensuit.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/chickensuit.rsi/meta.json deleted file mode 100644 index 117a2241ce..0000000000 --- a/Resources/Textures/Clothing/OuterClothing/chickensuit.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/d71760fe0c0e9ea3a9aa8e9e794daf7e7f892d8c/icons/inventory/suit/mob.dmi", "states": [{"name": "equipped-OUTERCLOTHING", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} diff --git a/Resources/Textures/Clothing/OuterClothing/church_coat.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/church_coat.rsi/equipped-OUTERCLOTHING.png deleted file mode 100644 index 184b82d158817a6ee32c103040ea8e03a672b0fe..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1193 zcmV;a1XlZrP)%mOSC2*VvY1y+3dM%>0@EOW!~LhnI{c z)dr|WA%JQFRHG0;wE?P82%y>k)p+p&yyE_$*)pexAG)Qq*Rw{mWln1=W$1MyyfzwI zuw5TA{45V>w#?}~_vb}Y;{iag8>p?6rT9||&}^C04RaM6<|_7&wjxCPM_b{&yhIQi z|6AivR41Ltr>qF2GZF5HtATZ+4`+D?Krj@z{7-rS zkyC^9x)G{P*XbIO%ev!Z{2S(K_WB2O_`70R$p^Y5($QbvwuZ<1@mAt_ec;38h>_q(I(di0)fnfH5Pwr0g@E{`ssX^LpBeR z_5exGaFI%Yq~52-fBkg6o3|H;{Bcw??ZGvU7qGX(&jBahff(!WihBj_WSGhW;;t2U z{Y4IiS&*5KQ+dG0?c)-Km9xfK&$$MG%wvJW58cu%w;p>Q#?F1Ob7BEjAoPF4i$4=A z1W;{&Y7_#fHb6BB0aP2H8ifF=4N#3j0M!PlMj?P|15`umKt#+Af80LKy(S<}TciY_ zOiV@7LIV~p1o4Wt$bfwwuz$1_IiEY}4kCvnc?%)-xb6B7bBCj$#pY+t0rAF2>2l@y1hN4FTKrfxCJf0C%UrTG$IZvds&|As&tE2)qx% zXHo|HDX;_}1N6J!3h1-)*dI_cnBj)|frzmMvqAJznnJr6aMBf|h$XNNg(mUnPl z&d&pG%MCco*%n{0<^a*XMneld=PEM$Rwo@S`Tgvyiy`oUPWZc`Y3MmukzvOj0_;FY zti=&Yschx8+~B@4H3ARV3F`t0N%cc%!K@JRaJYS6ef56tzBbTyeb{%CQC>*mh~xl% z<)y`d4CVmYwDfb~np*(T{qn9A5SQPqD$&?;fEZ}RgASPr4KCswv+PNOxi&-biI7{L z!v$r8n=Nxnv4~9cCqjBVoD>o-3P~ZbETjZTB9z^Y$smbKRs?31Sd^H0q32xX?*1Yu zUH%piV-jvhu(!iW>+B*MpS3MTeSm5MRHG0;wE?Q};sy8tZH{fzc}r1S17O#K zR2NJZK6;iNuA>p?SvDpMU*>ZFfK1Yc@xWQ>>pNwP<{r)@&cwm$0)l8&gIspC=E=f` zb@$AwenMgdq9F2Bt+xrJ1n8O?R`__}tepir7ZB};@xVdHcH4j6^BY}LfvE@4ss=J? zV0XcPw;VRzI`{lm0t{0G(a?8nw@u{3rdxmc{%X?<$YnDStt$IHIFA2;c=+R?-zF8T zBD}wTQfREMtN7Q?IRHq_0;xf?4;)7gqyqMdUup!WdcEXQk^lez07*qoM6N<$g5n;> AM*si- diff --git a/Resources/Textures/Clothing/OuterClothing/church_coat.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/church_coat.rsi/inhand-left.png deleted file mode 100644 index bf3ff041edc93232228400baa8b5eba72686c497..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 553 zcmV+^0@nSBP)-3e zr})27_zDO-fob%(a&Ho@j1Qy8xz$~73lh>?2KX8`1Sj@%FX=) rfc%H2N?8B^a3^<_Jnudc0RWx=0A|1c!R}>u00000NkvXXu0mjf(+mRU diff --git a/Resources/Textures/Clothing/OuterClothing/church_coat.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/church_coat.rsi/inhand-right.png deleted file mode 100644 index 9e6ce000d3e7e91d2808d46814a998ad5de65027..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 545 zcmV++0^a?JP)As=6bJBsOBb^ibTC7u2OIymOp!7euHjCq=|rn5(l>sJe#U*tGzlrYLL2t|UNyC%v(2 zEuv+2=)YTyY6V99Vz0k{N!GEXpZL%JE`o9}04$9ewu-B}4 zxr~NYeH(+5!_Z%25$?U(_W;1|O?@RIMC39W06?#9004fv^`n#zQUs6#M_mgd38HbT ze8n`B9FVbX7$z*M%k7I_pFmMiF%3|886Pgq0ipxBjE2F z7nKCEO(6Tg&V{m~eH9;;_5ywfL>%|t@goT2z_RzNfWkknas;VffWmLc7>fCIjO-3p z^=$qo8GZQ~=b4u4n3qACfJe3F3UznlFcg?FPX|Rp+>o)a=Znhr zm6pV)Uk&PF=-HDyKg6B@Rq&+oi;{gM0>ovfMbDCi%m+|~bQ7qz8eXBigF<<_7(oe; z|2=0qU)WCsv#?zt{te?2fX1DFW)PhPSnQn`c*lvZL$GY6)Arw__)v-fDQ_ z&~}l1Dx+dwstJtG7+?7roE&1nCj1#c7nZ8x?hPEb4+s+?@v9R~-aZZWZt0QW{}mtn z&d@ahX*-ZMt_eunfwXZ=K-vzZjSrrHPyz|s4hL{ytNbbvhabuju-B}471Q9u-CRZs zRBR*-f8{Ht5y}sxp)ggR5TqAKIvPYJieHmJKB@Q+stM3`)KS;sJH@0IXgs^`J@`7A zMUlp{``+i@d<$T@>`v2TaT8S)$^8z75Ciht?w~ zMZmxKXztp-5J^h1Brs$Qo%U<2X&Tok0YIl6ZZVXgyeLYNS>WPk$dIuM`*m^S-m86& zq&Xy)p}Z7ErmNfpa@pyZCuJs)kroWY#3vvBJ@qGhd3isS33&M3Jj0vS65ka{`s)KT z4RTP<@%tu&Sk?p5)C5FDq<@&OT?a^DD_jGQW6xuKvKGZAkNklLMfY7ZW;p1@sK2S zk<%%~M;Fa8K+g}b9FLo*GpEQj1O>ZB61Lf@x&XZ2ey3%HR2LjwG{>%6B?x>>Ly&}R zEXSi6MRTk}Vx%dmk#WVzV zWm65)5GwexVxz$F6LuHF>+mTe@zQ@8=WK2Z2x2oo3heBM21i+LTCV8sQ`5 zUl|wj=5pOM1W~uIzD>hQ7nCYRN|hqfAf{l~utZ*21yIW6nkDiS>>AM^R^O&UD+ulN z4SxMRo6bfPrRVX|y~)or?DY+uV}TS4G>iK=ndg?s&&e#2S3{C~`RcWrUv{r(7WY#N zQK|)w-yG&(Qt##A$#ArEZ>drw3Hdk82qr$?s=8PrPcj^-F>4*m@o0Sem|6iPwA=AA zNFo5yAcn7B04VS5YM=3_2g&Taz!Le)tvC~b(}R}DdN<$~M0p?diwVSBC+ssCXc@Rkx>g+Jn-7U@pPWt0E_002ov JPDHLkV1lcsS3Up$ diff --git a/Resources/Textures/Clothing/OuterClothing/custodian.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/custodian.rsi/inhand-left.png deleted file mode 100644 index 16f1e2802a201b820c7a53299c30e6d2b8b5744f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 755 zcmV1DKvhQ3nI@CjF99gb+dqA%qY@2qDCM z5}UYgSz_u;g-4^Md8^m9_F1Br<>qh8h4YdV0 zjV88j0kCZ7Z0wX+Hgo`N+rnuy?~MQQ@eqKtQf!$fncN~f8vkzD*tW%`>r$_tlFH=6EG{sEQNS#kp3`ju zps55M_lCzS&$x2xlq=<-zqf7_Js_xcfJ@f};K-_kUf$40fpVoBds;Apo7Yr=rQE{E zwRdDyV)?=o;LnYxl_I;c8Fo>D86;rPSL-MS@a=Os7|zDw*LcUhnJ9h~GZ_Vb{(3|* z-tX}IA@TLg=OZ^?r_l_CzGPgHd8o#UAID5vKoo?YfbBxbgZ{g~;MPAr%(_wZ+T9k{ zz5erm-E(PoTS4b2gb+dqA%qY@2qAyFQS;Ay8z(r`*#!FOC;w7 z%%bUO*)^`5I>1!Z=8;SQz?D-E<_=)=d56D6G65SqB{I21pkMnZweyMB5JfTp{@MY6 z4+jTRO`Jx$6WlUQPHNMwB8y}T7&Je3G1U^fNGD+MQJ7R@6Y!~e80)V?P{Y4`hsY*i l+BZO7WE0Ttwr*`F^&2|t5xD2*wmtv=002ovPDHLkV1hyXXF~u0 diff --git a/Resources/Textures/Clothing/OuterClothing/custodian.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/custodian.rsi/inhand-right.png deleted file mode 100644 index 73ce669455fd949e392f427769f27c63f59a16be..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 785 zcmV+s1Md8ZP)yZ1DL&DSgwF=Y8JfeM6rYgb+dqA%qY@2qAO!_?Qs-;ShUs`9mu)sm{i0Eq`Cz;a=M_?F-;5Cb?EfkVwv39s<2|20JyG$*KA!tHjKU(DwoOi{q2qBw3AnaV z;d9*~ujZm;c+D1hHOJ?=!?lgd1#~01tWl&<--||k-*ItWhZEnYQQsqL6i3b(nHlY} z9eBMC0C_b>*FR%*?Ka=N2DP2q%&!DDt#SZFqYiN5`v7b^J0tOrtOB*2TINQ{iaMWH zb1WAY#%6C8Z96-eV(B{Yv*S6XSX$c{`~8sw#C>wMGXP)S)uQDjO~MiH`ezg4AG-=1 zf4hRN4JN#BNqqL?;mlwDA+OnrmOfom81rgk{J*^d{s$uosFo@L44wtz?_v9_yJ?k! zPOr^re{lbw_I*0Nb~HH(A%qY@2qAavg0vc28Tym3WPalN=w9Po1G;F560q;M9Dln)PAP6}4NB%lVKI2|>SgL~ zgG32{aPQ4JZ)-Ke`5=uFkJ#NikAm*uE-<(i#?{`_An_!4`1J$2rpPa?r?&Gj#Vr7X z!l^;JC&8)8Gay?70W*{_5Og%^H*P)lA_-g8c!>m7ka2KqQYU`4L-O{Ac`vpTC(p*z z(wgr-e(&7t^XuJv?s@MV&Cq-I`5_}G+X`eGvku6%0@=o_1G23^wlV8~Y%7p$%sL?3 z3S=8vwG&r;@SFr-u~-1OwDp2U9&5PRBmubHZUDad#h04N9G(nyA8nFi?@cC?a{ch( z!??MQpS7u$uThf|JHKpD%F6J+BH3kw0zYNLzx(W6Jo9GNE52L}gLJ7L-wu>451 zv|>>ohxT4ar_(7$>U27+R_i3=<*`G1ud`xNAIpzaOUZbvLG8))(h^HIhxfIk)oSAm zmG5I|GX3zrc9vMWsXe)VM)^q{u;tT6$!IjP|BW%K%b~r!o!;JFWn8Dz;dZ;@jPLF3 zrMT=ls#u!GUku9G#rsaf}KG`AZ^?F5qPfrgXk7wHdcsw3@dU_Q3dcB^PKG`v? z{G<->csy7v7S3PWL+v&j00p@YcE0eTGDi-G06Sm!kb+zX0JYm}oWHgQi^Vdd(#bG1 zG=#}y;$&+R>t3xS91c??e9fCpty9i_v#FIL;cLR-Fza5e&T3Hq&WIDTOVUeN=@JA5iWu}JEGB}#I;ZT;je9WD{wuiHS9>rqm zT(18p<2s!Vhr^-pNe5=Lnc?AKoK7cNt(I^&tc)GMuw#0ov|8nqGMmlQ z&P}=nE^q%>qZRM7?b$rmm4VqXs*H_{j1Y-LaJ$_^A`wPLMkW+DjIyo_wmqANR=m&U z?H{Lg5`6wjtHv}wz?MpZ)umC{fj}TG`p4qYqeseWTU|QJmP!HB_yC{3(mJjD855xa z|96z+=dq?7{@N1(z~yoQ(HJ0K%UDzXBTDk~81R2L6KmBd$`FMq|>TCLgzfK!9K{s9L`2x50v3 z2h9!V;%JFWvAN-#k_%)SWhJ*cystg!xY=yx@V<7+N^YmbSM|HVp}p4?ntTRt+`XDF z&in(2p2aeLbD}OO>Qc^$-JRT1okB8=i zOR1`=nlcyAYPEEAbphRz8B7CJK@g(R_?|c~j%G5MCdGkggb`KIH&y)VFB>JN%TJ;X ziL!0he2zT-g=+b#zX$;|{kRA*6e1u-aJu|l{OOmPtt~Z@&6`scI66mWW|SuC zsun6a!Ob2I7kAy%Y;CELYL-P$20>qxass9*2GpOZko?189G!Owh>6yZ3UpdL2pR3%H=*U(4tV z&y!&L<=3P&r#7UePs$G1aCWmK2m(HzFHZ1=vzxy+hsd(z2jTPi5CkDD9a4H1kOiz< zxl*BZbaXI2K2A|l5p(9u;p5F`GyX9o7L8YTN@HVVc)eb7a&ji=0`Rw;S5@nvdIfAa zyIERP+{Lkjw}5DMsH3BUii!&Cb~|3Lm&J=0(|C2~Q(Fm*S9eN_7ca)^^%+ zqoYHqP8~aVi$%pAJtC_5@OaBuV^k-zgwk2WYvnn_;OR z@TO%vq~HL#4tVe0J%#4=Mk}^0S9a5KMW)_NOA)nr>z&=ob$@?9UauEX6cxP$K|mBm z)%;X%0ZEb+#`R0JG_EedG(LdW>!rWHKW?sE(99$fdCJC{#s_FzT|oWP=(7|>5lK=n zUbO=Z1_Sz0FP7YimY2G!g)CUGfV{kkdb~!Xp{{D7Y6aAyu4*9~&BW=JmzT$a1qK$|;F!L<)sMI6A!?s7{yj)Npj(B@~*kob?m*0c_U% zwE3!bKrk2tZ6OQ~Dxb!4ik7qTaRa4{wzf7d?#X;*=;E%MniWTDrL}9<#?f6a7fx5S zYt%m+M${HUFsPcZY6pyrj4*HBJVg*dVNp~8tJTW;2cqY2d0VM!;psq@^VU1Nl>{j9 zGk9#z(o9Hc3zRSHW&ayvF_ddS@`~-##QO)%#FfNl9Q&i6Z@Mj$2a-V5yTFR0wNi0$ zaa6$LR5%eWS0;|9wzf9@{mXx5bQ`QVS}SeZv`M*_GrvUa|7|q*Jb3Uxl@2Kf!Q=^t zOKGTn+HkpC)9B$#LZ2F{-v(D4tyK=!Wy_XL8t>`pQLZ!n^q-~cBxW*2c(1k-w9Y{fo8OuUP;>2mpTl z`kC+T6%L2bODVo|@3N&R3OzkNL?RLVem|vB$?1>9Vi<`B}QNYB~j3vu5w{Gl_h(j)yqg*b#h=dR>@^ZOME|((_ zhg&!HkY$;PrI{l|bQDml)ld|Lhfi;Eak?GqaDSfbR~DTyc0vMNzp_ZUKM%mg=@<{6 z-b7IpYPH%?{GCsMuInxWUDw%ae!@aVWo~kjM7&M(_`596i?EQHWvf|1*GtHr08bSzkU1w-$$e9-kg?MuH zQO6U}aSNVYedOzHRGB_M$oLsJHPCYU>h(INX(EKcG)?ODy3==RpvCwZm_9#9Z=-r7 zId~{U8`=&hLxYUP;iunC04kLV(9Qw-+s0V@15Snp+0b^nE$vN!9FW-1b|@69a3btf zyG|$+tBl3l^Sq#IB}}GAEr7pHgk4Dq&}cLW1OhIf5Q2fdEda8q7hS7i*9c@&FMJ29 z;lXpiy1Gg<8g*>bG+&GGejj+g4a5C;<|ZGweB0aGE_-hBfl~{-qU#pee?OnfI=)1_ z-G2JzNBsExF919*zL|3;o%DPmd5*wBX4XXx?g-d^dz@EzdJhO8UT6O-WN`8z7+mG{ zH(vp7_P%SD1t;0VSik8$Z#A5H8 zdCzm-bMCq4eXDx;V;|mU%u(6^rI8UpX#RX@`pJZi5WajS*ai~nZjm+S$ATw^jo?e*h$YY9(2YOfy}lOdtqOhe31 zzR5>i&&sco@-C1}9_#MGnNL5U*PZuXCtL$&))SKX3w;kJw0Xi6$>N_% zxO$@*Pq-pk{3$)a7Z`*uFo?h#fgHeu!E*)K2_B#^b4*-6yml1=Z_IG1%u^a5mp|X6PxzM0pHcvi?X0SANgiU| zJ@j#sJl6?G{dMCpRjj)QeM|D-v7MdPJ|Go;>-{zibabNie%rM8CG7+W9F664n<-uh zJs~YElT|n!a5R?lHeD2+kQU4HbMb^LLZR;g+PeBd>RI`jUWUk^Jt1wvpvBkH2{K5V zE(%WlImH(^g2wQ%Y=xiZPP_(qBizl9UV0Cu|frR7A3@H_ZUpyP1@KRO=6!FS5ym$VPq>E6d5 zDj7m(AcoVo=i-}v+tEJ|!PYrWRpaOx9stf?zKQ*7-a?n7!6|nZelD5bCMcPIn>kFm zKa5^M*Qky1=g;xrZ*3WVI9reXYu@75&OFKdlGcDoB!VN2Li62QHsI=wW;EY_gspp> zI9c0>bt{)*_m&MfefcJU;jz!mArgt;bVSVEi*+kIuyqCCYwy6x`@LAVvRPz9L~`Fu zJHh`WGK-+n1}Ke;07@I6G%^AxZGh6q2%xk9N+TnH(gr9E<`bdG;_oCP^X+Huv>k|w zalEyJ2ZZy1WTY)Y0vJCPPEJlpHY}Y;=18_hd~z)Xk_4!J=;T9OYs!vi^IUK$t`OJC zS3h)05<;>EbanUAGCBGpc>$h~78i2MrX2~A0+-5+3%OQFfUW68vF;ov)gmQFwiD#DQ04?Bqo=!9@tU*x%@ z{v>(8`Hl6eqbF(rfX3_NRtw@*3$iL4@E2EsE6B$DSAWVF5<9qpZ1{_-kX7NJc8F~| zdZGsBH`Ys93?)y2`ClKTWq)xM?7=3ey?$6)>M+#cnsy|Z1-`%_h8kS3wA9gz6_THn zZ0l5zEWm=gi&$HB0M2`_v8(?I0Kp5$ogfQSy3*vteRBob)bq&Q-_?Hw&U>%1w(I~F z)LoR^r{sOW%c>nfxEJTRkCVM=E4_K-_Af8Jw{Zj^+x? zCR{2r?u_I?GiHbQA1GMxpFI(hlMFE#WC;+v=0-Jt3)TEBEPfhJYhJ))Ah`mIpN6R& zBwv6PvIID@SC6hy8$tsy94Z;YDR&mOnZvUp0?8FP<<0`hS?C(I;mlsP9Uy@$0i5T0 z;cM@}EA1v6X&e^f_qSy&C$ez*_S~_Yg<-tXZi2791I}~O4?)EE2ik4)z>G-6-~a#s M07*qoM6N<$g5F!MUH||9 diff --git a/Resources/Textures/Clothing/OuterClothing/hardsuit_atmos.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/hardsuit_atmos.rsi/icon.png deleted file mode 100644 index ac0bc5fc73e24232eced0537cae50b4b0d3d5453..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 736 zcmV<60w4W}P)r3iNyjWs3TNym7U zawg|mgd+jXw`}L|7K#V0KIY$m)5ng#xtg?lG9%BG~Rl)k*~Wy{Op|3i`Ua zK9Cbu6xMAR?DsM;HUdB@_Er)nRPvn-a;;<(VYA=F*vOfwawTBpD9BQw>xAvp34w5T z(MXTLQlX2Lqu}`j%(tsd?XT-3O1ut@2sEQP0>W=71%!Q5PDtfUjzXUgCA@mRIbcRKIcCg!^C%V&UEmb1 zE+avzdDq`X z!*17h=Mu0Z-@(({qhB<#ZmWd?>_Efr693OH*ouwX0000j4GE=i?W^Bp^TFh)-G`N}ExY0#C6bu9n%*AYCz=VcChzZNkkR~WW zg&?sQTqIG8%FST(HZzL>GrwIp&iGNG2raxVruTZ4zIkIo8_(ul&OP^>|2^k_&VACC zo(%s}O8#r~eE|Ca_5thz01jF;OgQ2KU~p&@RUIeUHX&(y{w}YOJkA!t{ii5ArRGzsoDMec9)ssi6kD%ZbM;lXx8$RzX-Qf!*aKlbOQfl>t~; z+aT5*MfQ1!bw^oQ+W^4hmC0nLu)CaA+*$+BGS)1z^9uk>PpG>7UQaJ8Ya86_>D6`G zes+F=ma%4m1+i3u!J$!_4C~p&Wgwq=H8uUyrlAJr7Z@BGwc@rgfP^D1G-CbkG}av@ z6prX$qm6dPANC3(S$7i2?0+EPh>LQckJ(g;$|XfgIO4+Ya*~~2AQX;Je)2f8i_65i zqiA}~E)i^p>Lcc%9OS zt*n&X>Q|n}p8)yxJ9jwF+}xB7wl6qfN=W z=B0dVmiv5raRcnJ1dyK%eZc{#Wvp3PZMmJKs0@U{5o~3pz>f|H=4Zm(Oj_3^+Y}QI ze+fVjY(e+W0o0DvixvK0Bmg^qW}I)od>n8_2R{)XO_!gi37DG_2SW^ z+iZSbr}4^l0G{;U<;;6o`gB1RM%|I4$7pT6fmINe09<%{Q750xW&>bya*~hjN$Knz ozo@9F03esk>1W4cTaVIvx#A2c>n+a07*qoM6N<$f+0Pa`v3p{ diff --git a/Resources/Textures/Clothing/OuterClothing/hardsuit_ce.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/hardsuit_ce.rsi/meta.json deleted file mode 100644 index 117a2241ce..0000000000 --- a/Resources/Textures/Clothing/OuterClothing/hardsuit_ce.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/d71760fe0c0e9ea3a9aa8e9e794daf7e7f892d8c/icons/inventory/suit/mob.dmi", "states": [{"name": "equipped-OUTERCLOTHING", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} diff --git a/Resources/Textures/Clothing/OuterClothing/hardsuit_engineering.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/hardsuit_engineering.rsi/icon.png deleted file mode 100644 index a3601869125c454b8662db8df77a74ca6cb45f26..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 872 zcmV-u1DE`XP)c0Db&u94CrzU&y+h#WDiLZbRQ)Mf?kBu z2#QNygoua)ABv!;2_crmg4QL6TK`{`|lHcg|?@ z7pM7?So24#uM$`#uu5Q+0PvUU!T#q>4uFvfla(f;-H$XcmKxaO#6%Q5ZUb<#VNCl; znw1ggf8OM@ceL^9#VBC2b!#oDfjy2FZ%o#*W$jz^x^fc96#X}w990rZ1oXOc=BLI< zBvTma+sxQ`8k4nte8$eRML;5%Vt#5Iy{=p(Eui3m&XHEfNY4Qj75HA%`+4xNGk`x(R~H{Gb~ozOR9EqF zdbBv>f`4zgt&vuaGlvCGz(~(gQ(Xm6B!TaVpP}Rw09<}|-l?gsqIt1f>l|ryveG0b zqW&lX{{NVWGSo7x-7On%Uca5BFbp@BP}MP?Ao?K zdq>-{i?4_PxR;Z6+v#!JzpPe*Wwij{*3H{MaYP%Iz7rF_pTM1Gi-<@F0BN}%$V!vX z1#d6M$%fxZz$>D%_sa=%jrBN}PSgW%@8JahJzWdHLSY?;{{HIwpzCgrbFJx$@+X;+ z3A@I6oKwwTFfB>%;4BX&E4XlE695;EY~sOW1-*l_n3m*J^B20tdXzp!Kv4lHCB1|0 yaUlc%eb-;{&oSt`{+>i40YLv93Cyb22H+ckk6j*=?e$my00007&-75>;pjux{lYps@~WrAx&R!Y)N3(^G?Bq|NKK+!gE-K0RTMS~bV`QRR$=n@0I z1kIre!1iDyDA1y}q6rEks4u-Jicur56xbEHE-k}L%OaQSrOR+9E8D2H2XfX++7fqG zR0%Zt0Ajg6-0#hsH*aR%dki(_YWOPSYr_^`*w|ITumu=4b`>ye0fvoT1q@q&VdI%$ z3lIdkLf+}Uws?9z6y#kYzY8HoDvAV_MY{-dg}lSAZ$}tE{7eQ(k}x(VqS3Hmnx@Om z%kN78xkBE#1mH4&H)#v8SiFl+6bW>_hF_B~UIOq#P9b>sf79WL#p3RLcK$1ia`X4~ z0bcU+0A^;Uq3bm$N)p*@28xn|uGcU#GmZ0|=Pu#tW*P*&{H(FMUUNU}JP3bZA7I-Q zmj!}Zn?eu>78b4`7K@`;Ty}|Lu{ahMu7Hp*W^Iah1OnTp{a)=0z5I-GW@g%bhRI}E zl$(D`3&<7njx0wpYg0^29tNc?%*;$9{0)McnQ6RvY^m#<(iSEr4`bG*kmcyMtsqy( zJE>F}vz^9J+5!L&5(WS)Efu@Y+5K6YB9%(};@?yOe|+Z8j-n)C7^g)QIyLX z=$H3lntNec6sAc)zq}6s(Df?p`)gf7ZwIm*g<;g&{Oe7Ojfw6(Z==V?#I_}jMqn8J z`L~<}a)rEO+teiofNVB{rKRGgN1#0`7)Bj}K(;j-q~AT_06_de8cn@|n3967si2*i zh(XtDASCSGkHnIw-7WzDN@uTb$-n6kU?wQbQDD7^Y&PRd=xjCv%WC_8vnw}nth5?v z2plV|I_K6_AdO!Godyk~4gl_0E0?t` zkBx@q{_fP(AWeUaQ&%7J18{qt%{c6{uyCd8zE|#k*i-?Fr{_b=0a4n5X_^4K=i%NX z0GOr;N?VZSC?<|4P`!A9v)OG_FP^~U&%cFKDh&Wol%#tv7K?+@7DSOeF&x-)sZ<)8 zR_Qwgx3mC3XfHWg1BsOA62f}~03sz^g-DVFK_Gp{;AZgtPEnF57MEQmGnu?cpxrse z;&PX=`l0Vqm^q@-*{h-4`^O!uH=!s=n5GFylH8-FRe;e57EfLbd4I#(@P7Pz$HuT) zzV^g(iK%bnext$7?|U=Egqb}2BGy)}cWGJEDwvpj0W1If$3Pmr8CVBIVo4A&g0;I9 zOzcmBTFthj>~sLnJAEr4awhIf?A!023j%S!dzYPS)w^iU)dsEv#xKiJSQdSv1K8Bd z%kL{7!pH@IK$fGBiiv&u5jhhd$VSM^Kl$AA0NUeU6bUq~ zf{%Xkrx0sA^8=I5JW!1HmLod0`m! zr(Pd4dbh@2^u`7KqOSsa&7TR;+XIGCcb$+Rkbw;YFMn^(Gq7u3OYqC@%K~hhLRCvo z5cZyXpBW^2`8R`M)VZyYYbE&qh_8HRXjcKl7GT)eRlu+X7&dklFl+&a4et7Y-Z1k{ zq{4ZyU3s_`LM%}Nz+LugS|u=fP0FiTC13L^l3%WwRBM=ar`55DgJz`Fg& z%?B7p9q$MPf9S|{L8}b5K*EcoolVJwPUC@gEIyMtgi&Dx>C_Y+JbcL2C>}g`_z>yT z6h?&+WHN``Ji)9@aY3spo zE4lIZ$5SAJ*u}|YkmabGzT<&!1$;99DL#1r_xN7^WjFZ2QqVwqTPhy@!y{L4pOVJSkw(DfR!*$fB?BbWOw zj{NS$fzJla`!f#aco|q!ihTy^1apPF!vdZx?4)TGY;0^mQIa4e?54%5)jM!D_HZ}Q z54;?NgrO)&Y;0^m(<+c83Hy%!73bDgac*rDx!=A#m?|*_R$2c<0(i_0J+3{fOd)e`ni!L3P{^!ZNTKEO0hc&)%2f$gmm*ohV4;_3NNZ%qON zt4Lur1>bo+2RL8%^|C5$Hyf=CJ6cx!2}sWFDdlNUp|Lf&C{K>!eA z`=Dtm6eSrbF~JL_a7}AhjagO`gtXR{4dA97hV}uwG^m8E06^+ z?XykCp#B@c1KXx9KdVU$g1~>8>Kz8GIB6#;#JphXa@(c@sYeLp1Q|JVezF{eq9nO1 zw0PmI74UK!Mm?|W<9C2sZ2`~gVB2M?)md!2jOTTz)fTvOu zMC_#jqDZj{EJY)aS5_WknilKpPiVJY*4Lk4nieZ758+_l>cPI32AFRy4y80$iWJ4l z97+wS)fULVE~wQOxOIJPLRV@)u`$3c6on%J?wz?mwCys!-^IE-!@0BP0cf{f zEOVM(FXY=lKB3nOvCL`OZ5M!ZXU}6@p27FK*mgM;;>cTYx6$N-58opQ0y@99&@L1K z2t!4??V_IT5d;?qLq!k>)U!PRJa3n1ZwD!jH0O_xz~dXsxgWm&5#R5QjPLgmB2TqC zOBgDyy?u=^R1>-odD!nGrGf8vaow%d+i)bnd~4g(x)`h5wkb*9((w5g-Tx zlo}wVLGhy!yWf5MVgLY|CeU>~F(C9(GH06B#0VhtQUavwI+`YE-F)<7XJ9-EzTaiz z_F4`=h&;Nk15AuUD&100000NkvXXu0mjfxdW-d diff --git a/Resources/Textures/Clothing/OuterClothing/hardsuit_hazardhardsuit.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/hardsuit_hazardhardsuit.rsi/inhand-left.png deleted file mode 100644 index 2d4a0381b2d1c6ad431c676703d86ad3ced81e08..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 791 zcmV+y1L*vTP)2Gt{avyWJHQ-wy)IOWtJX?d;CsEkFn%gb+dqA%qY@2>GAn z(ipV1Tn_=@@aQ0S@iY&r{FdE57`B4~257;@Mu#^FwJbn~P8T=HVHy;4D zx8MIZo}@&pT3fD%N=b~zW2~&!uz6=2uRb*KrE>_wFu)j}c_lCAb6(JKDTBH4<4AM` zJa~9t9|va=FI%?}oJk#Xoa)T{>Gzx$AY}l@sY1#?7vpdFaU@!Rz1=n#5 z0RR|=fnNW3<}CmK`TVbw9gQX{Dd}4v@h5B9u7vDn8BXbjj(LOcP~UnpCx1C#`d@X7 zn@e-&N0rLfQno8005Ha()a1%VIr*|(2^r&XoGLu83#DW#lLu1R1_6YYRfG^O4v!9U zLb$N3A^^<0jfFzEP)efp?rlyf2_f7l`H`ei0GOr;-}eCkzVE{{%{2Zd5esPy+HUXb zp}=u7bL1o7U224U0i3^Fc_TR z*?H?NZtFai#z@*;ys0B+OeQXbtGiHfWO4;KP8GIY!rEE`p4Y{~-PhRM`50@gOg;n` zOSZn>IWIsd3Ck*C=kuq?^U352I2rVFrP89F{H>*xSd#}bS^!}3#z;QTA%qL*_hXNf z$%h~SC?)mF7gv$l70~M+LkJh9XTMy?>=G5Xf!;!s+sl`trqPKLDOj VA8WLWQZN7j002ovPDHLkV1oEiY-|7k diff --git a/Resources/Textures/Clothing/OuterClothing/hardsuit_hazardhardsuit.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/hardsuit_hazardhardsuit.rsi/inhand-right.png deleted file mode 100644 index 1be3b5ca6e2f75833ee23bb605e8d32a2bc264ef..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 800 zcmV+*1K<3KP)z6bJCXVX$6qM7j{2It=J434Iz2`r`9odm3!ek1*Ib*%#Pn8FaXpzKrd)8tN>h zthO3LnaL$@$sSyS)}*CrwT7J^6vDy6{~nJh+yf9o2qAyJ$7rp)7Ok>}VJaEO?$s%`aUo4E`Nh2p8|)y$ywM7wVgCKIh@#_r&_V zg|4)k?a=oHf*`>2ofba6JjCap9sC*$AxRP#;~PB*^Z7Y1#&sdw)cgw*@cPZG_}QHb zeCob{I~8$F(;6!ae;=ZJoEIU43r%Z42sds(qy8}NOB?zgW6-xttz14zlA)Bq@o0>^Ox0FL88QIwUXeQ1x8il*6*pKW^r+n%f~ z(0wq?K2)`g(fJuvwG7KTO?~as1k|ea#22R3H%*i?dedxs0^b+8$xjF&gb+dqA%qY@ z2wAO6mmSe9tgaidtkaFYF}_LSy}(Vr0MK;PSS zY5-##j^lvyB4n9EmN$EK<~p}-!0_a_fUVN(>S?P4MN#4fiag3R0mI&p0%IInr3BOL zFDxYGO{N9_vxOtaaiFT@+>SqRhX$BtABv*HyEl1t>)!zp#`ydmL5PgMDj!4-h>L)%{%2t*D0000|6~}*aw~^6C+ncI-t(!j9dPzUTK@)T97DFL|HfytF!jzE)%>u8+q?_a`bG@Xl98Zk^zGTt_|^;GTA*Oruy`R#+aclRl( z{qD16!RkL4zjyD`{hxc@Ip^Jb&k4Q#!#DXTqpQ;bbQ(Jf=(GTx#*P9yEkLKSqkv8e z&}r-_pwj|$8Xxof;BsHtRqy*R?GO3s+e$R^w1O_TF9j_3mEA-lL8(+C9*ZZQB5H^3CWucFfan+cv5Bq;DZM z;s@j;9mfG+bof!`&mCuU_)%K*`{nm#0kcy%EX%^SZNlNOr%z12=h!i9+s3jiW~Xw# zCg&HkQ#m=dco_hnz3oAHt@i8iuNwoF`^s*nFE51v$Yk@FrU^8({?55`?0)1C%5!s` zX8>(~R5AOr{h|AQ^!%E_?*gGrHZPU%=Ig%)koQ6OH?)96A^||*NHHV^wk%6(+p;Xm zb8{GmK_;80aHJSge-{*)uQ&Wy;qS_1^PadPEI_nnvUxuJuQzVc;otBpp!)r(@lgPx zk??iT)#?r3TO7FnAfxkUp^npR+QI^!ocM-pE2J;3EmQu`c-4#z6`=T(`_$=Yr1sTV zAOeqV+oYzFF7y90!_7j8DgO}`0F5Bnuz+WoocXbb|Au*Z!Y6-dy(2L-k`DC8_|i3>c6)v^&>z#{_q7lj z=#O#d9k=7h0^VAA8Nee%5Pb9J16_RPR+T?=&x1o-&cCh&0Q}^QC*3>mxScQkdnEML z7Y?}q6S)}-!yp_E<2VksZ8MXf0N|HjIUoA%$IrM||Mm}_xOH;Vt3j1NHJ@~=wN?2d zRQ^-rqx3|(DI6(k@o%UA6$j7UFHKSiA;<+5M=rEwA0YTYx2K!G{=K0D(=@Rxi&NvH zh<06mEd_`r=1hJ<`aCpZ!bENcXx~PtUHsbH;aDujL~e$jXg7-^7eYPJZYFXw#9}es zp#s4$jF$XC_aA}I15DGDpE-49xE%V`*bl+=D5_&yP87Gk5ecA=T8T3g)|zi$N$FO9j+ z7aJ=<%d*I1G5}m#+r{kctc(N0-x+g%@xaqt{v{CnD!1SVqzti+j$h$PC2wJ zKpcu1hCw2ckjGGoM1tkMva6Gp4hq2|QeVxos0X)x;9CLe!0~w8^S@LoZ8{gI15vEe zN|t6>H-c{$`1Sc8@a01%)=YeO*lefb;gB>EiRg#?!U{)z^=Yjg!gdi9{kYN8ipP za?><141?-(&k>14$Yk>z9~+nbLbkS9z+YCp0dICHCr^jfjB(*e(YF9P`1a`60B<(B zC)!OWoA(4p9ShLT4XSQXuh)r0A^@JO?JY0vZc7mS=izr;H51${12j&Jb@GGS3nA6_ z2l``tzeUZ!c3QyD!w>Q7CQ|WQ3TQ5kX;m}OuD1`3Vuxlccx&ZlPc1;J@}2ddwGyn= z9jdie2Kr+>HguSq@4i<~K6`Sct&g-sex5(zfge?wO6dH{H1FIvGTPgw9xjj>Qk2x!+ZD^7VS1L$5!u zt(&3qw=KCM_=$RfAjKJhw!?P)1qn|I%YslH3fx1b5Q#zTK|Cyp5G)>c@eoUdcnBAYfg}nK z(WM|UJXjre!46gkOQ464A$XCLZ1HF=LV>S?%wslX_pMo8_PY%8y>H(4J=2%}J zD^pWdF@e?7LS2AlGD)#mqoX69c3TNOBb z;HZxKxw)Y$FwlFRw@dH!+T%;Jf7gN_d3#$cCKdSh;T=E~L@ldX0f2j7ZmIURRxbWZ zTUVc7PypF{0mpH$Z5!YBky26^&jRrD@=NQ*p=tH;(`T-qxLNl$tP2pfp6N5XB|$Z$ zlv7){Oik0=ab z;@fk8p@k9kWOnN&6he^6WB}OMJc8@GS_eb95%uWYedCj0bPR_UM%3iwB);$K#IEad z@^#em&aSDj&$exHxg4etMgYCf2J{6Ki9`TcU0vnPwUTxEVUOzQ=m4NnspxO!ugn+$ Z{08yILR4KPk-7i?002ovPDHLkV1mY*Sj7MU diff --git a/Resources/Textures/Clothing/OuterClothing/hardsuit_medical.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/hardsuit_medical.rsi/inhand-left.png deleted file mode 100644 index 5a8c2487a853e53c5fd71d2075352286248296d2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 664 zcmV;J0%!e+P)p=l+uEoN;(MMa+BP2y4-D2;gAe2BDElhf@8s@ z-28!4amw1E=~Cgu5+#sDxWUh%rd$WTrcJKR`TeFg<^R2xm*l1J9w3AeLI@#*5JCtc zgb@FcOxy*Dh!sTv0QkO-i=XTD`cmz=uFC+B&*w27j{yLhrp4Y@0N6>QXh=~M?C$MF z$`BC)KoA7@`sEpdAXqpaw^#=t?BvPuA+p)*{P@Z7;ll5i<&O^b;rl*-*`0HAu)kD( z6*uB82moi^6ptT0n0>i-8=g0fT%%*R@#aGv9lITK?-s@STs5m@24(}G-pS(T&Mln( z`U&qxfL--20O0h~=fAcY=0j)Rbe;?SE58+bU7H(~5)%=-uFFKkjY^4oU3;n9x7W3~ zSuHQ*o7M8t`K=J1v{B5>2jeR9Q6w@40Kn^aAE9Yl#&unuOeT@@_RIG$3?t(>4u=zB zY8b`b{HhTV8^v6tE4XfcfZ<9tQaJz}yN&Zd`wm{b zdOP2Svx-!%v^1+_j^Khhx_0^&Pva8qBiM95Hs<0g^r{lwCYQ8_t@~@& yNab4q04&R50I1b!Yt>2Z0EBxETCLVvb$$ah|2Xyf@Zqrl00009ChQg{KXIUFfvI9z1l3*n}Vo zItmd;hah;;Njl9fJU9{GSdU`*`yyd=FrZF~%5U zj4{R-V~nx?h%!DPgdkN_0RXP+V)%7FpFcJ~h-}*?0EoxqXt&z{fJ7oOG5gB2g;Z6= z+SZou0T)RKK>*-+9=?Bj4A1jM#>b6pfSh!&w}VI|G8jMD+nKsZP{@3{rER#b3!r~; zcT3wNpAS1TX`v&hiwF1b_1|1P569^)Ch-CtmiO`EO&*8k{i*Xto{K^@LqLB6wABdC zuAIZqUq9gVJgjLK008eleGY6Lkolz}r#r|kotVE`DbvP!nuHK!+cpUyXk$H1)k-Pm7pVO7 zH4MX0EXyKU5dWHyiVb#62th_F7OE34cYgWo$OYsdi?Fb5n{-_#0MK=PYW`yt(KJm0 z08P_StJRcZu}F^N000_|MqqydB-1oW(=@bNEi{`=Mb~voCX;X+ClvV^V~jDz7-Nhv z#u#HPc#KqxEXyLxvWSR6*Et$C^?txKvfEOx*OANRd<(Q}Gi|_=XDlN&44W m<}q{e8t%Kxy99m)TbAGM{5LUh*IXF@0000Ga1h)|C*6vZTMSMH z4CT;47daD%;NUp~5_&lY8&Lk#jHw%FW7sEaQg9N)d)_dM_O{<+Wg^Xm_u(q23% z`ZIxN0?!1V30Nhtu)3iRBqQqLZog_=U)=3i2a*wWVRb`&XzxSTVAgRhRZxdMt<$i3 z%3i6N`GaX4EL&>E*LuqPx9hB>yz0mBE1TJKO)0RJDySXd1OVQ)CVZ`@#ABm`f_~z$ zQGBhZc-xu)=m;lROBGBjQIo*J>V|sKGDfLfp;WFQ9-q~=c%Oi1^sxO4qbtXaDZavmUKoy%;g_PAS=lfE4NHW z0{UTEqyV9yUw_xu#ay1rNR@=KJL)2^8C|yx_I8ra2rPB2*Z@6Jxvc1qaeb+4#g@(p z4EA=KYQvgyz-U^20loErdy$#}HJYW;)j+e7{Fl5&LRQRD8+zR?z3AX~v|3S`>H9ye zuI4oYX;ZOYtLs9dO+P@NivNXxn9C!V6|#~{_xTtA-REOuB^kM_)J4Q{3dCFQ=$D0^{3L>TuUN!(HbzUL7Lr9|0ijAJKSqi1uxKd&<(a%oKs~?J0G( z|AJDvLLzy|yAN^ZVo?C*Vo}17iP)&BG;*3H1WaV3CtGq7%431Hm}tQ)^yHv>sfZ#Kr$_YQaWQ%Sy+ ziW>+KQNv&e0udotZ#Kqse-UQl&?g=^=g8#@3Bka4z1bK)0q|D$*L8(DfGy=)YG3>dnSD3~d!c}7=97*)f^xZny>Mb~LW}?ajAZ}-M@Oy5H9g-81B84H!JYGJ}j%0*c6Dq zZMP%B!w(t?#8DQda@;KR>s=2LKG+E=)6z za=9{>{#+;Md3^wow$|x5?>!F&LF9LfLj4ZS`oY0dFqVeKSd5m zh!K3>2M}F{r_TW3`#yviNk^2_1P*uiQ;yS>-rTZE@>!v<2_Z%>4E8H?p!dq<3LK|9 zm;QU5U^>mDqjB9H7%xKj$C3&43;>K5;kw6iX;h=dMPOMav|7*QHSwgLRgscIr`gKbEjpkVA(!Y_*;kfhfU%glS z=+AgN7--Xvy%{2Awr~FhCog}9sHEd`v9)~%FMs@QDTBTUGy&N{3CzgiG~0{@*1ezNqQXn!+yLZtHe z?l_%hFwHznGmkKwY>C6Ou-7#6NT-=p*=2*4GtM~-gTZmS_}AaRN;ytfZjaUX;zCOU zR6^=9qef(5xE#kf3*^~la0bZ8F9?Kuu7lVb(0=$V6$Ao~(}iufu~EDQ0N5zrf^E0q zI9&vRSeXx?WpQi!4mOIn5WbzLd-(PQ8^v4L+P)KO*_%de0Z?Q}(czop7XW}a$1h~m zw@Bm{m;TAiA0%zUo8uSKF|X7FNd0DQG;F(#beidWE)i%6R!z_}^AR)DL2Ln#ZPV^d zh3EBW-d{GRx5g@_^MY{^%LHg+QZ85IU{%oI>78Ypfx0pCy#CAy@Vq_@gK3*VEDZ=l z0o!gz2u?EqAo9*KF-`v>%o5H#XhnkmkNC}3hOPv#ZU)wkD*>#Vfpz0b0PAL8-Ox^m zOh;L(D23}_QGT=nAu5yrkl9*w|9x4)PzOz^If@i@i!oXzK$X`=X$ISF%M`d_Fw|<* zm2HJp)SHcQtyYyOao_i0+il60ZbC+@L*&WX-_$EWRbVPjU8V+5J;3w&cyzW6zkl|8 zsSOe;9)to9LLmtOka_sa)_`jD<4BLfeT6?A#BzeP9VI*mVxW`P^(qJSY~CufNY;=kmDt&*&@&D zFV_jyn~gCgJShR`I9;5cp2D(9U@Rlc;&fgGR2qzBU|A)co}R*Sy5OA4iAkqf>`91i z0^|feuMgX9!!Q^a%b?YIF4tqVjJ^t}G=vzT)p`!bGBAuuTta4`I_!DS@&T$AsCGEr zC$Nfm;Ba?8HQkdyppFz^GW#p>0j}GVZD>@VQ!$INW#b|mYROKBk=7){)_|WrKT0uP zl%+7w>jT%bU@Q|UO6-5~&B~%d_1m0tr7Ns2%XN$w@zdu=v3bzi4IX~_b*kQMjHxaN z07l`Da2y+!Ra#m{$ooJ7cbrMrSP%@s*n}V9zg}H!P=)YcW5c+H4dWVw{|mxUXjf$y z0hQ>4|BJ%M>qOs5Bmk<dxyj?O%n;gKf7HO+upo8KQuQ zq`u0wn2QjGLel4)C+JKCoKp2XM^INnrS_hFPZk#*Aq*}Pp mzs=F?C#lOP#k^hxUHlKNFAhdehpUGG0000WP)civL3BtM=n!S@mtjTl2`aI4$d_SesJZ|{DDbaC_!1~!rwGx3zhph#^EM_UKE@pp+Ixb-d#xhy+jrCuBC1D^n``^?SF+hhr;Fzg~kfg~;~iPRD# z$-mx=tJO`yu#4{(DVNvq{UTx5rCQyDo49>OilyOE1uFI0z!=SEN3d%&jw7rBVK|zX zjD;w0H$F{?R0X8;*fpAk<#n{~Q>|{|x-N5b^Y(FFmuhtrt@|u2ud{13QhHegc$h$? zUK{v+5v6*}FO`^{dIvzO6)-cC$8}x%%*^CzwE_U9r`|EYR6?m9zF$l&MQRsF>Cye! zzga z0K#1)3_G?p$9Kz#6@ZZnO7%F|InDtHQLv=Otq=tOPIiuSO7$}RJ!ELZ#`dB8h`Bsx zdHo~7*>`-uXp;v)n}y{Moc;Lr*PJI4xQir75VWn&7;XKNBJ+Kqw6`&E9D$S`QhFFO zJd(}LwkxHF;|NN78<`HF1QRKc&yN=6c$+0Y7^?9s1RC3ixk|k@h+~a0n%Tt_0A?3g zXf_)-j<9jhLLk{0Vc6@ca|*!k&M8uQR)tEvHkjl_G*JnHppALps2x{f5@aTj)HXS2 z#-UX2UVj#3>VitWHdtLPvASBa$;Oc+PhzrO#~`Bu#%P+&h8^Fh0B|cNEB*jE3ykfl St%h6x0000OFUcCf&1%qo3=T>KD)_TFQkq3>2&3c2)DT8Lv35|C-^*g}LN z4STbCNWH{v>uMb-ATmEN5$lYs9qq?q7GR7q#u#IaF~%5Uj6Ei`GH%-M4Ke_@xIC-f zy*7z=9D#!aALr*G(v*ziO;|tu0bU3wJ zoou;W0sxxLJ>5Q^UjqOv%ffVawRH*rfaCnx*)$~pW{YVag|DpbRwuKcwc$6P>b7wH z6Y6HVwey?t6#vj|!rjjuZ>p57rQPae!0m8W>h{fp~q7-Nhv z#u#IaF~-<7r4$<;!m5ns`(2F3r#lx;N~sGx6vq*G8&2@q7CIrODw_b`?_xf`#(PD0 z=XZB5otIJ=DOS$;{{_B%|N6LgfixvJj)0T_D4y+npGr;v08onb;fwpI>z6bJCXp%1;>h?Glo>M)>GV)p_1;)fV)UuNHI4`X{NgR$pouvkc0?P|D`5ij>; zBztfPrY3bwYf0GofixU__}}AAT6zya2qAEd_X`()7pzo(_wU|DN(HHU*=^=LJNuSd-<0agpg)YX zRtUooCns+prGyXylgT*@!vJHv)H`7_Kj-zNu2hhlKeYpFyO&%`DN{f1zh6diKF;e< zDu8YGpj41FBP;*bEx;HD=XI=BDtU2U2V;EC@t+4{97+Wkk54g~oMSvbg;GIo{?vBp zw7XFlh5&$8>s3;}z5NLQFbo5Wo9j~F0svr|+lyVT6oBoA`PO1O?QX=5I{L2H$pf9n|l z0G8E+1j}mfH}NxboDsBE`26KlO=|_m8RdR9vjIYg)NcVH#D0>Nz(H2g zb*IU-?=Ru|%NGmu99(w_%W7hAa}CRC!t<_jKfAR9;`{$!>tz$?jK4JBUqWkDnf!zh zLI@#*5JCtcgpmCzbl4G}!aB|fo_AI16XRVn|1G}DM*v?L#|L+c_$;xi9{tS?`oqY! zdvM(;*ii@O!S4qrFv>3TWN4T8)JWeg0IUZPs;W=}e18eY86gbAWPV^!krA5v3N?T+ z4k;x#ufsGsOtajhGY@%m1Ll{r8V(!lqo>0Lgb>L9MHLm=0rScC8e<%Gs{z-YrUsI# zrceWb^}vyo5|-7h?Dhwq&;Zw+LI{z}-c(hgKZJnwgK%?>psEV*fOvKYsLt#_mOuMM V9uWzHUETly002ovPDHLkV1hisRxSVl diff --git a/Resources/Textures/Clothing/OuterClothing/hardsuit_sectg.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/hardsuit_sectg.rsi/meta.json deleted file mode 100644 index 117a2241ce..0000000000 --- a/Resources/Textures/Clothing/OuterClothing/hardsuit_sectg.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/d71760fe0c0e9ea3a9aa8e9e794daf7e7f892d8c/icons/inventory/suit/mob.dmi", "states": [{"name": "equipped-OUTERCLOTHING", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} diff --git a/Resources/Textures/Clothing/OuterClothing/hardsuit_syndie.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/hardsuit_syndie.rsi/icon.png deleted file mode 100644 index 289348b63ba3d04dcf5bbbcf1416c3dc05267f22..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 841 zcmV-P1GfB$P)F|9LGPCnMUpsy1S->Y};CFZCD3e3&hLfMKKaRd+E}}gW;`1C0~`Y!0~`YYC+&XN)h+4(*@g(Rq%zStDVSr?!FpZvdntQA13-VDEc_)+egIwF zqW<_oIkP((%%pPMY;PnwSg)JoH-bTS-o2%zwvLdHrK?-i?LycBXsNB^v#){+>L+Ht z{VHlkW@D2p)geMcmR0XnT58Meqy=nvpyPR~{$g$#faO$rPf@d(5z~#rFXpD{c;2dG zBWx**@;c>fwUn)hmlPF4h|AbBf=GWF4lMR`#r*icCP#7B>CzI3mDA4mmv7{f9H<@2s zKOBJMQp`G7<}2L{2g872KvMyL;b7QOpubNR?8p!QFyWu^WGJee%kl7}&sc`t*@H22 zC#N7dIEukg;FaVv+%Bn>`G$jGWJyJA@H$E796**-0_EpONGsNs`?KF^IJymMqy)XX zipT9jmQ<^G+%9@`l^QAWe*w(sT#Y08y-ajY3Zmaj=W0BkG|mAQ`~mAeFt?ofTu!A~ z@CO_NIPw6%U}=zm*M}w=XM+~G#mka2Bvb`NZ4X2T>-ER`DqSwu(>DTv)_F_!_SZw)Xrf9U6dHe5&-kb;&$( zo!#?Plr&SN=N&`XT7sgAa$0|T_g=op)5S$T01vb^E?vIFTU7<1&ljM`Zgt=%Y&BPK T_LvHI00000NkvXXu0mjffBB2L diff --git a/Resources/Textures/Clothing/OuterClothing/hardsuit_syndie.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/hardsuit_syndie.rsi/meta.json deleted file mode 100644 index 6e92b69051..0000000000 --- a/Resources/Textures/Clothing/OuterClothing/hardsuit_syndie.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/d71760fe0c0e9ea3a9aa8e9e794daf7e7f892d8c/icons/inventory/suit/mob.dmi", "states": [{"name": "equipped-OUTERCLOTHING", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "equipped-OUTERCLOTHING", "directions": 4}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} diff --git a/Resources/Textures/Clothing/OuterClothing/hardsuit_wiz.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/hardsuit_wiz.rsi/icon.png deleted file mode 100644 index b48a8a9ac9c0c1a9dc44d27eaecc8994590a410e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 967 zcmV;&133JNP)BA8A z5JrniA7s8b3n`ihVXGk6)u>JSpv+?Gq$TFxmAkZ6I$?JYE|;dmV_!01m2Ke^|kv+9b2Q`(NGk$@X60}h%P5hN+W6a7QS{r-jH8?Yk-2ZGmBFI{IR)S z)E-YP6qQ$Meg|M?aSBNgbwQL}g0IKFQ2}bUS^-$vjc9G@{sn~V9a_1~*hO;fDJD-A zfYI)uvdd6Xf!>=p)a|I9?Wi5a5<{`X062T{GyvK8I{;YCHUJb$43j5I!Ke4;jj{^t z3sAjsUwtrnmB6WUh%P6i-9v_g3ILKI^6{_VAqk>Zw;i=J+C5|tT}}e0&hcRKD%C6Z zOG1=9hN)SQGZ|VpJGB`~h>T5#v6^ih78+1?o+0ORdmzG|^sSqn$Tb;Kv*qSrLV**v zCb={mW>tw3d2t)q+Xueoi?kWLkn=gLAKH-fIoga}_?9nfc_8xQHmgdUOT%GK+?p&2 zP*Q)K<#G?92ts(%&Ml%<-u3UTQdXcOw*1KyBd4c10Tx!2$k{5{tXm}r{or_J~UpSnMz_PGmhs7rnIxmM0}Dc}wH z)!@qr%g%eqnG675eiSVF%b5(z&U*x3Ms&Z1K&JxLjzfIU=UUl*#LiETe&)BHyM|AO pkE`w@ZX(%V0EpB>HHY-Z=O5MSXrXAI(O&=n002ovPDHLkV1o8B#O441 diff --git a/Resources/Textures/Clothing/OuterClothing/hardsuit_wiz.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/hardsuit_wiz.rsi/meta.json deleted file mode 100644 index 117a2241ce..0000000000 --- a/Resources/Textures/Clothing/OuterClothing/hardsuit_wiz.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/d71760fe0c0e9ea3a9aa8e9e794daf7e7f892d8c/icons/inventory/suit/mob.dmi", "states": [{"name": "equipped-OUTERCLOTHING", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} diff --git a/Resources/Textures/Clothing/OuterClothing/hazard.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/hazard.rsi/meta.json deleted file mode 100644 index 117a2241ce..0000000000 --- a/Resources/Textures/Clothing/OuterClothing/hazard.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/d71760fe0c0e9ea3a9aa8e9e794daf7e7f892d8c/icons/inventory/suit/mob.dmi", "states": [{"name": "equipped-OUTERCLOTHING", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} diff --git a/Resources/Textures/Clothing/OuterClothing/heavy.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/heavy.rsi/meta.json deleted file mode 100644 index 117a2241ce..0000000000 --- a/Resources/Textures/Clothing/OuterClothing/heavy.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/d71760fe0c0e9ea3a9aa8e9e794daf7e7f892d8c/icons/inventory/suit/mob.dmi", "states": [{"name": "equipped-OUTERCLOTHING", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} diff --git a/Resources/Textures/Clothing/OuterClothing/hm_armorvest.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/hm_armorvest.rsi/equipped-OUTERCLOTHING.png deleted file mode 100644 index 440138e591e887628a527ece607ec0c05fbcf03f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 784 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEV7l(<;uumf=k2V6*}{$@$M%cn zE(pjd-VmYU>dZSMm~WfFhXjWW)AgoKT5bD7ze2!&URQ-dy@NxwXlAC~Gm!~SnU|dR zh7|bnYJ0D?-Ey@dK>xAhF}2ygGq>M8>0Dm7{oIAh`!&|q#y7vOd9S}u>0HbMu>-w^ z4bcqd#~AV$??^E3U@b`I0SfY-Z1B1&Hg%QmirT=1%KJ7k0-2vI8*BUy$iG;#Z^Z@C z`-}dFtq958IBQ4Sw~K}T_fOo=c;+89WB2y7K$d_B!gp_M+x6&6cKE|22}S?;wvKx* zzQ~GRpW7;_CGt;w?)ldE5*22zIHt*&3+`nsc)6qTZ}GyVD~`td`aC#w^|ZsUEw!K7 zH@ufU@b%k?kIr+M94G$|54^`bZCW}jgT=}-^VJ_D-?u){t1r*U&@aEIw?=-#$IXwO z8@=n2Zy!3hJ^sm$jr-Xr_%%B1)KI%DTpQl7dw2V-!`E;5G0J{Cx!mFR3yT1U3l~>3 z|C}tg;WpPBZAC}9{w+)l35ltJGIIakWcsVMe|+{&JJ&xxXyq-ZeXr-H9B+5J>v)3g zPyUfQVH36j?gz&t4(K*WCo^nk$m?Oe!?eQ?r=Z$5wh8v#zb~J++I&!JPB?!i>xnN@ z&K!NchCN{6W<7^xr1Qkmz3 zu(cL#eBE&|kkjet`h@{{TmgQoKN1~4RxZG1Ik|vn2edEr{O`*88Lt{w*3S&> z3q46nghQtssEpsvxcfIRUNyUa^D`|99`c zVTcO}aWSk3T0oNT$#MX-!O%&BqYfB#z^DU89Y8Ap0Iuv?EW&{&xc~qF07*qoM6N<$ Ef-psbq5uE@ diff --git a/Resources/Textures/Clothing/OuterClothing/hm_armorvest.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/hm_armorvest.rsi/inhand-left.png deleted file mode 100644 index 36dc0dd965aa94a8d2f42721f0067675da9217bd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 327 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEVC3_3aSW-L^Y+$8ufquC;ziQ*WhMGYj~+ZJ{y}!vPAiSG?`HV@V&HqH$T8_$61(E!1v5OYVwSV;I{nPr z@AUe=`BNvq9hRS`0?h@3dSmHQT}d}J&yxn5Zm!6FeP;KKuOBa(u#p)*YXsu?a{#)0NNm`V`_2v*qgSJJ&uh$*_LD`9lEL(l^ehx?X09|2gK(*t{U* z<_vk+&*{G-ZR6RCm+#@$XT5X&`<3i7>wY%>DSl}KvzejcZO~o5knJr0Pg(5SH2Lx6 zU&p8GCZ?Bauf6{H^67rdvOSI~a&j1bn-|3VxukEltKrkzy>`hyy8!5zk30V1%ZM$%kD1YtiA3L^kR3~t=w7r-)-si{WbqtZO^2xIj^O^u6KJD z8uXK?_wm^;RTcq3qgEZ%yjdhrC>k}J)w~fc!yW4dFC*10qyX%R^$Jrvw zA0N7Thjq(ZpPNB-_i~R1ZC&d#cXP$W_iHK>|KDNdc^+En{c{44x;p8*z9hsMK+>Y< z==WpVC9ioe@7$u|>6gFds{Oy#3+2A{J4^$=lmzf=*qz=h`){4X)~CK{RWr|&U44Fi z?w=RsL!N0+WVjGOXCxb5v zJ{aG8--}#?OD|3^OH2yYEjQzMebRjI^UUn*o5}qB ztAqQDFVZHEHl_lkO(1Pd1xTAf+L#KEHi5Kp?*;ghv$)aT^qh-x94~KW)N8d?(=!Vt z>{VY3U5g8i_NHfdEM#*A%tFck+_^YMzvrS@5p4Tf0#pyzJpfq9&-g@SLyh*Pr><@P z^h<0)$o6UTLX`dM763XoB z{Qv;?{p62WM7YgAj0JBhnb8+s!NDR6T0FR$MLV0J+ z!vq**zgQ9eYZCj~IiUM?ptxn74ct$ZZ~ngioYv(Z8oEEL4YE((7YG6C3>@!VVTI@#x4Nh)3-kYh$j!I_KOt}uqkt~I~Lpi$Pj3>H@$`Y3?5v) zLpGU!ZvpHkP z>j;*0hHTDY+aD=_9P30xjz3FTWB1(Q+teq!8;Y^^Mm|NZJ{8)I{T z46(iB$wi2I2k7@)SkGT2RtSmhB@X~p4#17)aqY7zL7#}~0RRr9Fh~ljcUjh%ABwX3 zbHEaS2vA4>gN>Vo63jvgb_4=kgvCFJ5Cz%~LsaV%0a9D7$jD9O2H7W2-JybOpXC9x zdAnl;VvWcp?FF~p0tr#VK-&Z2xTPhHC^VqWoSLS_0S|3wFms zu_DGQOb;Y+f|8rva|6W}fT2Q+3w9+4gjZXmuEmK_@g2oBOMw3)?)|CoRDiSzq>ZTn zX%k2rQvuQ@kT#|Qq)i}gOa(}rK-yrR3d`M=BxeCQn1mBsfY;qCd~`kx3}Y}bk@R3h z7-(3-ER=9^+64g2nse;mVTC~TaNRTJ4Lq$s!_)dRoSb&CxKf96aXxV$kOSKM;z}JS zr(K_qF>mb-FcaXu=bZ{^3y}M4qvs4pPXOSf^8vZfHpI`XW4@Ujgeb$_ z*u}Y1^fyktbfGOkHfNw%$oub|t4s8I47Lg4`)@8`=C8Ts^KdRMwZE$^K)>e#AqSA^ zyui42^rX0LCPAJD;2e&!a)6^WLWjDwoF9t_-yY2^0RG$papXW-0PFdyjM!fC_NXaR zeF0#Qm1*O5=>hb&+N2SkC69AD9BDp4M!)AmtkePAu?GOyi=hV*%dt2WCICXmXyXLc z8gW&htV&R9FL`pYQ)@LnssN*OWuk&?HQJj)e7KESc4w$q5y8(y8G9SMiFbs;xHMj_ z4i#VO?7}!i&H>|w748aZvy=olmirSZ3}il3n(Kmf7pS$GUfAvKuI~VZFjvp!3|2@^ i=L6CvkT&kU0RIAp82G>MDm$Y90000cXv<5?++gLX^-wT`VwFX zumpH;0L?)sY;;>;)>@<63Y&vY=GvVB>iu?D@3*6urvt^W)4q9T3c>psrU>_eu!Brptvu5FqN712R z)H=ZC_6GLxL2f1<=Q$|*`NIc5${|A7AnfV+&3)xpeO}Rh?QDSIoA-v&^U2j$0L1=I zrmqk-A05dg_>BMSW%PU=z)T66gHE_!U19b5f>K%Ut4iextJfE-S66NoYnJ6o;EhL2 z0zbO$oty&GI*=r_SH9kj&z%6`S}PE=tXY^f3pZ9Px~9DsG`g)YuB|Gzc!8G6 z6~xhQq5Ysx22^m@kqNC8+&o#(&VWu!&0|^sjczN9k6bmBveLb_B?`$<_=m)GBxiev ziB>z?J2bpGyFd$IQRxTGB6J;z>qyqNMDCv8I`aPmsESW(8}Eck;N#9Q2@8$lMcBjo cD_(^C1O1Zn?GkiU_|8%>z9ST_RRiOR3|ta#{l*uK3dmSQh*5KeD!A zCe{=Y5fKp)5fKp)5fK{A)?D)g&iew((rC6KV*yW#vSf8Ssst+8cDny2SyLn@C; zxn~Con*fNDaQ)*mzrKIv(Sx74)+lrWtnH23W_jCZg{=V)&k%LPw$}~Y|9UISSM%$m z>ObC5&Z@AFKsRiA#ss|k@F|*Sh@!9wfVhngaWTw0KTzldB%?R;&LhbG>=qEn(^0qL RR{8({002ovPDHLkV1mK86N~@= diff --git a/Resources/Textures/Clothing/OuterClothing/hos.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/hos.rsi/inhand-right.png deleted file mode 100644 index 3c87f362609309dfd982702bf5516b25730c40c1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 579 zcmV-J0=)f+P)wFyj}( z2LK4+&y0V`YzW~)0_dj_003^;gAhL2=Zgt`9`rvA08(~mj%$eooE{xG0I=olPArx7 z`8TJ?lLvrK=fVO0>|a9okg^+3T92hoY=Qt#sfqYzDZ5x%TVGhvi{O^M%#U}dse~yU+=-1v|@5G*+viC9@%pBn#Cx??;VW^N!h zIs5(tm70j#>9-mY5fKp)5fKp)5z!0Tc4lCj%*xPHHup}{hfh^(R1cL|h_F$v1ZW@K zRfJJs^=ins0!qvH{qr90f8ESGo;Q~(0lMUDTh%zrL~Zan#-kzHe~YGJ6j;0bfmiMU z_4>Xt4DviUXkEgfXZBN#=iVtF&4YSA3s+d)uG6=?zN#k0bt@-F{?YXL-*2(#LILP7Dl( z3|OAW)L(hfDsb)3Tpo|(x2xn_t9GwiHMy*~TF&*Juffk&0Rg85!)5ka^SSE_at)W9 z_#Wis)wxOMpr!k~=f5Pr@)w*tC~;Ug*~45~f4cMJ_^}x=`da#veb} zPi=CMIqosdTjliAllBu*CBFql@m^|+&)r_T`$N2m!%qEv*=Ln}nyM`V8eLApqOOgL zG`_5v5LC5O#O`r;MUqeUgdnSr@pBn}Cm%n1!oFWg#Fgn<%-oD z+do~XTJyXfd-T6Is5xV^&c%2EOnUvun6g#vobjuS`hN~ z?B|$^*Z8eJZDT#;{k)cKwfaE=p3)83P8@}$ZFhvcW4crOKJY>sB8P z2n}7kZguT;x4(LSc3%%?Sblxat>=gGQyCckx=fQ1JDBw)NWI;4!>PD;n;5d1e{#HI z4!_Ry-&*cp>xl%0tqfT_YysR0j^Sb2>|wl?-_mf|#M@kykKUqPuob06dT1MhyW)jJ)u z{l0W)=*!c+#eFZ==QmzrV)&`?JzniPYwcC`m{oxVjoTG&q<6)LI{s`ZZ9Vbsr?3CU zyPu=iZrW12^ti9yu^ThxZb!b@A{MaZOa;^Apl@Q#XKr3IIVk4Gw!y7YgjGb}xJx-^ zON4&g6|ObBwQIR*vm{9C6vjWQF4;{656n>q=K$R>2Vmt?JqF5_p(D=50qi4mKvj54Cq_CXwi@aJRuV;( z_%{35e!us}nCR>66OYu>L%lBm3%~-f0E7ZmN!^#LeebiCt9@T3wbynN0DHKU5<^E- zQuk8Ii*+{zsFJ$R($tOHw!N_b9A{}71QAU=M%MX}2tXG?13W@wALuP{34xMn!*?Z01!fea}EF~x;)ZaJGiR=hRtSc{g;OJ z;eMY+d!Xp@2=73F{MUiD{s3HaTKjO{n1Vh;aU4Sk;k5}NCNp$30C0+youjuAGsaw_ zhHBO|^g)b`Llm5Wm(2!@F({=_ba_BjQ7=HA%OTK`i_|y~)2A2*YgfrP(x;e&E2h$8e{R8#C>6-om;~^!(Hw7u1Nwy+k zLcyki4kETLlp0!3K^^2%Wks=l7ug42^gxKDlka)-aC+}f@2ma%c#X%5e^d)ljobj$ z0#qY6K(zqX$PG{}Ks9m$R0~jzry@7sj9&z&TSqV_O)c5h-Z%*w!xoB#>pN{(;b#0I z0D#l2Bj~ywUH5$-jbRG_g!z{q0amFS0KkXMR&*S1`>@%Xxi4#2rEXAu86NAp4#O~_ zKW;|(r8xgmBfu(kgL_3v*o8ws3$!1_QHpow-u z2yST~0|0eGg!r{Zn;}j*P2qAbLia-`7B>8#& zNhI5sLhwgCXQ@B8pP5BvN3Fb@x59v*^Hire>n0Dx`V7%?XFkRts2Jng>> z|6BvO`)t~w<2Yc9fl>X^hG%6Tl;j8e#cyJ#-$8$m=4U91<{)Ho8H0?MU z`RlbBT-OBvP)cDK1^~dEG&RR@G8+Z=@sAk8h_O4bgDC&pAh_2%K>0WDWC)|iz5yu6e{fmEpL}>3{<#Je3)kA10mVXi9*_QUa>f`u&x_iVzmr8; zKV-_A76|A4?mh^u1a(~prO8Ps1f_K02w5e_97E}7 zQAq6t*fan=l>DK{BG3vOu(Q1lLI`ZzhB;|!?M^4UwhruUZ%4;0HWSG53vGsc-%oX& zUrR2Lvxe{cxcvGR!0bEEugUNW82}(!k(raG*4{V?%t=#g+b1j80Hqku-) zDs=-&DaPbSNc`Wku%UMVYxj6Z)I%AA1u+w(5+nR8@TXr#7*zZC zvU?1}FjiI_5{Fgl28Lna%kD7-)jmG`3SUEBA0P_pAlUA7P^na+^Z57rRU^(-sZ`MJ zbfo*rWEPl~#bnXdQn1d>P_NZ8=}X#xWFj;xLCYY?^^l~jP!Qz#dJMwc`_MQCfYd^T zRU@9E;<{b|xDu>M5HjF&>j)+b=lo&;C|&@U)vLhsJOHatjd2eCx*3Lnor|)D!ZpT> zYdi_e$@2YWwh~-deZagL1sP-(1lO4&=S5IiK)6EWvU(NG^_SJFfM;pfl^&0C5kl_h z5gmn6djU?$h44klx?(_lv?Watg_Hp#Q6QxPoR`FkBV@D)r^opYEDh`06=ta+uMbcy pKs9m$R0~jz+yK=ARO8Vb@CQWgJ=%Ra%|QSF002ovPDHLkV1j9p7HI$g diff --git a/Resources/Textures/Clothing/OuterClothing/labcoat_chem.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/labcoat_chem.rsi/icon.png deleted file mode 100644 index bc63e64b5f36dfd905dabf1fd0b3c654afd416f6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 513 zcmV+c0{;DpP)=0mTcAS*6I+*| z9_lHmgRR33LN7EX6!f3;+;ckpo|n5*@ca7{@2L;(`t=r|1!w_UfTjS?%abhWOtK%acOin*dBtZ!>_a!?Azf_FWy0cjmn*!1VMs8-$^^(=^@jZ`*?~Yy=ThT}JuG z7tZ0FCFv;$FD&Zz{fh23+K>U)9?3r`S!rf zTB0c8SP1WbQ4g@07e!H>Wr2zkN zV+^BJypzsB7-FpjKq*D9*8^a*iUVVehpSR)2`=t0Ir{?#bD$d|r7T@cN(qlJoR2yC z2?xJ`Zh4QD0vvUpf~A9_?%Lk&_PqYEPWfy$^ZwWGm8sD|B&9?tRp?VnRc7d)0bm`i z*hHU4EQIil+Elf+VG%@`-9(Ku@cH~4Ap}}$MyohTuCM*r-T~4yE!t#rc}}00000NkvXXu0mjf D|C;pq diff --git a/Resources/Textures/Clothing/OuterClothing/labcoat_chem.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/labcoat_chem.rsi/meta.json deleted file mode 100644 index 117a2241ce..0000000000 --- a/Resources/Textures/Clothing/OuterClothing/labcoat_chem.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/d71760fe0c0e9ea3a9aa8e9e794daf7e7f892d8c/icons/inventory/suit/mob.dmi", "states": [{"name": "equipped-OUTERCLOTHING", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} diff --git a/Resources/Textures/Clothing/OuterClothing/labcoat_chem_open.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/labcoat_chem_open.rsi/equipped-OUTERCLOTHING.png deleted file mode 100644 index ea146b71abe1a0d920c6cd6712e616d0c3b03357..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1061 zcmV+=1ls$FP)c@zlT4HT?y~OUckFSlLXnDufV7 zupyIeT~lgkJQa0#enysM$M5;Yj}jd))`z8Y-qF?7lkc^Df9v8UUh)bDhonQw)KJ-%$)HgdV#nBD=Za@7+mx9APA=R2SEUA@#Rvni01iuSbF%VEfNI(J>3C^fD_x#7{g!Z z4)*{`j7jl783BU4PlR6i0-ZKyZUNi2(P;y{@&)=t+yqUL5alN#0Khh5GampTB5D4m zZh<}#JkJBb@4qBuzy1OMc%Fy;Sg0;U`NewDw+jD41BCm+dEfWpx-ROQr-|7=GfF={^yzuC5?sf^-B#YxLj$@K%*lX8l*+88<|Do`)(h)juEuftLxM4{`tQ*}vMto#&k9Ov2kg4O|L1EPgcoh>n|YLSIh4iNQv-1FLdFLwbzPmN9% zQBI-j9e6^P=}C}^fU}(w45@1kscU63UF+boU{OMs#yYUg7>Ec5mj#RW1Mtth9;SKF zG81f`pX)e{5l$@zl!`?ir!m4Q-63*w*qJ1|o5N1HuCjO%7-KVfWD}y&yMQ1SgYPGF zjXWo!W%{@YvQRQ0dezs}8WRUa3}BH?QCUcr$LBRkuKSHpmyWbQz_b9ngm?H81Mz;;s$$3rM0@D4qH$n7hX z7J!}o!IKG4wO7_gL)AVm^gBd^(RiGCT~-(wk%-W0wGy>Xr<3_;ashzdfF=2WHkkZB z0puOV0C&x1;`v&w_WuB37-qg+X+xSD0PLJD_Jr7w`dinEozgU{;>V-_C;%=E@C`1g Vqsd82*`WXc002ovPDHLkV1oL4#329x diff --git a/Resources/Textures/Clothing/OuterClothing/labcoat_chem_open.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/labcoat_chem_open.rsi/meta.json deleted file mode 100644 index 117a2241ce..0000000000 --- a/Resources/Textures/Clothing/OuterClothing/labcoat_chem_open.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/d71760fe0c0e9ea3a9aa8e9e794daf7e7f892d8c/icons/inventory/suit/mob.dmi", "states": [{"name": "equipped-OUTERCLOTHING", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} diff --git a/Resources/Textures/Clothing/OuterClothing/labcoat_cmo.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/labcoat_cmo.rsi/equipped-OUTERCLOTHING.png deleted file mode 100644 index 1f0f12d98976d3a05ad1bc7b39cb70dd975ef243..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1023 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEU_R#Q;uumf=WUdI{w)WYS~uAS z&SZxspFkCVmziE}MyAZkH?*D#e~8`nL^vcV+pR5S#fcd?p))2d^7CB9lAO*tuYkSk z`DVo%hH(P|NY&vJ->d#=@Wt63*6EewlZX;umzwnkEze>-o167 z`Rp4KXR4!iteL#~1DB|*ecV31sj97cYu_^-$VplpaPep5$B1e6W&8&l?fN?=j0~+^eMx&y*{}KZbeZN^`O^(Rji$GB>uhGHQN4_Vncz7S_C54m|!Kw(hA%NMPT5+4aA| z9>!-ky#KeTJNkR_j%mF`myeW~Jaf5xQR4E&8Q;0CZxWW|lK*J@q<2z6)7m5QH<@Ej zHS4#@4HWk;uO=e zn*ZjIhWXhOa+`b&l2a7-ilp^R9e6KT>CErrcbnxgXMbU6-O{}c**6&(Gehel+l4EA zMV9bt%=~>q+Dfi{J1|;q9eyfmKb_6%nce@hQcC$#ru7Kl0Y zo?*yhymA5$bFR6=uU-Lxp3BS;GxaC1S?xSJTjS~-28V~e6C{?WFEkAOTV0{>~R(b3Y_}x^+fYR#&%HTA6c99@Z~eUq*LeA0?ZU-IDEYV zWLkEbah}pT&enXqZxchPim1#~zFyX}8{!ZCytq|eU-$Is?PEDfpC5*;3IF)_x_ECU zHiJLfzd9ih@^_?#JX!-LWyo&2xtBkkgP4mqTpRuG($G#zo n!PJO(1#5t^F^E}quVH_@9nYS(>%^V{Gd6>#tDnm{r-UW|rKZ$R diff --git a/Resources/Textures/Clothing/OuterClothing/labcoat_cmo.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/labcoat_cmo.rsi/icon.png deleted file mode 100644 index 21c235b3c27be342bef3da1046d25ce791c896f5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 480 zcmV<60U!Q}P)wYQsS&;GqVS1d+L6nyPI4>4K$NJzvWsN>M{5qdt0Nsi>`igv20gA9iZ)g>$l)A@p*G zlBS|R9svOC)Z}u|xNhlsfMT)HT>qw`y*R&2l{H|eCWm_fxcspo%|8HEoYY>NSEW`L zQEw2@ll^!qJ*QDx;YMp|>aRKC&uJfzRPEAgC%3sJPs(lNNt^f5y(gAb;$IuQn WalZdj^)=A|0000WQU diff --git a/Resources/Textures/Clothing/OuterClothing/labcoat_cmo.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/labcoat_cmo.rsi/inhand-left.png deleted file mode 100644 index c6c7ded5024bec64fe05780a474824cd3a88f0a6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 469 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEV4UOW;uumf=k2Zieun}?*go(- z4wwWjG-C#Dp95R|E54VQBgVq;fVOFpzn-{D1x@ZqFG4*G9hc3*9b zF|oQ)KYhu=->NP4C(9Mu@98~faDjvBC5skkl$&%gKKS}<->1)|mul**`oh;ati5`q zYNN~E#}8h9i8`IHyXVE*=g~49mJAN(SXS|JZw(V(cKO)jlSlX8U;b&?<$HC@?x~+# zUK)_H@m+=hdlH|eut5&@@$lyiX1yFoYN}IJPP!X0Ft`|b%sKyP!-=GY&y~N_gh-1q zBs}H1V$Bz}u3=8+mCB{JHV8f4e4&g#;CZ<1@}2A@?#(;y6(-zJQ<6-0+7Ys7);rIHe5W|O$eVVg diff --git a/Resources/Textures/Clothing/OuterClothing/labcoat_cmo.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/labcoat_cmo.rsi/inhand-right.png deleted file mode 100644 index b0752e2df8930195421323f598e21a00d9e717f1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 465 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEV4UIU;uumf=j|UC{7V&xaUUVP7tkztZ$LV1QOSP)uMZgap5r^C z^@jIZU~bygqFdj#RZa|I4OmkvZLQvZ`qU=DrQ8CZ|DQ|gXrFew@^4>i+>2i)_g%02 z$*daQVAWXouSWj$K31=_3<?U{o=9y85}Sb4q9e E01$rALjV8( diff --git a/Resources/Textures/Clothing/OuterClothing/labcoat_cmo.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/labcoat_cmo.rsi/meta.json deleted file mode 100644 index 117a2241ce..0000000000 --- a/Resources/Textures/Clothing/OuterClothing/labcoat_cmo.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/d71760fe0c0e9ea3a9aa8e9e794daf7e7f892d8c/icons/inventory/suit/mob.dmi", "states": [{"name": "equipped-OUTERCLOTHING", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} diff --git a/Resources/Textures/Clothing/OuterClothing/labcoat_cmo_open.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/labcoat_cmo_open.rsi/equipped-OUTERCLOTHING.png deleted file mode 100644 index 3601b885d702fb07dc7b2ea9ba41348709c8eb48..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 954 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEU~cquaSW-L^LCbf{w)WIWAcmn zCU7P&n8j}t|E|34V$G}MEfNtollR`ry^?Wz$LyH(GM8QV8}~3I*nPd2ar?&xoOZg!uS(|@&2 zDf>BN`Q&Ww`wR~*-x4;vWfu2do~wTOsSLviOaHqY@7vD~+OO@DrFH`tQulqQOUIr*D?$@RQdm$tbF&w z$v!=u$r3k<(P9*PH19Qc_|+>g;oN2B6Kln9u-dpTkCJB4*dr+P`OD^ypT34nZ54F2 z`mt-p@=Z*fawg}_9@oq?)b~HQDJ)^-@<~jbg8#InI^rj++Oe*A_sOlM($$`~V%Eq{ zaI6%l*<0UG>{b5V^4!YVr@T*X`ntctYxCts3$fhhO^iuOTe@~FC{4+pw$1aDmgI!D z*}J@xPGxc!-Oh^Ce0e1z>%eRV^Ys3}zwu2Z_Q^zapSSo(*A*0*~N^5dr6orpbhmxr@1Sw(4!qkopW7xB@^%Z!RE_nsEc4Wv>Wz9?`q>hoQs!rUgOwfV4 z4XOEYMa1H}nS1T?-DB%YkdKE~^ch;O>Iy&sC;$Z@3*cK}zR;GrD7Vm-xo?HSTqgkh zaNBcnD&$*XZhLO2u2TTt3iHW)_Ot$cKa}#v>&bj31}^uCWx|t9M|Zk zf&DhYU_3%fnG{4T2U5zgTWcjM7os#yFuZk8^$=;Cd;=d^ zyU^%BN*QQewp}-k%K9h^2#u50F0{G=E?6bZucfI@6c=^L$G3ZeX8^b>35ft-o>rCn z>OyJ|>863}8%LP4Jy)vpe*pl+0~5^w{!q^j&~-=yTsc$W_sgNY{n7x1)vPvuRsf)w tbbKc8ffQu{;geD}i25;601BXQfG==YlD%RTWOM)k002ovPDHLkV1mOuvJLpL$+go*N$m%R@aD;zJ8D~1J32M5Y)WaXWn_9aiPgDj!ST?GyZm%= zxjME!^}6)ok56^x{nK}E@19l7s00IxjDt=szI-o3g5kjPzsZ_)^G){I%d*ej*^oH% z#=2`Ow&(7Nz5mSU8uwjUzG;&WY&bKQQ+itG!6G4*-tSADR^N8Kx(`S;>W4o1v1N077|wEXOt1ap-8$Lx6aSC83cHT`^~+{|t9Lk2eC3>JcY*X1 z&);GUeCl(}IOi>X;Jx*-8q6m^dXe(eqI+dpdoLOQ9iH<{DfF*nOkR5P@}Rts#E7(K zKb+JT+}rl?^S{Cn`BqoY&!nVl{8p3wyk)R#;#wV2Uk%CP6Y{j^2<`6b`jzuR~3%lYjNORpZO z+Ud0S^@Fdk)QtZ}7A5SM@yctp{VM1kSe-#oEX9wx0~UU}i&_kdEXjPKPPOK#1u z4{JD>vc}f1eGX@gy?v|siJ1-R&mNw#2)p>F@e2b(r_Z!Z)2Wr)SiVAuqo$zB_muzlI zTyt*FdWH$}w&c2gh;4OPb;D8+0WO|AefPbwZN-7UeGk>7tDA4nc((Yx)@pVBCpry< zg)e3P&TEV<5Yek7H44a hKhy2)>{61j|LDKPoX_tD#Q|f5!PC{xWt~$(69C)i$guzb diff --git a/Resources/Textures/Clothing/OuterClothing/labcoat_cmo_open.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/labcoat_cmo_open.rsi/meta.json deleted file mode 100644 index 117a2241ce..0000000000 --- a/Resources/Textures/Clothing/OuterClothing/labcoat_cmo_open.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/d71760fe0c0e9ea3a9aa8e9e794daf7e7f892d8c/icons/inventory/suit/mob.dmi", "states": [{"name": "equipped-OUTERCLOTHING", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} diff --git a/Resources/Textures/Clothing/OuterClothing/labcoat_medspec.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/labcoat_medspec.rsi/equipped-OUTERCLOTHING.png deleted file mode 100644 index dbdba0e60d34adf22611bf66c3f409a2f58ed90b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 848 zcmV-W1F!svP)sZK~lRHlrS>Pq^wRH3E4I&H3mDkYRilxbbE6*3ZX<$~hclc4q$ z(OBbU{V{8=M;G>yA_Xsa#_x`2y`Jg){rv}SnQzh#NaF>Nc0d|0fV2bBcmbpxkj4uj z?SM3QoG(w0>l6Useem4ljI{;Y000;VqwM%j?X&;6_G=3;J+9OF%LGD|0GzMK$H535 zgL{}R*QpB;rpI-PHgxb7d=V4}K(LbcrvA5;6)kx6oSHZDg znFFZtP$dBHsd)5sNf-S?8a-W7Is*Uz^Os33T$^CBUxbZ)RuZK58h#E{lKtu9ZBuoA z8~ddKnAE4UfcGQ~|2Ctb%05LOuWP?{1kBFE-YJf97fT}m0N@lyx!lkOcz%<8%42Y! z*{42LQMn4>i5_5hHKu3f%_{$!|AA5g-UrV;y5xQT@lbj)9LFe_4X#DwV6q>o#25vk zO04X&lHfQP=+a2P=YnxCy1MPqHjZ&&MSyNt zf7mEWP;H=3fR611SZ{_fNc0d|0 zfV2bBcmbpxkmlwEVD$$e^u?pget<4~VZRYF)$7_Wht*}#KjhvN+mz*50+cl==sg22 z(fbjo4?DGIiNMYQrb;j##~E>ne(|~wTpA@oQ@?;~+U`kU*9MWIegW5%^(5H%z>WY~ z3pDi$xW?3zpw}xou$IA{+Fw>z6sQ%{0kvF4QJSpuBmD3@VplUIn~(s_A| z@-cbM^$=|0Rm!OhHGUE->KAZ@-jmRj#sW0C|7_8F5}LpkfUfoWy5GfPv2LTxpE_7Y zfZiYp&~2XpwMCmYZO-L)gWMl%R;$t)eOF*l0wwDYVBq@$q#cmP3n1-)G+qE{2c)@q a0saAnc;GdQ6v~|d0000?)>oMFy4cjjIK`*?iEnsK$Ny8$o&2EYL50))j$hQ&$hYKs7b#Yx789enOh z>OS`nA9m1%Py!%x00_8^#L9aniIvNM+W?>q@hd>rJk6>WLToQGv2rQ4m)4wg9f)gH zQUG|(-auwFp3_xgHUm?;rzh}r?g6)Zrn*^BzJyWZvbq$b45V4rn%1R2)VNG_O+euY zXz>l)kwzJyczN!>^Jjpgvu9|&$2Yf|*~LhwEJV&2dKg-b$md>fcil^vX4Q{9Vi5qk zP{WezmS%U};s9L}ilehD0-b00Xc#z$bIJoB1T3v>^Zh002ovPDHLkV1i1Xt;7HT diff --git a/Resources/Textures/Clothing/OuterClothing/labcoat_medspec.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/labcoat_medspec.rsi/inhand-left.png deleted file mode 100644 index 47011c72e6369bf925be4cf768d2fe43050fc0c3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 341 zcmV-b0jmCqP)1pw6vpu{JxQQ@py1G000000001%shhU@ZTy$Kth%~s`zJ4}N%2!Wg#KXNw4Jd|e&NIM zweeHtmkOGIG%Gqu`m|r8c|Z2=W5v%AyaJ4Mx|~m=xy$(^W8F>S{{>(AX;#cS!)aFZ z$0skVF2>G#!7D(L4#`%M^znY&49C~nC%Zo8kZiS2b|IHH5+woN^Xpr*odW;>00000 z006)}8Qww8{l+Hbf^O+&zrf4W^FsTo=(c@j#21!_eh)@eIt_n`~>BQ&QKP`oUIBGZ*0|ED;B-WI-pT_;y=5Xu~v;; z`YLlFpot*xr`$Dk_sWmgj%GgVT9von;;h@}`~2!%tI8^Go``$XcfEIS&&D~)pZ7Ag z1U^!Ex%kf;+mz(p`$LOA#jkDHlT%_jzp8lpXV1!;I@3#ByPs@dD(`l(zdED)kVfYA z{5ffPSx@8EGI(0CS$kgkefxE6`I~O%4f)3M&2#w<)_u7-o7JG-Uq9||CB!X2a?Qcx z^B(F>Uc1roZrbAatusOyvd#E@f3T~X@p)41k8=5cl_zcLUX=B|l{pyy>}PLe^nn}q pwimP5&5CWXI6EhwU7aD}1^3SVOJ;eW{c{v#s;8@;%Q~loCII{cnNr44 ze^-~`unK(@^5oEkgP$%gm^w{P?(IQQUb78B4=)~&^qm>P%E}^RyYjH5!QK;|vd7Ej z?7MqZ{>q;}b-zFTd2@vC-=9Cc!Oyt2GG^5ps=!m@h1X+z&V8$9>jcz;od98#{sjFSftmeroo^!ZS@@bJp4H=bu@3iaS$m$({|D z%(a?se7o(-uswC_K~w!dUzHBGi6ktZs9-Abpp4CAn`*O(=q*Ws`IA?SLr`-KOA=8;Pd%nDy{&OrGXFz>SyqD^>bP0l+XkK%@cJ@ diff --git a/Resources/Textures/Clothing/OuterClothing/labcoat_medspec_open.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/labcoat_medspec_open.rsi/icon.png deleted file mode 100644 index b21fb4cc4b93f7adf9b6fd36badf410dacb947ba..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 356 zcmV-q0h|7bP)DZJN=Hd z5$-*3Aw~g^H~_fPK(xL!M56Vra-{(PY=}XCy7(pe>y0Hp2ZB`t*W|bHY>Rh|PXbV_ zzN-#s3%FSroq?dVM3JWe)EOx96hUc;v2y~zYAAqKw1M>;bEFNF%{W&Y_&GJdnGA3= zccL!z{;}zujQo^^z_fbf0cH`>-nX}a-c>!~WdL&+s}oYCtIUG z3*KQ}c+^qGrrEvVMd+@|hIvbaU#2Wj@N-(&{JrC{Fn8Tmm7}lzv&&BUHua0@+AcGCMNrR~&R{i|we!)wk@{AX(`(;dQ@dIEuiez` z|9=7N^?T+s2u=(&skEw7?Mu5pBh+M~#jKx^H)I`!7Kpvh-7uFK;t~di1NIkxE%bg{ z@TAzWcK2J!h;z&3YrQYrN|28^{jAx)p`%)e?X>&tGyZcJrmL+wsICz5S)}2A0b}^- VzD=Lf-%kY@vd$@?2>?<%jV1s9 diff --git a/Resources/Textures/Clothing/OuterClothing/labcoat_medspec_open.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/labcoat_medspec_open.rsi/inhand-right.png deleted file mode 100644 index 6823de193f712f6b6f12bb50eddce4b113858515..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 325 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEVC3<1aSW-L^Y)e@*C7LuV;|eq zKeG6Vss!?hFtW`tyH*^Cc0v_{lF_S%5}? zz`xkbWs0Wf=5Ew8$t|z%DZThB{c-2Aw@z=XFZTD8F8o$&sCeX6&slz^8}IlXU7oz~ zZ+5l1_I>B9p#PWoR@CZWKV4~1zIV>jZ-2jQ{av{JO8y$|S=Y+yJ?1Tx$vj*2FWCBf zCVNN6n$?v>b9Se0-En=-x@Vi#h+W*O&m6G&?79{9{18_#Ff_zhTrbym-DE2E`9_Y8 zZHp&k#^%C1?fMs&F!cTVvWfq{x!mq!JMT+XreERmdKI;Vst0Mgcs2LJ#7 diff --git a/Resources/Textures/Clothing/OuterClothing/labcoat_medspec_open.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/labcoat_medspec_open.rsi/meta.json deleted file mode 100644 index 117a2241ce..0000000000 --- a/Resources/Textures/Clothing/OuterClothing/labcoat_medspec_open.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/d71760fe0c0e9ea3a9aa8e9e794daf7e7f892d8c/icons/inventory/suit/mob.dmi", "states": [{"name": "equipped-OUTERCLOTHING", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} diff --git a/Resources/Textures/Clothing/OuterClothing/labcoat_open.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/labcoat_open.rsi/equipped-OUTERCLOTHING.png deleted file mode 100644 index e87ad5f98a71d8e7e554c9e4e3e0bd19e1b69840..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 913 zcmV;C18)3@P)El+iif#~u8I33cpc7f=SQbZ^3Hdj&lie#+C z81OC&b2;`WS;1?^GyCmddnWqx^Ed99Z`=-W69nLPfSVuyw*%Y+0k|FDCJ4ao05{)l zZeEU7wNeVR-85=nn-5;iSC zA)15AT@#p!`3ILh4MT{_35ZDO#5`+_1DGzNdZWGQobk(q-l!z;H6XDq9_1-w1kgd&}Cm6 zl^Y7tR90*4WdCdrs6HQTc6)OMZZq3WqoOFh^@1+@R9EvpQfOA5Cdl{q_v`HgfDeVqfi_u| zd24wWM5{OS#d<5OweH*pXwNhMDf<8p#<;8fFa0jyW1_Vd;OX(Pv)r`{USeMxD}k$h ztCu0A)JfI*%(|DLl)`$m0kAJPmATlr5&-zvY0*qSAH3AF-87o*rqMj_-W>UcHaots zS_c0|zVsyMgCGF61Kb1wxEZ4sdh#0$6_$ z0`}wdz;$B*r=Sp>Yi07Ypa-T)Yan zZ4sa6$;C6tUyBFXu%y8bW;~CSv00000NkvXXu0mjf54X3D diff --git a/Resources/Textures/Clothing/OuterClothing/labcoat_open.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/labcoat_open.rsi/icon.png deleted file mode 100644 index df3e924e0654733c11cbcb98c8378e403155058e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 385 zcmV-{0e=38P)-`33`IZb=yBtMdM5=OARXoaw45r(pydF#&Qf083RFqD!@y@a_0VnM2WX8WU z(nwFTtReY$ea9p9^w8`PAOb{y2oMS|892x3UD)ivL)WBUWy$&>DU2OTLcXs~RB?qZiDV46v3&gec>nt3qI8k^pe~gI zwst$qdTP`6*ViVT`tv~SfUiMAG=up;hCIeQKKB~t-(iZ0cyDh0`BrB6oSlEfEScZ2 z)|cHi*YcaD8z>T;aD+lyVVr~ejN!wWQR`=T3**6G*Y(%h8Oxoh77jcxhHjx*<{db_J80x!uI+Pr@s_;|mG1MBontpdCZcg`{} z2rO!xvNl}!%a72~HUZ!KCaX&&jEb}Nc?Ud--ph8m@33(|jJR|M)CDr(zak)hp)t&HbmCgcWD$Gu5OtO3rV}{WCq*;gncv<%W3~bIOiK zM#?FqW`F)TeTBMr=lXj>W_wHysIG0R$$#_1|9FG@y6I0J-rhNH)w;_;w}05}cb~`U zb@SVL8`r>`y-WA#X6aO!sNHljQ|NoX z`(CYox!WbVly&dIUuwRgb3K1|9B9xoRFt~%b*aB?e0Aft6+5z`{qE~6e_+D)qWAjd z#GFqxtr}hd*TtXfZaR6Mc@B?6wel6VaNj3}32*l0b+6Xj#Q2Qkv>`i#opjCmqNlp4 zMe8MkR-TkK=4ra3|3Y)w^mTnd>m5X$Y%e({1~j&4c1hK6>?>*c1xk46-kfayfIqBc Wy_h@iKYn29XYh3Ob6Mw<&;$UIOlSH4 diff --git a/Resources/Textures/Clothing/OuterClothing/leather_jacket.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/leather_jacket.rsi/icon.png deleted file mode 100644 index 3df7c0f637ec79b91aec3778d24077943cce14eb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 345 zcmV-f0jBZt~5JkVE9ATAWmD&w02QU?P;WFvC3l%;9?KafNipO2_hg(7P4ig}<(0ahsjpFE80GPT_Xg&C} z9tH@fN>S{4ulJh2O|A8CQ-?`1b%;KW&LN?WaZ&00000NkvXXu0mjfuVtDr diff --git a/Resources/Textures/Clothing/OuterClothing/leather_jacket.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/leather_jacket.rsi/inhand-left.png deleted file mode 100644 index e2c328dc2dc3cb48150234ff7fb2d02d93104eb8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 382 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEV086#aSW-L^Y)f))?ot~)(_V& z2}^9^ST7{e%&vdaX&YZ$E$jQ8aob~*MCM%0*wDIefnSr#m&5Cpn5n%tzsbb?GIA38 ze?}!JSk(UM%YEh_T~k^=Uw{6&dQ+j@@>e(f9~3Ehr`%-w{a1Taj&ON``6QMLrR>W? zI2i&~xm=eOYrSBymbu~a$G5NST3;}l_`cpEx9-*!xitSpnNjIyI##V(7}B|FRpOZ$ zIxQ<0Jt8d>i@yBjbb7+jaQgTBZOv0!jni7T3U859aN%3a9$|fO#>eZoUs_)bZ;0Pk zd^f-n13+%#V8>X)+d$8`P1w*+07PiKY7Y}P0 Ys>(`hWzTXf0fsAsr>mdKI;Vst0M&Y@g#Z8m diff --git a/Resources/Textures/Clothing/OuterClothing/leather_jacket.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/leather_jacket.rsi/inhand-right.png deleted file mode 100644 index e3e5da17ea99e6007df56a24b18b878e95205e11..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 380 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEV089$aSW-L^Y+%pu4V%nwh!<7 zs+ksc@A%iMU{O-2ohKVp%lduaz1-T)qJ;313l!H+@M{X%x;L)h`1*VEnFjEZJ@s4Dk-ati4;M1HOga78 zmf_Bx#*JnC>lxNczgOq~qtLL+&UQ23exC2O)859t=XueoVP5{ZsiVWDfbrv%vK`v4 Sa!tTcW$<+Mb6Mw<&;$VB^`K_} diff --git a/Resources/Textures/Clothing/OuterClothing/leather_jacket.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/leather_jacket.rsi/meta.json deleted file mode 100644 index 117a2241ce..0000000000 --- a/Resources/Textures/Clothing/OuterClothing/leather_jacket.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/d71760fe0c0e9ea3a9aa8e9e794daf7e7f892d8c/icons/inventory/suit/mob.dmi", "states": [{"name": "equipped-OUTERCLOTHING", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} diff --git a/Resources/Textures/Clothing/OuterClothing/magusblue.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/magusblue.rsi/meta.json deleted file mode 100644 index 117a2241ce..0000000000 --- a/Resources/Textures/Clothing/OuterClothing/magusblue.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/d71760fe0c0e9ea3a9aa8e9e794daf7e7f892d8c/icons/inventory/suit/mob.dmi", "states": [{"name": "equipped-OUTERCLOTHING", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} diff --git a/Resources/Textures/Clothing/OuterClothing/magusred.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/magusred.rsi/meta.json deleted file mode 100644 index 117a2241ce..0000000000 --- a/Resources/Textures/Clothing/OuterClothing/magusred.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/d71760fe0c0e9ea3a9aa8e9e794daf7e7f892d8c/icons/inventory/suit/mob.dmi", "states": [{"name": "equipped-OUTERCLOTHING", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} diff --git a/Resources/Textures/Clothing/OuterClothing/mercwebvest.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/mercwebvest.rsi/meta.json deleted file mode 100644 index 117a2241ce..0000000000 --- a/Resources/Textures/Clothing/OuterClothing/mercwebvest.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/d71760fe0c0e9ea3a9aa8e9e794daf7e7f892d8c/icons/inventory/suit/mob.dmi", "states": [{"name": "equipped-OUTERCLOTHING", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} diff --git a/Resources/Textures/Clothing/OuterClothing/monkeysuit.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/monkeysuit.rsi/meta.json deleted file mode 100644 index 117a2241ce..0000000000 --- a/Resources/Textures/Clothing/OuterClothing/monkeysuit.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/d71760fe0c0e9ea3a9aa8e9e794daf7e7f892d8c/icons/inventory/suit/mob.dmi", "states": [{"name": "equipped-OUTERCLOTHING", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} diff --git a/Resources/Textures/Clothing/OuterClothing/pirate.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/pirate.rsi/meta.json deleted file mode 100644 index 117a2241ce..0000000000 --- a/Resources/Textures/Clothing/OuterClothing/pirate.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/d71760fe0c0e9ea3a9aa8e9e794daf7e7f892d8c/icons/inventory/suit/mob.dmi", "states": [{"name": "equipped-OUTERCLOTHING", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} diff --git a/Resources/Textures/Clothing/OuterClothing/poncho.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/poncho.rsi/meta.json deleted file mode 100644 index 117a2241ce..0000000000 --- a/Resources/Textures/Clothing/OuterClothing/poncho.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/d71760fe0c0e9ea3a9aa8e9e794daf7e7f892d8c/icons/inventory/suit/mob.dmi", "states": [{"name": "equipped-OUTERCLOTHING", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} diff --git a/Resources/Textures/Clothing/OuterClothing/qm_coat.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/qm_coat.rsi/equipped-OUTERCLOTHING.png deleted file mode 100644 index eb4033ec71a3ee5d13da1980473a433b93af9ccc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1298 zcmV+t1?~EYP)V*d7EzwE+QGu8rF6B@u;0Bb@6SPNiHXaH*gthx0Dd`^2oPD?t!eD??E^?1-cety^K zSC(Hnq>fM30@e=J9bz?*(~=z`a$3?MRs(AX>wU!qfm^>Qj6oE}FgrET`rTemgJ%PB zTGEju35% zaQoEphqi#VgLNm9$zYdX!rl=li$9o7|N$+S9y#SQ9d;x3S-Ex9CE$Rxeo2|+i{=1 zYlffrLk(~{J(t<3iLP@NS2w$k7fMynB52~fhyvfU70|{XI1%zXvC&i&-$pe>E)CPEc1xAS+k3bao)}I`Y_^vCE7NDtW5Yf8imkI06h-OK=oMe1fUfKKU>L}z zCt=htdS;AA$;|Qw%BLob`USG-NqjJj)=m*xs5-%Ey8_w#3o;kMF{#3cPGCMEqEM=$ z*T^s`G*v~6nEyV2OTa&9#8V)y=My*xnI=QKx(QfREJJ)rrQ_H}{?E=I3b9R24sc)l7~3_~3UA4?dOA zW~ly?Q(-^jeLtuSxXETdh?(V$zGbu;sawF)H}{?P-?LK_H=Y{TR29UsF*`NUrH8gI z>OMe@M_Ym9c;wn!RQxb)S76ke6EHa*>9}#)(a2XHAjc!EZ7J@}-{dgp#&Tn~>!F1@ zJ>ILA6@@V-%i&(8(=La@{Q;~6uqHHswE)(H2Cx>unpAt55Xb*1B?`qrhh%c-;8LMTg@98B2e;6*i(~x&jygz}I`#uNcF`#W{Q_>1A+ack zU?Bkug#$w~2+fiXMO0$-MHDIIws-%#+>iI}4#IuCeBzXLcGBt*Km-s0{7Zm}mhr>* z4+>BoR(*24K(UIJ@yYd29#%s`FauPyj4w$N@})Y+_0}|UJ>*MuNRkx#CYS)q!>X@j zlSoq=gJun)z_00|z+=#?Ax&*4*<`4j*a=V`R()BP(Tx?*n-G+2a$}s5O`d?Va9E1$c`3r>Gg-o|Nc|-qzF5Y%< z!)10U9qM2r4J6!QySxsP!&B5I*HEj^XL^_Cm-qc8d6)ME5fKp)5fKp)5&55Nt$PB$ zGUzr+5d?vWqKIcVKk{fk;?hRE z@m$Bm>4L-4WNXlE8r!Pz=IGPX&+=Tyv|Bf5w;D`m=S*j3h4MvIvI%}KvwNj-?N$TZ zs?%;YRy?E2u2)es|NjBD;}hZ%`EPIj{HJ;%A|fIpA|fIpA|fJX{k8W4mXRNp=Erbl zYE*tSRu#{6jP>w24|eTKhp9zvYy$wS5AQfK_xZB(q;!pqZNRwRq1|ebg+q3e_oeG> zYyaGL;T|e82|tP07*qoM6N<$f(|MFumAu6 diff --git a/Resources/Textures/Clothing/OuterClothing/qm_coat.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/qm_coat.rsi/inhand-right.png deleted file mode 100644 index 099fd3fe4aedbcc3cfffa492f2d1d8f3601b09fd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 548 zcmV+<0^9wGP)nyr8-(mw^!+C35aQ{((=FctL_|bHL_|bHMD#yd zy6ph7(rMZzx!yYpGr#jr+Mp1^BroVRZ6ky*Y0oVxA%uzC79O_WA#z)ol>bHnq?AS< z_TX9-0Dx;%pbvYHQkJ3!Qc4p90bbuf$J1dS?;rg_5Coa|uN0u`*G<^pfzmOQjsXBC z%d1d2M%dp$*RL;h5t97TU>^XW^bi0L4fZqh-&g^I({MEV0I zS9&-xf9mGY_3K9I7<)(IQm1Jf*Q(&-!Ozlcm|eeaJf{ZFsp9P75@#2`GxMizg5x5$ zReZuZ@SG}KYZ;zXo%r0{w87;62Y`F(8&t8`W=`q&-^^c*?um$qh=_=Yh=_=Yh;p~P z#v6@gYMWg*wKbN-b81+5wN+%6Tal{(&)aQdKikBYPXaHRUeTH6Dz!H_O=I{2weRP6 z^1w##;H2nGbCvrS_AeQW@XdhkRP)mTwxv^(X($s- ziK+D?lL^sDQYQkX(;7*rn$)KFF~kns+DUGWLW~<2QnSdHpcMjz?H`wWcNazOUB#V= zJpb(7bMKz_InTN0eb1ivHT3TGa4*9cY679glmMY75Nb>b5NZOU#*_e|CJ<`e^8!o@ zH36-7`odPP|MxX()~MGtH8laxKELqS2Ce;S7GTS{OfNupcR#M=LVj$_RgJthQsr$p z{RS~HkpR5#^|v(>&}w`0ssjb3^7waqyn4$zW>@u?4F5U3V&Vq6zw@(loBFpU(8+N&P<>&Hu zsl!EXtbPFi>aYF{>3xX{O-7ut4FEj(WDEv_0qcF!`DX5Q{#n(_-o-I^0h^^8fESOr zSa|UVIGts{GrH@!+_>fTa!x049@( z6LtNhCP}=oRvu)F2R_P)1v=QiwtMtV>E=YUlkcPzuxQaDmO31K{BZ#cj&EmN0mc$2 zt?1{uUqbxoY!CE`>?{xi-T-9@=pis3@&>aFR6`ODl5lX6eO|>8o1z4M_1g;^I@Cd5 z?`*1{y23!Os5#i{OHA&bD7@VMe;Ie@xa#}_T4-Gmd{b^4Z)f>Lbz?|7u677QOW#i^SM0^@^W?KWEyVFpd zAjnHD(Jqi^7XmhCEuO&Vv_P`}4X58AJ=4i7(e{FF6X%=9)U1IoiNgcE)O29f)$C8*7WW)FV2*Aqgvv}rr^VplT+wgef&%Dq5 zqMd{pvLEO_`lzmcH7@~Iav>|T(^$6}@>3+jA{O&%$}vM&#A5POB-X8lmDy>yk_&Ya z(2B^eV%*nfsS)Sf^Q!|so0>)3*JtVWL7D}K>?&rkt&SECq%R93kiJazz=Lgdlja2D zW5GI92S8_Y9r3Zg_ReOx-8$rJ*9y%`AU@W&*^t}>5Rlwpo+01YOF$3&J-xr3GiPt! zt_8ZB;A9ZciU;u+xJlpRwQGgut?-u>_x!2wlmMY75Nb>b5NZOU#*_e|CJ<^&2@q-m zp~jQ|p(YS&ObHOok8+OYd$)eJV^U6kgTdC%c6f7+<_E<`w*c$wGrZB}c3N9o0}L0v z|HNGrM6snzL~Cm+(dKs6*JtSFpzH7O`uYrSeu|`?00ER#<}f@wOhQ5e;o;#tJ@2QJ zmKXtezI~5(XlMwx+f7(l7~Ap=0`g(Zd;frndMB@@9MjA}^BdqlcqI{0TH$0{-a*O= zYjC^W2!f!N(o6=noXhkIf`HrYrmV1rZFvVNt&k6AO;G~r%jEM)J#T`pC9q&VYF?nE zGKZL$NNg54GgMYsgD8p<^ldZ60}D0u;pOJOdBr;#w@ zDmDugervnl?sTK{;q3ucDVtaMQepmSdackUz$c%|36b);$LQ(l0emO5O0ICSQG8(I z4YdkAJw24yJ;p$9Jcm<{PsgjVz?C-uM? z+rYZj4YYWCnW>V>9I~=fc_cfV`hPEC&*AMDjoRl`^OGYZBV=V|vDD#UdNqc;!EA%s zY^J0#hZc`-Y3R+(>4DVYqWHi@0Cn(YvzffXY{T?w3`-pjva+%m85x<<0j@D|mvfELn@|j+Z;bh%DqNAfV_orEaxzTMm zZTI}=1R%%Y!|#f;cUmVZxdcqZa5&j&@y%Me1-N9RX)!!)VBJalt(k=+kBR zcF@@rU%+@5<}1 zVC{QF-iMOjLAZYe{tM0oc>S+N^39iY@d)ZbL}~|f97If$e{MF^2h+`ML9rPz&4@Wp z<`fKc7fD%T!w^4^uRGb%707*qoM6N<$f{^!X1w3)~)`EDMfoIR9x7-N5#r)y5m65!1T^&zLJkJ4ZV&5jnp$=J!;9}_cW1tx_xZk=omo@#eT3_j z`C8p?0B!(o0B!()TSf!B=e-KR_Vx}gx1ZY6xK!L9jT15k5_4D(ma(E<1M zW~y!Sk(gdzFbT*iLbXk%qtC2A%NwrqRRCZrHb&oQGoWVkuL6UeKw=91j_Vt3W-2yz zqB)%K71$s8D7V{H13{o?Xookiq2MsvcvPa-Cm}B<-EHkWno9PZ_8B3PWf_~67}6{O;klZ8czi5WGvB{yPtA27TVYJ=|m-ee`BX8p1* z$oel>Sd@;$T{=Mj!LS05ote*ln^Rw8d3PbTz(aOsep1|}1B9jrsP#I?5LN-T0;{(@ z02HOi$PiYk^*Tt~3Y^8?I6$>cW`9lAO$CdS{Jn8z=Msx>f9>d}dT9Wfiqd01V&l1} z44;NS7af4i#Ef)!?@08$gKC?k$F<}d2QXX#m)lQ$lZUoOXswb-NiF4L)elojYALN% zGHs1e-{isN_8WIU3qaadfZgyoD-o!zgeQex0QFj1sUB9l;qj|mgax_iN3y)EK5Omr zvU+b76YWN2cntu2{+0}+X?E`a?M7sHE50gS`%me$1N;F96#_DTZD$hz0000M%P z_TeJp*pwAtSILo5^5Pi9c3~39k<%yP*rnft+Xi>?g$1c~&c0d>HqZydQzrRbntUz| zQ2ZR8G8yPQJ$|QUmcel!TUi(yx=!nZcMQd^(HVfjaUVM^v$agO_I9&bNhA`owiNvB z$vZZZNF-!8n=R`J7IqGlj(}G=d-7sQjv%4lQh#9?Vx#5%mt!OMyA0m1rs)j0-(7m> zO|G5{y0#RQyKNWQ{C0&qm%p%n@SS^RrlJM-nlJTRnxXrNH@RN$V$h=x8E7;3u{}>d z07u!%;un_T?P{>tf7F$!afTk-SP9F_gnMphCXkJla7AZ$V-&@`nV2m-w7-Nhv z#u#Iaoh9c6oj^Y%5(xr;NF;)MJ`VuUb^UO)PED$`vjifcP$rWh5(<$}XlhcW{-xYI z!hn;%9q%lGgn{n)>*@B(BorsM2hr1q7-WEi(asmJV!$fio{;_TNS%#|abRXnMQf{! z)>at+oZp!_6%*tAFXALNeG8bLm9TCC$>cQ*KUhKXr60inFg+__)3@;V0h*>snx@fO zN&fAh7Y0bvG-{gWf4u^1_R0m?Ti~E)T|W$Z8ua90yS=y!Bwl;xgDDKqy)gx!R?7$m ztiGW~?)kfRu9alEGjb7)?^kg9@;B7J?&7Xm_0$Axx7uyrCE)%u_gc@pb?$wx0wW53 zY!uN70DESC67848W#Hqg?6e<`RgX46y%M5A*4j6PET~=yd1CL|>Xnd_b7$l?t^oOdoy?02jQ0Dw31Du8X&8esq*dY6$`l-_|> j<|TUZ^r~m~KV!fzw=*cd_=^0U00000NkvXXu0mjfBz!La diff --git a/Resources/Textures/Clothing/OuterClothing/radsuit.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/radsuit.rsi/meta.json deleted file mode 100644 index 117a2241ce..0000000000 --- a/Resources/Textures/Clothing/OuterClothing/radsuit.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/d71760fe0c0e9ea3a9aa8e9e794daf7e7f892d8c/icons/inventory/suit/mob.dmi", "states": [{"name": "equipped-OUTERCLOTHING", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} diff --git a/Resources/Textures/Clothing/OuterClothing/reactive.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/reactive.rsi/equipped-OUTERCLOTHING.png deleted file mode 100644 index 2491e558eb8501edb3a7d9469f6492a58e82ecc5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2560 zcmbtWdpK148eXE3wo8&B#)OJ!mu|9$tYj)q8x@%zGEdim9zqO+#u+ zB{Sq!X=W;FbYVmxgP|3Z1~Y@XU+l#``>%8MANx6fto5zuS-j?`%(a z89(&oZdY!zgISsSwgsmZTl{`9!1@}i>-;n4b*I~~=OpLdBKQ4}zJ}d1KZ}2vY4foE z5@NZtGqq}Kb)gV#nU}fzNWe1Q&0SRCe02+PoUQgpM~unSz4zba9wQ;rrMEnL2Y2y^ zMOQa3{bbE1W;6x;0OY&|E=K>Cu?*Fs%&+63PQ=$VkID}1_;*S!MCv#vtzWLbke6q| zsnuXwCQee?!2EbG%b-FpAN#5=!>n)aQ|@)x%;qzY#3PZI7&mq2VNF;6(Qd;t4bBDc zPKwUHRr&h*K8_p6lvZ&lsHo)R&+XEHi2U>ppwG(c`8xsEk=k7AWuRTR!jTpT;Y-YQ zlKxXQy=A~RG#Q({Ip=4_nhhIf19@jg-;V|d2Rq%Zwv$QWVCP;r#6P(y-Luki0fn7@<=9|6AS*P$(SJEiKe@V~p)Ne!%EqRlsp;%t;jq_Ku>QrS$;A)^ z?F|c?1tcUUI#`%Q#kmu%;fv#}Xfzs-QBtz(0)?`1)aPCVXnDSP-zrDT^GIcSRVSmj z0ON3KVBkPV*`Cu|>_)GC)jx1_#Z*MwOp}!OQ~0aZ&opoPFWN zJ2$&iUrkP~fAHx+6rSoMSJr#atpF9P7oC5s(s7U1$&FZwr%3(zMUlc!SUrGBr54(n z@;bpBtdJNWv*sZ2yrM}^*Sz#n(|V7ztFzOw#E zETTiCGuQ}{qmh{g1Rb3}$2fZnAj8G8&SBgV22-D{)y&cnhYJ)g=9Re2_xu=lwaSTU zkW!=D1#_$+ZM?Mo7Z|ES#%J2k4zxi1F7ocAG*%QG0jO9jwiibl>2pCrmtD28-sHKK z@`#{J>r?4=-9Oz{KyG*^oXZQvVv!<~^}(a6?QaAVh2`YmLcJtfT$N11W~R-XPtGfj zBfsmmY*f19=iUo(c?<)dW3%b(Hqrjn)CHZL9pY?l!DhxDmqm@x@er3Qj_lYP4TfG$ zUViYJK=0Z+V4*1GQRvB4SuV1?spgt+snPzm0&>jQoH5Luy*+&D^Hq4ya`K%x9J{AJE5cdJteDdT$)w%#*^16BN{a%4Koa{#4VXHMIn(jtPlj@G+u~U z>q@xf_qA1)fF{r`*R~xOZgW@=6r0^j&^@!x!vv$}x&_z%^yIsT5`8SSO37sP?m|2Z zI}Tn_Z4tpzvH$T3rH-Eex}eL7kJ3Q&Gb!*QpmN>V-X;m6lyIFUh{KS^pa2 zpi)W^ez{+K_zWa3tAoNfL=N#U3juSr1a*cRIY6~r*_YY?Gk~NyWH_!7rr3N8JOb(( zZOw9rDv@H6X4~v^o$>4p7>vxGnXefM=I=>q#LSNr(N+2cG2P@jNwevx6sj)~YLeI4 z=7h?B0@M=eHx8p<)r3Hxe=*w2z~O@xV4kbD^)Q+{7 zz=-({xV;^W@AbU>NOxSTz|mtLAs9EbiqA)D2kkxRDE?ogafCx`yN}`<&kUC?il_(C ztC9rWQEP&X;XLKvx+&zvy#kTSwtpw6t1%i&)EeP?(vbsPFbdSMZp{=XaC}U%sjfwl z5BB>$8&|E4lkV=Sq-hm>DWTq|1A{cvjE~N9R4Q9umOHsq@7`$Xw7N=4MB*V8{viQw z90|-!raJ9TE(fcnG&z)!*J@OC!w-7g6=Ki zWzT+)MN}van)p#02Dwt+ZrXA;x0|F%@;au?!_VMe+O83z4I)9^0iRJ0 zBRg;cYcx#&AqU%w=p7QFr^#D|;{O;S5Iwa#qgAw!G&DK=KpD|&b-I>F^4^jm;J5N_ z{ic?1Ruwfgie2a|<^Vj?VD5c$o4UJi?!_+3ROo`(;r5!r%X+m=k~u5`8G2$%jiF z@T-2x)q@M(4w9G&*Fg}Kfr0GJ{`aqcdLJ<6n*_X&y^Q6mne$m+T>oZCm_7+N?@u5T z=zsQ93hfYlpVoCC8h#`m0sbOmiRT8uNeWT%aMpksEUw{wowq;AAo4iQ9Kp5PI~6l; zBT84KRj4yNDBOCVhzFw_)YI`zZmM-&Ny2naq6|uX$KY;ny&?oY%GyDfD-~jq`^rM) z{hC~@B873^5hhzGsLQp(+#yylnN1`OAcuC8+QLwvT8mM5bf?n`lDu8bWYM(>uX&-3 zq_omo@Cgo#&-#)R09!q*#qk3R;LH?C;HAVi!_V#SW}#Zodhf;SF<+8?gf~0De`_Fy IzGZ*rAI0=5%K!iX diff --git a/Resources/Textures/Clothing/OuterClothing/reactive.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/reactive.rsi/icon.png deleted file mode 100644 index 411c7ef0f367c89d4fafbbce5593ae237abf8a99..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 477 zcmV<30V4j1P)kFDM9|t7H@ue}Y56-ypaJQ3P=)7GiLT zfl{#GVh5GD*!WEotrQ_IWXO9j=R7&*?SY_gQv$wE-EKV_iSNrDN==?)oK9{Yovv@&cB*QK zB*`ty!gXB$bX`Xkf`z@MIEg9*x~>D@x-OPwVb+RKl1lWffTn3UjzbuRu~+qdR3R7{ z9Yqy_s_(~VVHn~#4w|O*3Js)~f!UqK$TUp=#>0@c^=VFvs~lcw%pL4-2s_(OJ7->WO3_wcBcA-G2REoWAVCJO-X_a~r zB~jlO(O1FC<#PO_P5LWx1;* zn64!^`6LP~-#P0gTx*@PaJHPn?RCXXa~57dx$n@MBWxF$|HMw=j0$=ck*ifH-*NcB zio8Te*N`Vjp=@NXX(^1ebG0Y>g#8h z8~zZ>@VfkERizRV$eMAk@iD8HCS${{b%E1T*Kh2pGBI10Dsu8~PTSeE;cy&27nKv^xLs*T1&Xd50yM zSFK|E|F!Y`AK$s3wU?$adjPdCs`v))w9B@b5@a<0{Oi>}?JcfFP2I+6xaR)??|+k3 zFKmg?%b)sEFX_C$3j&z%L}g!$a^ISMkrjf@tWg!&pIGV`*1y{%z!A&!`0COJ-qUIs_IHXiiB4)2TWhFt zRAb2^LB4w_g6Z#+WD|F9TpXyvf9DK8%eNPgW#rHI{QDJ<_kZuP>@@E!j2BNZxJV21 z@;JblXIJw(JidFdU{%Q-NiEOYn~womS9h8G^19?Tfm7JYVE6vxKi$p6tZlZgT$Raj z*kG%m+~2CbeSiP{t+;#js_40M=Yn3UOEI+tFTI;5&LGzEJn`+_yz;mEr?gepI&m~9 zG(4~TD8$0Zp}6wPeBJ{EtG3+DOE!>TVDMTh6ykgM;Y#0|i?XDE9EJn~i3NA_(!~yK z+PCgC$6+FBd4gY_Wq3fv9ufKLp3LUro+>}?$64O^-9Joi1gXzofT9IzozWFDY z@8^sAd!*Q5ZF=Bg0|tgfiDQp>E8a|7!`*j0`N#3NXT=Bh{Ija~DmFTzGs2$u3 zRh~q0q^>=0%W~sje_!9D*6=T?DQorh+bYb`H2bZcQ}=nV%Q`>H=8N!o#{c1Qe+4Em zc9SqR%~hSp9b_wB!F9bfnYr@gv-f;@`z&_s*c0=5a zRkh<*dBmdux4mtxPYGUgNmqm`=IMq#5?;F>2Y>yqrq^|2$>~>pvwpu& lUc0Tv9-f0xGt&e6eIE|$yjT2q8kofyJYD@<);T3K0RRF?=WPH0 diff --git a/Resources/Textures/Clothing/OuterClothing/reactiveoff.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/reactiveoff.rsi/icon.png deleted file mode 100644 index fb61343032afbabf8e2dd010b57386f1076913f9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 423 zcmV;Y0a*TtP)15QRTQi%JzLwlD}c#-vDL7XjbE=gc0v$T2+}(! zMUcpk9qkeY5zvEa-V8HuXJ*HGd3W0uM9s~hNk^tbk zF18RX_N%stEd;LX0+1vLK@i|?=e15JIy>Mv4sje)6h+I0N?{ApTBua(D~f_Rj&U5P zD>Y!S12+%1weR}?lx5k@8{YRqN(n%o=cIQ}{q6vOux$W5&pYdH_$ID*0mse3O4Ibm zm@Laa{f=G*G^nbIP${I8Os7+%l!QuARh4NfK;svDh39$P&t@!_%a*$bt}l$H3&w{? z2fZJnbII51b!(iw Rx1;* zO(LFm`6OmM-7!7pK+FN-FI+dv<_bTFyBS_!K11OdL%n$FkttJFU0pWmd!q%9&Cm2> z7mqTyz`z%eJ=NkLWbc1Jy7l$0d27yHlz+ojAG!9!yyy37HIz~6>6LDl*PhxlF8eJ f^^8i3+P^WnMC9#j-l*6H3}6ONS3j3^P6iH@0r z3k>}C{Pc#w-c?gI)V}4y?|EybuO8WclZXBN|`j%fl%iilc^?p=z|J(1?40nIV z>#<)lVP(kK({AWyc5i-ff9%xF8eN;W>DRAjNR3px7M0WM7$|Z>iaA^N)Fzp~*V*@d zHorSJUQ^ZDVUx~eS%uF(WAe^R@h_e7q%to4?EiyH&#fx)?MVC^{_f=cC??<6Uw;M8 zoTv2d56pES`tgFTVrxr7s@r1M<@Lrso^!aw>S(;ip}SLp7Hyrj>Tkr_MY@MxPw-T1 zQE9oblUsWBLGJ}GKa_T)}P Tpv!V#pfY&6`njxgN@xNAxz?y% diff --git a/Resources/Textures/Clothing/OuterClothing/reactiveoff.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/reactiveoff.rsi/meta.json deleted file mode 100644 index 117a2241ce..0000000000 --- a/Resources/Textures/Clothing/OuterClothing/reactiveoff.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/d71760fe0c0e9ea3a9aa8e9e794daf7e7f892d8c/icons/inventory/suit/mob.dmi", "states": [{"name": "equipped-OUTERCLOTHING", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} diff --git a/Resources/Textures/Clothing/OuterClothing/redwizard.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/redwizard.rsi/meta.json deleted file mode 100644 index 117a2241ce..0000000000 --- a/Resources/Textures/Clothing/OuterClothing/redwizard.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/d71760fe0c0e9ea3a9aa8e9e794daf7e7f892d8c/icons/inventory/suit/mob.dmi", "states": [{"name": "equipped-OUTERCLOTHING", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} diff --git a/Resources/Textures/Clothing/OuterClothing/riot.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/riot.rsi/meta.json deleted file mode 100644 index 117a2241ce..0000000000 --- a/Resources/Textures/Clothing/OuterClothing/riot.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/d71760fe0c0e9ea3a9aa8e9e794daf7e7f892d8c/icons/inventory/suit/mob.dmi", "states": [{"name": "equipped-OUTERCLOTHING", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} diff --git a/Resources/Textures/Clothing/OuterClothing/s_ninja.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/s_ninja.rsi/equipped-OUTERCLOTHING.png deleted file mode 100644 index 85e87efe1f5b953506f4334d0ed346b7069d8fb6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1499 zcmV<11tj{3P)7!R6#mwBOslFD2pJG8VB~VJ3dXWTUD=M*$URwVr6}no=l0Nh4?S_<)LV}|#8M7D zCb=|{PtB>Ns!N4}A$4j(!ty5|LQEq??H=sy0lo2>ADdZNuT=A0c9~`8`{vD?H?#9b z`un>Et}$FCr18~n-)Na!3Tx3#WbQZ=PcU!aD?FhGcLttZfTXVbJypcgUjG!DwyVK(LRPJ`Wv9Y_Y8E@)femUen zWBftapd3al5*OmX&;Y)~k`{}^;aLbEn@^+NY4K-Hhl}60J1u1MX?PX_h(+S?C6*>) z1mbtT<3To`24f6s(M<&9Fq{q-f^ryZ(M>SM_^=S+zc2=bLILCs_i=JO1Gn1^0LbK0 za5`Mv80}6AUXLFDkj)s75 zy1b6)@;a1q2>?)UQ~;bdnv6i@O1T7jXY1aLvAkdyzrOJRuom4k%s)~LIC`O=mMlv3 zMg>lX3v1C$tVK7Wsw%&CI$WqXDySuk($Nb=w5{hNcesyQvM7<~^#)<3T7c8xLME3& zEm@Ruhx;SfeeMu=`LcZGswX55AW?ced-gk2wbA#UD2DOVOhApM8Q`M#2H{)-)RM)4 z(}_OvlRN4K40}%$=hZ{JK{+h+UN3|eLf7Wz(C)NAiyp=pfC7&L*XD$(GlX7#yWM_f zW)g+)QrPS9V^*5yb8b)$V^*5yvw+zk9zDOlToi`7EEb6)n@_{-cB9#B^6BZaK(R;v z+bDz#aB_U=Fx2Q+BtG!DneZ$G;8_Up)gJ)E9U$xhs;UA29{=(a0O09gN7&x_gqL3i zlxhLbOWmpVc}c}D|M)< z3dYzOe#RJ7RYkQ@7p~Kg&vv8#@ZV-)7?)8ELPH=F3gEqW?EnBpH{|U0ZrRN2WY+(~ zAp59_4PdnZt1&fz)dH->)Bsisuo_q10ERY2eTgMa_IJO%_rLtvwDSO? zVEyiO4e0I`8OcWoe+~K)OWJ2Up92663s3RSzuj!@k9+qgmJk_LLnfEP+i%&i9R2_R z3~3NDfG@G6#a32fv)Q1kD%zbEPfJm9!fcPA9;eherN~HA_TY(-5e&tEdZWS{oXMql zj^43d>z2xlNx4$xQKfk2pizzA3o(ScJt94jSfm>aw$`f$rAQ% zKa^++R8AKl@4^x8&+&=9C4i;^#~r0qPor2&A=X5-`WGKT^M3s6-RHk%EMF+&;*#Q>#TLbKWA#8!bi zqSk!BEe1O#gtj3i$z<)9K89$$7AYuRj002ovPDHLkV1m0a B#03BV diff --git a/Resources/Textures/Clothing/OuterClothing/s_ninja.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/s_ninja.rsi/icon.png deleted file mode 100644 index 911e6455cce72e274188e1cdafff20c73eaa8df4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 623 zcmV-#0+9WQP)A!V=GdZ097&9J2_6E95Ric861?@=euRF6o^$XE^a}|20`0Y@cuNbdr6931 zRZLv}RX1IB8^~b~(H`t>HQMg3RJ{1R%P%v!6Xu8UFWEX%+wTy3Lh%Cq4?Emi! z9GxDIQu~Lb_7727O#piR_SB{pgcVm>O{_Ubr^k+2aOHv8l|r}Bkb3<#p@G52$t zbpAmqXG1y7^9=A%n|?oKjX`{8m05I zsrXU>lvWeNFi<*m?rwEzFF#3lx4L}^S%=lq04$B&|MzDv@?=6;j`8?W003pebAiA( z=G$<0{!eOQ6D~47Po6R`uJMzZxK)BhJmC6|XjxkMPwC15egOpV{F+qg9!>xN002ov JPDHLkV1huQ8>0XK diff --git a/Resources/Textures/Clothing/OuterClothing/s_ninja.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/s_ninja.rsi/meta.json deleted file mode 100644 index 117a2241ce..0000000000 --- a/Resources/Textures/Clothing/OuterClothing/s_ninja.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/d71760fe0c0e9ea3a9aa8e9e794daf7e7f892d8c/icons/inventory/suit/mob.dmi", "states": [{"name": "equipped-OUTERCLOTHING", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} diff --git a/Resources/Textures/Clothing/OuterClothing/santa.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/santa.rsi/meta.json deleted file mode 100644 index 117a2241ce..0000000000 --- a/Resources/Textures/Clothing/OuterClothing/santa.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/d71760fe0c0e9ea3a9aa8e9e794daf7e7f892d8c/icons/inventory/suit/mob.dmi", "states": [{"name": "equipped-OUTERCLOTHING", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} diff --git a/Resources/Textures/Clothing/OuterClothing/scaf.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/scaf.rsi/meta.json deleted file mode 100644 index 117a2241ce..0000000000 --- a/Resources/Textures/Clothing/OuterClothing/scaf.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/d71760fe0c0e9ea3a9aa8e9e794daf7e7f892d8c/icons/inventory/suit/mob.dmi", "states": [{"name": "equipped-OUTERCLOTHING", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} diff --git a/Resources/Textures/Clothing/OuterClothing/skubbody.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/skubbody.rsi/meta.json deleted file mode 100644 index 3027b821b5..0000000000 --- a/Resources/Textures/Clothing/OuterClothing/skubbody.rsi/meta.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "", - "copyright": "EOBGames/tgstation", - "states": [ - { - "name": "equipped-OUTERCLOTHING", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "icon", - "directions": 1, - "delays": [ - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/OuterClothing/straight_jacket.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/straight_jacket.rsi/meta.json deleted file mode 100644 index 117a2241ce..0000000000 --- a/Resources/Textures/Clothing/OuterClothing/straight_jacket.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/d71760fe0c0e9ea3a9aa8e9e794daf7e7f892d8c/icons/inventory/suit/mob.dmi", "states": [{"name": "equipped-OUTERCLOTHING", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} diff --git a/Resources/Textures/Clothing/OuterClothing/surgeon.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/surgeon.rsi/equipped-OUTERCLOTHING.png deleted file mode 100644 index d160d52db922d3e90caf16e2bc5eb68ad029b155..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 970 zcmV;*12z1KP)QlB0P1-SmG9U_fiU7x->(U?4{68kdEonu3hp0f+=(e zd4WtuOWOpSc&X|^vf~nB0_xyOksZa+y;#>^{lLgRqr2yxyZh@-cd5?SFHAEJL<tPD8I>wOA_IC|2gSlXfa}V8 z*J5FwdK{8s=rUGI1sr^Sh1F7lsW%b_L9g{Ux4sQsz4W*kZ2($`4Dedt!>jyl|4)+9 z2B3`rL_x6K>5pyccBc>IsdPl<>cWO)4~%~KZWpjGnerntz_A)IQG{bP004>>@;$%E zBxoFEv*t<}6+eG`zww`xQBgK)?pNbkD&*E%Au>S9sDpr`m#!24eLt+Xs3UPyNGlfw zq8RY@Ik2%d>;JX_-EXy2;HN4^heFfMbyhax_5#kL|56I7@k)KNsr3HIIoKFE@ zFau=GgK9Bk=(1n&xS#*Lp`HkN*I*B5w0?7v6(7{^1FVqeZ`?zG2Sh<|JH3#q)NhWv zMr&{luF&oasbq6>%1I0mEkHDh0ip$nCNV&?0MR4{h!!B4!~oF(L^JgUQ0)y?+b6E~ zW~kliV<*2TWEIFm2lHxhy?^G4Fu|+*c6x!STrNW(KbMa6j6ksES>a-Urq007Wvutl zCT_xd|I9UXncKTaW&?t|H0@5GHM=_rmJzl?L<*AuWwYigTG9Xg=FL(z&T zn>D6h$7I0L@`}Gf!n#dOf>)NI%UD`oVakiifZ#YB-723X!LnFm0h0mm|7b&xppUP= zFo}u6Xc?m#NSXSXAdvxK0cY>1j=iHg%;vd&R$!7iRs&}9+%GqZ#&Hl$g~RserHtxt zjhiUmxQ922R`ky(9M)TrG>(JI5P15qg^jh@SWb!YE`w?@G>Ug_Ae&QoWH**!p8`D3Byd{{#Yx!KJT2UMfTqsG76W)1&Kv}LT?dDC2S7aM s19tL@!)Fv24`wFk14IiD&D0z47j%O{q2EL%eE38_-B0P;-0 zcl#A{8hy8qJQG}h{zFLFkD}+wNO7$Ils$>ekF6^QNLSw{tsfGr3q%rQ3Lheg0RX+h zfw^<355R2O+xGK@yWsEqFsuBMI;Rx?C5KVi+{U~^!e7W@R!3a;8mv0JAzqL<2TWxaJa-Xm2 z%U?C-!O!0Y=9gSny8rB<(1G8#PxpV#S1DYwyPH|HFlF-!NimyQVXI6%FI{};yX;)D z#jK3~PrRgj--vzVozAeY%x2cA&pUH+|DW9Zu!u$L>a1VQ8{5w9PCuyHaP{fYGdJ(v ziO{~X{N9UQaSfA#A?^W@*S_82U&^k2kk4(_+<7OjXxv~>dHM6};*$Oa%o{4K1xgsi zn)n|4`?#{CKY@8eRkc74!)tBt)_M1QxXl<298=$R$oWFR%0q+(33})BD=GHi~_|!58WO^m& Sw8b0&8Sd%o=d#Wzp$Py%t(~m^ diff --git a/Resources/Textures/Clothing/OuterClothing/surgeon.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/surgeon.rsi/meta.json deleted file mode 100644 index 117a2241ce..0000000000 --- a/Resources/Textures/Clothing/OuterClothing/surgeon.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/d71760fe0c0e9ea3a9aa8e9e794daf7e7f892d8c/icons/inventory/suit/mob.dmi", "states": [{"name": "equipped-OUTERCLOTHING", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} diff --git a/Resources/Textures/Clothing/OuterClothing/swat.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/swat.rsi/equipped-OUTERCLOTHING.png deleted file mode 100644 index ab89e62adf3068d79d22590cf4f37fbe8396a0f8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1419 zcmV;61$6p}P)DNa7(>ztl&^SaAyp*tRrgwzYR3E^gq%vw|K!xY=bl?tT4!~?$2{1bVvuP#3>;TNBl>oB?Fq>zefOgs+2w^wbi)1*hcD)h8ZgSr-7JW`@ zC#VPy4i2Jvb%o^HxGFZjED=k4J94=kb09SO6B82{8X8iM9UdNHZEcN7U(*y2!fvv( zv;+Wk!nG*&rKP0@&k_rb`m!uzYimn=$+FC>|L7DD!frA*H-}g(1_0>o?Zu=hVtiRr zMJ7cNvMd7tVzC(J=H_&p5_jo$b#>kQeOmoT6TtI4R#sNvcDw8BlcIR%_YV#Zu)4Ym zp64HPt%>{e?}Jufa}DrDMIs0S1_lQ1JOi>UqfjVdZ*LE&#f0uPz$pC(M}Ygo8&a)S z!EqdHFJ5SKXtBWc`;UYW0*l3h%)8Ib$!LcDgGDeD3LzK_0sxY4<6J70dQd!*$*8MC zFc?HA6w(y5Uizt2idz4{5uj9F7FJeP006(f|ApB{GxQ%!z}EW|)9}rP{?VldG((@d z5z>N@jga2@)O!KN`OM6W`l1zm3VQ3eHbXRDRsB~JDt=%sir{s%NO-s>9u*Due0MP>KHV$yS)wI=4=n zz9go!n6<2~t}=FMdIvl($KObgzqSa&zv6i!Y~sQl2~81Z&siJ9qKxF^`002ovPDHLkV1n5@rtbg% diff --git a/Resources/Textures/Clothing/OuterClothing/swat.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/swat.rsi/icon.png deleted file mode 100644 index cef327a17ee9997026e38c27bfc76bb2d72786d2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 567 zcmV-70?7S|P)Kg+a0~-VX zr2)I`NF9C|4Amse1*+95htYxJEjTw0H(UrDsQ>j$g+S-~~7eX)^jp+4ybl-nfo`HoO za8CE+cs#~144!Ups}(d&o_%;JrIeVaNp^I((9FUi48suL_W`&#JU6=C?n3b_%Zk(C z`#xb9E;qbrF`xWZ5XUh9Z;#)sZs5mpS9vcd@jd*e{GN6Yso=qbXkPJFt5saOqW@&z zp|LcGCXs(-?<6xOx8y!v1cI2e zT^fxBX`0gMbPB%NY!n+Qg;(7Im25treZU%!XP6&YzVun|R_9^gv zAJ6lqIM4Hn$kv5c2jFkSP9jN?mBc~w6g&pj9z<(5@Ed_WzN_#>#gPC2002ovPDHLk FV1m*$0$Tt8 diff --git a/Resources/Textures/Clothing/OuterClothing/swat.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/swat.rsi/inhand-left.png deleted file mode 100644 index 9245c98c86c70b0b7c0c96b630ee56736e8b9154..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 469 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEV4UOW;uumf=j|=S>_ZL`Y!AM# zVv(7Wu=IJ+f*mZqvzzqR{bK*Kaos;Q_32!ElN6P9X?`lTioWgT>*I6udt{MiWxxLM zyOt^pf-qn!JhhZ@`V=qKjc?zU&5oMe$)CeruRHzYzK9i7YtR0yRIu?2cnl2mF+G67q!yofELFC)7cCR>u(;> z;&?YpT?r0;-QEA!?t#=X3C4!IdF^M@gkMJn)tXLQ2K36$7{0|9HC_k3J1?R9_+v!Q zZ3*Rdua8yLe%qkU@Z%2C_KFvr5qi^K6<92Y&`FCu_4nq|{P**VxW82G4Yq!_|A6!A zu+^6`O!BPQ<;qwkl8=10X-S+>s(G_8HvHG$x~%yA3&uYf%6R(y1iN@%0i%n-)78&q Iol`;+04pcgZ2$lO diff --git a/Resources/Textures/Clothing/OuterClothing/swat.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/swat.rsi/inhand-right.png deleted file mode 100644 index d26134d2bc28dbb5a40b764ad58da960e196a3fd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 472 zcmV;}0Vn>6P)Nkl5fKp)5fKp)(SIUd9pG79*VSfyx7*#k&#N8g#74c2&(%tNbUONLyZ!M( zMPc%fMx)c%d_D(|p8xG~z;PVJag0F_U=Rcv0A{lp9LIT9=3JTll}hDmJWc6*LrSTI z5b%9Jaggu(5JEsosZn5A@+S&#I2@q0#$vHZ9JE|6Py37PR(`XcmOr(p&mSO$4gGIC zlE0KTXiO%PyfVE+=KTF$Pn&*`QtE!MSLoiq^ho}jGvK}1Oe}5l+x)2oSVs}Mo(BNv zdLGtMlyki2vOPZ$5fKp)5fKp)5fzS7N-L$T`e2gg?x(SP!Z1X&TE$-|!oytG)k-OC zmZRa&+9G6{0qu4>?;J0asQ`^e1N;3x?=1FcwOXesZ~MbA(+nt=%cu1)408+f3Yq`< zP)cbb1mZZxX0x&8?~zNHUxNT}JRUKfPV>rQ7p0UQkH@-Jt6AIsM8G#r9f>fSjTc@3 O0000P)xb-;YBbrRR%)ebYnoNsIvS!im9j7) z*ge*xz$(0ZwKoe{N24BEFKKtOov#c-4)B}e~0Kjw>hwtj1yVtzr%P`IYnE>}nr0Qq@l z0CpEwu<2qeyNfHB)6~RTyAgn{Za1x>IHM-i)Y|2xnK_7phIv*EwqSsFull3+pU*Pj z)ap3v3L(iM{(G%YG5@qRAX4~8mzT!m=jZ0a#a8ljbE%Ldl19U!O48F|aFCi>yF3#n zMEK|1!tu*`IsvG56hxny-P6fzpbThp6rkys6!YJ)223verM`YXe&lCdx^#)c!a};P zTw&e8gM9qhW8~-Na(wJl4*h(Lf2hsKWb-QmHEI-f8)^0byzLCD93AeFZclW6_VJiRU zqk2k`l3DNTi9R#cfDe-$oFDTsZ_ufj|F*rrpde5f3I}iO^{_+~0caIPviH13t0;mFMeVE^w= zQM0;%KiOvikX749&FThL&AAAGBR3bT&4$TnjJMpke|~m zKR6ie_gh7g^MixbwYT%vhabMX(%ymJ{lp_2TwXz4dprBlP_MCJ6~ov4XsBy%=iu@R z)$tWgh5#O|nJq^KLlu$~o$y44s}V!auUJ85Mh5Ty@XZ;W5x(@t`ErAJoi;}S-#CMu zAM;VawN2PsUnZ9%C9}|`rL3ou>ata;_*He(YwgD9cQzFjlEhlOk&@=-8819QKojo& z&zueqfLu~2=6dFICvA=b@=v#`;#X|IdW$JK&}kJ#N=@PUc&RBl`s+9LdZPI=jdI3$ zuX`APX0L~G#-sVo-mtFsx`(6rN}+f`#I6y+l*|ZF8cE+Ff2LvAh!7fQ#A2eH@mT&_ zj|2W+ z@x9*{xNktB1tc2x4M?r9AbF zf>Nk9pr+O?XIZRt1jg96vr^t%7e2TUuYhDR%_M$g)`D(xA$KNa0tR z{5)5ZMt0ILR#8LsfoEjLvL)Y%2{pBL*|BU1)d!xDt)hnPq+y;bNn@4CAD0P=4VYZ` z!klcr>h#js>!CU;g;^F0hxEx*NYXtuA+i8_NT19si-qc}6dHRyeAVftFef`M6I87T zO~w&tA6b_0=H(Ngd=hV%xUl}qFT;P#pF@_#$`NND4;B>16-#v+F!_K)$MpeV;>^Ih z$_#>~MR5sHf?#P8>nby1&Lc!LOx30ostoYXN&?`kPH!~txX;g;h8=wHMKez&l`>ko zP_+o97%g4MQ%R+K@I^Cg8g_8pH?i;%(G=0B6p9Vdn$iF`X|d7b_n|eVVbW+g)-%9? z&0Bc(q40)C^08)B0@NV+STmU!89e*Y3Jz@E!m*wKOd1VZQyMLPA15ug7_Ca6*Z@ze z7N5(<;cOe7l}qS-u!@t576Gua#KE?sukp&+6981b_3(^0gpru9oISy|qpz{C!~wv` zMT_Wtu!_#gB^=JS;dA-$q$+RP6dPdE>u8#7joJE+?AsUDyQo>+z@7zJh-Nc+4u@g^ zN|EPqAeznWS&&7|>IRDIT`?K}QVa%~W?Ql8b&BK0-3yG5kK=MWaR49I8u?r9UY7Os z;T#XpE%i+MzFKtm^pNRslXb$!-m81@Uoiq+Tux_<32LFZ1~|vVE3F=%50}%4%jrZG z1XkK|Seqe{nUTRF4;1IvY1!B`<9mZG8=HjU96O6V;qw4%GbC2pa*zcfs>kE=#b{Lm z#WkR7PB9gi!^dD+0YMO`z3$=3JU<(ASK&C-N>6?!r|o&_N~Qvl*p5@JY+SsGxA+pe zoxGlAM3!YLJi}3~N}+05{FjG+BVQXBU|C-mi#(8H^0Ga9K1CPKa#7Hewc>$$vNJqY z!`0@a6wBju%$>)p{b%SKP2sc=j_2g7-kMjvFYvpaWpc;ddC_AjsYkxxqM*m5)AG^F zE%&tW5&U9Ll{^{y z3J+nfAMaW!2X$IfKl>B_gCrBoOjjLC^-wsee*l9dQJy9sjt5y98d6O*C@_YG ze+>uGXuh-BAB6@1S5W4s7A;AHI3Wr2#Stei14KcfG(9}&C{Ne1y>pZeyB5j-@BHDL zd+J7nrzkYas|6FsalRgjuNKB-K>xVJzAitdso`q(+bk`qDH88?``NH-p?t4Q*syD% zyj<|`e4c?3ua>U|!vmgkBNF}Nw?4cz9pWFuk_D^)00007%Q6o9|=nADCPyK?N7)Q(-H*r6Okg)BlU)Y1b|CDck$kSaLz0%}oDxCw_MMNL(S zNJ&F(R79$B2FV=SD~E;yR)Y^kNC7!%z^;D~Bn#cd=|*OEIXK?N5ZfCmQZIRz(R({P z@0<7Dycy}q^zS@Ru{~Gs`vCg@`vCg@fZgiE#7NNCu20`8NLIe>2|!{bXv8%QfJoQ_ zz~H_2jp3yQXVE z4`kUgMAI7B?tHmeVj|YhNA>^{v3|1oJlUK=HlOE*ix;{2wvE?jDr97tn9qmLF#eaC zokVJM8{Ql~VgP*bdX(j2iP4+=cHLJ$di>U4k;LXZ}Mn9oO#t|Lp$v#{%9cy4l>sc-IbZgPA_ zeYesO!0tWBLtiKGtiqFpGWR~Y2C(CpER@apo9=(i6f~2DH2~26;0PcSLBZ;$<+z1{7;P6P1#Mw#SJh}uxcPK=s-;dknYPox`*oanFR@hKgx`EVH zi96vtT+96ob@~QL;Bh`ryTf70IkbqtgUk1&4OKP6U+ad40s#QNmi0P4u4$ZHT%`6- ztMIo30C?s2@w$b^!+l(tn4Lg-bub| z{C)mB-wqBkwy;1(md$gY7J`f{Gq$k67pG5Ka=Klbo`UUiCh?+CYesQRBP|5ew+d3N zUDtpz0|Oii1eiT_+tOvUt41^wbeVPVUx{lPLqQj@RLZjRT>)J1y3IzD7J^>46M$Z~ z)7*WsP&VyW#qxtBXcORevIg|l^d|N_2LO1l-N9o+XAOguP2IG=>U@C?B)TOV->H?o z2l(vzF#}*#)#*TD(*_+>)7;huzg9F3=#a*ssOkK4{h0CTjYoS^gfnANWB9O_OI{~^ zZFWjqSMP#kbP4sIe8>u$ zMB0dM!i8S)z0NES(!oA7o`ZRPeREoe6aabU<2cN`Pn zkb4%Ha4i!g9jQoYjAAcT?E;SKL+eH_f-xd4Km?rI&dXQ{X^@Lr%~T<)6_=BjHk13U zdt?60iF>Nv`|3|&ZbQQqa=`G5L{t)mMrr#Lbldd~dcCebVG27(X}dfKhM>*-9j(7N zy=AVcfbfvFrHbI>n_b-Ifw>lU+g-9VS|LcI)eQ0)_+#h9m|Awqcca*IUry18!83PE zHQZCu=$c9Cy8zWY^gA<|V+HEHESk(Xd(1sWOT7Y5wM397dnRWFj*AH@XfR{%t#7z; ziT5A_P#Y zY?P&TZy9pt73`?Zl#V;rkgtX9A+C;WQm=5LHLrGXh8=jTtvHb6_qir zHlH?SoWEY?2)LV1Tyj&)J3Hxs=Jrz#S))k+&#xw!1>g?V!rse8^357#k?=AieK1r-Y^psnK2+(>?pN3i@uY zamaaqe-ll0M&&e18GTd+>Z&^YRZFu$1jYx7>iUduRo;D@?CL2GL`ajFwQo(yo2GX* zwW$wZzGfAd+H~w?c90M_eoCw{l;XL9<)M!jT>2p5`6a*RqrVyA_S1`{n`POAu(iuw zE8fCaD(;ShJt{@{L(Z?4UER=>ZVBynpHdsXtx)QdwNsn*Vm5%1k4Lp16L)5(vEy>M;_Ky@pv+Qt1x4P6Da9vJT-)8tE0uPkF0Kc z4b0CO3b7BvZ3(gzb+{Ox%jOg$IC%!$Y+(FL_lV%KRNd@)H|cDH&Y<#N-ZWekyI%S$Gv4iee^0*v#WNUQc- zn~)d{pDt%KLIX_F)>GJoFQSjy#Bqusn9y zOwk$*nJw~F_7M(?`Gd!R)TEyCTD`qnc<#8R49V23TthjKLdmrjIVeY82t0%B1KV;(6DGO!E6pD|%RT9JM2Do#S!=HFE% z$n}41?5McnT($|mYU5HHCx^uk}H|;^|JG@U0%oGyLe20oCxlQ}3hSy3J<4og@ii)bIZ!SMmc87+np6PYEqTQpc zce#9zIWagR3+q4B{Z(bB z*y_CZmg3kvuYxg?avNEjf-6DEiHYx5XZwgBLob?`=w9N#W@QDJa*&ww(Qs~07FxA- zbtUgup|wjHu|!aNvRd$<2gyJb>X>&2=Q-Db7_6?weTDURHcMwYv4rd*#sfhAy@CI8 zJ=1|h;(1wFf+gUEUu?Ad{b2 zAnK;(WdJJf*daWwdIO|amha};qr diff --git a/Resources/Textures/Clothing/OuterClothing/void.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/void.rsi/icon.png deleted file mode 100644 index 1e0c65ccf0f6432e294d00add3cd19eb00db5a21..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 932 zcmV;V16%xwP)PV>uFBx?Nei1ZET+-3DC+WeapKD)fy=b!`-fQW>Lfs-W2-w8$bvv_(hK zj%|YC3rok|1YcD4rh8EsGhrxL3T4qEErVW@+G{%3h96mS=Zo}`3|Vs7WP8&G?#2D? z`Sanq=lR}Q?#9wQO|w4L>N@~C06PFX0F43!LtZ_(`Fra@xo9XFj2I+t(w@ z^-=?MhR_(Qq>z|Caf-$07=B4GzZL-Cjl-SHuLaP)?Z+<(7NcWKpEy;1Rc3~=CV)ql z@k;`~B#8KiEsCm^lfU@$I;qhq04`mBlhntbb3v5+j2JUrsQC(B_SJH+lSZ_O`e=@^U+5YXj8Wg03_B^bgz)0M6xX z1h%&D$TFWztpXsqUPavf6@V{$_M)gNai^0n97Ol;^zfVHb=#vD8 z-t}=&TL=CCcJYyQ4;Q6%&S@I`_WLxVZ*@Hv@)`?yjYL+^VYOn5#DLOZ8W)t-ufu93 zkrm~b#|D^*u2>RTK_V-diLO|Tl^h84a>d~&Uju<&is2w0S^iHcSk4A5`~is2xwRHW7;%d}n|rHFa?t+vPNfN}Q3J5VfW z4|Je-;VX)E>mzlbApk>~0an*aKPG>5zs9{5H}hahdLJ3U7dfaG3Iza~o106AufWY4 zzW}hYu>rtYdq`gj-!{F9rU1IH_UK(*UF7q5QmGV~Or`>{UEJ+<)7I8TQ&SV&S9|p9 zC#U|OKOz7{QBV}6eD89(*xcMK7k9Z_2qBoAoi&s00s9xUCw62czGsdA0000CcKai&#O8{Vt<)SMZX=7>++l5Z z&HV$5JyZ~Jg)72>x}Sw8$-%J`Gf{HBPcty^W+ubT5Xc7*5fKp)5fKp)5m7eZ#|Gr% z#Dv7#*UYEUWBP%|yP*I;rQAew`41}PW};s=uiKxMW%6Mwy}dFzI0yi^sm$W{%s9q= zHsK$g001toukr2v{-0yU^L5)st_(#pSt(H&3@w{SW?hs|~ylS2)xIbSe2 z)WBxDjnnx#l*28p{NL)ft(AXs)0QP)M;w{9ti&0P_jk)zOZ^gVtS9o}#=2BX{ay1f zVRSnIk1z3Qco_EQWo$PNvAVc`Xm1}suCDM)r0aN3`MPamDTGMAwN5KlJ}u)55O;ZgmTA&i^Ez@{fb+XfqJ39f*Oed$1OS2{ z5Z856U0%NLC-T1U7w1DrDJ7ogLF94HA_C9zpp?>j38j=cj+4kcj-#C?A|fIpA|fIp zBBK9|$@+m@{|x29bp1f?zn)CWqkf=JJD~9O16k!!KTxP60GO{IDAW-E%-0VTZUN#< p)DIMT0p2Z>^#g_50jBE*9ss@Q9k(`k&71%L002ovPDHLkV1ig{02%-Q diff --git a/Resources/Textures/Clothing/OuterClothing/void.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/void.rsi/inhand-right.png deleted file mode 100644 index b6b7b13d075b1e067c2f7c1c8d8aa0d643e7a578..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 609 zcmV-n0-pVeP)Q3aSGzr;vl$4rqZ#4Q|RJg2@Y*fM9flx zxG2tU1@S-V5VeAoMi4myw)r{8$=xLj zta~|gQD!R@iI4v~QyzKpkEJJGKM4c?YSj)p%U@Beb`tYNmz6VXUd3PB86TI+lal~| zFSYAN>~a*0K@YqPCzx-#NOfp zHhMkGO|@~~e1N&BHa2=a>@6;!8f^ZnwfvDNe_G2hM$7LjB@Zu|;wzQ-4aMjGQub5f zD<$>Pgaqr2ME+pCA@$P4(EJ0(*;h(#Oi#nOy^O8)bKJdk6XDZmcy(}qcOr#7{*fqu z%P_DMhQG$F`~#O@^rrcpZG_*CFu${%m@m30XS3hM*17X&_PdGsw1EwX`@H{Ai$!M{ zC4c4y>>u?L;Ke(zq00000NkvXXu0mjfBX1*@ diff --git a/Resources/Textures/Clothing/OuterClothing/void.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/void.rsi/meta.json deleted file mode 100644 index 6a3980367b..0000000000 --- a/Resources/Textures/Clothing/OuterClothing/void.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/d71760fe0c0e9ea3a9aa8e9e794daf7e7f892d8c/icons/inventory/suit/mob.dmi", "states": [{"name": "equipped-OUTERCLOTHING", "directions": 4, "delays": [[2.0, 2.0, 2.0, 2.0], [2.0, 2.0, 2.0, 2.0], [2.0, 2.0, 2.0, 2.0], [2.0, 2.0, 2.0, 2.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/OuterClothing/webvest.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/webvest.rsi/meta.json deleted file mode 100644 index 117a2241ce..0000000000 --- a/Resources/Textures/Clothing/OuterClothing/webvest.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/d71760fe0c0e9ea3a9aa8e9e794daf7e7f892d8c/icons/inventory/suit/mob.dmi", "states": [{"name": "equipped-OUTERCLOTHING", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} diff --git a/Resources/Textures/Clothing/OuterClothing/wizard.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/wizard.rsi/meta.json deleted file mode 100644 index 117a2241ce..0000000000 --- a/Resources/Textures/Clothing/OuterClothing/wizard.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/d71760fe0c0e9ea3a9aa8e9e794daf7e7f892d8c/icons/inventory/suit/mob.dmi", "states": [{"name": "equipped-OUTERCLOTHING", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} diff --git a/Resources/Textures/Clothing/OuterClothing/xenos.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/xenos.rsi/meta.json deleted file mode 100644 index 117a2241ce..0000000000 --- a/Resources/Textures/Clothing/OuterClothing/xenos.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/d71760fe0c0e9ea3a9aa8e9e794daf7e7f892d8c/icons/inventory/suit/mob.dmi", "states": [{"name": "equipped-OUTERCLOTHING", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} diff --git a/Resources/Textures/Clothing/Shoes/jackboots.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Boots/jackboots.rsi/equipped-FEET.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/jackboots.rsi/equipped-FEET.png rename to Resources/Textures/Clothing/Shoes/Boots/jackboots.rsi/equipped-FEET.png diff --git a/Resources/Textures/Clothing/Shoes/jackboots.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Boots/jackboots.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/jackboots.rsi/icon.png rename to Resources/Textures/Clothing/Shoes/Boots/jackboots.rsi/icon.png diff --git a/Resources/Textures/Clothing/Shoes/jackboots.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/Boots/jackboots.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/jackboots.rsi/inhand-left.png rename to Resources/Textures/Clothing/Shoes/Boots/jackboots.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Shoes/jackboots.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/Boots/jackboots.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/jackboots.rsi/inhand-right.png rename to Resources/Textures/Clothing/Shoes/Boots/jackboots.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Shoes/Boots/jackboots.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Boots/jackboots.rsi/meta.json new file mode 100644 index 0000000000..8fa0b839b0 --- /dev/null +++ b/Resources/Textures/Clothing/Shoes/Boots/jackboots.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Shoes/magboots.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/equipped-FEET.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/magboots.rsi/equipped-FEET.png rename to Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/equipped-FEET.png diff --git a/Resources/Textures/Clothing/Shoes/magboots.rsi/icon-on.png b/Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/icon-on.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/magboots.rsi/icon-on.png rename to Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/icon-on.png diff --git a/Resources/Textures/Clothing/Shoes/magboots.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/magboots.rsi/icon.png rename to Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/icon.png diff --git a/Resources/Textures/Clothing/Shoes/magboots.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/magboots.rsi/inhand-left.png rename to Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Shoes/magboots.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/magboots.rsi/inhand-right.png rename to Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/meta.json new file mode 100644 index 0000000000..bc7d1e0a9b --- /dev/null +++ b/Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/meta.json @@ -0,0 +1,43 @@ +{ + "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": "equipped-FEET", + "directions": 4 + }, + { + "name": "on-equipped-FEET", + "directions": 4 + }, + { + "name": "icon", + "directions": 1 + }, + { + "name": "icon-on", + "directions": 1 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "on-inhand-left", + "directions": 4 + }, + { + "name": "on-inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Shoes/magboots.rsi/on-equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/on-equipped-FEET.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/magboots.rsi/on-equipped-FEET.png rename to Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/on-equipped-FEET.png diff --git a/Resources/Textures/Clothing/Shoes/magboots.rsi/on-inhand-left.png b/Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/on-inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/magboots.rsi/on-inhand-left.png rename to Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/on-inhand-left.png diff --git a/Resources/Textures/Clothing/Shoes/magboots.rsi/on-inhand-right.png b/Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/on-inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/magboots.rsi/on-inhand-right.png rename to Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/on-inhand-right.png diff --git a/Resources/Textures/Clothing/Shoes/workboots.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Boots/workboots.rsi/equipped-FEET.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/workboots.rsi/equipped-FEET.png rename to Resources/Textures/Clothing/Shoes/Boots/workboots.rsi/equipped-FEET.png diff --git a/Resources/Textures/Clothing/Shoes/workboots.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Boots/workboots.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/workboots.rsi/icon.png rename to Resources/Textures/Clothing/Shoes/Boots/workboots.rsi/icon.png diff --git a/Resources/Textures/Clothing/Shoes/workboots.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/Boots/workboots.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/workboots.rsi/inhand-left.png rename to Resources/Textures/Clothing/Shoes/Boots/workboots.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Shoes/workboots.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/Boots/workboots.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/workboots.rsi/inhand-right.png rename to Resources/Textures/Clothing/Shoes/Boots/workboots.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Shoes/Boots/workboots.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Boots/workboots.rsi/meta.json new file mode 100644 index 0000000000..8fa0b839b0 --- /dev/null +++ b/Resources/Textures/Clothing/Shoes/Boots/workboots.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Shoes/black.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Color/black.rsi/equipped-FEET.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/black.rsi/equipped-FEET.png rename to Resources/Textures/Clothing/Shoes/Color/black.rsi/equipped-FEET.png diff --git a/Resources/Textures/Clothing/Shoes/black.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Color/black.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/black.rsi/icon.png rename to Resources/Textures/Clothing/Shoes/Color/black.rsi/icon.png diff --git a/Resources/Textures/Clothing/Shoes/black.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/Color/black.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/black.rsi/inhand-left.png rename to Resources/Textures/Clothing/Shoes/Color/black.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Shoes/black.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/Color/black.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/black.rsi/inhand-right.png rename to Resources/Textures/Clothing/Shoes/Color/black.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Shoes/Color/black.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Color/black.rsi/meta.json new file mode 100644 index 0000000000..8fa0b839b0 --- /dev/null +++ b/Resources/Textures/Clothing/Shoes/Color/black.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Shoes/blue.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Color/blue.rsi/equipped-FEET.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/blue.rsi/equipped-FEET.png rename to Resources/Textures/Clothing/Shoes/Color/blue.rsi/equipped-FEET.png diff --git a/Resources/Textures/Clothing/Shoes/blue.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Color/blue.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/blue.rsi/icon.png rename to Resources/Textures/Clothing/Shoes/Color/blue.rsi/icon.png diff --git a/Resources/Textures/Clothing/Shoes/blue.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/Color/blue.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/blue.rsi/inhand-left.png rename to Resources/Textures/Clothing/Shoes/Color/blue.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Shoes/blue.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/Color/blue.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/blue.rsi/inhand-right.png rename to Resources/Textures/Clothing/Shoes/Color/blue.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Shoes/Color/blue.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Color/blue.rsi/meta.json new file mode 100644 index 0000000000..8fa0b839b0 --- /dev/null +++ b/Resources/Textures/Clothing/Shoes/Color/blue.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Shoes/brown.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Color/brown.rsi/equipped-FEET.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/brown.rsi/equipped-FEET.png rename to Resources/Textures/Clothing/Shoes/Color/brown.rsi/equipped-FEET.png diff --git a/Resources/Textures/Clothing/Shoes/brown.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Color/brown.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/brown.rsi/icon.png rename to Resources/Textures/Clothing/Shoes/Color/brown.rsi/icon.png diff --git a/Resources/Textures/Clothing/Shoes/brown.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/Color/brown.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/brown.rsi/inhand-left.png rename to Resources/Textures/Clothing/Shoes/Color/brown.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Shoes/brown.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/Color/brown.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/brown.rsi/inhand-right.png rename to Resources/Textures/Clothing/Shoes/Color/brown.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Shoes/Color/brown.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Color/brown.rsi/meta.json new file mode 100644 index 0000000000..8fa0b839b0 --- /dev/null +++ b/Resources/Textures/Clothing/Shoes/Color/brown.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Shoes/green.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Color/green.rsi/equipped-FEET.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/green.rsi/equipped-FEET.png rename to Resources/Textures/Clothing/Shoes/Color/green.rsi/equipped-FEET.png diff --git a/Resources/Textures/Clothing/Shoes/green.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Color/green.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/green.rsi/icon.png rename to Resources/Textures/Clothing/Shoes/Color/green.rsi/icon.png diff --git a/Resources/Textures/Clothing/Shoes/green.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/Color/green.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/green.rsi/inhand-left.png rename to Resources/Textures/Clothing/Shoes/Color/green.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Shoes/green.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/Color/green.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/green.rsi/inhand-right.png rename to Resources/Textures/Clothing/Shoes/Color/green.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Shoes/Color/green.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Color/green.rsi/meta.json new file mode 100644 index 0000000000..8fa0b839b0 --- /dev/null +++ b/Resources/Textures/Clothing/Shoes/Color/green.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Shoes/orange.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Color/orange.rsi/equipped-FEET.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/orange.rsi/equipped-FEET.png rename to Resources/Textures/Clothing/Shoes/Color/orange.rsi/equipped-FEET.png diff --git a/Resources/Textures/Clothing/Shoes/orange.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Color/orange.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/orange.rsi/icon.png rename to Resources/Textures/Clothing/Shoes/Color/orange.rsi/icon.png diff --git a/Resources/Textures/Clothing/Shoes/orange.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/Color/orange.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/orange.rsi/inhand-left.png rename to Resources/Textures/Clothing/Shoes/Color/orange.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Shoes/orange.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/Color/orange.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/orange.rsi/inhand-right.png rename to Resources/Textures/Clothing/Shoes/Color/orange.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Shoes/Color/orange.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Color/orange.rsi/meta.json new file mode 100644 index 0000000000..8fa0b839b0 --- /dev/null +++ b/Resources/Textures/Clothing/Shoes/Color/orange.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Shoes/purple.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Color/purple.rsi/equipped-FEET.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/purple.rsi/equipped-FEET.png rename to Resources/Textures/Clothing/Shoes/Color/purple.rsi/equipped-FEET.png diff --git a/Resources/Textures/Clothing/Shoes/purple.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Color/purple.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/purple.rsi/icon.png rename to Resources/Textures/Clothing/Shoes/Color/purple.rsi/icon.png diff --git a/Resources/Textures/Clothing/Shoes/purple.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/Color/purple.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/purple.rsi/inhand-left.png rename to Resources/Textures/Clothing/Shoes/Color/purple.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Shoes/purple.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/Color/purple.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/purple.rsi/inhand-right.png rename to Resources/Textures/Clothing/Shoes/Color/purple.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Shoes/Color/purple.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Color/purple.rsi/meta.json new file mode 100644 index 0000000000..8fa0b839b0 --- /dev/null +++ b/Resources/Textures/Clothing/Shoes/Color/purple.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Shoes/red.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Color/red.rsi/equipped-FEET.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/red.rsi/equipped-FEET.png rename to Resources/Textures/Clothing/Shoes/Color/red.rsi/equipped-FEET.png diff --git a/Resources/Textures/Clothing/Shoes/red.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Color/red.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/red.rsi/icon.png rename to Resources/Textures/Clothing/Shoes/Color/red.rsi/icon.png diff --git a/Resources/Textures/Clothing/Shoes/red.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/Color/red.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/red.rsi/inhand-left.png rename to Resources/Textures/Clothing/Shoes/Color/red.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Shoes/red.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/Color/red.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/red.rsi/inhand-right.png rename to Resources/Textures/Clothing/Shoes/Color/red.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Shoes/Color/red.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Color/red.rsi/meta.json new file mode 100644 index 0000000000..8fa0b839b0 --- /dev/null +++ b/Resources/Textures/Clothing/Shoes/Color/red.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Shoes/mime.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Color/white.rsi/equipped-FEET.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/mime.rsi/equipped-FEET.png rename to Resources/Textures/Clothing/Shoes/Color/white.rsi/equipped-FEET.png diff --git a/Resources/Textures/Clothing/Shoes/mime.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Color/white.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/mime.rsi/icon.png rename to Resources/Textures/Clothing/Shoes/Color/white.rsi/icon.png diff --git a/Resources/Textures/Clothing/Shoes/mime.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/Color/white.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/mime.rsi/inhand-left.png rename to Resources/Textures/Clothing/Shoes/Color/white.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Shoes/mime.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/Color/white.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/mime.rsi/inhand-right.png rename to Resources/Textures/Clothing/Shoes/Color/white.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Shoes/Color/white.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Color/white.rsi/meta.json new file mode 100644 index 0000000000..8fa0b839b0 --- /dev/null +++ b/Resources/Textures/Clothing/Shoes/Color/white.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Shoes/yellow.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Color/yellow.rsi/equipped-FEET.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/yellow.rsi/equipped-FEET.png rename to Resources/Textures/Clothing/Shoes/Color/yellow.rsi/equipped-FEET.png diff --git a/Resources/Textures/Clothing/Shoes/yellow.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Color/yellow.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/yellow.rsi/icon.png rename to Resources/Textures/Clothing/Shoes/Color/yellow.rsi/icon.png diff --git a/Resources/Textures/Clothing/Shoes/yellow.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/Color/yellow.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/yellow.rsi/inhand-left.png rename to Resources/Textures/Clothing/Shoes/Color/yellow.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Shoes/yellow.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/Color/yellow.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/yellow.rsi/inhand-right.png rename to Resources/Textures/Clothing/Shoes/Color/yellow.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Shoes/Color/yellow.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Color/yellow.rsi/meta.json new file mode 100644 index 0000000000..8fa0b839b0 --- /dev/null +++ b/Resources/Textures/Clothing/Shoes/Color/yellow.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Shoes/flippers.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Misc/flippers.rsi/equipped-FEET.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/flippers.rsi/equipped-FEET.png rename to Resources/Textures/Clothing/Shoes/Misc/flippers.rsi/equipped-FEET.png diff --git a/Resources/Textures/Clothing/Shoes/flippers.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Misc/flippers.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/flippers.rsi/icon.png rename to Resources/Textures/Clothing/Shoes/Misc/flippers.rsi/icon.png diff --git a/Resources/Textures/Clothing/Shoes/flippers.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/Misc/flippers.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/flippers.rsi/inhand-left.png rename to Resources/Textures/Clothing/Shoes/Misc/flippers.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Shoes/flippers.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/Misc/flippers.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/flippers.rsi/inhand-right.png rename to Resources/Textures/Clothing/Shoes/Misc/flippers.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Shoes/Misc/flippers.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Misc/flippers.rsi/meta.json new file mode 100644 index 0000000000..8fa0b839b0 --- /dev/null +++ b/Resources/Textures/Clothing/Shoes/Misc/flippers.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Shoes/leather.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Misc/leather.rsi/equipped-FEET.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/leather.rsi/equipped-FEET.png rename to Resources/Textures/Clothing/Shoes/Misc/leather.rsi/equipped-FEET.png diff --git a/Resources/Textures/Clothing/Shoes/leather.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Misc/leather.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/leather.rsi/icon.png rename to Resources/Textures/Clothing/Shoes/Misc/leather.rsi/icon.png diff --git a/Resources/Textures/Clothing/Shoes/leather.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/Misc/leather.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/leather.rsi/inhand-left.png rename to Resources/Textures/Clothing/Shoes/Misc/leather.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Shoes/leather.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/Misc/leather.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/leather.rsi/inhand-right.png rename to Resources/Textures/Clothing/Shoes/Misc/leather.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Shoes/Misc/leather.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Misc/leather.rsi/meta.json new file mode 100644 index 0000000000..8fa0b839b0 --- /dev/null +++ b/Resources/Textures/Clothing/Shoes/Misc/leather.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Shoes/slippers.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Misc/slippers.rsi/equipped-FEET.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/slippers.rsi/equipped-FEET.png rename to Resources/Textures/Clothing/Shoes/Misc/slippers.rsi/equipped-FEET.png diff --git a/Resources/Textures/Clothing/Shoes/slippers.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Misc/slippers.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/slippers.rsi/icon.png rename to Resources/Textures/Clothing/Shoes/Misc/slippers.rsi/icon.png diff --git a/Resources/Textures/Clothing/Shoes/slippers.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/Misc/slippers.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/slippers.rsi/inhand-left.png rename to Resources/Textures/Clothing/Shoes/Misc/slippers.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Shoes/slippers.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/Misc/slippers.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/slippers.rsi/inhand-right.png rename to Resources/Textures/Clothing/Shoes/Misc/slippers.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Shoes/Misc/slippers.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Misc/slippers.rsi/meta.json new file mode 100644 index 0000000000..8fa0b839b0 --- /dev/null +++ b/Resources/Textures/Clothing/Shoes/Misc/slippers.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Shoes/tourist.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Misc/tourist.rsi/equipped-FEET.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/tourist.rsi/equipped-FEET.png rename to Resources/Textures/Clothing/Shoes/Misc/tourist.rsi/equipped-FEET.png diff --git a/Resources/Textures/Clothing/Shoes/tourist.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Misc/tourist.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/tourist.rsi/icon.png rename to Resources/Textures/Clothing/Shoes/Misc/tourist.rsi/icon.png diff --git a/Resources/Textures/Clothing/Shoes/tourist.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/Misc/tourist.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/tourist.rsi/inhand-left.png rename to Resources/Textures/Clothing/Shoes/Misc/tourist.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Shoes/tourist.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/Misc/tourist.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/tourist.rsi/inhand-right.png rename to Resources/Textures/Clothing/Shoes/Misc/tourist.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Shoes/Misc/tourist.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Misc/tourist.rsi/meta.json new file mode 100644 index 0000000000..8fa0b839b0 --- /dev/null +++ b/Resources/Textures/Clothing/Shoes/Misc/tourist.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Shoes/chef.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Specific/chef.rsi/equipped-FEET.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/chef.rsi/equipped-FEET.png rename to Resources/Textures/Clothing/Shoes/Specific/chef.rsi/equipped-FEET.png diff --git a/Resources/Textures/Clothing/Shoes/chef.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Specific/chef.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/chef.rsi/icon.png rename to Resources/Textures/Clothing/Shoes/Specific/chef.rsi/icon.png diff --git a/Resources/Textures/Clothing/Shoes/chef.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/Specific/chef.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/chef.rsi/inhand-left.png rename to Resources/Textures/Clothing/Shoes/Specific/chef.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Shoes/chef.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/Specific/chef.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/chef.rsi/inhand-right.png rename to Resources/Textures/Clothing/Shoes/Specific/chef.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Shoes/Specific/chef.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Specific/chef.rsi/meta.json new file mode 100644 index 0000000000..8fa0b839b0 --- /dev/null +++ b/Resources/Textures/Clothing/Shoes/Specific/chef.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Shoes/clown.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Specific/clown.rsi/equipped-FEET.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/clown.rsi/equipped-FEET.png rename to Resources/Textures/Clothing/Shoes/Specific/clown.rsi/equipped-FEET.png diff --git a/Resources/Textures/Clothing/Shoes/clown.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Specific/clown.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/clown.rsi/icon.png rename to Resources/Textures/Clothing/Shoes/Specific/clown.rsi/icon.png diff --git a/Resources/Textures/Clothing/Shoes/clown.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/Specific/clown.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/clown.rsi/inhand-left.png rename to Resources/Textures/Clothing/Shoes/Specific/clown.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Shoes/clown.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/Specific/clown.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/clown.rsi/inhand-right.png rename to Resources/Textures/Clothing/Shoes/Specific/clown.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Shoes/Specific/clown.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Specific/clown.rsi/meta.json new file mode 100644 index 0000000000..8fa0b839b0 --- /dev/null +++ b/Resources/Textures/Clothing/Shoes/Specific/clown.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Shoes/cult.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Specific/cult.rsi/equipped-FEET.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/cult.rsi/equipped-FEET.png rename to Resources/Textures/Clothing/Shoes/Specific/cult.rsi/equipped-FEET.png diff --git a/Resources/Textures/Clothing/Shoes/cult.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Specific/cult.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/cult.rsi/icon.png rename to Resources/Textures/Clothing/Shoes/Specific/cult.rsi/icon.png diff --git a/Resources/Textures/Clothing/Shoes/cult.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/Specific/cult.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/cult.rsi/inhand-left.png rename to Resources/Textures/Clothing/Shoes/Specific/cult.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Shoes/cult.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/Specific/cult.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/cult.rsi/inhand-right.png rename to Resources/Textures/Clothing/Shoes/Specific/cult.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Shoes/Specific/cult.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Specific/cult.rsi/meta.json new file mode 100644 index 0000000000..8fa0b839b0 --- /dev/null +++ b/Resources/Textures/Clothing/Shoes/Specific/cult.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Shoes/galoshes.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Specific/galoshes.rsi/equipped-FEET.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/galoshes.rsi/equipped-FEET.png rename to Resources/Textures/Clothing/Shoes/Specific/galoshes.rsi/equipped-FEET.png diff --git a/Resources/Textures/Clothing/Shoes/galoshes.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Specific/galoshes.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/galoshes.rsi/icon.png rename to Resources/Textures/Clothing/Shoes/Specific/galoshes.rsi/icon.png diff --git a/Resources/Textures/Clothing/Shoes/galoshes.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/Specific/galoshes.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/galoshes.rsi/inhand-left.png rename to Resources/Textures/Clothing/Shoes/Specific/galoshes.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Shoes/galoshes.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/Specific/galoshes.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/galoshes.rsi/inhand-right.png rename to Resources/Textures/Clothing/Shoes/Specific/galoshes.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Shoes/Specific/galoshes.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Specific/galoshes.rsi/meta.json new file mode 100644 index 0000000000..8fa0b839b0 --- /dev/null +++ b/Resources/Textures/Clothing/Shoes/Specific/galoshes.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Shoes/s_ninja.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Specific/spaceninja.rsi/equipped-FEET.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/s_ninja.rsi/equipped-FEET.png rename to Resources/Textures/Clothing/Shoes/Specific/spaceninja.rsi/equipped-FEET.png diff --git a/Resources/Textures/Clothing/Shoes/s_ninja.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Specific/spaceninja.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/s_ninja.rsi/icon.png rename to Resources/Textures/Clothing/Shoes/Specific/spaceninja.rsi/icon.png diff --git a/Resources/Textures/Clothing/Shoes/s_ninja.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/Specific/spaceninja.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/s_ninja.rsi/inhand-left.png rename to Resources/Textures/Clothing/Shoes/Specific/spaceninja.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Shoes/s_ninja.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/Specific/spaceninja.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/s_ninja.rsi/inhand-right.png rename to Resources/Textures/Clothing/Shoes/Specific/spaceninja.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Shoes/Specific/spaceninja.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Specific/spaceninja.rsi/meta.json new file mode 100644 index 0000000000..8fa0b839b0 --- /dev/null +++ b/Resources/Textures/Clothing/Shoes/Specific/spaceninja.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Shoes/swat.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Specific/swat.rsi/equipped-FEET.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/swat.rsi/equipped-FEET.png rename to Resources/Textures/Clothing/Shoes/Specific/swat.rsi/equipped-FEET.png diff --git a/Resources/Textures/Clothing/Shoes/swat.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Specific/swat.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/swat.rsi/icon.png rename to Resources/Textures/Clothing/Shoes/Specific/swat.rsi/icon.png diff --git a/Resources/Textures/Clothing/Shoes/swat.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/Specific/swat.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/swat.rsi/inhand-left.png rename to Resources/Textures/Clothing/Shoes/Specific/swat.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Shoes/swat.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/Specific/swat.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/swat.rsi/inhand-right.png rename to Resources/Textures/Clothing/Shoes/Specific/swat.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Shoes/Specific/swat.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Specific/swat.rsi/meta.json new file mode 100644 index 0000000000..8fa0b839b0 --- /dev/null +++ b/Resources/Textures/Clothing/Shoes/Specific/swat.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Shoes/wizard.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Specific/wizard.rsi/equipped-FEET.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/wizard.rsi/equipped-FEET.png rename to Resources/Textures/Clothing/Shoes/Specific/wizard.rsi/equipped-FEET.png diff --git a/Resources/Textures/Clothing/Shoes/wizard.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Specific/wizard.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/wizard.rsi/icon.png rename to Resources/Textures/Clothing/Shoes/Specific/wizard.rsi/icon.png diff --git a/Resources/Textures/Clothing/Shoes/wizard.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/Specific/wizard.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/wizard.rsi/inhand-left.png rename to Resources/Textures/Clothing/Shoes/Specific/wizard.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Shoes/wizard.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/Specific/wizard.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Shoes/wizard.rsi/inhand-right.png rename to Resources/Textures/Clothing/Shoes/Specific/wizard.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Shoes/Specific/wizard.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Specific/wizard.rsi/meta.json new file mode 100644 index 0000000000..8fa0b839b0 --- /dev/null +++ b/Resources/Textures/Clothing/Shoes/Specific/wizard.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "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", + "directions": 1 + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Shoes/black.rsi/meta.json b/Resources/Textures/Clothing/Shoes/black.rsi/meta.json deleted file mode 100644 index 21a93ec435..0000000000 --- a/Resources/Textures/Clothing/Shoes/black.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/b099b76491a850ab376aa4d574d5103900f72f2d/icons/inventory/feet/mob.dmi", "states": [{"name": "equipped-FEET", "directions": 4}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Shoes/blue.rsi/meta.json b/Resources/Textures/Clothing/Shoes/blue.rsi/meta.json deleted file mode 100644 index 21a93ec435..0000000000 --- a/Resources/Textures/Clothing/Shoes/blue.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/b099b76491a850ab376aa4d574d5103900f72f2d/icons/inventory/feet/mob.dmi", "states": [{"name": "equipped-FEET", "directions": 4}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Shoes/boots.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/boots.rsi/equipped-FEET.png deleted file mode 100644 index 6f42b0b8d0de95aa45ae10747c2050f3fb931e47..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 561 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEVEp0f;uumf=k2V$T~dJ(ZTC5i zG?!U4ixqRX#W+ixW96`nsFp6)JniK5`sjv7dWyY592QfTh8rmSDCXjpZJF$3w3|)* zT*vI~AF8DaClt?npJ=r|!A9=!w4VpW5|kNlFy*K)L^t%ZByew-$dJQmCe)yNz>R4G z>kSWvZ4AIvQ_NxLxUG3R(gHOH9XF1u4OZbtkDf z&RTXMO8Kc3*bOdw%|R-%GgGnx5Kpq{i-e(#91^SDr3n$bZYCV?MiE n<<*8eIp^MK|Jl9e;c5Ax>IFVaZS0hQNrA!B)z4*}Q$iB}7K`qL diff --git a/Resources/Textures/Clothing/Shoes/boots.rsi/icon.png b/Resources/Textures/Clothing/Shoes/boots.rsi/icon.png deleted file mode 100644 index 53b9182bb0a32343b82d0118a92d88234a0faf46..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 300 zcmV+{0n`48P)2uPF^B1<#bU<-qpU5A<4DwFQaZlpi(K{ZVi z?hJ8jcLp$k0SsUOfUi$(GRCCGoRktNJ*6>@V|6uG_3mM0j7fdp<2Vio@w0(3My%@! zr4-t>J;#O+uq?|ZqG$(*DCK5SN_g+lbsfC-=NKUby!VJPqG_7q1-%3iQ5uHfybd7% z0OomqT5+yB=b*JN0$jd?M3j_L=ftm?=g?ZiIadTIdIY&~X+9&YwW#a*bHKjuu-5)s y`z!w#+qPZS-~I~zJ8u6GF@OOKU;qPd2Ydr?++M-6Z?;|l0000+I(FA diff --git a/Resources/Textures/Clothing/Shoes/boots.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/boots.rsi/inhand-left.png deleted file mode 100644 index ecdc54919ac9b1168bee886876493be0c816e6df..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 220 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=i#=T&Ln`LHy`{+4Vj$vr(fZ^X zh7!Y;&<*YHq%O-QT%4lY;55l#p=ipxK-2gCm#lov>^VsVi2hFZUwiPe#XE-E+b){$ z=H8xEoHlD&wDtUF?|)5`VG~Hc!&r2Vf#)!TgIDLi_p6`Rhkh}0=BU12%Aj-lP^I13 z&u4b6n+{a13NZ~tipTxF9JR_mV2^x2^viz-R>w8`Wdw?^oWcCWAb7v@kE#JbTxygtDnm{r-UW|_^4r` diff --git a/Resources/Textures/Clothing/Shoes/boots.rsi/meta.json b/Resources/Textures/Clothing/Shoes/boots.rsi/meta.json deleted file mode 100644 index 21a93ec435..0000000000 --- a/Resources/Textures/Clothing/Shoes/boots.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/b099b76491a850ab376aa4d574d5103900f72f2d/icons/inventory/feet/mob.dmi", "states": [{"name": "equipped-FEET", "directions": 4}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Shoes/brown.rsi/meta.json b/Resources/Textures/Clothing/Shoes/brown.rsi/meta.json deleted file mode 100644 index 21a93ec435..0000000000 --- a/Resources/Textures/Clothing/Shoes/brown.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/b099b76491a850ab376aa4d574d5103900f72f2d/icons/inventory/feet/mob.dmi", "states": [{"name": "equipped-FEET", "directions": 4}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Shoes/chef.rsi/meta.json b/Resources/Textures/Clothing/Shoes/chef.rsi/meta.json deleted file mode 100644 index 21a93ec435..0000000000 --- a/Resources/Textures/Clothing/Shoes/chef.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/b099b76491a850ab376aa4d574d5103900f72f2d/icons/inventory/feet/mob.dmi", "states": [{"name": "equipped-FEET", "directions": 4}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Shoes/clown.rsi/meta.json b/Resources/Textures/Clothing/Shoes/clown.rsi/meta.json deleted file mode 100644 index 21a93ec435..0000000000 --- a/Resources/Textures/Clothing/Shoes/clown.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/b099b76491a850ab376aa4d574d5103900f72f2d/icons/inventory/feet/mob.dmi", "states": [{"name": "equipped-FEET", "directions": 4}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Shoes/cowboy.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/cowboy.rsi/equipped-FEET.png deleted file mode 100644 index 2f88ef103bd7d2e75480320fb410c0c4a003bb04..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 511 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEU_9pO;uumf=k2VGS%(57-0ZcT zTrN01TJ%DTCFX7o=kt9{3X#^+&OCa=JjJFVMaZfnT1>Mwua(ctJ9{~oug=pljkd6s zSu>tU|KZ=E^6}nb#gmil&F7ylJQuTp^@az-HU??V17Zovj5nBaR2ZTgdRY>EP36&&@BKCGYtn^7uW+&VyT@wt zdA`^02O4;H)ceUlkHoyL9 zptqiZ;q5<$boB{OB~b`N!&$qth&uH_Y?Bl2@jnrGA$&@+`}emkMB~pJX&U zDCV}gP3J!Iwp6Xfk%!f8%-a*ThGBR9Cx!*#UKuY^zx0Hu3Fe#*v0dES7S|T1$@oLE vFXKD=#%tZ83f(gs{@<7{4s`LxYd_fr diff --git a/Resources/Textures/Clothing/Shoes/cowboy.rsi/icon.png b/Resources/Textures/Clothing/Shoes/cowboy.rsi/icon.png deleted file mode 100644 index 3ab1219aaa1774c01dd67af78f0b061cc6eadb3e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 268 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJ%bqTdAr*6y6C_xbWetRa3LYF_ z?9wSHC^(>f-euy;5QfEk5~T-LFt<%(uA6uJ&-}*5#)lt|dH$ErpYugt?OWROk{uSl zvIl_RL)!B%|L4f8i8$(M+O5MLAk8Do{>Ntf&;Rqd%O(8m{x*jGdvaNxXZpQ=s+O_> zPaEbxH~atp&o9pAohIxceE8&Ydx&JHh diff --git a/Resources/Textures/Clothing/Shoes/cowboy.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/cowboy.rsi/inhand-right.png deleted file mode 100644 index 1b8460287ee0f43bd00fd244ae3a5e70de5ac715..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 422 zcmV;X0a^ZuP)ND4hxp!7WP>!A)?8S+q_H z-dH3~3Dp)_b3_04;`u>_d|eKQBtz~6h=_=Yi0D761VNxRfbaXI1Sv{4zf(>Od$9oN z0Mb~1bO32AKstal7BIb&j0PzHME!0W^}A_yY&`7c$5$V5c}4QiJOSfjFRi<^nZdI` zO!wFPdT9Y7ijkPaY?1xN>w#sZ`RNYg6d_uTu{`H4|eX3Hq$39x1Dz&v~f zqytDRt$_FB6W-1iZ2Jyq6_Cxn13+_g9ox+f?0dUbm9VCB^Yq+15s{6)0kgo>pa!qs Q<^TWy07*qoM6N<$f`GBP;Q#;t diff --git a/Resources/Textures/Clothing/Shoes/cowboy.rsi/meta.json b/Resources/Textures/Clothing/Shoes/cowboy.rsi/meta.json deleted file mode 100644 index 21a93ec435..0000000000 --- a/Resources/Textures/Clothing/Shoes/cowboy.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/b099b76491a850ab376aa4d574d5103900f72f2d/icons/inventory/feet/mob.dmi", "states": [{"name": "equipped-FEET", "directions": 4}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Shoes/cult.rsi/meta.json b/Resources/Textures/Clothing/Shoes/cult.rsi/meta.json deleted file mode 100644 index 21a93ec435..0000000000 --- a/Resources/Textures/Clothing/Shoes/cult.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/b099b76491a850ab376aa4d574d5103900f72f2d/icons/inventory/feet/mob.dmi", "states": [{"name": "equipped-FEET", "directions": 4}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Shoes/detective.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/detective.rsi/equipped-FEET.png deleted file mode 100644 index 426093490343a102dab060112ccf9ce5f152de4a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 594 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEV3PE7aSW-L^LEz8Y~eteN@&QksQdGo~w58DHKWTm5h zpQS6Wn)=~y^S*|t!-3f)jd~2l8y8=F`93he`dQNP?eFLD%k$UYedyuL%XGuC;Eha) zrpsUR`dQtTZ2v`-j{lAlFVJCI_cq5a;S^DR#i7V}B7^_Cd$V3-e)xZu27P`af3+m{u4(UHx3vIVCg!09K<60RR91 diff --git a/Resources/Textures/Clothing/Shoes/detective.rsi/icon.png b/Resources/Textures/Clothing/Shoes/detective.rsi/icon.png deleted file mode 100644 index 94fbbb74d2aef8780d24f32fa2e030591331d5fe..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 321 zcmV-H0lxl;P) z)a^KVx`*GD<-)E2m?VbxFQL_d+w019?Azy(*SQ~}& diff --git a/Resources/Textures/Clothing/Shoes/detective.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/detective.rsi/inhand-left.png deleted file mode 100644 index ae8a658b5c3b888416b14a2fd97f12b19d55bc26..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 234 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=8$DedLn`LHy`{)^$U(sE;dK^A z(}UuU55yXr6L$K)Kfw9n4x@;=g5ruK&t|XEJD<;%fL>!*SrLk$d44$rjF6*2UngH+7Uikn3 diff --git a/Resources/Textures/Clothing/Shoes/detective.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/detective.rsi/inhand-right.png deleted file mode 100644 index bb1dcd25edbed2e2e304e2467cf5816f46fe9289..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 240 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=+dW+zLn`LHy=BXF$U&g(p?N}L z*2ezU7rIx@9lG|rg55viz3i4xEKL!a+6S%5vK2K$j@UDG?(;X@z*F-k&zyOZiYE~L z(!aR4*>gU_23xlhsm3tlwCQO+)B3AVJ-Pa4>+NGVE%+FAn=mKbSj%h>J6B?Bci-Q= z<)7p4y6G$OO!D4)!#VExGwBHVQ@@#4&5MT^2qL*Ye_XQV)o~5A*_qr>mdKI;Vst0D+}t`2YX_ diff --git a/Resources/Textures/Clothing/Shoes/detective.rsi/meta.json b/Resources/Textures/Clothing/Shoes/detective.rsi/meta.json deleted file mode 100644 index 21a93ec435..0000000000 --- a/Resources/Textures/Clothing/Shoes/detective.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/b099b76491a850ab376aa4d574d5103900f72f2d/icons/inventory/feet/mob.dmi", "states": [{"name": "equipped-FEET", "directions": 4}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Shoes/flippers.rsi/meta.json b/Resources/Textures/Clothing/Shoes/flippers.rsi/meta.json deleted file mode 100644 index 21a93ec435..0000000000 --- a/Resources/Textures/Clothing/Shoes/flippers.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/b099b76491a850ab376aa4d574d5103900f72f2d/icons/inventory/feet/mob.dmi", "states": [{"name": "equipped-FEET", "directions": 4}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Shoes/galoshes.rsi/meta.json b/Resources/Textures/Clothing/Shoes/galoshes.rsi/meta.json deleted file mode 100644 index 21a93ec435..0000000000 --- a/Resources/Textures/Clothing/Shoes/galoshes.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/b099b76491a850ab376aa4d574d5103900f72f2d/icons/inventory/feet/mob.dmi", "states": [{"name": "equipped-FEET", "directions": 4}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Shoes/green.rsi/meta.json b/Resources/Textures/Clothing/Shoes/green.rsi/meta.json deleted file mode 100644 index 21a93ec435..0000000000 --- a/Resources/Textures/Clothing/Shoes/green.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/b099b76491a850ab376aa4d574d5103900f72f2d/icons/inventory/feet/mob.dmi", "states": [{"name": "equipped-FEET", "directions": 4}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Shoes/jackboots.rsi/meta.json b/Resources/Textures/Clothing/Shoes/jackboots.rsi/meta.json deleted file mode 100644 index 1d8cc6b131..0000000000 --- a/Resources/Textures/Clothing/Shoes/jackboots.rsi/meta.json +++ /dev/null @@ -1,60 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7e4e9d432d88981fb9bb463970c5b98ce85c0abe", - "states": [ - { - "name": "equipped-FEET", - "directions": 4 - }, - { - "name": "icon", - "directions": 1, - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "inhand-left", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "inhand-right", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/Shoes/leather.rsi/meta.json b/Resources/Textures/Clothing/Shoes/leather.rsi/meta.json deleted file mode 100644 index 21a93ec435..0000000000 --- a/Resources/Textures/Clothing/Shoes/leather.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/b099b76491a850ab376aa4d574d5103900f72f2d/icons/inventory/feet/mob.dmi", "states": [{"name": "equipped-FEET", "directions": 4}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Shoes/magboots.rsi/meta.json b/Resources/Textures/Clothing/Shoes/magboots.rsi/meta.json deleted file mode 100644 index 93c522d46d..0000000000 --- a/Resources/Textures/Clothing/Shoes/magboots.rsi/meta.json +++ /dev/null @@ -1,109 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/discordia-space/CEV-Eris/raw/b099b76491a850ab376aa4d574d5103900f72f2d/icons/inventory/feet/mob.dmi", - "states": [ - { - "name": "equipped-FEET", - "directions": 4 - }, - { - "name": "on-equipped-FEET", - "directions": 4 - }, - { - "name": "icon", - "directions": 1, - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "icon-on", - "directions": 1, - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "inhand-left", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "inhand-right", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "on-inhand-left", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "on-inhand-right", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/Shoes/mime.rsi/meta.json b/Resources/Textures/Clothing/Shoes/mime.rsi/meta.json deleted file mode 100644 index 21a93ec435..0000000000 --- a/Resources/Textures/Clothing/Shoes/mime.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/b099b76491a850ab376aa4d574d5103900f72f2d/icons/inventory/feet/mob.dmi", "states": [{"name": "equipped-FEET", "directions": 4}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Shoes/orange.rsi/meta.json b/Resources/Textures/Clothing/Shoes/orange.rsi/meta.json deleted file mode 100644 index 09294c69f3..0000000000 --- a/Resources/Textures/Clothing/Shoes/orange.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/b099b76491a850ab376aa4d574d5103900f72f2d/icons/inventory/feet/mob.dmi", "states": [{"name": "equipped-FEET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Shoes/purple.rsi/meta.json b/Resources/Textures/Clothing/Shoes/purple.rsi/meta.json deleted file mode 100644 index 21a93ec435..0000000000 --- a/Resources/Textures/Clothing/Shoes/purple.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/b099b76491a850ab376aa4d574d5103900f72f2d/icons/inventory/feet/mob.dmi", "states": [{"name": "equipped-FEET", "directions": 4}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Shoes/red.rsi/meta.json b/Resources/Textures/Clothing/Shoes/red.rsi/meta.json deleted file mode 100644 index 21a93ec435..0000000000 --- a/Resources/Textures/Clothing/Shoes/red.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/b099b76491a850ab376aa4d574d5103900f72f2d/icons/inventory/feet/mob.dmi", "states": [{"name": "equipped-FEET", "directions": 4}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Shoes/s_ninja.rsi/meta.json b/Resources/Textures/Clothing/Shoes/s_ninja.rsi/meta.json deleted file mode 100644 index 21a93ec435..0000000000 --- a/Resources/Textures/Clothing/Shoes/s_ninja.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/b099b76491a850ab376aa4d574d5103900f72f2d/icons/inventory/feet/mob.dmi", "states": [{"name": "equipped-FEET", "directions": 4}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Shoes/slippers.rsi/meta.json b/Resources/Textures/Clothing/Shoes/slippers.rsi/meta.json deleted file mode 100644 index 09294c69f3..0000000000 --- a/Resources/Textures/Clothing/Shoes/slippers.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/b099b76491a850ab376aa4d574d5103900f72f2d/icons/inventory/feet/mob.dmi", "states": [{"name": "equipped-FEET", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "icon", "directions": 1, "delays": [[1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Shoes/springjacks.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/springjacks.rsi/equipped-FEET.png deleted file mode 100644 index 50f409be5d331f5e3e83f5a1b3f0b802f137ef57..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 776 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEU^?&V;uumf=k2WX-nRo7j_>ab zW)n0yy<$sKFMIh+FGZ)5sbWW_-VIZ3Zgl_O(tCH$+b#7659h6R+$PI*`{-J}B^+Yq z0fk}Ft|{$Tjkvxp*pkm4zS74{sJmqna7uJo^dvAfF3YepRInQM)YUozWYW=&dprR^C9!#}HU&ClmM>-K4g$j?h^-g*GAUK!JdR5n>@9!?Ne&4+@ zF!-bET*p&|0^4(Q#JIwx5;q43XdXXUm&C^rEg{)8*V^7lg!z!zH{oIr%f9trMfK+& zFWxz)W6eGr^KUOQCGT(P5n8Qw!!jdlNB4_6zPMSKm1}h2oxlU3_YI5XxNDbn?#NBHnc1@JbwTX+ zC^L7H$Gg^DD3N`9QUw^6c9)L?_KQ~Rb9mqIHa_-7oEDQe|HS{sVwY|QtW;s{u2>qh sQen$4CV4x1YiaA!7fu!jYW6eUEWh#uO9pM%jx`{3aPvR7^+$Aea8vpRbkej-5gZ(BsYR23 zIGLtXmqPL!+-+h7hrYAk%Xbf#%LT=%qb+K19A~KkwOZ}Rx>zdx4^RS1KnW;;e-~Iw z(`=filu{DUXB2k!=yki=QMD?)@c@xoN7FQX-(UFNe=VTvI+=@YHU)Sm&j5Ji0fo*! zlNjb_A8F#!34}o)AA*1_As~+V?3Cf~j@QdF8(A1ef=Ry*AanVA;w>b)fsyOVie=HT zZEm9$Z$jX`7~f*=2E#~jFIqHgn~G&Ia$T8JAkhY9(<#040{}{Zhe5p=@&weIAvae! tO0>B?Z3FO_J!ZF9OzNOeC=`kn=L;$XR29Pikn{im002ovPDHLkV1g~;j}ZU> diff --git a/Resources/Textures/Clothing/Shoes/springjacks.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/springjacks.rsi/inhand-left.png deleted file mode 100644 index 710fa81c5df5ff36ba99e8e2353e9d71a0cea34b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 644 zcmV-~0(GZl<9)30fqY zx`aYQ9okZ>O(H=YOfnSWkdV9%(vsNLLhtk?pPaayg)jgKK||R%L}KTkbm)|@wa2({B~Ff zA%qY@2qAQ3m<;{4xCEfP0o^13-3{m_0qAZ(Hwi#@1G)`;0IohB z{~to3kZQNv!0*TLt!I;beUQKKCH=syfJ`QX&*vjBF^*+fT=6=qH&82}SS+fkK!CSv zYXBs-Q;uJp7?>51&1RM5^>S~1o>)B2&0vt9HzJPf4$KNTJUnE4>j|&kJw6`$48T?V ex|$L~47^_ggSb1q200A?0000)gW!Rc9EV1 z34);=s#p_~fJg^pC_*|IlDC6RNvJj8Mc;({KHJ@U7oPXIH-X$82qAR?o zrw_1gyCXp^%WHnKGckIX6rekRZc>2m0J=#5x&!DY1?Uc-Ti+Kj(7X{2hm}%_`e}u+ z2M_tYzHU64nNfwkZOlOn!!Rfoi-xYS?O3a`Dtf2JR>=oIWq!@DR%aDJV}E6SttEd; z0e-)q!KHfyO(;D320&qNo3Ye5$8|VeIJ};jc(7IS(Od%X&vvuFUx9L|q&CxO_Dz%H zIvk}Y0m!|cXu`=ew$e-F#jp9ESsY1x6x7C#G7)qZ3mw65+sJA>lYJ z`3=`~$z(EW^vlbZlb${=^VM>Vsfw*Wyt&;nwsvEVWHM<$cl;gxu{3w?1sPd*Yg{yT zwaJ7KLI@#*5JCvit=irc==Jvp+Ufh-;!=R_0J=#5x&!DY1?Uc-n-risfNp(Xz(D&$ z{x9_2R)a4NsaC7N+2i$WHrrFr+&ry-n*p#ai_qvW!C;W(<>gN0x;CCxK=H^&^wkjW z##aFt3x&vJGAa^@^vo*o{2TD=ZiM^cFw?OZkK=KyK!8*#)m85gT*T7~$o;%UZleGj qPssk+HyrSBauV-AG$DkzdcOfQT)vo8JP=X<0000qCYprAl(sa?a7h)p8f`GjWe;_!PJAQBwp>2!<# zRlVBYw%_w*n!MMU&Gjoh8MBe~h6lqo25HU%VhPHOH<)r%7@`|`SrWK6Ok~JmG!tsj zJ>bT)0jHv!KNzk@>euie{_!DFla--@lj-fct6hunD-PpR;%M^`$26 zzyG*&@3p+yXLkgxJP@zjwJqj`0VnF2(heP^Q!kvd;0Z9ijn8t3)^zv-pP+t-E{8$+p^BDaqE}&9)En~ zPuA91*>%ep{?F|GFFb`9$K&u}uvf$Kizx`p0>s8_-XMD7{d&nu6{1-oD!M`s1A@#(aw*YGx+qGYueJ8I;AUo*e-h>k*`%1J z33rydb-DlqAOHaf0KnTThrIXsm}#w%^HYqrZHs>ec<-}w?jcJlVV-9gW6(6sp2rx` zbzMF~Tmpm;vQi(frL_h#qpoW(^S(zZ1!hJ{2~|~HzR-_=5JK+zeqYBJ0RZDTKHYfh z55oX!?cV_*glvp?7<@K-D{C!?2*;=THDIgH!>{B3;G6>yp)AYS0qeSgh`#K7mmh0c nmeYPAUors*KmY;|z}xp{gW00000NkvXXu0mjfCf0Pg diff --git a/Resources/Textures/Clothing/Shoes/white.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/white.rsi/inhand-left.png deleted file mode 100644 index 96d495a7de5e366d760f4b765704fb7b8a9a59e6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 221 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=OFUg1Ln`LHy=9o!Vj#eJVZKby zH0~V>on<SOq$AOAjUkIw0-D$gsI zz1}q?Xw$mvV}&(Y&sKju|10mNj%U`|@U>rez5i^pe9ENES^t*&+dgaGGXtLR``&CpZ|Mb`t5D)#_?;}LFO?qJZS9yo0&URK4Tt##rA7I8~blD{A6Tc$au!SP&RJ! Sg~m(?kSb4CKbLh*2~7YVBVDrq diff --git a/Resources/Textures/Clothing/Shoes/white.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/white.rsi/inhand-right.png deleted file mode 100644 index ac47f894bbf8227d20f4dc8b26840fad1e0d68f5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 227 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyCO`>*^tXaAQ-E4EzPwpJx`mfF=) z)4s(;=i2`=rl04Bmx8VNU&9Y4gTW%IetWcE6xGmXz<;8(B*Az^DwUll9*mG&u%N@(^bi8@+ z=gy|)B~km9rk5;`{`;vXXwU0A+dZCiuKj#xt#|Y4QpSY^>q=j8g2+OHe=;1c#cRE7 cR(%kaeqg-#;!YP8pj#O{UHx3vIVCg!0K;Z?^#A|> literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/green.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/green.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..23855a8759e370493aafc27569cb8e04fc93a7cb GIT binary patch literal 321 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0J3?w7mbKU|etpJ}8R}k$jViYBAW@cuaFY8*X z7&28WY=(B^9G%n?R#{nDO-)UGeSIfRoCuS790gR(SQ6wH%;50sMjDWF)YHW=#N&8! zf&}a0hIa=V8}Bj(Uy)T|WYgj0(b1Loq@cJ$<8%qzcg-1G%d9szyV|Bt3psaW1GDFq z%|++Vc=@n$1d5%HG>$b`>mXD*-;}po|4y23d4usr?S@XHsJC}hI~4m>PQ7^f=w-)B z2G5WaS3ManbG=!#I6>qB`vwDpDGx#)FuL&l5UCK`5b`MafKlv=Tx%17(f~@-ieco1E{ta?c6q OAqG!ZKbLh*2~7awGIwqO literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/green.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/green.rsi/meta.json new file mode 100644 index 0000000000..d01e147030 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/green.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/color.rsi/grey_skirt-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/grey.rsi/equipped-INNERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/color.rsi/grey_skirt-equipped-INNERCLOTHING.png rename to Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/grey.rsi/equipped-INNERCLOTHING.png diff --git a/Resources/Textures/Clothing/Uniforms/color.rsi/grey_skirt.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/grey.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/color.rsi/grey_skirt.png rename to Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/grey.rsi/icon.png diff --git a/Resources/Textures/Clothing/Uniforms/color.rsi/grey-inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/grey.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/color.rsi/grey-inhand-left.png rename to Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/grey.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Uniforms/color.rsi/grey-inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/grey.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/color.rsi/grey-inhand-right.png rename to Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/grey.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/grey.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/grey.rsi/meta.json new file mode 100644 index 0000000000..d01e147030 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/grey.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/color.rsi/lightbrown_skirt-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/lightbrown.rsi/equipped-INNERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/color.rsi/lightbrown_skirt-equipped-INNERCLOTHING.png rename to Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/lightbrown.rsi/equipped-INNERCLOTHING.png diff --git a/Resources/Textures/Clothing/Uniforms/color.rsi/lightbrown_skirt.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/lightbrown.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/color.rsi/lightbrown_skirt.png rename to Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/lightbrown.rsi/icon.png diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/lightbrown.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/lightbrown.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..d316b0400e147716d7a0df188a172533daa9a0cf GIT binary patch literal 287 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0J3?w7mbKU|el>na*S0HU=WfgD66YnIGm6g@d z(9jsA+TGnfD_du2rNV&&2aeCMlsX=IAE=J8B*-tA!Qt7BG$3cCr;B5V$MLt54Y>{* z@VL5ePSLY<_{iz9TcW7fPuBXWgrt{Yh2{?p&MON}ml~){)j50ifw}F6_|Iz!M#^Abna*S0HU=WfgD66YnIGm6g@d z(9jsA+TGnfD_du2rNV&&2aeCMlsX=IAE=J8B*-tA!Qt7BG$7}Mr;B5V$MLt5H*y^^ z5NPYab1AZhq4z<|n@N{WItuKvvb6dt8^bkK=!DW2$(klHo;#;^vhc?2+-UJce*f0?*v*R?Z|Pj<(hbu(MmX0LTz=Po~ zSA6Q;b?JvbOXSay3*5RdE-dCp;MFhRjw9!*x1x}-gG1N8KrbB}`U1@&kq#ML+k)HQ zq1+%*gSq^Q7tXhtz{#JRdtDAdL_|bHL_|bHL_Ul$l4Y6fy6&4-zm{d0_~z|%sS#p~ zku*(_=lRyXG)-GCg3GJR^V}=%=!`KUB4VwTqA052ilPt^Y5mn)UOmfN>y>v@ZdehK z^?F?m?q1$Gbm+~zdX~%ATm+RP006Vu3{eyT0LrpN9LLpl-#h?_;}~UG0sx{Y^3L1m zLLA}y^&TFEw1Kcpn=eNs$r8P!Ki=T>bz>_HM!CX`hB~{!(xGMw~OI$2x~1?s}*j(Ud|$KAGHMlfV<8s z@D02_KB0HpL9YXRo>AT|YG z8yytwHaf^70O+;RK^6>}?QxJhK(jp#asf2kW7Tr>l(gF8U>5+;X^(^a69m{E6OoQT X?t7B)SZewJ00000NkvXXu0mjfW=Gk` literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/detective_grey.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/detective_grey.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..fd6f60eabb419bc43744183a656ee013dea57170 GIT binary patch literal 500 zcmVLK;Vmp~6*49(KAIs->^fH-^BcDr3OAIm1}=XLq^GoQ-ac?AH9q5vR{W9qsFAc~@9J~l;B5JeFHbzKw3 zaWg;WP1n%v)^fRQJzFdm0IXK4&UgQXYw~uU0Qcq1W&^-_y=MROn0`E5m$!2R?(c4F zk|fO{v)Qa!EJ+gX?`}qM|D9{{zUzDN=lcVno}QRar_ASbj4^DtTi*ZvHgNo5T$;Cc z0{}iw9^n~&eE!1ihY7b6_%&$kVO^59_ih|JHeY|fjOsrC!pkcnA|fIpA|fIZg3uac zAHCJsq0k!R!G+cs4=S|A_#EC>0K#jGeRvlJp*6<7yiY)Ajj=E94G66<_I0!zJrr7F q?BlErfbbgQQ_i}#YG6g=fAbgd29oh0@PYCG0000~8HZvDq|ygqKxD$kGeb@B!gIRPvki_%(bv8Ooh7_aN*ecw@>%lW!_ zL8ih6aACQm)qQ;Z{Mzmm7n_OCcGvUw4jq*)hrXY5-Y{Z2fD2_@-I?{uzGsgV8kJa@0`(#YMC&KpK#2dHAM>dl^Y)va-hRj>DVTjfiAcqVoU z^waXf-K@hNKMIjExszJ;o>I$X+csI2McHhY3WWkWjzh&_krLGhI;-A}{9e*|gNS{n zY}Oi-yD3rr{DMx7Pupv|NsA)22HpLGydYxN5_c^YnWm+=d0L3hP~-iL9-A-Zwm!7F zC7lNV0000000000U^J<5{6q&MlOj2eH}V9K;5gp6-`Azb=f>^;sqwk&-z|QD^!VJ! z9UwW5H}(?fM`xUF}s8#`vk_#7ZSBKia?%r>jgF@fIz0000+IFt<#jM0{S z)I&TD_zK3{k^gULxVD#nzutA=BLDyZ00000000=eI4CE2C9cY+iD}#hoQw16QRd}c zHx2SlC;7dJ@n)}0JZ@VNR9?=fo0r#E0Ct>DXuP64$IBp}(#reh`mh;ccyJo6p z-7k!OKXlVK&y!cYpX;upHeEhHPTc?Bmd!hL1@J_SC-KkEMw6*=+bo(lrw^o6N|#Z^ zODh|OAqC&(xw_3BS@HJi5AqsUfVx<(-hC(jb>0>#kIJX0{Il{--2yC5;#sGyC&@pt z1z4?EO72Sg^j59XtM5}i2F!33ikn-+$IjO$wLad5N1GmAaV;+Z0000000000IKZ`*xx~!I z$T-(p=2GGUkb^CA3DN)MuC>gw$g~1nYne+JdxJXHTIN}ZSAc6RbE!;QfL5Sot`ltm sanCRtpgg0I@ta&%c_K*#H0l07*qoM6N<$f*8x?yZ`_I literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos_parade.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos_parade.rsi/meta.json new file mode 100644 index 0000000000..d01e147030 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos_parade.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/uniform_hydro.rsi/hydro_skirt-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hydro.rsi/equipped-INNERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_hydro.rsi/hydro_skirt-equipped-INNERCLOTHING.png rename to Resources/Textures/Clothing/Uniforms/Jumpskirt/hydro.rsi/equipped-INNERCLOTHING.png diff --git a/Resources/Textures/Clothing/Uniforms/uniform_hydro.rsi/hydro_skirt.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hydro.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_hydro.rsi/hydro_skirt.png rename to Resources/Textures/Clothing/Uniforms/Jumpskirt/hydro.rsi/icon.png diff --git a/Resources/Textures/Clothing/Uniforms/uniform_hydro.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hydro.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_hydro.rsi/inhand-left.png rename to Resources/Textures/Clothing/Uniforms/Jumpskirt/hydro.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Uniforms/uniform_hydro.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hydro.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_hydro.rsi/inhand-right.png rename to Resources/Textures/Clothing/Uniforms/Jumpskirt/hydro.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/hydro.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hydro.rsi/meta.json new file mode 100644 index 0000000000..d01e147030 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hydro.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/uniform_janitor.rsi/jan_skirt-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/janitor.rsi/equipped-INNERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_janitor.rsi/jan_skirt-equipped-INNERCLOTHING.png rename to Resources/Textures/Clothing/Uniforms/Jumpskirt/janitor.rsi/equipped-INNERCLOTHING.png diff --git a/Resources/Textures/Clothing/Uniforms/uniform_janitor.rsi/jan_skirt.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/janitor.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_janitor.rsi/jan_skirt.png rename to Resources/Textures/Clothing/Uniforms/Jumpskirt/janitor.rsi/icon.png diff --git a/Resources/Textures/Clothing/Uniforms/uniform_janitor.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/janitor.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_janitor.rsi/inhand-left.png rename to Resources/Textures/Clothing/Uniforms/Jumpskirt/janitor.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Uniforms/uniform_janitor.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/janitor.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_janitor.rsi/inhand-right.png rename to Resources/Textures/Clothing/Uniforms/Jumpskirt/janitor.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/janitor.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/janitor.rsi/meta.json new file mode 100644 index 0000000000..d01e147030 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpskirt/janitor.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/uniform_medical.rsi/medical_skirt-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/medical.rsi/equipped-INNERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_medical.rsi/medical_skirt-equipped-INNERCLOTHING.png rename to Resources/Textures/Clothing/Uniforms/Jumpskirt/medical.rsi/equipped-INNERCLOTHING.png diff --git a/Resources/Textures/Clothing/Uniforms/uniform_medical.rsi/medical_skirt.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/medical.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_medical.rsi/medical_skirt.png rename to Resources/Textures/Clothing/Uniforms/Jumpskirt/medical.rsi/icon.png diff --git a/Resources/Textures/Clothing/Uniforms/uniform_medical.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/medical.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_medical.rsi/inhand-left.png rename to Resources/Textures/Clothing/Uniforms/Jumpskirt/medical.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Uniforms/uniform_medical.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/medical.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_medical.rsi/inhand-right.png rename to Resources/Textures/Clothing/Uniforms/Jumpskirt/medical.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/medical.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/medical.rsi/meta.json new file mode 100644 index 0000000000..d01e147030 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpskirt/medical.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/uniform_mime.rsi/mime_skirt-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/mime.rsi/equipped-INNERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_mime.rsi/mime_skirt-equipped-INNERCLOTHING.png rename to Resources/Textures/Clothing/Uniforms/Jumpskirt/mime.rsi/equipped-INNERCLOTHING.png diff --git a/Resources/Textures/Clothing/Uniforms/uniform_mime.rsi/mime_skirt.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/mime.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_mime.rsi/mime_skirt.png rename to Resources/Textures/Clothing/Uniforms/Jumpskirt/mime.rsi/icon.png diff --git a/Resources/Textures/Clothing/Uniforms/uniform_mime.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/mime.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_mime.rsi/inhand-left.png rename to Resources/Textures/Clothing/Uniforms/Jumpskirt/mime.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Uniforms/uniform_mime.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/mime.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_mime.rsi/inhand-right.png rename to Resources/Textures/Clothing/Uniforms/Jumpskirt/mime.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/mime.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/mime.rsi/meta.json new file mode 100644 index 0000000000..d01e147030 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpskirt/mime.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/uniform_medical.rsi/paramedic_skirt-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/paramedic.rsi/equipped-INNERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_medical.rsi/paramedic_skirt-equipped-INNERCLOTHING.png rename to Resources/Textures/Clothing/Uniforms/Jumpskirt/paramedic.rsi/equipped-INNERCLOTHING.png diff --git a/Resources/Textures/Clothing/Uniforms/uniform_medical.rsi/paramedic_skirt.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/paramedic.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_medical.rsi/paramedic_skirt.png rename to Resources/Textures/Clothing/Uniforms/Jumpskirt/paramedic.rsi/icon.png diff --git a/Resources/Textures/Clothing/Uniforms/uniform_scientist.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/paramedic.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_scientist.rsi/inhand-left.png rename to Resources/Textures/Clothing/Uniforms/Jumpskirt/paramedic.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Uniforms/uniform_scientist.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/paramedic.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_scientist.rsi/inhand-right.png rename to Resources/Textures/Clothing/Uniforms/Jumpskirt/paramedic.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/paramedic.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/paramedic.rsi/meta.json new file mode 100644 index 0000000000..d01e147030 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpskirt/paramedic.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/uniform_prisoner.rsi/prisoner_skirt-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/prisoner.rsi/equipped-INNERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_prisoner.rsi/prisoner_skirt-equipped-INNERCLOTHING.png rename to Resources/Textures/Clothing/Uniforms/Jumpskirt/prisoner.rsi/equipped-INNERCLOTHING.png diff --git a/Resources/Textures/Clothing/Uniforms/uniform_prisoner.rsi/prisoner_skirt.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/prisoner.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_prisoner.rsi/prisoner_skirt.png rename to Resources/Textures/Clothing/Uniforms/Jumpskirt/prisoner.rsi/icon.png diff --git a/Resources/Textures/Clothing/Uniforms/uniform_prisoner.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/prisoner.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_prisoner.rsi/inhand-left.png rename to Resources/Textures/Clothing/Uniforms/Jumpskirt/prisoner.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Uniforms/uniform_prisoner.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/prisoner.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_prisoner.rsi/inhand-right.png rename to Resources/Textures/Clothing/Uniforms/Jumpskirt/prisoner.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/prisoner.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/prisoner.rsi/meta.json new file mode 100644 index 0000000000..d01e147030 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpskirt/prisoner.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/uniform_cargotech.rsi/qm_skirt-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/qm.rsi/equipped-INNERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_cargotech.rsi/qm_skirt-equipped-INNERCLOTHING.png rename to Resources/Textures/Clothing/Uniforms/Jumpskirt/qm.rsi/equipped-INNERCLOTHING.png diff --git a/Resources/Textures/Clothing/Uniforms/uniform_cargotech.rsi/qm_skirt.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/qm.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_cargotech.rsi/qm_skirt.png rename to Resources/Textures/Clothing/Uniforms/Jumpskirt/qm.rsi/icon.png diff --git a/Resources/Textures/Clothing/Uniforms/uniform_rd.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/qm.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_rd.rsi/inhand-left.png rename to Resources/Textures/Clothing/Uniforms/Jumpskirt/qm.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Uniforms/uniform_rd.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/qm.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_rd.rsi/inhand-right.png rename to Resources/Textures/Clothing/Uniforms/Jumpskirt/qm.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/qm.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/qm.rsi/meta.json new file mode 100644 index 0000000000..d01e147030 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpskirt/qm.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/uniform_rnd.rsi/rnd_skirt-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/rnd.rsi/equipped-INNERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_rnd.rsi/rnd_skirt-equipped-INNERCLOTHING.png rename to Resources/Textures/Clothing/Uniforms/Jumpskirt/rnd.rsi/equipped-INNERCLOTHING.png diff --git a/Resources/Textures/Clothing/Uniforms/uniform_rnd.rsi/rnd_skirt.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/rnd.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_rnd.rsi/rnd_skirt.png rename to Resources/Textures/Clothing/Uniforms/Jumpskirt/rnd.rsi/icon.png diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/rnd.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/rnd.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..21b03dcf0e1be00ce0059e6695c459eeef5ee68c GIT binary patch literal 692 zcmV;l0!#ggP)BjE7zW@srCWzms7#?tNg&iDSu%D|vAuQ9PGT^WCH!3#o?rUI-gH>#(Dw97-Nhv#u#IaF~)KU zd{4Qqt7f(5t!Lk>#coj)*0PyDxPqptnB&$cw`WBFK z000;sp92_wYSl^&n;UCW?fN|1dXp$_3+oxs?(}i;{wubc&v4Qk;Poq{pW3x{%X&qy zzNgCNvT_^;!{c)tT+~r=?xx3NGQztjA94TfQzS_OA;iM#&8xTLeYkmRfDmFu2!Y_D zuEzKK-(z7E;{bK+w_3&>pI5I4B-Gkun4-!fkUk#QuggexQRNZH2B0-D?QC)Zrl|7> a|E=GYAI*ME`<2}Q0000z9YKUMWs%=NJTB7b6%WpmIKHXC!PFZw%jZBk4cZ=I0f ziDPk1&#)~CWB)$I%j&dx(Yuo$>blQb|Gc;S^X}?nzZjYnI1q?|!D5@}(&S~CZi^~r zMlSi@r?F#yox-0BCpXTtjtl$rB~2`${;$F##jdPHNq72>16|mjKL6u~zr_Z}9{jFb`OTi8LVSJxIR?(XGr2z0 z)}Q@eYY~1nV_SXRu^9aWg0n2%lz5dto-@Js@pq%D)?9%Zb7%c&=eM`?@ACyZr8H~0 zi{Rek-3<1=vHBhHuCWVqKFpqeb@pvGdD|V+J8HB4AL^gKKY#rv`;A#uoQSYi;8>LN z;u8-rz-KPoIYp-UznK5x)5Zs$KdlT=-pa7chWY<95Hpq$$aKC23eyR`4{uES^mf|^ z!RdPE9pdgSw_ZQRcGm3Q2`()_zSa8V=!sg%ZCAuDJe7=?63!YVy5O|&gz4d;L8(hX zjPmopmZZ?EjYXS_{xAlZ Xp8L0KrTtc5f@JV?^>bP0l+XkK(-J|1 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/rnd.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/rnd.rsi/meta.json new file mode 100644 index 0000000000..d01e147030 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpskirt/rnd.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/uniform_scientist.rsi/sci_skirt-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/scientist.rsi/equipped-INNERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_scientist.rsi/sci_skirt-equipped-INNERCLOTHING.png rename to Resources/Textures/Clothing/Uniforms/Jumpskirt/scientist.rsi/equipped-INNERCLOTHING.png diff --git a/Resources/Textures/Clothing/Uniforms/uniform_scientist.rsi/sci_skirt.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/scientist.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_scientist.rsi/sci_skirt.png rename to Resources/Textures/Clothing/Uniforms/Jumpskirt/scientist.rsi/icon.png diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/scientist.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/scientist.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..5fca30bad4f3779a320b70d3bb4ce30936696f4f GIT binary patch literal 472 zcmV;}0Vn>6P)Nkl^6a?V8(@8GF+ks1PLKk$fnImeT0VEgTJ~nbl>;UOO7tY=Vrv>wm?FVN|^CgHi z8dm!gc>p3JA|fIpA|fIh!h5e}S?aCvp?Q~MWm)RbynDVaLcI5yWf_{Lxq6mmS?@)N zd6$}|8I<>S-g{M54IyYz6larD)!w@n^SWb2QD_K3hvdCgoUE#9+qNnq3IHOaZQCB7 zy*g>@yk|_V002}~g(OMfoP&s{a}G(8psK1#ad;w4ZST2`W&+EEIUDxq< zAJ2Qn%f?$Ua_J|4@%;edFA0bsRS_5L60JR%|@A|fIpA|fK1 zJBtp1*~`&Sn_Y*%TDOxB$0pk$uy)xY2q9<)L5Fk*W_tyIQ->hWbL4rBcXbFR$$PKe zlOQ5zJOAnxnC%I$>JZF!0jxR%rmx5U!`KeN>=$5chhWz4+1VkW@qPi4$c?mF5Yo^9 O0000&?~OpR(4v zx>)Hyt<(z*?d*8-PGrZP&`{5L&*$bGth}41q?CKRYik(8fhg_V+jj5XF6GGn+_#N^ zVM=PJisynUOZTp%{Chx=R9~SMbVGv-jkn3+2?=dtuw&VG~JGb^M zRzF}{v-_^q>v!Md?CwQQF5kj%Ez0xqmd%~Jmt}HYPp{sn_I?5DJX7D#%Q|jHO!}V6 z$k)!?Fh5IcDFegx*QPc%-KIU6`=tH&NgOdV z{AOq=^}0JZ=}*~4-=6zg+d2z5-it9jnl16W!cwv*X|_cB2RlZfRBffW!nV$h`s>9i t#BLv{@GD>h%AMzY744VM`C|W1wx{pQFCWY;zXgmS22WQ%mvv4FO#o6f%7y>{ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/scientist.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/scientist.rsi/meta.json new file mode 100644 index 0000000000..d01e147030 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpskirt/scientist.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/uniform_sec.rsi/sec_skirt-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/security.rsi/equipped-INNERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_sec.rsi/sec_skirt-equipped-INNERCLOTHING.png rename to Resources/Textures/Clothing/Uniforms/Jumpskirt/security.rsi/equipped-INNERCLOTHING.png diff --git a/Resources/Textures/Clothing/Uniforms/uniform_sec.rsi/sec_skirt.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/security.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_sec.rsi/sec_skirt.png rename to Resources/Textures/Clothing/Uniforms/Jumpskirt/security.rsi/icon.png diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/security.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/security.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..4ddf7ba69f403688ace39be1b56dd684fd5e7a13 GIT binary patch literal 516 zcmV+f0{i`mP)~8HZvDq|ygqKxD$kGeb@B!gIRPvki_%(bv8Ooh7_aN*ecw@>%lW!_ zL8ih6aACQm)qQ;Z{Mzmm7n_OCcGvUw4jq*)hrXY5-Y{Z2fD2_@-I?{uzGsgV8kJa@0`(#YMC&KpK#2dHAM>dl^Y)va-hRj>DVTjfiAcqVoU z^waXf-K@hNKMIjExszJ;o>I$X+csI2McHhY3WWkWjzh&_krLGhI;-A}{9e*|gNS{n zY}Oi-yD3rr{DMx7Pupv|NsA)22HpLGydYxN5_c^YnWm+=d0L3hP~-iL9-A-Zwm!7F zC7lNV0000000000U^J<5{6q&MlOj2eH}V9K;5gp6-`Azb=f>^;sqwk&-z|QD^!VJ! z9UwW5H}(?fM`xUF}s8#`vk_#7ZSBKia?%r>jgF@fIz0000+IFt<#jM0{S z)I&TD_zK3{k^gULxVD#nzutA=BLDyZ00000000=eI4CE2C9cY+iD}#hoQw16QRd}c zHx2SlC;7dJ@n)}0JZ@VNR9?=fo0r#E0Ct>DXuP64$IBp}(#reh`mh;ccyJo6p z-7k!OKXlVK&y!cYpX;upHeEhHPTc?Bmd!hL1@J_SC-KkEMw6*=+bo(lrw^o6N|#Z^ zODh|OAqC&(xw_3BS@HJi5AqsUfVx<(-hC(jb>0>#kIJX0{Il{--2yC5;#sGyC&@pt z1z4?EO72Sg^j59XtM5}i2F!33ikn-+$IjO$wLad5N1GmAaV;+Z0000000000IKZ`*xx~!I z$T-(p=2GGUkb^CA3DN)MuC>gw$g~1nYne+JdxJXHTIN}ZSAc6RbE!;QfL5Sot`ltm sanCRtpgg0I@ta&%c_K*#H0l07*qoM6N<$f*8x?yZ`_I literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/security.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/security.rsi/meta.json new file mode 100644 index 0000000000..d01e147030 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpskirt/security.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/uniform_warden.rsi/rwarden_skirt-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/warden.rsi/equipped-INNERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_warden.rsi/rwarden_skirt-equipped-INNERCLOTHING.png rename to Resources/Textures/Clothing/Uniforms/Jumpskirt/warden.rsi/equipped-INNERCLOTHING.png diff --git a/Resources/Textures/Clothing/Uniforms/uniform_warden.rsi/rwarden_skirt.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/warden.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_warden.rsi/rwarden_skirt.png rename to Resources/Textures/Clothing/Uniforms/Jumpskirt/warden.rsi/icon.png diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/warden.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/warden.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..4ddf7ba69f403688ace39be1b56dd684fd5e7a13 GIT binary patch literal 516 zcmV+f0{i`mP)~8HZvDq|ygqKxD$kGeb@B!gIRPvki_%(bv8Ooh7_aN*ecw@>%lW!_ zL8ih6aACQm)qQ;Z{Mzmm7n_OCcGvUw4jq*)hrXY5-Y{Z2fD2_@-I?{uzGsgV8kJa@0`(#YMC&KpK#2dHAM>dl^Y)va-hRj>DVTjfiAcqVoU z^waXf-K@hNKMIjExszJ;o>I$X+csI2McHhY3WWkWjzh&_krLGhI;-A}{9e*|gNS{n zY}Oi-yD3rr{DMx7Pupv|NsA)22HpLGydYxN5_c^YnWm+=d0L3hP~-iL9-A-Zwm!7F zC7lNV0000000000U^J<5{6q&MlOj2eH}V9K;5gp6-`Azb=f>^;sqwk&-z|QD^!VJ! z9UwW5H}(?fM`xUF}s8#`vk_#7ZSBKia?%r>jgF@fIz0000+IFt<#jM0{S z)I&TD_zK3{k^gULxVD#nzutA=BLDyZ00000000=eI4CE2C9cY+iD}#hoQw16QRd}c zHx2SlC;7dJ@n)}0JZ@VNR9?=fo0r#E0Ct>DXuP64$IBp}(#reh`mh;ccyJo6p z-7k!OKXlVK&y!cYpX;upHeEhHPTc?Bmd!hL1@J_SC-KkEMw6*=+bo(lrw^o6N|#Z^ zODh|OAqC&(xw_3BS@HJi5AqsUfVx<(-hC(jb>0>#kIJX0{Il{--2yC5;#sGyC&@pt z1z4?EO72Sg^j59XtM5}i2F!33ikn-+$IjO$wLad5N1GmAaV;+Z0000000000IKZ`*xx~!I z$T-(p=2GGUkb^CA3DN)MuC>gw$g~1nYne+JdxJXHTIN}ZSAc6RbE!;QfL5Sot`ltm sanCRtpgg0I@ta&%c_K*#H0l07*qoM6N<$f*8x?yZ`_I literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/warden.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/warden.rsi/meta.json new file mode 100644 index 0000000000..d01e147030 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpskirt/warden.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/color.rsi/black-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/black.rsi/equipped-INNERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/color.rsi/black-equipped-INNERCLOTHING.png rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/black.rsi/equipped-INNERCLOTHING.png diff --git a/Resources/Textures/Clothing/Uniforms/color.rsi/black.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/black.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/color.rsi/black.png rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/black.rsi/icon.png diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/black.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/black.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..8ca0193cb17684d1ffc1f2472cad19bcb59900b0 GIT binary patch literal 287 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0J3?w7mbKU|etpJ}8S0F7RAt5Ixr=Xyqr>AFb zZtm*p>hA9D<>eI+5RjUhnwFMUR8+KL#fshyXD0(yGnNGT1v5B2yO9RuEcSG94DmSr zcJfBvW&;6Ndm$m+AT^Jfx_Vp(Cq4Ik+I48L!USD0kBN7K7&_10x#;vT-1g@EqOT1; z&lGqZHVbOqx;I_!!{$Q(S5H>Wa}!<86AM^JAs|M1==%O^>?14@8EuAAaYc8Iu+J dIHa|n@#SgLdA1ypMnLB>c)I$ztaD0e0sy9}XEp!; literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/black.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/black.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..f2a18bc4ebb1aec5e19174fc63413b3038f9ebbb GIT binary patch literal 321 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0J3?w7mbKU|etpJ}8S0F7RAt5Ixr=Xyqr>AFb zZtm*p>hA9D<>eI+5RjUhnwFMUR8+KL#fshyXD0(yGnNGT1v5B2yO9Ru9QAZ@4DmRg zoFKuvxZ&M_#>Tsh!B=Ee7}<1qd31CoJ}D@!&^TSh_FZ)b*EH)5&aQjIriQFNw1L_4 z%Id7MtF(MrIReGjPhA~ju+~ASG=3*fxBi_lz48X*joJ;JMp^IfuIy0kS2^|K>7%C| zD;YdPZd{FIxXkrt(c%P=3+x*V45mB?eZc6#_d}#YbVJC)-~*eocK%+a`a?t~zBJ3y zj+IAmb(-$M*KE^PMQZ-oJJZ#n@xq(ilRu=nOjOnL{-Bj$!f7aTM39$3%*|}KDwiK8 P&_fKKu6{1-oD!MF6n0)>C&oeq(`+FGAHgROAwGk(SQ-$Yz()|fMKrA|f*^tc3yTy+ zA%#s`8InWHWs}X>iQ(Y?L5iGY|DEid-68`bA|fIpA|fIpva^30;`k=)I#$+g^g2%R zZSx{bs-#F!t6RX!UH50QK5Wq@uao54&1i*z~-&-38>J}Q+8f*?R?dL6hti+?WdygrgY1DZ-}dnoM`8c*ko2LSUx z{s^cSf!D{e=S5Mwm!xY*%>Z)?Kx!7KRe|?6p!Q+cE$uuaA|fIpA|fIp`uE(XG>#wb zU}RJj$MJ4n0O*b5-TQxCd3^5f4p17OtBuC~jPm&0%^jdPj(7JK=*423?&gqDaeVIH nGoVRpeD3a;nd5V!!~pyN(CGOSO*-XG00000NkvXXu0mjfcRuP# literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/blue.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/blue.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..b185b623967a0a1d91893ac08cab301d8e7b5f8f GIT binary patch literal 504 zcmVt#)Rk-^bw*>qFghAAcBO328S$g zXt5hl_a4;yqUR{ZIr9I3gU{8&|32q<2Okg-5fKp)5fKrQ@8HynbmI8Ni>=#0a!J0h zA$g}`tMaAwooM~#4!?EVnxOJZzOW&A;~OBBx6#*8S!89)uiHp+Nxt5jmHb2UPQ`Y! zQ0~5ezV$mRi)V7(`c(xuKa76=zm1tU`2@&9B9p_(+E;fmRkzKEd1oROze}E4Of(t| zU^Tcd-IbROyN~hn#-9N7;c)k!uKTasLgi8U6qSEK-sGQv`0iMBpT;!u$9JY!@^(M( zk^TKvpM0y-7o z_3@AI$lR!TlXtOL@{pPX7M6h2JkV|d?{7f+!>-*|T+2&DL_|bHL_|bH4sdN`u3_+C zq?cna*S0HU=WfgD66YnIGm6g@d z(9jsA+TGnfD_du2rNV&&2aeCMlsX=IAE=J8B*-tA!Qt7BG$3cCr;B5V$MLt54Y>{* z@VL5ePSLY<_{iz9TcW7fPuBXWgrt{Yh2{?p&MON}ml~){)j50ifw}F6_|Iz!M#^Abna*S0HU=WfgD66YnIGm6g@d z(9jsA+TGnfD_du2rNV&&2aeCMlsX=IAE=J8B*-tA!Qt7BG$7}Mr;B5V$MLt5H*y^^ z5NPYab1AZhq4z<|n@N{WItuKvvb6dt8^bkK=!DW2$(klHo;#;^vhc?2+-UJce*f0?*v*R?Z|Pj<(hbu(MmX0LTz=Po~ zSA6Q;b?JvbOXSay3*5RdE-dCp;MFhRjYU6bA55TLcB62!#%cU0gZ|QV_wdi(6ly4$cnZleoIt7w`c(6bde(qKHl%1RaWk zi(tXFM2_tx_D}lf=G1WE`)$2xzMSUVWat4A5fKp)5fKp)*(qN6IDPa-&Xsi=ILhDp9n-UK=~KrHP5n|p)BNylW}Ht+9_l3dBR%?rCs zou<}KEIf4JKwU+KpSy+>dizZ>uQGf=sc ziGwr$aODp9d>)xh28BWal}ZK8W)q(0q4vFt?#;!_*V4|LB>Fp`ubMhRwOs;gWuSHs zAPr>Cfm9iZx7*nB!l*q<(zWht8d%=~);55z58(3!iPpPSx3u$!h=_=Yh=_=Yh}@<$ zj$iCxWKk5y@owG#=#Asu`+r?|eD3ZJP#T}BjmG|s^7!1%9iTXlclQw($6}oB;WrT*7DrIC670000K;Bwhzar zEKr!>P@qwiS;*zovEb~|v-%0n#m-+mqoO}^e_@niS?JoMlvTu$HKA$R0)@%a>#rZa z`rG|{U{~>zpSk<4S695NK3DpIRS*V#YE6$@BCO6ImvfhGlJ}=p-;=vVqNmQ@_HEJE z>1J%Dw`VQ*b@1!K z>TBDQzZ=%y`ysqwpUk_s_jP}E>4wNn^$+~1{=~PAwdMNuSC+k*Px{~bRQ%tnwv(^lj3kuj$ zvOV_S`}0wG=4{jaM|xi2zqKtBa)l#e+3oH(_NOn|e{apL+M`?dxWK>@rt5Ccq}2G` z+;*B7U0-sa!NS7m`hxHEJF}IGnbXt{Y@N8X?a0L&5x8VNU&9Y4gTW%IetWcE6xGmXz<;8(B*Az^DwUll9*mG&u%N@(^bi8@+ z=gy|)B~km9rk5;`{`;vXXwU0A+dZCiuKj#xt#|Y4QpSY^>q=j8g2+OHe=;1c#cRE7 cR(%kaeqg-#;!YP8pj#O{UHx3vIVCg!0K;Z?^#A|> literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/darkgreen.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/darkgreen.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..23855a8759e370493aafc27569cb8e04fc93a7cb GIT binary patch literal 321 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0J3?w7mbKU|etpJ}8R}k$jViYBAW@cuaFY8*X z7&28WY=(B^9G%n?R#{nDO-)UGeSIfRoCuS790gR(SQ6wH%;50sMjDWF)YHW=#N&8! zf&}a0hIa=V8}Bj(Uy)T|WYgj0(b1Loq@cJ$<8%qzcg-1G%d9szyV|Bt3psaW1GDFq z%|++Vc=@n$1d5%HG>$b`>mXD*-;}po|4y23d4usr?S@XHsJC}hI~4m>PQ7^f=w-)B z2G5WaS3ManbG=!#I6>qB`vwDpDGx#)FuL&l5UCK`5b`MafKlv=Tx%17(f~@-ieco1E{ta?c6q OAqG!ZKbLh*2~7awGIwqO literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/darkgreen.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/darkgreen.rsi/meta.json new file mode 100644 index 0000000000..d01e147030 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/darkgreen.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/color.rsi/green-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/green.rsi/equipped-INNERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/color.rsi/green-equipped-INNERCLOTHING.png rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/green.rsi/equipped-INNERCLOTHING.png diff --git a/Resources/Textures/Clothing/Uniforms/color.rsi/green.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/green.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/color.rsi/green.png rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/green.rsi/icon.png diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/green.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/green.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..5456486c2589acec3dd4dc1e6ac4ad79c3ef5a13 GIT binary patch literal 284 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0J3?w7mbKU|etpJ}8R}k$jViYBAW@cuaFY8*X z7&28WY=(B^9G%n?R#{nDO-)UGeSIfRoCuS790gR(SQ6wH%;50sMjDW_z|+Ms#N+te z$+lcA1_EyG0y#%#--tTfm3^W%=Th!NK^M;tD%|&cKTP*b+ZNls=auXJ39lGklx8VNU&9Y4gTW%IetWcE6xGmXz<;8(B*Az^DwUll9*mG&u%N@(^bi8@+ z=gy|)B~km9rk5;`{`;vXXwU0A+dZCiuKj#xt#|Y4QpSY^>q=j8g2+OHe=;1c#cRE7 cR(%kaeqg-#;!YP8pj#O{UHx3vIVCg!0K;Z?^#A|> literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/green.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/green.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..23855a8759e370493aafc27569cb8e04fc93a7cb GIT binary patch literal 321 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0J3?w7mbKU|etpJ}8R}k$jViYBAW@cuaFY8*X z7&28WY=(B^9G%n?R#{nDO-)UGeSIfRoCuS790gR(SQ6wH%;50sMjDWF)YHW=#N&8! zf&}a0hIa=V8}Bj(Uy)T|WYgj0(b1Loq@cJ$<8%qzcg-1G%d9szyV|Bt3psaW1GDFq z%|++Vc=@n$1d5%HG>$b`>mXD*-;}po|4y23d4usr?S@XHsJC}hI~4m>PQ7^f=w-)B z2G5WaS3ManbG=!#I6>qB`vwDpDGx#)FuL&l5UCK`5b`MafKlv=Tx%17(f~@-ieco1E{ta?c6q OAqG!ZKbLh*2~7awGIwqO literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/green.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/green.rsi/meta.json new file mode 100644 index 0000000000..d01e147030 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/green.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/color.rsi/grey-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/grey.rsi/equipped-INNERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/color.rsi/grey-equipped-INNERCLOTHING.png rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/grey.rsi/equipped-INNERCLOTHING.png diff --git a/Resources/Textures/Clothing/Uniforms/color.rsi/grey.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/grey.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/color.rsi/grey.png rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/grey.rsi/icon.png diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/grey.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/grey.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..ae15d262d7a641a5c2a66ab22b2d0e933dfe7330 GIT binary patch literal 287 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0J3?w7mbKU|etpJ}8S0JsguWx2%W?^CB=H}+_ z?;jr@pO~1Kl9G~@mDSkT*wob2*VlLA#EIjjGHZaU8B2ovf*Bm1-ADs+7JIrlhIkx* zJ9#5-vw?uCy^xS@kebI#T|KUYlb(A%?K-qrVS=uh$Hcoq44vohTy%OEZhP~7(boo_ zX9_$Hn+3IQ-J34=VRNa*UIU4huf&^QZfBN`*Ap_gD+n$*(p#VCoFnvjOJdBtnFbRq zBKo5X1Mb+p&rYgIkgoRcDXz48b;W3=@ix8B`LWV}qQV2Xrbk`h2O`7S55IHJjLC|9 d9MW3P`0}*rJX?-PBcO8`JYD@<);T3K0RW_9YL);1 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/grey.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/grey.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..60bea1b51ac8101c3cf535f7e1a4195dea17a941 GIT binary patch literal 321 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0J3?w7mbKU|etpJ}8S0JsguWx2%W?^CB=H}+_ z?;jr@pO~1Kl9G~@mDSkT*wob2*VlLA#EIjjGHZaU8B2ovf*Bm1-ADs+j(WN{hIkxL zPLN<--0r~JYnt^2XV<-9Q$yAs+Q962 zWp&osRa!o*9D!o%r>>4MSnD8E8o!gLTmMd&UU`G@M(u`9qpWv#S9U1&tDJiA^wHCf zl?Po$2b(c;U_M$sf{OCaUUrf6z)W;WU&vBFM`i=4Q5AmCKJ4 P=phDAS3j3^P6na*S0HU=WfgD66YnIGm6g@d z(9jsA+TGnfD_du2rNV&&2aeCMlsX=IAE=J8B*-tA!Qt7BG$3cCr;B5V$MLt54Y>{* z@VL5ePSLY<_{iz9TcW7fPuBXWgrt{Yh2{?p&MON}ml~){)j50ifw}F6_|Iz!M#^Abna*S0HU=WfgD66YnIGm6g@d z(9jsA+TGnfD_du2rNV&&2aeCMlsX=IAE=J8B*-tA!Qt7BG$7}Mr;B5V$MLt5H*y^^ z5NPYab1AZhq4z<|n@N{WItuKvvb6dt8^bkK=!DW2$(klHo;#;^vhc?2+-UJce*f0?*v*R?Z|Pj<(hbu(MmX0LTz=Po~ zSA6Q;b?JvbOXSay3*5RdE-dCp;MFhRjYn6<>eK37y=InmK9or%_;G@mixKxy~fF@Aobaq%u6;HX)QkQYr|)) zdQ_~?CTjh{F6)?cd*+qh)5)@S;1Ugba*&TQ5%9ty`-xSs#L;nlPWzC&95YOcagm3SMkuzOdREc%lnK6T|U z?p+gh<@yFxs>a8J-8;h8VZ|L&Nc z`jLxI{i~YPj)On1y#IfDQDv}ygN{nd#Kor{rWl59Kf9;$`lHqj-VY6b#U1%xD{}bt zrMqgo!rs``Dds=o42bV5f6utxe%)=Sr-463rq+kuyW-B^80~I$ce&x*Kb>z5 zH1xB@?fn;jfAYr4&&%E|Dls)bmCS5?B9Ys9&tvBE5>@$OZ}&Zlic^AtqK0hcVp(H$ z<-m2lXG$~88Tk6nlxF;me|PJ|otBH71-U8fluJ#-o`SgFz}(X>1P=)HoO!&Z{Os0= tJN4F{$Q+ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/lightpurple.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/lightpurple.rsi/meta.json new file mode 100644 index 0000000000..d01e147030 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/lightpurple.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/color.rsi/maroon-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/maroon.rsi/equipped-INNERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/color.rsi/maroon-equipped-INNERCLOTHING.png rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/maroon.rsi/equipped-INNERCLOTHING.png diff --git a/Resources/Textures/Clothing/Uniforms/color.rsi/maroon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/maroon.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/color.rsi/maroon.png rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/maroon.rsi/icon.png diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/maroon.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/maroon.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..a703128c96356bd62bd99a80479f2c7db3dff21e GIT binary patch literal 498 zcmV~6Nm5C8xG00000003w?S=dd^m-dtVvplYwmmlMN-Mk`> zLhg{PTnXY6Tr6X4sF!kq2hSOcw9H{`;OvV&ezQ=QZo(U z!VYIwv+Jw=;A^G0*mk3yji0{W)6vsK>HDPf%7{%T7s|NE=J8%utQ!CCydqPk0qH8F z+rHgMS1t_0>^`qvcR-a_OFFNN$PQ4&T=x4z<7&0WEmnO#zuGEa>dQ0P6D21mv%}i- z`6@(a@?d@|x!as0&-2K2UGjaOf*_zMim21+(Av!lojqSyewTFKC}I<^UTYDb-h4VM z>iRb6jXeR9d83H^mbmCv(xhc)h8CS^dW_%cA%3G??L(_r={x`c0000000000t4X!v zC)ya96v=kHl@maM?Re|{Uzcv5Te}0K+ULgY@xLbBKDTlQNVemx{R#X=r=4zPlTosL oZtVm}wa=|>GoyVDV2+4B0R${KVORlRJOBUy07*qoM6N<$f^f9ytN;K2 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/maroon.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/maroon.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..8c73e1c7ce200b66e201d55d9ff7136293888c26 GIT binary patch literal 499 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEVBF>D;uumf=k3jdUQB@!tPhge zT)Q1e}Q?6&x=f^jU}rSx0Hq_I9^oBQ9QQ(oXMS;7wf0I zinF|b&iY(|O|knyc^4QkDQI21@8%I%zh8x~%_hW5I^ScY`QGWyqB$iEYfn@$>rW`X z?e*cam)+$hdp5Fm)P51j3(?!ue)iz5UX|%jxa%WM+H2;ktvf4Jbnvy5QFGeUN34HD zB9CdGE0nhUzy9nj^FsD3Zg)?(?wWr5;L)s$=hhhH-g7NZym6^OTGZ|Aw%czX?AUUf ziRW{{vt-!YKn@`d+6YPSa2GRgTe~DWM4fdoS#p literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/maroon.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/maroon.rsi/meta.json new file mode 100644 index 0000000000..d01e147030 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/maroon.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/color.rsi/orange-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/orange.rsi/equipped-INNERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/color.rsi/orange-equipped-INNERCLOTHING.png rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/orange.rsi/equipped-INNERCLOTHING.png diff --git a/Resources/Textures/Clothing/Uniforms/color.rsi/orange.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/orange.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/color.rsi/orange.png rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/orange.rsi/icon.png diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/orange.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/orange.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..5e5c42697c38c6155026d8597e56dbec936ef6e9 GIT binary patch literal 478 zcmV<40U`d0P)=f?2qW`AJ9RXA5tQjT%062=%9N+5Ru4d zIBR3mGQvQ5(z zr+dX~S-nAn)zZ$Zqp|}`F?ap(akE-Yi#6{rueQn8`td^T5}4$}@m}rv`B|vUYGb4=n(cTmCjg4=c<=sS z*KVJCy92b^=g#f%zoy+j_i_hlw&T6M1SYX*r+e9C^sarbO|yOO?JTitj<7XJ?<@(ERAloBkKCcxU;M}dhat{3F`=$$?4 zwp05(^U||hckcW7?v|6ifFKlHJaLupQj+Q<=Ow!er9JdchW7+bFAp@=P=8x~`f+o* z!?9fLrc>HKyIy_D;#RP7zuEQteoDTv^!ABQCe{4xp8BV>QoQ7<&CVGz_HB`=sh{!; zB=^5#Tweb4^Z(mxDz(cSd{j~wPrtugkRG9d2H#bN>HJQBxD|d#6^N@RZg* z@J(vNKCV4`nZG+f_{to%cHg6@I3*Y;YRJ|t77mtHu3WeEjIX3P1K+kYz7l`q-$k9? z)9Ge?VC%Gp988`>85>5%;aJX;|Jag XX9PTcEOht*j6DWVS3j3^P6eun}?j`{a` zEAv@wFpyR$yfEcpo_m@ePq>wW3g zE&ZdfE%+xEBWT>1YkUnVTl=t7_qhn!NaGr!$AHudoAYaf&Cubsc6Mrf&(}sO|15mBeOaYbsx8*WE*Q!}R6M4v>cqqim?5Fa9uah6d z70=!MZT*)YR{Q2DE!$vspWQQ&dB^u=mBnfW9~?LQ`*>l7e8^%eR+8GHShAxZ+AW|@(kJkW!v7J*7xRZSKk{FpnQNk zZF{-W@5*M^*Q!A`8f^Nv+dQAPl(mxQlhW1odM^&yExP62yX&sr-F~+%o5H_@#a?*u z`O4Xw*%^CX0@yADKc1zPTW#&r{{G1Y&QPn;sQh!6?(utF_GU_LFqQYe%XT!rP3iZ} z>kJ#>KJ^MHNzQ+N!IXjZ(|(6nANSALQ*lID?qi3$%_G5n6z1UrcAZmsSIO|N=AGub zMP~koPMd7SYd*{z5q;+88f>2a(5X7s#}M*UCQM3OFyrT)D}oH#^QF@nb{$H2B%+Y= s^G*nJ!qehlUX8Ui>oopLD*a+R>nNWnH8)Tem<$*^UHx3vIVCg!0AMKy)&Kwi literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/pink.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/pink.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..d3df7bcb6b73f99e8093a452b873e89171ac9a94 GIT binary patch literal 529 zcmV+s0`C2ZP)h3yLK%HUuf?X)Gk6 z9P@_V&44pFyCm+6e!oT;{(bX!yGwWk0000000000@V}IFyNw!M{v(>>etQ4sRZp%> zh9gqfT@f|9qJ9x_n$qFJjk*`XYt3D?ZCAUU*cSG2Z%VY%+LGSMpuCJN&KR55!N=(_s6YOIL@KwO^U#| z)x5f{X2uR!JT21~eZD?TH=nG#CU4$v=KwxojP74#wZitQva{KYsCF*@m&e&~^*Bdr zuv1=B2gnC+R!_O@+EpNTUgII~6Vqkox9yrkcL*?XQ<>6Pa6r}fDs?&?x*H5=9?a>r zGNsUHtN4oNJms|*J!ak*>=4xOy0bv0+c4hk*L%9mkZ^# zbLRlh@&W(=00000002NitbZ)@ab#}8__Mgm$C0_MOp_tsM&>qb3*gnrJc~>n;M>UD zhSfR1!;!hQEFIw6$lOZq@wkpFBl9e54*~LUWNsx(0lXWT+sIM?jGzJj7$W)tzcUyZ TGJxM=00000NkvXXu0mjfN4@gS literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/pink.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/pink.rsi/meta.json new file mode 100644 index 0000000000..d01e147030 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/pink.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/color.rsi/red-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/red.rsi/equipped-INNERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/color.rsi/red-equipped-INNERCLOTHING.png rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/red.rsi/equipped-INNERCLOTHING.png diff --git a/Resources/Textures/Clothing/Uniforms/color.rsi/red.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/red.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/color.rsi/red.png rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/red.rsi/icon.png diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/red.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/red.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..4cd9c955ae1063bea4b15fc8b4c410cdda09accd GIT binary patch literal 294 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0J3?w7mbKU|e-2k5uS0HU=Wo2(~pUBCcm6cV@ z!P?N!(B0kL!^Jj-hkXYh$8LVk0|yQq z5Rc=@2@}veYI_2nvzf8f7_jk+w zzGu2%Q-J83>VJ9h%v#)6yY{KSx4ICqV!`W^*(NP9Z0h-o4c0n#hO3^F1F;j<9q^@veTI=;*K*GJSoTlvPCV5EVk|GlQm#0t`N3k gh48p}R>|-&OkxX6J#}NA641#Ep00i_>zopr0K5-uiU0rr literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/red.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/red.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..ae5a124c663e6500ec6ee2541a37a6dc945c0081 GIT binary patch literal 329 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0J3?w7mbKU|e-2k5uS0HU=Wo2(~pUBCcm6cV@ z!P?N!(B0kL!^Jj-hkXYh$8LVk0|yQqM03l6MKbFpcf}`YRop$mEBdy2d-8p2 z9_tA%zrWemZ|4tYbegjG{mI>YKH3vpcF*5)=u!7N_4U#ZeBN*+EIOlPsd-4^lgFYn zwX(HmXK+n$@wJZTHCTH<&x*^9v6g|I`7qxeuByfrjPslJ@yh)Ep!uNU`>x-2xof!M z_OGt)^=EWGZoOX|Xz|AL`K)pA8EZaAFKqB{TzK2ieUIeDN3O@Y_i)WnPGjMJ)WOD3 Xo*5u*ny}_G&{qteu6{1-oD!Mw3?S zfTj~k6OUbT%H86l<)|dK@{_!dN^jHLr3s1|lTZCm&}|anvAe`6^k%Yd(1~eWfrdrq zGfQJP&903xGJaC$t7d%irg3_jnYW$+&tU{QlVUivWZTY|b9H}hw7%~vH%rL-{bRn` zxASviUH6^a@V@rWye~%P=LN#nUw+y1$46_`#>5+w^~D&^RvxUA>0kVu_3Psotd2qq zM*FuhZDtp(p6VjMZKM6VdEwk&AHVuJ@dt;*bJ5!~W`Dol{!b;0+b{q7BB`v`k6!Ki z+LqaRRrnnPdYUp=_Q_j1XxqqT}}db^|Y zMO3UEW_(=NQz3sn!T$J$U!Nx3_1pUT!{+X{t{z*(74B9{T=$&)=H!G6+ve1HW21u_`}p2Y<2$5SJlbDM8e?d>gTe~DWM4fmtp_k literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/teal.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/teal.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..4944e6fc0ba93912e2166df7438f59890b4959ae GIT binary patch literal 595 zcmV-Z0<8UsP)F-^qu?Ou(#h}OEP_xh{^=%2ac?_x zkQ)`MVkPOtUURuN*F*BgzQ3ipJ6%;r&_Hh&$hRx6-1q0-JL%jX0Ata#SX#?cj@ z&vSh;!}KZ*V9c&8@h2{>S$lfF$onzEbTNIh=3#mROW8Rq@Q$})akK24xW@J?5J#`lfY05H-xrCP#6P)z90PIm2DX48Tdu?EYZ@HKfo!1w z&ea3Bt_!tV9Uj-ynCj<@syEbtyS*G#78iIs(Wt=pHfzsAqA>@_>hs@J5ra|nhMoim zEt|=UGP;wXj$YMCFw}tmi1txk h#>AK)2x1@r@B>ePI?oTEzAOL$002ovPDHLkV1mN&3~c}a literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/teal.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/teal.rsi/meta.json new file mode 100644 index 0000000000..d01e147030 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/teal.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/color.rsi/white-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/white.rsi/equipped-INNERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/color.rsi/white-equipped-INNERCLOTHING.png rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/white.rsi/equipped-INNERCLOTHING.png diff --git a/Resources/Textures/Clothing/Uniforms/color.rsi/white.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/white.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/color.rsi/white.png rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/white.rsi/icon.png diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/white.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/white.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..592cd94079c18409b39ea9ddc66a6f20a9bf8063 GIT binary patch literal 307 zcmV-30nGl1P)@MF;8RAh;?4DNfeU=qhA(6sJm;m>&?F3{s5ul@3MlQn^VG zByW0<2T3?MfJo#=i~wY768f@xE;ax~Yime~55au`uC*)7TsO!b)d?jv8k8PONsV5S zc}xSNjJ=nky)(#-$pfRoQtLc08mv6#fl<^#%|nYs{t59~2FyB{N-oHD$$<+5p7$5W z1r1`u1(2e3>>Gr&NA?%BF?GcTT5tIP?Trn3YN)<6lqV8JF|_crklO$N002ovPDHLk FV1f(Ke8m6& literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/white.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/white.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..3d3dd56f27ed45246c680f7db952cefbd22cee16 GIT binary patch literal 310 zcmV-60m=S}P)}|M5eA0P6BEwT6_JX8-^I07*qo IM6N<$f@+q9Q2+n{ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/white.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/white.rsi/meta.json new file mode 100644 index 0000000000..d01e147030 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/white.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/color.rsi/yellow-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/yellow.rsi/equipped-INNERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/color.rsi/yellow-equipped-INNERCLOTHING.png rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/yellow.rsi/equipped-INNERCLOTHING.png diff --git a/Resources/Textures/Clothing/Uniforms/color.rsi/yellow.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/yellow.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/color.rsi/yellow.png rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/yellow.rsi/icon.png diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/yellow.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/yellow.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..6959537bcead7b03244c6181fa21d6c2d1839053 GIT binary patch literal 588 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEU=sFpaSW-L^LD1S_u&AEHv8AS zYnmqL#omdz;y7nXcel6<*FUa*9ou>?W;zlL8&ry6xMt zymzB#@y{2Q?RDob#mq9#zc*)c+r9$^Jckiz@zID&tIwuwKKK0Nz2$p1-)cJh=#0GY zow_Pp(VsSd`*v&ZyS?3CSRicu%^bczep;(G)-AaCcCFX~OZ^?P-;ZDX-1MvPOOpa8 zLu8!K;l#vSJH3;n^&WrQQ5C0qrGNEv_eYuqWeFC??(7MYwlfG#xP67ZQ`fzp4T^&$A{QnakSlEtoro-l3tJJdN*=6zfJbN{HCkpxzi1H z@vZk1Jlq-#9`7|yvRxIKwO7G|>BjvZuk6;ecy6!!UME@Qs4|bKDM*=p{b%h23AQJn zEqAPxNQe}>B4rxkZSQscbF)svp><|B#q-wIA>D$3)yAWhIp9EZ2vN)AC}De6R8Fa=-c(aaz#frd&2qZS|VFA_4(hkKbZ* xxC#_-ST4J5^@ZI5-;3s$%}Sgh$ih&^7`Dr5%dDGfkAbO#!PC{xWt~$(69DwY1^xg4 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/yellow.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/yellow.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..148b9812320ec61496ff21a90bbcb590f7d7e5ea GIT binary patch literal 596 zcmV-a0;~OrP)0__I|>#*KwIcg zGAgLm$eZ?Rnq1mTgWP-e{Vh%I(&Krb+$BdIU>JsB7=~dOhG7_nVVKck%wKIfopyhZ z_dcA{>#3gpyZoDT`!oUmb_$^0oz)g>=4X1edFyC28UdvVnRfis_EsyTg;_ERe! zb)h~#gY-%bK$aJi?j0BBczl?fcH1d}x=^2A^B}!}seE=|xrGW|O0VwGQl@vH^NV*9 zO9Ah$S1*KUM!iRuc0jLm2H*hRL5g1|(mpEqHKATn{2;x7Mbo*fPP_PaTdh{>_KS5! z~DN_A0%QB@8I5k3dGSHd~b9p)HBeWUjfUqAe+s= zP00e=wxLq5z*_Q=QvEK&>J2p@xBdVNseAXhT1dcd>KkAVpgNm?^7HuLR1t$=^@i>Q z`%Rmx;v~79po(7EPB7Gf|A_Kdc$8oR2x!m>8$dvVR@eXn8nnU&5YV6%Hh_Qzt*`+E zG-!nlAfQ1jYybfbT44jCTr3M2F@K{LmPSF@0Mim?Kz=LmuTWm%%CDk+KrK@cF%^QZEPqCizuQkLaYdAEE# z8?aa`-tc|x=kxi+eqGn7>$?5k%kv&lxdH7kyWQ?&z5U#ESna%fR1P3bQwhTmz}JwI z$>ca}7=}pGw9|Xl&b#O7C(v3hm)LH%7>!1l&1SIHV!z*GyCJ2Doa_8M+Id7oL_|bHL_|d7H?1~Wtr~kJ?Kavw z+HJH~wA*Mep8%lOMyobMub|x?dwByi+hZ>eK(jse?g_NC+GB4I0MKcVy=__99utv< YPeHSSM81nJHvj+t07*qoM6N<$f-kGw?*IS* literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/bartender.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/bartender.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..33aac693c4784e07de6c63ba1316fc588559b6c2 GIT binary patch literal 499 zcmVD{G zznuk|*QRyz03sqHA|fIpA|e6+rIfVCvMiHV<8z>tk}S(Q+1};--ZxnkMV)bD45BD{ zJL%tM^BQA1&pyhlloAnXe-`6Q4~&j zf3yb


7gI!62bzVks{*Qo2-zW2|K&HM5M*q3j&+m~_sdoGK&#^imu0cn~_7>3VD zHk-|JvM>yhrs*v1zcnUr=L%TI;}O^E6|2<>yWI|2YuxX5oX=;h*XxOwFy5zmdp7_8 zE|&`)j|Wbt6PC**7K_E?!Kd^|-rl>h-EMo2jWK3c{{eu1d5MUKh=_=Yh=_dPTVw2^ zw;F5ntudaQZ;kP!d~1w{aJ~Y7e~qz=-!?;*Z;kN~&L_aP#@Lnf2Kd$(yK=e$mT!%* pi$NOz_}3V}Gw9y3fhD5<%}*2Uf<#}vvbF#K002ovPDHLkV1h;ltknA2C_X_x=y2r*A lK&pFe+-K0o?lBQb_y%g45w^hGG*bWo002ovPDHLkV1h^T*n(J%7Vu6}3JwNBUEM2lVSFCpC;!kNu z7=eb|N-He1k*Hx{;8EUQa_{L^?OogR_ubE*Jwu%1oXoWA_4B#8CEWP<<;5BDraiml zvgg6~O|4aadh6FS><=y4!`*j0`HFwtv%AlAc>mi?u*rWQ_h6n**m+yO(?@qtdcs@B zJ?E{ynNYdl`$zYFns`hyFW_frxcG;o`kbbTZ}ZKJ1=lYd%=9ssW&coO^H!Gl<)NS3 z#2)OiX`Q!|ec6GzwXJ^+>V1-Yu;EYZ^yj`YPDZPr@z$FC+m*YkfBwo_%nV;Y2?;{M zN{6j|8+$H1Tj2qubzU+tyejQU^{CYgTbnH7o{{XbBzopr E02B4#(*OVf literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cargotech.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cargotech.rsi/meta.json new file mode 100644 index 0000000000..d01e147030 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cargotech.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/uniform_ce.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/equipped-INNERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_ce.rsi/equipped-INNERCLOTHING.png rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/equipped-INNERCLOTHING.png diff --git a/Resources/Textures/Clothing/Uniforms/uniform_ce.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_ce.rsi/icon.png rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/icon.png diff --git a/Resources/Textures/Clothing/Uniforms/uniform_hos.rsi/gy_suit-inhand-left hand.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_hos.rsi/gy_suit-inhand-left hand.png rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Uniforms/uniform_hos.rsi/gy_suit-inhand-right hand.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_hos.rsi/gy_suit-inhand-right hand.png rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/meta.json new file mode 100644 index 0000000000..ade35e41ad --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/meta.json @@ -0,0 +1,35 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "s", + "directions": 1 + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "s-equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/color.rsi/s-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/s-equipped-INNERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/color.rsi/s-equipped-INNERCLOTHING.png rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/s-equipped-INNERCLOTHING.png diff --git a/Resources/Textures/Clothing/Uniforms/color.rsi/s.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/s.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/color.rsi/s.png rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/s.png diff --git a/Resources/Textures/Clothing/Uniforms/uniform_chaplain.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/chaplain.rsi/equipped-INNERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_chaplain.rsi/equipped-INNERCLOTHING.png rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/chaplain.rsi/equipped-INNERCLOTHING.png diff --git a/Resources/Textures/Clothing/Uniforms/uniform_chaplain.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/chaplain.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_chaplain.rsi/icon.png rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/chaplain.rsi/icon.png diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/chaplain.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/chaplain.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..3520c2732a4752ebe53a7e195cc40c939737bf83 GIT binary patch literal 497 zcmV0G z=*H*sITnk>-TO)B-6M7a>beF16h(pQblOd}9shJ*pYK-#j=SIibdy{zmq^nT!0&VG zoO^h;r1S0(IRWitR;$(7c)MHAPPTpjIX zh@uFy*$hz>A&z4-O#`LWQ-531dAGd$8_-IU1ZkS0swz}f1pp|^5=oL^v)Oz+uaDTX zq?Gcb(Fl{t1mp1-yWI}k?H2p}9_#h`>HA3M5fKp)5fKp)5mDHr+UU3T0`DT(MhCe7 zfLt3b)(iZX)AsnJE%vAF@$tHUq(Te!1W2{V!JPo<_BhBBAlXI-xd45Jw8=p(fMk0d n+;2cjsyz<2Wo3IzL=t`gaXJ=%WR{&-00000NkvXXu0mjf>T>54 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/chaplain.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/chaplain.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..2c8df85d4da1b9a0cf485c587b9ae257a770bc43 GIT binary patch literal 507 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEU_9jM;uumf=k3jdU9Sv8*dFYk z9;w0la@m9lm)uWm(^q&RTJvPrS4NjzojbJhN>bAb^N(b{o#8ig=Ce=r*8Zk{Y|R91 z7zAN}vEkaS((Gdr-`Ci&M`fq?yiBd0`u+TcB-g+%udYRjxPC0UIRDw_sO;+NaZhV+ zF)##pJ>0lBDqDSNOHfwPgZB%jG)?(*_^ed&oz;6hw=dXQ78-gt-rSctTX)G6jnkjv z?&od4@wRO5`Ttv1R{V3k%%WZUJJ zUwF40o(=!Z_l{SwC0a);Vr^K2-t-+YdKUA~?}%G(A=kgzin-y(Cm~n}9aY%YS=izK zoT)!)wnRHu9)rOBBNi?f?jPOg+jCsvE6WixLq0d-wI6~>y{XNVgm!(bH9rc$1BbC9^)z4*}Q$iB}*k0&8 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/chaplain.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/chaplain.rsi/meta.json new file mode 100644 index 0000000000..d01e147030 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/chaplain.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/uniform_chef.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/chef.rsi/equipped-INNERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_chef.rsi/equipped-INNERCLOTHING.png rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/chef.rsi/equipped-INNERCLOTHING.png diff --git a/Resources/Textures/Clothing/Uniforms/uniform_chef.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/chef.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_chef.rsi/icon.png rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/chef.rsi/icon.png diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/chef.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/chef.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..84e5e83e3facfa6b67ca81b0afa34653213ad74b GIT binary patch literal 449 zcmV;y0Y3hTP)6b0b3%R+2yeSvI0rDed!xvyel$~-_G!7hZ9TUrK0##FYJ>F!pM)it}DaQ&I( zd?3OM950g$76%|AA|fIpA|fK9F+@bOEYoZ2WAiT8vMkfFd3|0jLPSKJbExb3+n#f7 z@F8@0m+HD6m3MO@qN=J@RVje8;Z$|-Q|t0BmbI!X9g}xc-LR^vZQJU{yE}c_wmt3r zb!h9n-9LZ0VOk#|!fqTQ2QtyX8>-QFYf?m|S=d#_)4 z??(@7o!7_Y3M5IQaU25x(lo_>zek#;0Dw4-ktE5Wp{?_N@@5sZUazs+?J%3o&@>H> z$0L@@<<-B&N96S}I{*MU91if_qbLeYr&CNOlc&nN=EW*#u~_uJmStHE{vGQ)A|fIp zA|fIpA_|*T8*NsN-IH}29h|;4x@(gD^#NG7$3b2JAh7n>T9ECrHLLbG$SYvk9-Ee< r_hi)`2YUd3O?w<{%gXkch%9^p(*NeKY$`V-00000NkvXXu0mjf0~XD& literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/chef.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/chef.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..69ad696a104b00bda2c04cd4fa5c02110dfe75c5 GIT binary patch literal 467 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEV4UUY;uumf=j~1Vu0swItRJ?Y zcFM`w>#%M9C8Gz0`&QqWVZ?qy@Qq7QUZ$jgxc^R>7}jV==&X9fqE;}&xL9gig#1lklAX-HjFZEO*O3 zCJ^;EqA%>{HHqyPUotTKmwKFTwRKreLg$P9KiL`+pRF&RIYk{9Sqz@8elF{r5}E+P C+t2m@ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/chef.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/chef.rsi/meta.json new file mode 100644 index 0000000000..d01e147030 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/chef.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/uniform_medical.rsi/chemistry-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/chemistry.rsi/equipped-INNERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_medical.rsi/chemistry-equipped-INNERCLOTHING.png rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/chemistry.rsi/equipped-INNERCLOTHING.png diff --git a/Resources/Textures/Clothing/Uniforms/uniform_medical.rsi/chemistry.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/chemistry.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_medical.rsi/chemistry.png rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/chemistry.rsi/icon.png diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/chemistry.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/chemistry.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..5fca30bad4f3779a320b70d3bb4ce30936696f4f GIT binary patch literal 472 zcmV;}0Vn>6P)Nkl^6a?V8(@8GF+ks1PLKk$fnImeT0VEgTJ~nbl>;UOO7tY=Vrv>wm?FVN|^CgHi z8dm!gc>p3JA|fIpA|fIh!h5e}S?aCvp?Q~MWm)RbynDVaLcI5yWf_{Lxq6mmS?@)N zd6$}|8I<>S-g{M54IyYz6larD)!w@n^SWb2QD_K3hvdCgoUE#9+qNnq3IHOaZQCB7 zy*g>@yk|_V002}~g(OMfoP&s{a}G(8psK1#ad;w4ZST2`W&+EEIUDxq< zAJ2Qn%f?$Ua_J|4@%;edFA0bsRS_5L60JR%|@A|fIpA|fK1 zJBtp1*~`&Sn_Y*%TDOxB$0pk$uy)xY2q9<)L5Fk*W_tyIQ->hWbL4rBcXbFR$$PKe zlOQ5zJOAnxnC%I$>JZF!0jxR%rmx5U!`KeN>=$5chhWz4+1VkW@qPi4$c?mF5Yo^9 O0000&?~OpR(4v zx>)Hyt<(z*?d*8-PGrZP&`{5L&*$bGth}41q?CKRYik(8fhg_V+jj5XF6GGn+_#N^ zVM=PJisynUOZTp%{Chx=R9~SMbVGv-jkn3+2?=dtuw&VG~JGb^M zRzF}{v-_^q>v!Md?CwQQF5kj%Ez0xqmd%~Jmt}HYPp{sn_I?5DJX7D#%Q|jHO!}V6 z$k)!?Fh5IcDFegx*QPc%-KIU6`=tH&NgOdV z{AOq=^}0JZ=}*~4-=6zg+d2z5-it9jnl16W!cwv*X|_cB2RlZfRBffW!nV$h`s>9i t#BLv{@GD>h%AMzY744VM`C|W1wx{pQFCWY;zXgmS22WQ%mvv4FO#o6f%7y>{ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/chemistry.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/chemistry.rsi/meta.json new file mode 100644 index 0000000000..d01e147030 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/chemistry.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/uniform_clown.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown.rsi/equipped-INNERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_clown.rsi/equipped-INNERCLOTHING.png rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/clown.rsi/equipped-INNERCLOTHING.png diff --git a/Resources/Textures/Clothing/Uniforms/uniform_clown.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_clown.rsi/icon.png rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/clown.rsi/icon.png diff --git a/Resources/Textures/Clothing/Uniforms/uniform_clown.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_clown.rsi/inhand-left.png rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/clown.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Uniforms/uniform_clown.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_clown.rsi/inhand-right.png rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/clown.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown.rsi/meta.json new file mode 100644 index 0000000000..d01e147030 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/uniform_cmo.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cmo.rsi/equipped-INNERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_cmo.rsi/equipped-INNERCLOTHING.png rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/cmo.rsi/equipped-INNERCLOTHING.png diff --git a/Resources/Textures/Clothing/Uniforms/uniform_cmo.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cmo.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_cmo.rsi/icon.png rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/cmo.rsi/icon.png diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cmo.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cmo.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..5fca30bad4f3779a320b70d3bb4ce30936696f4f GIT binary patch literal 472 zcmV;}0Vn>6P)Nkl^6a?V8(@8GF+ks1PLKk$fnImeT0VEgTJ~nbl>;UOO7tY=Vrv>wm?FVN|^CgHi z8dm!gc>p3JA|fIpA|fIh!h5e}S?aCvp?Q~MWm)RbynDVaLcI5yWf_{Lxq6mmS?@)N zd6$}|8I<>S-g{M54IyYz6larD)!w@n^SWb2QD_K3hvdCgoUE#9+qNnq3IHOaZQCB7 zy*g>@yk|_V002}~g(OMfoP&s{a}G(8psK1#ad;w4ZST2`W&+EEIUDxq< zAJ2Qn%f?$Ua_J|4@%;edFA0bsRS_5L60JR%|@A|fIpA|fK1 zJBtp1*~`&Sn_Y*%TDOxB$0pk$uy)xY2q9<)L5Fk*W_tyIQ->hWbL4rBcXbFR$$PKe zlOQ5zJOAnxnC%I$>JZF!0jxR%rmx5U!`KeN>=$5chhWz4+1VkW@qPi4$c?mF5Yo^9 O0000&?~OpR(4v zx>)Hyt<(z*?d*8-PGrZP&`{5L&*$bGth}41q?CKRYik(8fhg_V+jj5XF6GGn+_#N^ zVM=PJisynUOZTp%{Chx=R9~SMbVGv-jkn3+2?=dtuw&VG~JGb^M zRzF}{v-_^q>v!Md?CwQQF5kj%Ez0xqmd%~Jmt}HYPp{sn_I?5DJX7D#%Q|jHO!}V6 z$k)!?Fh5IcDFegx*QPc%-KIU6`=tH&NgOdV z{AOq=^}0JZ=}*~4-=6zg+d2z5-it9jnl16W!cwv*X|_cB2RlZfRBffW!nV$h`s>9i t#BLv{@GD>h%AMzY744VM`C|W1wx{pQFCWY;zXgmS22WQ%mvv4FO#o6f%7y>{ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cmo.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cmo.rsi/meta.json new file mode 100644 index 0000000000..d01e147030 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cmo.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/uniform_detective.rsi/detective-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/detective.rsi/equipped-INNERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_detective.rsi/detective-equipped-INNERCLOTHING.png rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/detective.rsi/equipped-INNERCLOTHING.png diff --git a/Resources/Textures/Clothing/Uniforms/uniform_detective.rsi/detective.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/detective.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_detective.rsi/detective.png rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/detective.rsi/icon.png diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/detective.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/detective.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..aed8b4f025e022274c54d6e1424b1fd426586343 GIT binary patch literal 481 zcmV<70UrK|P)w9!*x1x}-gG1N8KrbB}`U1@&kq#ML+k)HQ zq1+%*gSq^Q7tXhtz{#JRdtDAdL_|bHL_|bHL_Ul$l4Y6fy6&4-zm{d0_~z|%sS#p~ zku*(_=lRyXG)-GCg3GJR^V}=%=!`KUB4VwTqA052ilPt^Y5mn)UOmfN>y>v@ZdehK z^?F?m?q1$Gbm+~zdX~%ATm+RP006Vu3{eyT0LrpN9LLpl-#h?_;}~UG0sx{Y^3L1m zLLA}y^&TFEw1Kcpn=eNs$r8P!Ki=T>bz>_HM!CX`hB~{!(xGMw~OI$2x~1?s}*j(Ud|$KAGHMlfV<8s z@D02_KB0HpL9YXRo>AT|YG z8yytwHaf^70O+;RK^6>}?QxJhK(jp#asf2kW7Tr>l(gF8U>5+;X^(^a69m{E6OoQT X?t7B)SZewJ00000NkvXXu0mjfW=Gk` literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/detective.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/detective.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..fd6f60eabb419bc43744183a656ee013dea57170 GIT binary patch literal 500 zcmVLK;Vmp~6*49(KAIs->^fH-^BcDr3OAIm1}=XLq^GoQ-ac?AH9q5vR{W9qsFAc~@9J~l;B5JeFHbzKw3 zaWg;WP1n%v)^fRQJzFdm0IXK4&UgQXYw~uU0Qcq1W&^-_y=MROn0`E5m$!2R?(c4F zk|fO{v)Qa!EJ+gX?`}qM|D9{{zUzDN=lcVno}QRar_ASbj4^DtTi*ZvHgNo5T$;Cc z0{}iw9^n~&eE!1ihY7b6_%&$kVO^59_ih|JHeY|fjOsrC!pkcnA|fIpA|fIZg3uac zAHCJsq0k!R!G+cs4=S|A_#EC>0K#jGeRvlJp*6<7yiY)Ajj=E94G66<_I0!zJrr7F q?BlErfbbgQQ_i}#YG6g=fAbgd29oh0@PYCG0000w9!*x1x}-gG1N8KrbB}`U1@&kq#ML+k)HQ zq1+%*gSq^Q7tXhtz{#JRdtDAdL_|bHL_|bHL_Ul$l4Y6fy6&4-zm{d0_~z|%sS#p~ zku*(_=lRyXG)-GCg3GJR^V}=%=!`KUB4VwTqA052ilPt^Y5mn)UOmfN>y>v@ZdehK z^?F?m?q1$Gbm+~zdX~%ATm+RP006Vu3{eyT0LrpN9LLpl-#h?_;}~UG0sx{Y^3L1m zLLA}y^&TFEw1Kcpn=eNs$r8P!Ki=T>bz>_HM!CX`hB~{!(xGMw~OI$2x~1?s}*j(Ud|$KAGHMlfV<8s z@D02_KB0HpL9YXRo>AT|YG z8yytwHaf^70O+;RK^6>}?QxJhK(jp#asf2kW7Tr>l(gF8U>5+;X^(^a69m{E6OoQT X?t7B)SZewJ00000NkvXXu0mjfW=Gk` literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/detective_grey.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/detective_grey.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..fd6f60eabb419bc43744183a656ee013dea57170 GIT binary patch literal 500 zcmVLK;Vmp~6*49(KAIs->^fH-^BcDr3OAIm1}=XLq^GoQ-ac?AH9q5vR{W9qsFAc~@9J~l;B5JeFHbzKw3 zaWg;WP1n%v)^fRQJzFdm0IXK4&UgQXYw~uU0Qcq1W&^-_y=MROn0`E5m$!2R?(c4F zk|fO{v)Qa!EJ+gX?`}qM|D9{{zUzDN=lcVno}QRar_ASbj4^DtTi*ZvHgNo5T$;Cc z0{}iw9^n~&eE!1ihY7b6_%&$kVO^59_ih|JHeY|fjOsrC!pkcnA|fIpA|fIZg3uac zAHCJsq0k!R!G+cs4=S|A_#EC>0K#jGeRvlJp*6<7yiY)Ajj=E94G66<_I0!zJrr7F q?BlErfbbgQQ_i}#YG6g=fAbgd29oh0@PYCG0000YU6vy$eso>-wXhCN;6|#tQkqU|rQ2Gi57X@F#Nrwu)Lhu2^!Qx<1mw>tnf`daV z3W{TU9n$*W)}{yb!tb+$oWL)ab8kBIfQX2Qh=_=Yh=`=IxqyqJ$bD5$oAEX#>!uJ;-ER_KCe6q#1+d!$U~3Q74!Xb3ISd?mJBWMOE$h5)Oin<1F_n||_4a+Qi?z<{#OxCQ z7+M4ht;j-<-2bDzub6bQG?Q`X!*hgTNH&`#pU+dNRH)Tz#Bt2@<1ssDjUT_uIcnsaoMoJ#2AbW!~G-N)S(uqTdZ}S zh=_=Yh=_=Yi1^KF8f`ik_$`*xXfGQ8cGGC@{$9489(#KNtft3(Pltb-_4L@w6JR+# z_ObzO7Sm(zegwgGdhBfjtft3aHUKm|77-iIn2{!MSG{SL00000NkvXXu0mjf@wV~< literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/engineering.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/engineering.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..2ff1950af25815f666d1ea4686bfa1502978d0b0 GIT binary patch literal 532 zcmV+v0_**WP)9x6Ty{>LJiclyH=Qulx!q{iWd-a3jsG4yp68nB7(Ot^a8|%!G%HH3}|-+ zp^Gk((t^@ua=Ms|)y%}4Nl?y_=eG&-&IiwV=gcNAh=_=Yh=_=YhzLNdh8eF#QDpM! zE@;&-Q50peP0JhP72A85jYhWK?>5+IBz4|`B|&8&GB#|xt_8Gy}E_ildN+;=km4Y4C{ALh@Sy93gTI~R}Z z>9H$|PtB8e;wJ#G^a-esE~y8}vBPG`o7L$B8(j$=OD zopX3KaAp_GlXqeR-oG8Ndl+zVFubqt>;&vLhkW~0a;^ch=AF2R=6cDL!vU)+@ManQ z+`-R2^kTObpYkoQh=_=Yh=_=Yh!1?57~6PqF7S|V6JuM}4FLZp#x|_}F7|C=TtuNA z;M>I5MrJyk$G3@b5!O4vw~4W>LZ1NmH!+^Z`mOmkF}78x0X|KPZ50Zv39N{`Hva(r WWF~Oa30l_x0000{3X)<4(^~{0NJ5%G z1eLK^myO2tXS_xR&ew>udUl+-JB1e@A|fIpA|fIpA}x-qP;RNUrf1z_m?y_PBLzX(Czs-dTsw}H$806@$J()s1dm0JoiTR-o2MLDiQIuGr*KlFlO{A|fIpA|fIp zGMi94{|+`KbjL8^UjWCZ|hpA!k01Aj;U4!iyF*8l(j07*qoM6N<$f_a_gD*ylh literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hop.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hop.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..3e674560d9b08ca85d524defd4020fa35ad8dd43 GIT binary patch literal 514 zcmV+d0{#7oP)6-bO{Pl zro+0Jt(&t-wG+S3Mf{Hrznz)g!~Q`;L_|bHL_|bH0Pt!iRI4`4+(az8FEFxoUKK#>2NywSG+fElkA?5|nm zpSv>Y(upar-%%(O$Y!%tDis=y2E*ZyUav>z{ebb!WnxajDtW`tfQk0@G40VQbn4K# z1$H5S4%>CokGDT|G0R#uZ{#kfODAT$u?t&!u(<=T&+zg<`t2!EyB}~ZuZW0%q>K=#%8$IGLOOj1i02R zw-oOd0QXzwUs&&&Yb|qIcF%wb*IMQ_V(pk(&?5iN2fHo)4i_`cb^rhX07*qoM6N<$ Ef^3)g)c^nh literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hop.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hop.rsi/meta.json new file mode 100644 index 0000000000..d01e147030 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hop.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/uniform_hos.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos.rsi/equipped-INNERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_hos.rsi/equipped-INNERCLOTHING.png rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/hos.rsi/equipped-INNERCLOTHING.png diff --git a/Resources/Textures/Clothing/Uniforms/uniform_hos.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_hos.rsi/icon.png rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/hos.rsi/icon.png diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..4ddf7ba69f403688ace39be1b56dd684fd5e7a13 GIT binary patch literal 516 zcmV+f0{i`mP)~8HZvDq|ygqKxD$kGeb@B!gIRPvki_%(bv8Ooh7_aN*ecw@>%lW!_ zL8ih6aACQm)qQ;Z{Mzmm7n_OCcGvUw4jq*)hrXY5-Y{Z2fD2_@-I?{uzGsgV8kJa@0`(#YMC&KpK#2dHAM>dl^Y)va-hRj>DVTjfiAcqVoU z^waXf-K@hNKMIjExszJ;o>I$X+csI2McHhY3WWkWjzh&_krLGhI;-A}{9e*|gNS{n zY}Oi-yD3rr{DMx7Pupv|NsA)22HpLGydYxN5_c^YnWm+=d0L3hP~-iL9-A-Zwm!7F zC7lNV0000000000U^J<5{6q&MlOj2eH}V9K;5gp6-`Azb=f>^;sqwk&-z|QD^!VJ! z9UwW5H}(?fM`xUF}s8#`vk_#7ZSBKia?%r>jgF@fIz0000+IFt<#jM0{S z)I&TD_zK3{k^gULxVD#nzutA=BLDyZ00000000=eI4CE2C9cY+iD}#hoQw16QRd}c zHx2SlC;7dJ@n)}0JZ@VNR9?=fo0r#E0Ct>DXuP64$IBp}(#reh`mh;ccyJo6p z-7k!OKXlVK&y!cYpX;upHeEhHPTc?Bmd!hL1@J_SC-KkEMw6*=+bo(lrw^o6N|#Z^ zODh|OAqC&(xw_3BS@HJi5AqsUfVx<(-hC(jb>0>#kIJX0{Il{--2yC5;#sGyC&@pt z1z4?EO72Sg^j59XtM5}i2F!33ikn-+$IjO$wLad5N1GmAaV;+Z0000000000IKZ`*xx~!I z$T-(p=2GGUkb^CA3DN)MuC>gw$g~1nYne+JdxJXHTIN}ZSAc6RbE!;QfL5Sot`ltm sanCRtpgg0I@ta&%c_K*#H0l07*qoM6N<$f*8x?yZ`_I literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos.rsi/meta.json new file mode 100644 index 0000000000..d01e147030 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/uniform_hos.rsi/hosalt-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_alt.rsi/equipped-INNERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_hos.rsi/hosalt-equipped-INNERCLOTHING.png rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_alt.rsi/equipped-INNERCLOTHING.png diff --git a/Resources/Textures/Clothing/Uniforms/uniform_hos.rsi/hosalt.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_alt.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_hos.rsi/hosalt.png rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_alt.rsi/icon.png diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_alt.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_alt.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..2e4a7103ae44c75c3ff213bd4b87590c85813644 GIT binary patch literal 543 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEV0`B3;uumf=j|=~zS#~UY#;Iu z8;NaV=Z-PRRhhL_dzNl-{~hJyCv1!Qb-y#*W6O+|QjSb+(n;~1HDShGmj4ekb(g%q z9x-d;{);wjvnm+`q2OZZC6m&~X*=tC<7a;_(>ZNao_p_q%_I)b%U3ej3brZU6LZY2 zEfl=9CmE>7fM@-w*Ty>-j?eyXv)*`n)LNN>NWnhy`~UVot(05Rtx&|&XD;9NaQ;UX zPXX7!^f!0*Xmm|b@l5CW5zV4m?##T8@g3s~WMiKKEzzletDeI2aEU?JU`Sm+zQ_i7#`u?v`sGYUN!66U=5O?v0zj zcUnoD{6qnUA5tvuwr1Yzt^Zd0XT|I8>l4o@E5X1b!^yAQ1$IjQ%9!+*W3hHaiG9_Q<7_q@5ezU;O?e`HSr@IobD&msnS7drwemU(|6hwo9t%eNszR`|9`G zT{g9T{n>x`k-dWp6tFOy*mUMj-_y#xoX5ozQfHq0Tr=Tq+`aPix@t?`^a6z!X*5mw z^ls7mwWp$ae_QPD*XP^UW#^bloA@>x@Dy6jt@>PSsQP|^(%t%36*f+qrYkZcr`^cg zej#eHMwhugWANvw{ftrB9Et&u*wo9+9`v!h6>0mx0Z zn9p#(iY>}Nz)D<2M0+sk#vx?<7)bNP&X W&Z$$6M6LwJJA~8HZvDq|ygqKxD$kGeb@B!gIRPvki_%(bv8Ooh7_aN*ecw@>%lW!_ zL8ih6aACQm)qQ;Z{Mzmm7n_OCcGvUw4jq*)hrXY5-Y{Z2fD2_@-I?{uzGsgV8kJa@0`(#YMC&KpK#2dHAM>dl^Y)va-hRj>DVTjfiAcqVoU z^waXf-K@hNKMIjExszJ;o>I$X+csI2McHhY3WWkWjzh&_krLGhI;-A}{9e*|gNS{n zY}Oi-yD3rr{DMx7Pupv|NsA)22HpLGydYxN5_c^YnWm+=d0L3hP~-iL9-A-Zwm!7F zC7lNV0000000000U^J<5{6q&MlOj2eH}V9K;5gp6-`Azb=f>^;sqwk&-z|QD^!VJ! z9UwW5H}(?fM`xUF}s8#`vk_#7ZSBKia?%r>jgF@fIz0000+IFt<#jM0{S z)I&TD_zK3{k^gULxVD#nzutA=BLDyZ00000000=eI4CE2C9cY+iD}#hoQw16QRd}c zHx2SlC;7dJ@n)}0JZ@VNR9?=fo0r#E0Ct>DXuP64$IBp}(#reh`mh;ccyJo6p z-7k!OKXlVK&y!cYpX;upHeEhHPTc?Bmd!hL1@J_SC-KkEMw6*=+bo(lrw^o6N|#Z^ zODh|OAqC&(xw_3BS@HJi5AqsUfVx<(-hC(jb>0>#kIJX0{Il{--2yC5;#sGyC&@pt z1z4?EO72Sg^j59XtM5}i2F!33ikn-+$IjO$wLad5N1GmAaV;+Z0000000000IKZ`*xx~!I z$T-(p=2GGUkb^CA3DN)MuC>gw$g~1nYne+JdxJXHTIN}ZSAc6RbE!;QfL5Sot`ltm sanCRtpgg0I@ta&%c_K*#H0l07*qoM6N<$f*8x?yZ`_I literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_parade.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_parade.rsi/meta.json new file mode 100644 index 0000000000..d01e147030 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_parade.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/uniform_hydro.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hydro.rsi/equipped-INNERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_hydro.rsi/equipped-INNERCLOTHING.png rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/hydro.rsi/equipped-INNERCLOTHING.png diff --git a/Resources/Textures/Clothing/Uniforms/uniform_hydro.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hydro.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_hydro.rsi/icon.png rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/hydro.rsi/icon.png diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hydro.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hydro.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..dccc69e247684556cede07cb4d253cc5dd8f202d GIT binary patch literal 535 zcmV+y0_gpTP)JTr^>IVR9j1;TDLO;zr^Ha0MWK?|32%YzJ zN9D?vN~R2i%?mOSH6T~E)N0Y{Ub_t!j_o0tGGMNMR`IOb!r@+P;QLAE4I;J!+=dGP zFxO4&tn79t>yQ6;UXbai0UuRR0J@WGHk-iK`+dju;Mm^K)soH|L}Ul}lesy$?HTv0 zHR@#j=liSe=SzKfK=26s2%5Vw(=y#Rlrt7V6b~0KjU=LTtvtUGx9*f{2}^bbdk2 znNyfwoW-0mjYsbV_m|IjbUO%BE$KWWA|fIpA|fIp(wkH_daQkcagppsYq#p$vBupQ4E zuY&Hti~GZNCflOCck>oo-*hwMfgiEH=`LLKwk3H3Kg!H4$~(6J0JV<8Y(={RFK#p) zY8|I^;G0nEI5e8hrI+mw+wr2jchUphffsM=dKaI=aY*1tG@1_X*1uEnel+Fvi)rTj zx2JR?`Mh&a zK=N?9ddF|ST$-tNBZ|)TU_;p^XAN#^g@@K99K&!VFe}B{9(b*H~pX+Sz zZL_~$XZh%e4~K`edMEL_SDz|#3d-c2TL6HSrvYcXV-7}B4n{8l*x2(}Sq}I*xuG{H z;ktQqcd^x5i&x!yJa~AYRcDFQ=qKMk{@^q`r%Jn@ur05Mh=_=Yh=_=Y4Q%Teo4B$s zFw3@%u_@yMfPEcf6Gnd*+tx8IqRH@^Xbr92X828;6m0000zy>|GH;XC+A41!kp%#NIF1oT(b~=_rA!>h)_K2ARF-8XiXzzN?Q(l= zK)cp6&9H+xhDg&Cz|UmM*Uhj40OtAi$vZVqDP^?Qu+2L}>;z1wQvg7krf9WVtI3w* z*UsDJ>=W?43+5xxt4WT>V}xM{;OpMbW&<3%The)lh@60OGLy+4_dx1-lY@?lA06?yd7U>24lXM&H>~+t=yn+wXeG#wQORm9pD2Uj@P`s4j#Y=H| z*v9V0xQ?dFX3GC_93}kn&rAe=AcPP?2qAN-3kYCW<1`GzDN3-T|1e-@kbO^e(PY&kKJa zmQCK1J7B$D1CXXETKQssXs@5v(ou;1@nhkHvl`5Omtf4eYcS>pRXp64;0PVqbs z-}foYlKb05r+x<8RfA#FJZj{Tx*PNU33J% z{l>V?dH}99#BO literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/janitor.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/janitor.rsi/meta.json new file mode 100644 index 0000000000..d01e147030 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/janitor.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/uniform_md.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/medical.rsi/equipped-INNERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_md.rsi/equipped-INNERCLOTHING.png rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/medical.rsi/equipped-INNERCLOTHING.png diff --git a/Resources/Textures/Clothing/Uniforms/uniform_medical.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/medical.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_medical.rsi/icon.png rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/medical.rsi/icon.png diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/medical.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/medical.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..5fca30bad4f3779a320b70d3bb4ce30936696f4f GIT binary patch literal 472 zcmV;}0Vn>6P)Nkl^6a?V8(@8GF+ks1PLKk$fnImeT0VEgTJ~nbl>;UOO7tY=Vrv>wm?FVN|^CgHi z8dm!gc>p3JA|fIpA|fIh!h5e}S?aCvp?Q~MWm)RbynDVaLcI5yWf_{Lxq6mmS?@)N zd6$}|8I<>S-g{M54IyYz6larD)!w@n^SWb2QD_K3hvdCgoUE#9+qNnq3IHOaZQCB7 zy*g>@yk|_V002}~g(OMfoP&s{a}G(8psK1#ad;w4ZST2`W&+EEIUDxq< zAJ2Qn%f?$Ua_J|4@%;edFA0bsRS_5L60JR%|@A|fIpA|fK1 zJBtp1*~`&Sn_Y*%TDOxB$0pk$uy)xY2q9<)L5Fk*W_tyIQ->hWbL4rBcXbFR$$PKe zlOQ5zJOAnxnC%I$>JZF!0jxR%rmx5U!`KeN>=$5chhWz4+1VkW@qPi4$c?mF5Yo^9 O0000&?~OpR(4v zx>)Hyt<(z*?d*8-PGrZP&`{5L&*$bGth}41q?CKRYik(8fhg_V+jj5XF6GGn+_#N^ zVM=PJisynUOZTp%{Chx=R9~SMbVGv-jkn3+2?=dtuw&VG~JGb^M zRzF}{v-_^q>v!Md?CwQQF5kj%Ez0xqmd%~Jmt}HYPp{sn_I?5DJX7D#%Q|jHO!}V6 z$k)!?Fh5IcDFegx*QPc%-KIU6`=tH&NgOdV z{AOq=^}0JZ=}*~4-=6zg+d2z5-it9jnl16W!cwv*X|_cB2RlZfRBffW!nV$h`s>9i t#BLv{@GD>h%AMzY744VM`C|W1wx{pQFCWY;zXgmS22WQ%mvv4FO#o6f%7y>{ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/medical.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/medical.rsi/meta.json new file mode 100644 index 0000000000..d01e147030 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/medical.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/uniform_mime.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/mime.rsi/equipped-INNERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_mime.rsi/equipped-INNERCLOTHING.png rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/mime.rsi/equipped-INNERCLOTHING.png diff --git a/Resources/Textures/Clothing/Uniforms/uniform_mime.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/mime.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_mime.rsi/icon.png rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/mime.rsi/icon.png diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/mime.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/mime.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..59518c35c3657ca8af0061031cbf9a10ca23f0f9 GIT binary patch literal 381 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0J3?w7mbKU|e{s5m4S0Ei383`o+|Nn1qZ$FcT zO%KRnED7=pW^j0RBMr#OtqO@KaY-#sF3Kz@$;{7VV5pcA99B?N`u$6A!N;#pw7hk- z&Yd|Qydl)!qVa=AI_G^fPcjts^zN`Q4l=%M?4>a0(WE1jLKK2E&5g~s?l9Tx(%EgS zx_O1flKyVvwHksNTq)8;n%X;l?QHO6W0-F*UHv>JWCzgV#hxyXAs(G?r#SK*R^VY_ ze9HLX8RG+am%sn-Z}PnrBz^k08vD0NQ;lXk-N2Wa^-Afe)TNgnGT8zco*WizuwgpV zc;CU-hUp_`?j_F!hTGNVo@z*rw6tV;zU8u_+1o4HKR$P@7p_vM4)co(^tzar^~%nv zarJlmNqd>B4w&vduv#k2yozN@w~azlOT3)X>zi8>4!vTG5Pa76qG9Kzopr0OP%wl>h($ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/mime.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/mime.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..fa96803d56c7e2b7cbf42bfdef502d2466445511 GIT binary patch literal 380 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0J3?w7mbKU|e{s5m4S0D`pk&%)A|NpnQw~zTa z+XTpGED7=pW^j0RBMr#OtqO@KaY-#sF3Kz@$;{7VV5pcA99B?N`u$6A!N;#pw7hk- z&Yd|Qydl)!qVa=AI_G^fPcjts^zN`Q4l=%M?4>a0(WE1jLKK2E&5g~s?l9Tx(%EgS zx_O1flKyVvwHksNTq)8;n%X;l?QHO6W0-F*UHv>JWCzgVMV>B>As(G?ryS%xqQJv) zP&7e{!;jsQdHL)8E20BjbZ&k${+<|@vA5}KvS;STin)_MrCq(o&fMg9W=_J2>l1~; zvmZ>-FST#1bY8jE&^$Rn>)@M|0Ifau#J2CU7Tn@>=ABru>Ji&Djw_WO**sj`ebo9% z@U+L91Qz-)a7} X(*%9gjknzcx|YGy)z4*}Q$iB}Sqql- literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/mime.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/mime.rsi/meta.json new file mode 100644 index 0000000000..d01e147030 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/mime.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/uniform_medical.rsi/paramedic-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic.rsi/equipped-INNERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_medical.rsi/paramedic-equipped-INNERCLOTHING.png rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic.rsi/equipped-INNERCLOTHING.png diff --git a/Resources/Textures/Clothing/Uniforms/uniform_medical.rsi/paramedic.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_medical.rsi/paramedic.png rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic.rsi/icon.png diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..5fca30bad4f3779a320b70d3bb4ce30936696f4f GIT binary patch literal 472 zcmV;}0Vn>6P)Nkl^6a?V8(@8GF+ks1PLKk$fnImeT0VEgTJ~nbl>;UOO7tY=Vrv>wm?FVN|^CgHi z8dm!gc>p3JA|fIpA|fIh!h5e}S?aCvp?Q~MWm)RbynDVaLcI5yWf_{Lxq6mmS?@)N zd6$}|8I<>S-g{M54IyYz6larD)!w@n^SWb2QD_K3hvdCgoUE#9+qNnq3IHOaZQCB7 zy*g>@yk|_V002}~g(OMfoP&s{a}G(8psK1#ad;w4ZST2`W&+EEIUDxq< zAJ2Qn%f?$Ua_J|4@%;edFA0bsRS_5L60JR%|@A|fIpA|fK1 zJBtp1*~`&Sn_Y*%TDOxB$0pk$uy)xY2q9<)L5Fk*W_tyIQ->hWbL4rBcXbFR$$PKe zlOQ5zJOAnxnC%I$>JZF!0jxR%rmx5U!`KeN>=$5chhWz4+1VkW@qPi4$c?mF5Yo^9 O0000&?~OpR(4v zx>)Hyt<(z*?d*8-PGrZP&`{5L&*$bGth}41q?CKRYik(8fhg_V+jj5XF6GGn+_#N^ zVM=PJisynUOZTp%{Chx=R9~SMbVGv-jkn3+2?=dtuw&VG~JGb^M zRzF}{v-_^q>v!Md?CwQQF5kj%Ez0xqmd%~Jmt}HYPp{sn_I?5DJX7D#%Q|jHO!}V6 z$k)!?Fh5IcDFegx*QPc%-KIU6`=tH&NgOdV z{AOq=^}0JZ=}*~4-=6zg+d2z5-it9jnl16W!cwv*X|_cB2RlZfRBffW!nV$h`s>9i t#BLv{@GD>h%AMzY744VM`C|W1wx{pQFCWY;zXgmS22WQ%mvv4FO#o6f%7y>{ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic.rsi/meta.json new file mode 100644 index 0000000000..d01e147030 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/uniform_prisoner.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/prisoner.rsi/equipped-INNERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_prisoner.rsi/equipped-INNERCLOTHING.png rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/prisoner.rsi/equipped-INNERCLOTHING.png diff --git a/Resources/Textures/Clothing/Uniforms/uniform_prisoner.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/prisoner.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_prisoner.rsi/icon.png rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/prisoner.rsi/icon.png diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/prisoner.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/prisoner.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..0e0295965262d06a34743f643a90c04bd8e92e11 GIT binary patch literal 525 zcmV+o0`mQdP)iHj5I8m4(X| zrm(nESp-1~3%jwnByrUn&CS7Zm*>}nnZPq)&Y30$L_|bHL_|bHL?n$`8Q-YlU)xWc z_k6EW#iz|n^4TJ!R>m((!bR)lcMFsKUqUQ`+JA5_51Dftn=P7GH5_sxEsWuVMwJ? zVdvkdJcbEu;qrIm&D{I*XHoQ?t;!b48u;f z0G7rbKmNS`EbF{pOgmt6x&1~ROw(Ck-V8r4iP>9Po5PQf!PhS^F$T8}aD5MV52UJ= zb)JZbh=_=Yh=_<}o7FVhY&iOnET_?#ya2G9MrZEtW$Wp&* zfZg;slTV;jD*4sXdgAo>=Tynp>-GP)11zV^; literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/prisoner.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/prisoner.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..cfbe848c3b23e01ca10192642182d1d6a901d312 GIT binary patch literal 546 zcmV+-0^R+IP)Sd|XW{Uao;{u5nmm!d@Cdb-(86FVyJ%-}++j@{jOygt8(D_beSyXxcm=Wnq0WBBvWZQ8sqvu+$71o3Ma z(r7gJbbL&75CITITrx@n;5%r`n%Y-iSalx z2P0{Gn;5%r?v`&8V^?DZ_HAP9!ubf)YBjqx+s>T8eqF5DcDwCe5u5}2HZgWJ){mfX k6Jr-+bxadj5&7Tz0lqX4*UHG0C;$Ke07*qoM6N<$f`6X@4*&oF literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/prisoner.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/prisoner.rsi/meta.json new file mode 100644 index 0000000000..d01e147030 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/prisoner.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/uniform_cargotech.rsi/qm-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/qm.rsi/equipped-INNERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_cargotech.rsi/qm-equipped-INNERCLOTHING.png rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/qm.rsi/equipped-INNERCLOTHING.png diff --git a/Resources/Textures/Clothing/Uniforms/uniform_cargotech.rsi/qm.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/qm.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_cargotech.rsi/qm.png rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/qm.rsi/icon.png diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/qm.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/qm.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..72b63752d1cae053b6d9d7c2252fe3d3f8c95be8 GIT binary patch literal 495 zcmVtknA2C_X_x=y2r*A lK&pFe+-K0o?lBQb_y%g45w^hGG*bWo002ovPDHLkV1h^T*n(J%7Vu6}3JwNBUEM2lVSFCpC;!kNu z7=eb|N-He1k*Hx{;8EUQa_{L^?OogR_ubE*Jwu%1oXoWA_4B#8CEWP<<;5BDraiml zvgg6~O|4aadh6FS><=y4!`*j0`HFwtv%AlAc>mi?u*rWQ_h6n**m+yO(?@qtdcs@B zJ?E{ynNYdl`$zYFns`hyFW_frxcG;o`kbbTZ}ZKJ1=lYd%=9ssW&coO^H!Gl<)NS3 z#2)OiX`Q!|ec6GzwXJ^+>V1-Yu;EYZ^yj`YPDZPr@z$FC+m*YkfBwo_%nV;Y2?;{M zN{6j|8+$H1Tj2qubzU+tyejQU^{CYgTbnH7o{{XbBzopr E02B4#(*OVf literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/qm.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/qm.rsi/meta.json new file mode 100644 index 0000000000..d01e147030 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/qm.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/rainbow.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/rainbow.rsi/equipped-INNERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/rainbow.rsi/equipped-INNERCLOTHING.png rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/rainbow.rsi/equipped-INNERCLOTHING.png diff --git a/Resources/Textures/Clothing/Uniforms/rainbow.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/rainbow.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/rainbow.rsi/icon.png rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/rainbow.rsi/icon.png diff --git a/Resources/Textures/Clothing/Uniforms/rainbow.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/rainbow.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/rainbow.rsi/inhand-left.png rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/rainbow.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Uniforms/rainbow.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/rainbow.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/rainbow.rsi/inhand-right.png rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/rainbow.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/rainbow.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/rainbow.rsi/meta.json new file mode 100644 index 0000000000..18ff64cc68 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/rainbow.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC BY-NC-SA 3.0", + "copyright": "Taken from goonstation at commit https://github.com/goonstation/goonstation/commit/4059e4be90832b02b1228b1bee3db342094e4f1e", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/uniform_rnd.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/rnd.rsi/equipped-INNERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_rnd.rsi/equipped-INNERCLOTHING.png rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/rnd.rsi/equipped-INNERCLOTHING.png diff --git a/Resources/Textures/Clothing/Uniforms/uniform_rnd.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/rnd.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_rnd.rsi/icon.png rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/rnd.rsi/icon.png diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/rnd.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/rnd.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..21b03dcf0e1be00ce0059e6695c459eeef5ee68c GIT binary patch literal 692 zcmV;l0!#ggP)BjE7zW@srCWzms7#?tNg&iDSu%D|vAuQ9PGT^WCH!3#o?rUI-gH>#(Dw97-Nhv#u#IaF~)KU zd{4Qqt7f(5t!Lk>#coj)*0PyDxPqptnB&$cw`WBFK z000;sp92_wYSl^&n;UCW?fN|1dXp$_3+oxs?(}i;{wubc&v4Qk;Poq{pW3x{%X&qy zzNgCNvT_^;!{c)tT+~r=?xx3NGQztjA94TfQzS_OA;iM#&8xTLeYkmRfDmFu2!Y_D zuEzKK-(z7E;{bK+w_3&>pI5I4B-Gkun4-!fkUk#QuggexQRNZH2B0-D?QC)Zrl|7> a|E=GYAI*ME`<2}Q0000z9YKUMWs%=NJTB7b6%WpmIKHXC!PFZw%jZBk4cZ=I0f ziDPk1&#)~CWB)$I%j&dx(Yuo$>blQb|Gc;S^X}?nzZjYnI1q?|!D5@}(&S~CZi^~r zMlSi@r?F#yox-0BCpXTtjtl$rB~2`${;$F##jdPHNq72>16|mjKL6u~zr_Z}9{jFb`OTi8LVSJxIR?(XGr2z0 z)}Q@eYY~1nV_SXRu^9aWg0n2%lz5dto-@Js@pq%D)?9%Zb7%c&=eM`?@ACyZr8H~0 zi{Rek-3<1=vHBhHuCWVqKFpqeb@pvGdD|V+J8HB4AL^gKKY#rv`;A#uoQSYi;8>LN z;u8-rz-KPoIYp-UznK5x)5Zs$KdlT=-pa7chWY<95Hpq$$aKC23eyR`4{uES^mf|^ z!RdPE9pdgSw_ZQRcGm3Q2`()_zSa8V=!sg%ZCAuDJe7=?63!YVy5O|&gz4d;L8(hX zjPmopmZZ?EjYXS_{xAlZ Xp8L0KrTtc5f@JV?^>bP0l+XkK(-J|1 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/rnd.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/rnd.rsi/meta.json new file mode 100644 index 0000000000..d01e147030 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/rnd.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/uniform_scientist.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/scientist.rsi/equipped-INNERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_scientist.rsi/equipped-INNERCLOTHING.png rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/scientist.rsi/equipped-INNERCLOTHING.png diff --git a/Resources/Textures/Clothing/Uniforms/uniform_scientist.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/scientist.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_scientist.rsi/icon.png rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/scientist.rsi/icon.png diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/scientist.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/scientist.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..5fca30bad4f3779a320b70d3bb4ce30936696f4f GIT binary patch literal 472 zcmV;}0Vn>6P)Nkl^6a?V8(@8GF+ks1PLKk$fnImeT0VEgTJ~nbl>;UOO7tY=Vrv>wm?FVN|^CgHi z8dm!gc>p3JA|fIpA|fIh!h5e}S?aCvp?Q~MWm)RbynDVaLcI5yWf_{Lxq6mmS?@)N zd6$}|8I<>S-g{M54IyYz6larD)!w@n^SWb2QD_K3hvdCgoUE#9+qNnq3IHOaZQCB7 zy*g>@yk|_V002}~g(OMfoP&s{a}G(8psK1#ad;w4ZST2`W&+EEIUDxq< zAJ2Qn%f?$Ua_J|4@%;edFA0bsRS_5L60JR%|@A|fIpA|fK1 zJBtp1*~`&Sn_Y*%TDOxB$0pk$uy)xY2q9<)L5Fk*W_tyIQ->hWbL4rBcXbFR$$PKe zlOQ5zJOAnxnC%I$>JZF!0jxR%rmx5U!`KeN>=$5chhWz4+1VkW@qPi4$c?mF5Yo^9 O0000&?~OpR(4v zx>)Hyt<(z*?d*8-PGrZP&`{5L&*$bGth}41q?CKRYik(8fhg_V+jj5XF6GGn+_#N^ zVM=PJisynUOZTp%{Chx=R9~SMbVGv-jkn3+2?=dtuw&VG~JGb^M zRzF}{v-_^q>v!Md?CwQQF5kj%Ez0xqmd%~Jmt}HYPp{sn_I?5DJX7D#%Q|jHO!}V6 z$k)!?Fh5IcDFegx*QPc%-KIU6`=tH&NgOdV z{AOq=^}0JZ=}*~4-=6zg+d2z5-it9jnl16W!cwv*X|_cB2RlZfRBffW!nV$h`s>9i t#BLv{@GD>h%AMzY744VM`C|W1wx{pQFCWY;zXgmS22WQ%mvv4FO#o6f%7y>{ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/scientist.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/scientist.rsi/meta.json new file mode 100644 index 0000000000..d01e147030 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/scientist.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/uniform_sec.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security.rsi/equipped-INNERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_sec.rsi/equipped-INNERCLOTHING.png rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/security.rsi/equipped-INNERCLOTHING.png diff --git a/Resources/Textures/Clothing/Uniforms/uniform_sec.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_sec.rsi/icon.png rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/security.rsi/icon.png diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..4ddf7ba69f403688ace39be1b56dd684fd5e7a13 GIT binary patch literal 516 zcmV+f0{i`mP)~8HZvDq|ygqKxD$kGeb@B!gIRPvki_%(bv8Ooh7_aN*ecw@>%lW!_ zL8ih6aACQm)qQ;Z{Mzmm7n_OCcGvUw4jq*)hrXY5-Y{Z2fD2_@-I?{uzGsgV8kJa@0`(#YMC&KpK#2dHAM>dl^Y)va-hRj>DVTjfiAcqVoU z^waXf-K@hNKMIjExszJ;o>I$X+csI2McHhY3WWkWjzh&_krLGhI;-A}{9e*|gNS{n zY}Oi-yD3rr{DMx7Pupv|NsA)22HpLGydYxN5_c^YnWm+=d0L3hP~-iL9-A-Zwm!7F zC7lNV0000000000U^J<5{6q&MlOj2eH}V9K;5gp6-`Azb=f>^;sqwk&-z|QD^!VJ! z9UwW5H}(?fM`xUF}s8#`vk_#7ZSBKia?%r>jgF@fIz0000+IFt<#jM0{S z)I&TD_zK3{k^gULxVD#nzutA=BLDyZ00000000=eI4CE2C9cY+iD}#hoQw16QRd}c zHx2SlC;7dJ@n)}0JZ@VNR9?=fo0r#E0Ct>DXuP64$IBp}(#reh`mh;ccyJo6p z-7k!OKXlVK&y!cYpX;upHeEhHPTc?Bmd!hL1@J_SC-KkEMw6*=+bo(lrw^o6N|#Z^ zODh|OAqC&(xw_3BS@HJi5AqsUfVx<(-hC(jb>0>#kIJX0{Il{--2yC5;#sGyC&@pt z1z4?EO72Sg^j59XtM5}i2F!33ikn-+$IjO$wLad5N1GmAaV;+Z0000000000IKZ`*xx~!I z$T-(p=2GGUkb^CA3DN)MuC>gw$g~1nYne+JdxJXHTIN}ZSAc6RbE!;QfL5Sot`ltm sanCRtpgg0I@ta&%c_K*#H0l07*qoM6N<$f*8x?yZ`_I literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security.rsi/meta.json new file mode 100644 index 0000000000..d01e147030 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/uniform_sec.rsi/blueshift-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_blue.rsi/equipped-INNERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_sec.rsi/blueshift-equipped-INNERCLOTHING.png rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/security_blue.rsi/equipped-INNERCLOTHING.png diff --git a/Resources/Textures/Clothing/Uniforms/uniform_sec.rsi/blueshift.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_blue.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/uniform_sec.rsi/blueshift.png rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/security_blue.rsi/icon.png diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_blue.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_blue.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..6fa516dbc5ce7c5e7f3cbd113a7eddc20d8fe550 GIT binary patch literal 487 zcmV3tmr zUd-4|BnBWNA|fIpA|fK9DU31RTI(;3Pt7|Yv)1~ld1F2#LX0uKswz0={=8RJ)x$*y zdFPySlk%<+DF6VJWeKI!$>glHzAVehdB1m*F~%#UFg0&X@@#-H#y3rKeBE^&oO4i0 zp|0!W_-eJna=E;DJ?Xq##CAZ}bpU|6t}&m_kCP4K@6H?Z`E0A@o?jA?G1EjjgVx6J?BHcZXatBCuqoXXqm?_=lC<`FjJ&x`k5J+{8qk9Yn d>>d-5gfGWtAJEt}x_AHp002ovPDHLkV1h;Q+He2> literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_blue.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_blue.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..f985a97ca641cc58e7f01acc179744316512738b GIT binary patch literal 507 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEU_9jM;uumf=j~0yzSRaItQSsS zH{sA+w0J|$jYe^Y{8Z72d(K`-VSKr`3$Og|qZ>Bu>59Cyu94I9#s6m7t>0Q!@;3C| za$W`oO;tJTRa?uPI6O4P+5hncd2uM(-C1LJZ11VrJls*);n%xrI`5x|F*MwMyUpTGKG(_rTNu4G zub0Yh(s7=oa^r28$0U}>X$xOlX)F!_`{R^HCpKRO%MKWfw`CevVc(u!I-t!$X zdiM*YPuG~fe{wItYp03t#+x}4mTCUlcl>LW>;3N*a{a5Vm>Yh45`u-#QH5=tg&qFS znfjAvOSE(4F$mm0V&QV({?U!TJ6k3tmr zUd-4|BnBWNA|fIpA|fK9DU31RTI(;3Pt7|Yv)1~ld1F2#LX0uKswz0={=8RJ)x$*y zdFPySlk%<+DF6VJWeKI!$>glHzAVehdB1m*F~%#UFg0&X@@#-H#y3rKeBE^&oO4i0 zp|0!W_-eJna=E;DJ?Xq##CAZ}bpU|6t}&m_kCP4K@6H?Z`E0A@o?jA?G1EjjgVx6J?BHcZXatBCuqoXXqm?_=lC<`FjJ&x`k5J+{8qk9Yn d>>d-5gfGWtAJEt}x_AHp002ovPDHLkV1h;Q+He2> literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_grey.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_grey.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..f985a97ca641cc58e7f01acc179744316512738b GIT binary patch literal 507 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEU_9jM;uumf=j~0yzSRaItQSsS zH{sA+w0J|$jYe^Y{8Z72d(K`-VSKr`3$Og|qZ>Bu>59Cyu94I9#s6m7t>0Q!@;3C| za$W`oO;tJTRa?uPI6O4P+5hncd2uM(-C1LJZ11VrJls*);n%xrI`5x|F*MwMyUpTGKG(_rTNu4G zub0Yh(s7=oa^r28$0U}>X$xOlX)F!_`{R^HCpKRO%MKWfw`CevVc(u!I-t!$X zdiM*YPuG~fe{wItYp03t#+x}4mTCUlcl>LW>;3N*a{a5Vm>Yh45`u-#QH5=tg&qFS znfjAvOSE(4F$mm0V&QV({?U!TJ6kGgWw-+goUyO2A8!C){L3<{06<1YMsRw1imR(D%+JqjRf!WO@H|hJmX-hjM@L7dPDdgUOiWDZ z`m`q0MGypHL=;65kH?89ie!9zoQR@m`dttNQomK}`WiPkH#N&?^xch!1Aw9^SYKZU z07Rov93LMe8jT{G%_16&0sz+6*P$p178VxJEEA0SilTg5*I1`f{kjGKz~tm4GMS7n z;`907^Z9UgcBWrz!kJ8_ZlJVi`jRAlTThZCWHK3OQ?(K5=79J4T+_{PI9&5TnM|f> z$Vnvcz%`yb(Xp6u=I)yx5V zdwayVN;FDCQ{XGU8Uaqy+uKW3UJpwKXmkAT?#}eRRTz_9BgyeQ8h#F_6+}23ZfWQH z`uYI;HvX&MX`o6J0|NuZ@AqSLbQHm05Q#(rqA23w;Q=QnCwO^z!R6(pV^4yySd0u0 z599Xs7Tw+5rq8afE?i$TZZ~{B9{}L>^;N$H;J5+7U{HS)2LM%7(bm?c ze=n6vczAfA(x=V=T8Ar@3d-d&DwPUt6SgRq%iuT;9LM49?M=Tfm&=ygvy=lWl?tlW zDmacqwOR!Lcsw3U0np-dx$yM#gtxah06?)=gxl@5tZ!=>baJ?Vh2QVjJF5+MkH-VQ z-*2fsTL%0WuxtRwSzbZ^Rs3-y;N|6os=OZ5x3QK`wOZAap_A0oX_YpE!C){L3q*5tM@ld}HNTpKbzEIGG)9Ew;0PV9C7&WyUabGCFstFCl^E~-E zGh^C|H<&=;@wnqAylW7x^G1Ho%utU^s+XEZho`2du(Pv++1XjBs)|@F20{p2E|;S( zN(mvv<#IumWwf=m=`kD}9O!jcS63U3f%=Wm{QNvZp%9jrmk|gA5Q#*zz)Z(hoI;jm z5c2yb2Lb`?@9$%6Z4HG&0h^nfRP9k4U=;Xx5Fwk*(l$p;Hk&makkSrMtgNg!uKg*= z-FNJ;{Z@76!2qk5Xoc`>2%swK=nu_llU<>h{F3)JUu;)>FH@bro+QSs`i?) zFK~Z<51@59z^G{#swJzxzn=^Z4SgyPg+lsyfkYzV=rSmZBGJwyXrsW$`T04nuC5x6 zf!ctNWgN$$y}ca(@c8&hC2ocO{(jQg*$Du6etxdGDMAwi)fD*HaH~77#qjv}2mokr zZ~wGMNgD%o4$uVtiOw5isAYnc82-4;(Pm@YfL0%oX|}d411gmYR8_SdgjG~kwQYhe z1H4|ZE%9bxHwMcFRI61Ki$ws|l8;?9&0?|0&Id3U*7*xLzyG$5Q*Yn^0000DFD$rxI$Igd-+( zIvE?ZwJf@@IH7?-yM?P^slr7Aj}SlJMztBgmJ2k#*dNgN*I&_V@xqtQg{mf8&YNWx z^vo8pk`>z?WYDN;(5NjCC8KA+IBQA*)1mod#@(h}=Yo}B=6HG`+CpUXO@ GgeCwOD^yef diff --git a/Resources/Textures/Clothing/Uniforms/color.rsi/blue_d-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/color.rsi/blue_d-equipped-INNERCLOTHING.png deleted file mode 100644 index bf42949bc4ebc3f309889b09816ae4fcb47e8243..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 279 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0J3?w7mbKU|e{s5m4S0F9N>nJBvY}C3dXx$lJ zkJxyi5MxP@UoeBivm0qZ&NfdM#}JR>Z>MbJJ#4_klIfSA$SvTnFK|gX;#U1K6U`r7 zNh-cw2l!X~I3C!dFhOa$UafBJynaSu!3fqfJV%{Hco+g1kDKiZ6gVODLqhlghduLy zK8?n-v|LTT?@=jX%ioDt7TFWmaIS-*h_NKdFPOpM*^M+HXNRYYV~EG`w^KIq9yZ`%$@EK5x<4w<%9LXsFguFpp8; z;mHdfCzM+iirbkixGtzKn9MqZ_pKRY;+M%$)3$9Z3yRWjnMo!!a_3dHi!&Ol8Z%^$UI>2>Cto+aA+@jh+O_$$ a7nykyq%%VnUu^~Yfx*+&&t;ucLK6Vn{%4E; diff --git a/Resources/Textures/Clothing/Uniforms/color.rsi/darkblue_d-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/color.rsi/darkblue_d-equipped-INNERCLOTHING.png deleted file mode 100644 index 6ee335b4a2169c39f69f2dba2bb96988f7ca107e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 279 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0J3?w7mbKU|e{s5m4S0F9N>nJBvY}C5T)PJVT zmghP^A;yv*zhDN3XE)M-oNb;ijv*e$-%fGlI&8qhBDzdcI64_G)hT;A~O80#WS=9mdKI;Vst09xW=p#T5? diff --git a/Resources/Textures/Clothing/Uniforms/color.rsi/darkgreen_d-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/color.rsi/darkgreen_d-equipped-INNERCLOTHING.png deleted file mode 100644 index 77714d7b10cf3be95e7a5ec4e87773ae0807bdf0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 281 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0J3?w7mbKU|e{s5m4S0Jroz^M|;;WJ$Z>JpOWj5qsvDC8A=3VeqiepF9;lJ0X_{%-e zSpHmdKI;Vst01OsvCIA2c diff --git a/Resources/Textures/Clothing/Uniforms/color.rsi/green_d-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/color.rsi/green_d-equipped-INNERCLOTHING.png deleted file mode 100644 index 7c62e77f04cee494d114bf813299a8b8acda1af3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 281 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0J3?w7mbKU|e{s5m4S0Jroz^M|;QL;yA-Zd-k z)Bl$Og&0eM{DK)Ap4~_Ta&~ySIEHu}e>-I(?_mQTmQ23{MQ(xraSBV+H*ERulNmID zD@nz->j3|X2ah$J1b!$@*Q?d7o!8GOEEvIdhG%7)h89BwTSsn*cAN5~gNAAi1@jmc z9-h3=aYDIOp}3vNg6o3%g2}8ic;A{aCVrV5HEr9rvY_}~UzQ)b?c@^DxaaPxhN%pR zB~zZ>JZ>KnNF&lEY%K95D6rYe^-JrGegvY!3 zsd>9DOyPUGta}oFrw_uqy0yA>^ZFSTl|0y7SXQzbYB5BxiEI}P;%QcQK0bq? z^`#_3XoS&?yPrLRRy^ZlD-cmoQ&<C^s&R74918c*0h zn|Fec!Y$_1%IXNlUmaG9uGb`(hcL_%Zs)K#wdvJbGlAbcSGYU=YOw8R`u^*~X_lN~ fnJwG?zv-6qelBYjS;@2p=nDocIdI>5i;!D9_4fgeiK^=fr%=k+rR3r4V=;aS diff --git a/Resources/Textures/Clothing/Uniforms/color.rsi/lightpurple_d-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/color.rsi/lightpurple_d-equipped-INNERCLOTHING.png deleted file mode 100644 index 50d834c760eb4912435cf4baebfbd3c54c3fb456..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 281 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0J3?w7mbKU|e{s5m4S0F9N>li4xph4~b{DL!6 zw5K!xg&0eM{DK)Ap4~_Ta&~ySIEHu}e>-I(?_mQTmQ23{MQ(xraSBV+H*ERulNmID zD@nz->j3|X2ah$J1b!$@*Q?d7o!8GOEEvIdhG%7)h89BwTSsn*cAN5~gNAAi1@jmc z9-h3=aYDIOp}3vNg6o3%g2}8ic;A{aCVrV5HEr9rvY_}~UzQ)b?c@^DxaaPxhN%n> zUuc}(&98sJu1a>}^_mL>Aq;0am6>ExBX?e9yEvnt_@ej9@#%v$9P?i=l$8Bez7mO?lEmL$!v2d5j7V zPhRLaq1>ua+|FddbwPc>WY!tHZ_OAJzf6vrwryKkQ2eeh%MaalatUeNbN5xlRECEy zG*0j4*FRuaCA;x@&4q#xhBKYYOfspFJFl``oY7d-m?3lYLimF?`MTK+seR4YuFbE# Z$jp-9nU5E2{hA*C ah2fr$wEI`XB6Xl27(8A5T-G@yGywnsrDs6^ diff --git a/Resources/Textures/Clothing/Uniforms/color.rsi/pink_d-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/color.rsi/pink_d-equipped-INNERCLOTHING.png deleted file mode 100644 index 47e22312125f3f6e8e45ab7ba1634256b9998a10..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 281 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0J3?w7mbKU|e{s5m4S0G)?ZGT2H{&V7_|I22d z3T)N^3Ne-h`2{mLJiCzwope&LKx0;Dl^HXM((`Ic5y~yRbz(C(F@@Z;^gaQH>CD8U%NKH b_98P+f^=rc;;XGdKQMT@`njxgN@xNA*PLqJ diff --git a/Resources/Textures/Clothing/Uniforms/color.rsi/random_jumpsuit.png b/Resources/Textures/Clothing/Uniforms/color.rsi/random_jumpsuit.png deleted file mode 100644 index c53149ebffc39705bb23e3a1632597b9d537d8ef..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 606 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabRA=0VAKro32_B-A>coQmg1z@n%06k zq04kKmg%%D(^(d(v#iS^dy_@+CW}qk7MoUCD+<~>OF8H)bIR6qmXdPL-RpDM(>M0G zZ~1ZGDaU=6ANM^T?R$KR@9_hE_9}ipD$zR25`B-S9eI%U;7Hnon;B^jvNbh<1{FB( zEiQar<$Js;?Lp0hwALyATi5?@J^#P;^Z(ZWlUo0;Z2f<<_5b76|Nq+*XScWh@A%)^ z+35~67ih_}2Wc~XkI(+!x=crBnU3Q!kaMT4PkXS*_xPsP|63oVZT;W6=eX|?-{U}Q zkNY-)T{au&sLLxOFRzZgygl;rxyUR3TdzJyyZO5CZrXzfX=x9D?wAI0)T$Kp|?Ppmy zg*}CZh5eXsD_m=-STj##I)l~&Q!^9sq@#kDlB(3yY8<9}JmgaH6^*Tx6Bbs@l=);f z%`eL8j#}5LOBNv(vresEncY#ad2>Nx_=5+J8BJUqeVm$@cQaMLKjM<^?JaIxXeQIQ n;q#|&oLe_;5lN9?HDO@jyDTr&WqU{sluA5Z{an^LB{Ts5xFrjP diff --git a/Resources/Textures/Clothing/Uniforms/color.rsi/red_d-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/color.rsi/red_d-equipped-INNERCLOTHING.png deleted file mode 100644 index 1ed574b6b0d1d8c1533fd4b118782f99b3052420..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 281 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0J3?w7mbKU|e{s5m4SCAkBLp3w=Mo!k(JnZKV zEiVHKF_r}R1v5B2yO9Ru?C^AP4DmSrcFIQH!v;JonSKe1+yejO6qcxO*z(^eGiU-= zl8SHF0sa*a9&0!W{7{;%SF2k)ub)v^FoNw2&&oCpErtrVj@%OMHswhN4b>V7<}oTf zJb9txgmSAwaXXU**9G+jlUZl*zBOY^{4zOe+O}Iiux2I&&<^z#Tc6Up~ZkXrMqEc-@26-UMx&V_G#F7Q`EtD zTYx}$ziy&Qw{^>tnGJS~cXb$x9e4RPtlrAqzxK`2m>)}*+Kb+oVo*w%lb5+<8N6;iKdUb_bigoS(Svd_J5nyy0wNz^Q+m b^{W_^u1HszeYgDz^aO*atDnm{r-UW|UL$SB diff --git a/Resources/Textures/Clothing/Uniforms/color.rsi/white_d-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/color.rsi/white_d-equipped-INNERCLOTHING.png deleted file mode 100644 index a22386258a0f9f0765f5114ee740f7c3a914a624..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 281 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0J3?w7mbKU|e{s5m4S0Ei48aidllp{xu{Qv*| ztG9zVP>8W4$S;_|;n|HeAZLfCi(`n#@wZbp@*XzeVafDMP~;Z)AE&THeZ!XjKAAxi zxRO+SyAJTLc<@-mN#KXlbiG>L+Ijtq!h#WOXLwe&X=pK2uyy2?Xtya(I%ufYP%w{C z;o->(9Ve7q6^h%LEVwSHFPO|agZHf&W8#;|QPZ|^=0{?+fFVajeG9CYM9E9 zSTg15-NW1)`s3W+n97^Th%yvE>R@n>49nZ+Sc|5@tSLu=Q(t b{1=9MKGN=A4U5!)eqiu)^>bP0l+XkK+nQ=( diff --git a/Resources/Textures/Clothing/Uniforms/color.rsi/yellow_d-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/color.rsi/yellow_d-equipped-INNERCLOTHING.png deleted file mode 100644 index 123625421bf1686ed4e46442b836d1295c105a49..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 281 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0J3?w7mbKU|e{s5m4S0Ei`ELIr8@Olf&|A)TU zK7GFi6k;q1@(X5gcy=QV$l2lP;uzv_{Oy#DyoU{VSTg+*6uAZd$0;mP->~JsPiD{r zt|S%Tt^@ol9z51?68NDsU9VQRc3wZDuwVq+8J?AG8d?k$Y#q5J+HJ~{4jQU86wG5( zczE(c#|h(8m2NN zmP~ni_b~T{{y6tHrt&5-q7224IvCs|!}7K|nxrj=Q;>2u{35#Jdi#B~gqe>QZ2g)Z b|Apb6kF@(&!y-32_cMp5JnKUU**q=NvE?3Psc3NU**9!AgQC6To zb7A{efv6HMZ#ABt-}#;`=zFeCf4wWXJD!r>i_!g>GIj=3J993w39cR%0F;XZ?q9X~ z>kaVuG2!H3-Cr&a!niKV15~=i&eN_pcKmItojIj!!atWe{h3Rpi`FkN7z_r(4~*B8 U868-I_5c6?07*qoM6N<$f`?AHX8-^I diff --git a/Resources/Textures/Clothing/Uniforms/uniform_assistant.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/uniform_assistant.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index 7d3972342b44ba9225eada542f44b4cfb1b20470..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1209 zcmV;q1V;ObP)^05FZ~btADGf>FQFLv2l$j@b1J#z z($Zfpfntj|!A2$^>I98sb_tdtDnzh7C~rHvT1opxyGlyt147d5?tI_8nR&bHdw{`U zFc=I5gW&8+7L=XNSQHkv9eG|7==Kx$x|uORb|qw2#urx3PhuNH>4zsl z9V}O${T!fnNOEBj(kQ`X86r%jL^5ysthhpq$U4 zec__#{5ROI&u#z!?%#Qd{evDJw0T=Au6`+-!7Z_jrX1kBKlG1<+d2BIEf603!`2l5 z;JX`VxPRv*%K03pJ2rQ3=KSw_JF5VIdpoOvb}q3UP|9Y|zHk8m1#1OOIRF4O>u>-=&2hx&Vl6s^1klzd7=JqiRC~${nycF-v-rL-g`1!ifT`jr1fJv zVDHIrN!^2CXb-AJB}rQPtcdZ=k0<``QLq`sfrqUtpmhbH$LWsEyVf@t3mlhz+M3)<~oj_qa#Ofa)`QwYZ53SLX*OU?Ep%RQ%Y*BUJn?z z2-I0WIy!`~?Xi@7T-Yx~$p9j%USJVWO+u7S9JCw|NJmH13oL?gO@eN2khKM@P)K?DU8@R(?Dz)#R6baA%M-MZW%g${iN4=G*x3dwLi z1wx?EL7*-bnrtsEq$HvtsFN-US#$!Os&CTybvftPJ?97-8XEq09LeE#ue)U!xBxtg zK3e_Hx3>T!S;6~H3sKGobq{K-%guFHb{|_amG>Bwz}d-#)vJxT zsT*U^TG!qL$rd;OzkXj^Ey)V|TIROF&hOQKk%60&y}Huk?Bs$Z zEBJbPd8@eeKTz9tp67i3@sjj%jc&I~r_*6~e}~y@#&Wr2u~;yl&*`^wNqyNCj7B4r zQZ_cmpp>HD?*ovgDS0k4Af5r=_wjw7G)-;MO1lrDiJeR)w!ghz52e(dubxh)qMQv4 c4Gj%{0bsq3`awGI#sB~S07*qoM6N<$f=asGng9R* diff --git a/Resources/Textures/Clothing/Uniforms/uniform_cargotech.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/uniform_cargotech.rsi/meta.json deleted file mode 100644 index 9b69da180b..0000000000 --- a/Resources/Textures/Clothing/Uniforms/uniform_cargotech.rsi/meta.json +++ /dev/null @@ -1,155 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/tgstation/tgstation", - "states": [ - { - "name": "icon", - "directions": 1, - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "cargo_skirt", - "directions": 1, - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "qm", - "directions": 1, - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "qm_skirt", - "directions": 1, - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "cargo_skirt-equipped-INNERCLOTHING", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "qm-equipped-INNERCLOTHING", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "qm_skirt-equipped-INNERCLOTHING", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "inhand-left", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "inhand-right", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/Uniforms/uniform_ce.rsi/ce.png b/Resources/Textures/Clothing/Uniforms/uniform_ce.rsi/ce.png deleted file mode 100644 index e2c37a0c2caeaf3decff065cc5a43044cba0dcc2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 530 zcmV+t0`2{YP){@Y-y(E%`0vku&Jh$86#VbJ(JA&kZ`)`z0BAOw z`|~J@0FY7=1c8?3Tb;{=5EzDmloHo<0dQRxDJ6zsAcVm4yzQ$P0Ju21LI}b6X@Kwh zxUP%u`<$N!2qCyQy3&yYz{peNdERz(8SGwuz~P2R6T9c(2JV1&HjL~5@V0qdk;?!; z^^eWv*AFzC@a^{qfRmFlcfWevJ=T2s@{!MH-}6f98Mwc>M#?tx`JDF$2lO3>>2yk` z(_s>ZBo7Y=A-KP}2HLp|44gj;+3_xoWwAXO4SnLy6 zE|=75wPy*u+8RD#+ctg2VG@SGE{VS5(Cv10rGOW-pkA*7&}y~z3Hu&E0Lb(F68Ah0fWzUyXf$$K^TReVj$_m7 z^#Eu#n@p!u@;t}$JO+aSN+|%=>$Mq=$4(-w1>7>3OzvWF9GhP&o+ODe#uyQ~d#=Y_ zM7+C-QA*+aKECg>TrMx~=N7o)EZ~|j41Y2mur%S9sZ6`wF2uFgv|6n~Y&aa^VnXX3 zc(mxF9dJDXPqpCOZ>@FV`x&eS^!xpSvz1bWVR%>kHt##EFQP2VSS%K-Rx28f2K9QK zPN&0sK4-h#lBOw}&4%Og=u+Qa06?u)<8(TqwMJ`=Qi|PfR~XN-%t?T=2cjqIzelVD2l8!Uu?{M z--l8PMNz;Q!_8(xV+@O;fKm#+??Xgr6QD67!jdFOC?Yh*P(+v{NwxNr0GH<1Aui3I z7NQ@Jh{^SOT{BuN79`2{C?k1ZM@;quHV)9}47|2OFaYvAug&lGdyJM_0KjOuMV{wi zaPEI-fGCPuVfbCN*X!Z);|&0+F$_bio6z_c{3cqO-|G8QfRgKNxHbQ<0Ocd}lUZ4N zo@f0Iv~8NT*3eo50J1E@a5%(lHpAg?u#vexK)2h)cs#D^-ELQ_SF4qE80#}olBOvJ zg8|Ysy;lN&<eB9LGO~)@{sm(b&3XDJ7CZ8leb0{=<20V>cK-3PzyPM2uo#yVM9S9lI))B&bI!6-8G$!b$T!}nK7HVZ)Rr$$$T!(Jm37j zzxSK>`|V@i0~Z$;7Z(>77ncu{I+4ziNJNz+34r0@Vg1=?G^zp=3I#?-M}=&P>TB0N zpHFX>Wm&%#)&EFDysxhhfMdsw0jR^n!*$VUR1F4$WHK48tLj7$jQV%)-Zc$ck|cV1 zdYsdbL?UWAqS0vCcH^6JQa_ze+txo+i8w$elVNURI6P!xrMfdTy*V0wC5p9$3p zf>GZv%gSQxQ>p%e0RZUh>mwG6=^`GF2am_Y;^LxytqI3sF|?^#Ej0Z^BJtLKi9|wJ z|G*mXGM~yu)9?3}eI^!*Rjn8r^<`P++O=zRb#-z4_;I~YCX*qNNa%H;n))Upk%%ep z5{ZN-V=GY>Ao^=1E%Nr|%m9_-o@iUwv`dmbRrDu)OjdfTuY{ zZ!-qMNjf_kOoP4sK+)U(c)Tra&+^aU)7;*4GX|j+G<)kg(Xy8Y+H^nB;-T4FZ^@pm zb-??88vxM>SwU6z^K!#l^+N#l^+N#l^+t!zLUKtD#WH z(On=BLZOfv4u>uIBm6xe91g2;HmeIyOiZW%+TU7W)YM*toXui22o)0wh13f}L#DlW zEeQF1UadtCj9Q^k$mGj~p&{X!DfB_4v9S?=@$qr``}>)loh29yvc0{{*w~neDa+(? zImX7uIDh^;4Gj%kx^#(PFvyJ?H}JK#3fmL@EIu+aLThU)moHz&>-Eyn(E&g)pQk~R zxO(-fuoEJjJ9m!lLV?cCP5``KFW0YMXKHGSY&Ofx%#4sd;Q$x~j0X{Z?CD{0a#GZs zF!6YtD_5?Ve2B$jjE|2yuKik(NhXtODwQ&w7jW7K+9Jcae!<#%c=Hu0)YS%6BD)^ zI*33Zz^V3jvM+y%2L}fk930erx^w4_kiDvGjA&catE;QkF!xq84deE>9fW2;sZ^r3 zxA(Pn<9Pw6dG_oXXV0G1&m`>U;>C+X_JsD*fBv>vJyL&&(`}Nez2loB0NlK{!AyM3 zvGV}{BLTnq%MV8Zc>HJ4^uLGc0>#oUw;rum?1Qkg`-4!+!E5Xf!ozd{KzQ(Ap$6P~ zv|d*%?E>#+@BlOMwYr=4Hgq3Ow@H=;4;G8ym(8z^sjSLA*7Gl{n6brr{spV@s}ti! zpG2_rE3hj2*ecfcfP|5)qGAey6>J4ytEjM$T46`6+3eTZQR`Spt=N76wgS+2WN+Fj zFaERTgcUSR%?GPkdUYcKziQ0;-xvO_{S*Lx{qA#p1=#%Q$2Bd)E-vp0{{tu_9W;ua R?P34`002ovPDHLkV1nS$q0ImQ diff --git a/Resources/Textures/Clothing/Uniforms/uniform_detective.rsi/greydetective_d-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/uniform_detective.rsi/greydetective_d-equipped-INNERCLOTHING.png deleted file mode 100644 index 20f55b5fd44b0445b30b5b33b91c1c4c1db9f3c2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1288 zcmV+j1^4=iP)z@i@#!Y)cE$0oynM(=sV81w0%Dy%=`Mz^L^fD=6PnA z_XQXX27|$1Fc|+&IGVxHXp~G%O#uM5x3|@E4-O6p09;*NVP|KD$|kM;pfR-iRvPh* zjST?6?CdPIe|b;lj@$U_g$-LwV3#_LC;QPK~r3w`^Cxl%^x=W;po z^%e14E=QE(X0u6}%_ezh!b65t}fDif9H=3XRF84i06h*^|p;o_8DB$q$ z5KBu-@cDe|7)g?lN~KUJ6b#qzL3@i6Ldb71ke~O^lOl$T-qTMc5`9x3kx1y$A1VbN z;}!oJ8*faV^8@DR=c)P!G4x|lizG?#`Fwc)xkGJ_6RqB;+PVUu2yBcJ-+o|=bQov%ltC_MaLvcnM z1hbi#m_Vn~0RY_G+`wwRor2YBMYr3fwx{bUAj>kk-L5Js%l+R6%);q(!eX(&X0yR! zvB2qc>b5n~W6;do{V{Ad8`|x5kAAz|hRtTvWpAVa{1;#W_}C86qTK$&_78&kMX1qe zJm~9oyM6nOMydXT`WOrbgTY`h7z_r3VFrRA5T579yCU)gJkJwB5On!N{Ygs@1X9T7 z;h2~J0C+qeL?RImFTN!>{%$;<$UbOAA`wz776AZqvkC9a40d;S&GUihdGc~|vu8<~ z=Xnx|L`bbxBXiJq6=;})Kx(xbi9{lV=lLFAUT$uhduIy5-G+!vCPR3hCz(u!q|@nJ z;dS!^fc4w-OQ+L4J}A(p0`(W6d_IqvnHeOLNw{1t1cN~UK)qJOuj_x{lGY$4&)&81 z<-0GixVQ)aaJgJaCX)yTgUILe)b^;q32K+5w0m}*udU&7)%;J4m#Y>$Ut8Y@|d{K z;UKoB*WAz?#P%TW-_EnuY9StvBNmJ4uKZLrz;3tW^z`&Wk;&)t*my(m3HKF%ANBe& z6tDQ#_?!Ho=6g6CMmQW+eL6lqrm|;9(ki*9Y?v?;MMF=%_k-#VI66AQ{{H@her3PF z+m#i3|ED2-J<8k9rm(!ctnNv;kH_PovPYFWfk1!&P?w|?lsyBLN(I?$*3`GbKp;S- zr>6k`^?JSMKV^}G#s_L={eC~;I8F`1I47^rF9>=j59p`?7Z(?*z{i+8a68FLrPAYr z(obvaU$;1FG$RK<@2ad37@<8<0NU*~uCK30c0w=pdVS;|j1&O7-9D1I5sd1C?f`T; y9hA#u0DyMu+PKJOvmD29D3{A@j{t+ApML-aQYm-aGpD}*0000V%B diff --git a/Resources/Textures/Clothing/Uniforms/uniform_detective.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/uniform_detective.rsi/meta.json deleted file mode 100644 index 3217cabb9e..0000000000 --- a/Resources/Textures/Clothing/Uniforms/uniform_detective.rsi/meta.json +++ /dev/null @@ -1,191 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/tgstation/tgstation/ at commit c323b1ed63e7a9c33f48abcdf24f11e30e136aa0", - "states": [ - { - "name": "detective", - "directions": 1, - "delays": [ - [ - 1.0 - ] - ] - }, - { - "name": "detective-equipped-INNERCLOTHING", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "detective-inhand-left hand", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "detective-inhand-right hand", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "detective_skirt", - "directions": 1, - "delays": [ - [ - 1.0 - ] - ] - }, - { - "name": "greydetective", - "directions": 1, - "delays": [ - [ - 1.0 - ] - ] - }, - { - "name": "greydetective_skirt", - "directions": 1, - "delays": [ - [ - 1.0 - ] - ] - }, - { - "name": "detective_d-equipped-INNERCLOTHING", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "detective_skirt-equipped-INNERCLOTHING", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "greydetective-equipped-INNERCLOTHING", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "greydetective_d-equipped-INNERCLOTHING", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "greydetective_skirt-equipped-INNERCLOTHING", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/Uniforms/uniform_engineering.rsi/engine.png b/Resources/Textures/Clothing/Uniforms/uniform_engineering.rsi/engine.png deleted file mode 100644 index 0d76f810b521366e43e2e2d1e6f75c8c09097614..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 446 zcmV;v0YUzWP)$034oE(>Ji#W$xY9W<>vhnw0x*~kWEY8$+- zE2b4K1%QmZKl(n_A2ELx8;ndi8|R9{i|%Uf>4o|DjRk}vY8mw8bA$E0EdVBuFH8H_ z(;Ju1=FP$K2>>2m->uGn!&q%CgVwGX4`lrJ-Ng#xfmj!-DHuNiNb{n*?EGw6zR;Y* zu1!S?0o$8#itZE;qlJQ6vp=)yiMWruI50I9VC{iy8k!AhJ{Zf|Y%EX31}n$bGUy#o o_F?mI1sM8v?;jBn5%DMZ0@9j;WN6~jP5=M^07*qoM6N<$f}~KzA^-pY diff --git a/Resources/Textures/Clothing/Uniforms/uniform_engineering.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/uniform_engineering.rsi/meta.json deleted file mode 100644 index aaba98511e..0000000000 --- a/Resources/Textures/Clothing/Uniforms/uniform_engineering.rsi/meta.json +++ /dev/null @@ -1,101 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/tgstation/tgstation", - "states": [ - { - "name": "icon", - "directions": 1, - "delays": [ - [ - 1.0 - ] - ] - }, - { - "name": "engine_skirt", - "directions": 1, - "delays": [ - [ - 1.0 - ] - ] - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "engine_skirt-equipped-INNERCLOTHING", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "inhand-left", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "inhand-right", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/Uniforms/uniform_hop.rsi/hop.png b/Resources/Textures/Clothing/Uniforms/uniform_hop.rsi/hop.png deleted file mode 100644 index f65a93f00dd043868294c378e1141bb7977e954e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 426 zcmV;b0agBqP)ffF8gpk*NW+>Gp<@#JE7EBgJ54$orUV}mr`aM`$hVh8g`z9x)8mz3sZ~*BI zh(n_DZ-V_7qu54^*euFP@|2&L5MQ&&^?V${TWAz}(a3Jk#G!RK`ySAV`#n_^t>?u47HBfL0z+glQ27>3toVnISBKW>fB*K?( zmwX?d*}4Ki)is=JO=1k|^@>RL=sFI0p3`+4(j{Eq2#GPE_5T+zTcj<5u)I=j_RW^L z)*!-q^P5cexES|HjNwYP!5FJ)sGWh?B5n19u#A-=5~1rjbUGg0VhbYoe{LDvO2CdP z%_1CbHe@1Id0s>9CLD*o67J_e5_xhLiB$VwXIGcn8Ayz&g3lis?QzpZ4`r~;gjETC zu%+|<9cz8Z^y@E%pETDu!tnHSb-r&E-r_CTEtiq!krhQ%_s2~+S*-xOH^Hi7pKrL` kWIR8!@!8PO(D3H`0rH@?n#`}bzW@LL07*qoM6N<$f=IvSE&u=k diff --git a/Resources/Textures/Clothing/Uniforms/uniform_hos.rsi/hos_grey_d-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/uniform_hos.rsi/hos_grey_d-equipped-INNERCLOTHING.png deleted file mode 100644 index 1e92088d4e08b15f6dd374b9f10f6f384ce649d6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1436 zcmV;N1!MY&P)O0RaI40RaI40o9}Hy1U%C-o#=tck#=wtx&ZG{{G`Gck7N#j3f=7b?M}C zIR*y@L%OcJilXq|!$JDvG5)ywfNh_psFGh!;yn9B;m)0AASD)^pni9Ecg0+HcQO@8jzrfG6;a`K!x1)OMWa}S)^z~!_} zp-@1UaSP<<%GjwWLaKvPL^fD;joA~VOFy5M_(ub|3!Qy zAeYMl@TaarKN?Ib?f*(F~=8|T9|wJlDWA#{(AAk zwoe2z9H-}f4j z&*w|8Mv_jakt7L8lK%DH555xM1)WNzD#ndKRaGp@!m=zJ$0@yEt}>RxcLk(UDKeQ% z$V)<_kR%CJRdF1LOePa@90yfZktE5Nz2Gvq+77HX!U=fO`QE5?V0wC5=<}5jx(vd? z!nf3C^}ZDb7#|;h<7bV~4+sbd2nYxW2nY!HACpKV+(!2VEQhY^ZX%KJ<&V(z)zuS< z>+QjB-LZ);M>+r)92~59KR`8jKf*Wtk4rv{Bn_c$IicqPV^e!MbfKAhYmTz}SPs)P ziAJO7y6z5jb~dachB`Z4UDw@cG>U1O>^_#`-kPHvy3own)LtQ5!p{TVy>*@KAKgdO z_5d(EJPd%@)58$BpFet3*J>E*>~yd6^nht%nr3OEcKhq^`1Mwr=llAE>Vn0B7exBnG zAJ)D{2%zI&6UwId0hoP|XKJdrOB9dCv2B~1eMu2>zPQS`dg5ukO;12MLKWaR4r67_N*?9?0`+Fky2}+k35$94 z`n8Zf;Zq>8abv}}wY3#VlE`MW9J%O-niJ;8#WjS(twbUbrl+TQ`t)hV{KUkBkUgPO zAd|_2$_2dOp;#S;VbuM90>dyuj#EsuBuTWkwwC55CML*aGD1EGuK`{X%7eEot0BRA z7={tDEDKmjf}h}_28&=lTVfia?JEIWwrr`H18B2$Hv+wWcF$8w zj#>Sm%!mVk&+CQXSN+TcgNVlB0Dx#Lj+tPP-J^+U9HydBJAqz5)WQ*K5A^z3@D#Oh z#IDWiUzh-(+N-OH1Pj{l^HzJhcF*st1|5yXv6@J*d+lOEQ4o#A@p65=E(u1|!VzAs zuOk|ZbLpEJCe5-r6AWTCkzmJ0+C2s6xp68Odz>bKSD(wtxlowU;SN-LytWqL=+iM) z6N$D4-b{Z&Q7~}r8hV@#l*&3g?jIcBRVu};Z)yq{`E-2D)qdIGP5=Ou%KEw2R-@}W z(=3&B=(@PRPy#BI%DLB8Q`9sTw65zYYMQVuuK6-NJWQMp2W&PQY<4^P`}>j0FP#Y46G{LLx}>Rf*PX!8<3d5r zV|QxZ<2+`BH7&emnETHTjJ+IHH_M+^d@=oY?)C1c!23)F(O4XJW@qv4?HlZT_{e3CI{`Z%KGumWzjy(l zS~5dNgVjtkc+ diff --git a/Resources/Textures/Clothing/Uniforms/uniform_hos.rsi/hostanclothes-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/uniform_hos.rsi/hostanclothes-equipped-INNERCLOTHING.png deleted file mode 100644 index e4ed04736414b281207052610df5634d6335d80c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1343 zcmV-F1;F}=P)91e%W;am%mTqL$>BCGy(GCey_)P2*l^JLZEPGXxTLL?WdW#cC5f2sAs z$BU0J?C}7D0HRS$&(4#DxtTWV%%{P1?0o`$TZ{sjVex@kf7EUV0A-+~UN7XFN0+{) z08G!$lVOhs-CbQu+tlO)0FbH42?T;mO5d=@1Dpj%vlkllN4;J+Z#$H>%Aj))?RGeC zJCr{0EI3;A>pr9&yra7^$jnI=YoU^}*sJd6PFgMeN2GgIi5e{F{FO|;q3dK^@y`rz$Ca>e# z0MuGV%jI%a0LtaE=FhTF%LYw%K@d(5YXA#iB6LVy}iAVBnjmY zA5borQ7n~^NFvv+P->GUTxj7Un?n;K0>rvA=<3iPiB?tLg}L}d%6NZ2c4FSRrjsH zB6Q$L%3y2f5CE{XbBH4;1Mw@fE_=E&AT1ZM_WDg54MM9BZB|%>4gkQ~>o;vcB`6lN z>DtfLLU#cEFYo}cexTO--l}y#&Yv>1*Mn&r1kM+}dTmCrpS=8)`>Hk$hr{7;I2;a# z!{IcWRew8K^|u>R2cU;W{9*n*Ahu~DckbUp()JwB0x!uE|5E}0^nWW*Yd#CSBuU$I z+_`@Xu}zb)J`l-8h~y$KUM-VoY@0msKPB6H`$`ZRJq*N9Yml_~~aiEM@^IIfu~tI;cY_Imcp7H#Fd(^>w7=94ux5LvA;I{rwkId}wlo zh#ITS2B2~b{lM+UklPIa`0LLtR#Up@5$&+rZ210%9{~Wn@i+p(B|ID-ht*~S>m)D- z06^8bAU%qnnw(Iw!DvQCMwEJi2WJzY_K5}N0G#IYh(sa)fb@H*Dhp_K7zx#QI6jWu zcpT~X5&$3)iQqJ!XST<@3#8;6_6`n}YXC^Td&ex?C{&aBuy=6Coc;h~2K0z_q~x5E zb`%y4HZV@wlcoBS^_P&GkZBV6G3S_l%MC0Y>=1Tp!>R zt50DqLI*^f6-QDAX}M@G(%fg0O&gKIR{UnK3rUzw9;?} zw7Np1+1k1TptmT=2paLFp$zz(vwxF(;BfxK{0qCwpVG-Qoy7nE002ovPDHLkV1nXa BdGG)L diff --git a/Resources/Textures/Clothing/Uniforms/uniform_hos.rsi/hostanclothes.png b/Resources/Textures/Clothing/Uniforms/uniform_hos.rsi/hostanclothes.png deleted file mode 100644 index 0f2fc79504dd9e15876e5954be86131166547007..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 467 zcmV;^0WAKBP)Am5)l5YB+DZI6qq{*9L1~ z=xm2~4=x_>UvV=6bWNkao@L?cax>gLTF3DrK|+0E7PH10SgsY(4_XMa9a=Ox2H6h! zK?~(tku@c|fKsIz>Y4_b5Xgi801EjWdX|MkJ_i8Qr)%267JUVC3uHo|$nV8X!$7^! z1OU_V8s>p<%0bSE*@p_}lErj{7%x|k{7-)C9bd17tBbZwdEgW5? zA`=wyIXn;DPeNE=ZozC-L)TsCpV@ie17-nHUcAZD`L7G`eShhk2d?ePWHO``QiuzgoKPmtK002ov JPDHLkV1kZP#7h7G diff --git a/Resources/Textures/Clothing/Uniforms/uniform_hos.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/uniform_hos.rsi/meta.json deleted file mode 100644 index 00c21521b3..0000000000 --- a/Resources/Textures/Clothing/Uniforms/uniform_hos.rsi/meta.json +++ /dev/null @@ -1,398 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/BeeStation/BeeStation-Hornet and https://github.com/tgstation/tgstation/ at commit c323b1ed63e7a9c33f48abcdf24f11e30e136aa0", - "states": [ - { - "name": "equipped-INNERCLOTHING", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "gy_suit-inhand-left hand", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "gy_suit-inhand-right hand", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "hos_grey-equipped-INNERCLOTHING", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "hos_parade_fem-equipped-INNERCLOTHING", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "hos_parade_fem", - "directions": 1, - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "hos_parade_male-equipped-INNERCLOTHING", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "hos_parade_male", - "directions": 1, - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "hos_grey", - "directions": 1, - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "hos_grey_d-equipped-INNERCLOTHING", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "hos_skirt-equipped-INNERCLOTHING", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "hosalt_skirt-equipped-INNERCLOTHING", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "hosalt-equipped-INNERCLOTHING", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "icon", - "directions": 1, - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "hosalt", - "directions": 1, - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "hosalt_skirt", - "directions": 1, - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "hos_skirt", - "directions": 1, - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "hosblueclothes-equipped-INNERCLOTHING", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "hosblueclothes", - "directions": 1, - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "hosblueclothes_d-equipped-INNERCLOTHING", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "hostanclothes-equipped-INNERCLOTHING", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "hostanclothes", - "directions": 1, - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "inhand-left hand", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "inhand-right hand", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "hosalt-inhand-left", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "hosalt-inhand-right", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/Uniforms/uniform_hydro.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/uniform_hydro.rsi/meta.json deleted file mode 100644 index 555ae48c20..0000000000 --- a/Resources/Textures/Clothing/Uniforms/uniform_hydro.rsi/meta.json +++ /dev/null @@ -1,101 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/tgstation/tgstation", - "states": [ - { - "name": "equipped-INNERCLOTHING", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "hydro_skirt-equipped-INNERCLOTHING", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "inhand-left", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "inhand-right", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "icon", - "directions": 1, - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "hydro_skirt", - "directions": 1, - "delays": [ - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/Uniforms/uniform_janitor.rsi/janitor.png b/Resources/Textures/Clothing/Uniforms/uniform_janitor.rsi/janitor.png deleted file mode 100644 index 1a0adb6f1a39d511e733f7ffd131783fb978d005..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 456 zcmV;(0XP1MP)_UZ2ft7Kl=LhUD5rE|yk{ZBQ%?^`vuGVn^0 zBxmDkn%b7KGw}PzpK`O`n|Ry&t?r@*9-kNFc}`IjwA*a}X0sUptyYWU@kpNMJU%aM z`qx{+SGwIUr_+fn%gC~fG)*}i4wd}j!`tVv-hn8Jh@uFsHA*S8)@AG~SZ(ZRG%}v& y0nq7m@H`K#HAPVXptWYR*;szY4Gj$q-<^N34T5c*ep~_o0000Rmha0$~;RskRT_7Y1E`VDsw;W)#JrbS!O$9O` zKOPcS*{^|NhIvo3unQOrhX2lrQ%pqKbzKM{5Jl1W?(ulkx7!U;N@Q8a>iNPE_dE|m z2()brrIaqqQY)o&+qMuw!1Fv1k>(h97$VXGMNw!X(n={!M7k)7G4~V$_u?N-+>0+U z@$eD=K%VF0eGmk290x%VV0$>v@=q~vxm+gk^?Dt}w}l&NQ z21$~j>pD)Goxkm jpVXvj%Iaw_7z~DY5thP$3U_y)00000NkvXXu0mjf95tlq diff --git a/Resources/Textures/Clothing/Uniforms/uniform_md.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/uniform_md.rsi/meta.json deleted file mode 100644 index 0d5dff48cc..0000000000 --- a/Resources/Textures/Clothing/Uniforms/uniform_md.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "Taken from https://github.com/BeeStation/BeeStation-Hornet", "states": [{"name": "equipped-INNERCLOTHING", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "md", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Uniforms/uniform_medical.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/uniform_medical.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index 2fa90b99bb4040b1f0a7ef74938ec478fd652aae..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1388 zcmV-y1(W)TP)W9#LxwGhEVaN&wcrD8K_ViCb&ZYyp40~SL- zFs%}WMKD>e@N817Fd<{(8jTPqao0`ruFyBkn5cP^KYM@P2SVn(H}m`c-f!N&nKuB3 z!{Kl^91iFINe9cxq9~HSzCO&&%~f3|%QDGkvshVKVY11pPmhDapplxjE#*MMrpsJf!NyGLS#n; z07Q0FqdbvFU~Fs*jkbbX`g?nO&@|1Wt7#f`cXw^+KidLmW$DPTC<-PgCynyhsNeEW z&!g8h%0qns@Or%#U9Z<`oX@KNvSEPESwK)6--5 z_jo)|Rh8K$QvlpRehjC3lMvZPt3AXY-5P?i4h@UW5I+}yOR5bJ>{0Kna#_f)#o zDOfA6Wa$#+K z9l+ftX*e84Fc^d&2oOb)6pKX`bG9fJix5ST2!eoMFo=f@OlQ=#;wrj3#d~e=hU|;|v_n*XMG8tqt8Qb=l#{e2_0C@fSwQ)QW z3Zba$wjHULqORjt?YEjfn0>1k<^a6y?}wr&(C;g2N3>DM@5G|5>pB!g!Q1|RW?Rew zSligJ?88&`lS#OoPG$#KaXFpXPbQ5t^&y>3V{K!D*&fpvAP52g>oB3x2=fl250?NF>4}Zih;xg5~990M)HPRaNNs zpV8F|^S3;+Gc&~5)dc|X`~8;6)7{!uBS{j8#bN+pY?T9metnHUK744s53@5f;G1OT)J0KoCl5%b8~3Iv1vRq`^19nr7!@TeE!^) zsqZm99vtA8SFakf(a`q+UvF+uDwP^?pb<)?629KtG-RWp0MO`HDwT$uumja>v<282 uF{9Bap$-UwfM_(@meK#8>IaAOFXnIX^FqfH2v~0b0000VC_l?N?6*kHo!u_fnXBv5T3EYBz_JF6Mer+l4rm7 z{lD*h&vyJhfWcre7z_r3@p8h^oZNBMBLl#@U47{7?N#~?4i3s=-+c-I7`_*#8q^DDW#Q9NlGF7EQK9zOVMd$DHzTGG7y=CCa()!V-1S)r2VKbfO_MW@)_CI zG_U!+!);;sUYN7Wr*dWsA!h*8v%jB94V8x;%ht~*B^CjH|C9NoK`tpV+%M~GFxPC( z%tcY>wo&&p%J-9xb;sFANZ|Prz>>y}1V~cKP(M8kF9AKWWk8{MvKZHVn#J&g5CAyO z+7OJ0AP*!9OHovv$pkwX5#c<0FdL2%r^})&EvL(ZCyQ}yn+f|=0RVuG_b*`hZU_L- z+ERmGC!Q(ollLRk0;sT9(b}??b<=-7hwoyQ@_Xt*RIgW7r~^<@ZbNHJ4LsEX!VwW4 ze()N?5fK&Tg`IuEqsK4sPD?ESV9K9{XEz&vo(O{SuMGeb0Z_9VODY12#aoxX`0FL107`ia-o8?gk>3}n$1{Bq92yPblP~<-&}hi)5T>xXQkk^ptoZte5C<9X zU95u5mCD^&hrI3r{|hX6CGiOeK%P*CZ{^=@tj3a>w$)e?_S5{4iORB=U1FJqAeHH0a#g+G=|7`hn+{)SOc{HTDry>6zBKrSXnDV0OI1dl5%lz zTO*(t)#6JHl^Vy1hG0b0=rIb_TVb;8rBP%YqSV9EWm*`WFmYKOI%B&lQ9)G?@H>Xqq;7Wm-x>o=I z=iLqfKw?vZr&_?!Xb78I2`b}e*xX6LT6zkd?_EGRA}STBr%Rcjym+`wH6Ha-+qE{2 z-2D1EoOe5r*vzEi)PpG2#ckXfFV3UzwKk7jCfIQ0jm&bepXTv&X#@U;%hVdEuK{<) z!(1Q~S2jcx+j*j4UEEf7gjAH<5D3LhX?W?Y!z=*DE#SB@y}d$jpTKdD@7@H{88CT2 rqSWP!c>yF4n}JZg@Z0kkjFZcMd;LRCGPM|a00000NkvXXu0mjf-NBA5 diff --git a/Resources/Textures/Clothing/Uniforms/uniform_rd.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/uniform_rd.rsi/meta.json deleted file mode 100644 index 8b00954d33..0000000000 --- a/Resources/Textures/Clothing/Uniforms/uniform_rd.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "Taken from https://github.com/BeeStation/BeeStation-Hornet", "states": [{"name": "equipped-INNERCLOTHING", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-left", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "inhand-right", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "rd", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Uniforms/uniform_rd.rsi/rd.png b/Resources/Textures/Clothing/Uniforms/uniform_rd.rsi/rd.png deleted file mode 100644 index f9e01cbda0e2392d4258e09290c96d80f82fef58..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 432 zcmV;h0Z;ykP)mxOSCL4#u?_y^?HV!AoV4aqrZ zKfpU79j-yn3?1$*A%go%56|=5_x--#d%?!W#>VD9A!WjblnEQMEF0^6S(XiRCaSqF za(FWC{c2Rx1~(W~)2l<1aWA4KEE`y-R4Fs9x1pP6T5nUTlz$>)-GGz{8_}Q}Sl+Uj zPtcsSAl0EcX;I84Fz3;rTPOvg1hm=Wd!w6Pl^&O4bG~Z>imC(46dI)(q&hT8HO#kR z&PCX>x@g844Z88T8~_YPb7BD}uuR7^aR2aZS=Vv`+eFV!k1g%(#K1Os{qb);7c+2u z729~(+Y;Eew-W;ZQXzt(>S(hC+H66uKVH>}sv{L5B68ve{5~hSYzRfwQBb;@5JewRE)Y?;#|0fOC~18KM-~Nij%IH&(w^t9p8yB}gA^4HI3reZ#H%XFIN~tPIl1@%3rR{>qfjExa zz3=-B1_ONGznZ^`fbDjB5%2f=fAcy#>l8&%)B`%UT9(zRT`U$&y%yRI=r)xM7YS(i z%jR3`7YR^GRkm$k9oEFQZ6o;tK=TbWWLd^;x5Kh5@;t}$JeJEPWm$4Moj4wkj7B3# zOPK)Ib(zoSZCn%uv)QbT*XuQ9S&9UR-#|l}rc5Ri(loub1t9zxg<*Jczx{rn^Z9&H ivs$f0Jq-qf!SDsT?2XmZj>fkD00005go7{~vXHC85;Rk=YW_)t-3C=>#rTNbl;yX>Wh5-_>-6XdhyYA8Jvdg+=ahbH(d z7)s+Tp>{yhNT)vH$k0K+ggCTgiv@;Q#fWHNz3 zb^!pQMA2+EAxRPd;LDdUO#UNRRuske{i*PUybPMpA)C#@^E_CljlQX)ke4wS{sT?Z z?p*{$QG7uV006~e5d*`zQ^)Z}7>~zH{<$cXo~Td5#sfg#)X{FY0RSIAenj8Y!*X%= z0S*rj?{v{5D2n1A930^BGR07X$E`(G=-6ZNStN)&~>9F}QX2LLcIEc{mf zed&EsgIGn-c+0Y&>pHHku9nsvjYhC6i%EpF0*DgDz_8Fab!0Nro^^5Y?b_exf6dkJ zn>q%D1yQ0={6|99b-1nzP1Bav33_3>-G;8~k!`OWE5W!I1Oc{f0{~`+LLo0hlxX-= z0)c`$nM@|pe4r?bzrVkaZnrz&ssC95QG$BGee2*?T^x_c7>~zGuP>Ve`u%<+=j&J`;-aS? z5cI&{Gs;6)DZsilJ?H_4hlfn}MP=EVE>IqXkfo~u%ez3NWpEh-!@~3D&*6COJCP@R4Nr%mIX>__*t*l zAO16E<%Hpb&IIF3Uumy2tLnM@`F!!R(J zOaM$p;5ZJ1kXZI&%>lM;!*Lw&JP*flFdB_88jWHFzzU@_Y;5qf2_c{~-iueFNpO?h zeOn|F;Qv5u0pgCiq*&JCwSQUpI$}?Px7pd*foYoeWo{v^>%w*2wPh?Y3$W;=$Md|6 zHy!}G-R_+^XHi*7N=iyfN=iyfN=iz~8e;vEDwRt9?0!J4RztN~MYGx5%0DwzRqrG| z9mk1vNP>Aoq|s>jgb>tfHBd@HDaG5jZ&}SGCh$!uMXgo?Aq0&^gE=G3BtWCl@T=7- zBuT>Q=_$_6&OitWHzgN6nfpdnRX^AmC4}JY>F7r!@%C&UYHJVx7)bBzTW6CxVpOXU%!4G`nF~osc0L!u# z=H3m%NEAp^j*gBNmUp||SUbZ^0`NQ!(=^fPbinic+~%k#ipXZO%mJ{{Xf&{=$l(zj z&-1|ZJUX2YOw(i@3QPjz^Z9UB*z-ILheHT->X75Ot)$40j*h@_-@+aahjTII^LZwF zi8Dj}ejftmw>AWT>2Px#=Uz^tF!dKjQE+l{0$tZpuh+wK0v8t-I6gi`yyN) zR`KlFGrV~50`K0vL#0v)&n8qV709xT%gakNo6X4fn9m2?E)zu&lu}G46WrX~Y&>CF zEEau5Q2lY?%VaDJoO|00009EP7bQcR=M2zv1%3%zzS*0_w^fb?9 z{^Z9yFK=E51OkD82U1EarL@FW-DMBiF(4cx!@lP0mv63b-ESbzb1JQfqD!*t^&ewT-ydJiR$6h`*UkpKIsowZuNWjLeHoMI z`94o*Z6N8xW%;&_~IPbXf(1>6us$y+CR7FZnulIma;6J zb-S*E0MqFdr4;k|oVu=wfUF#vp{C*XsdrJRaLUfYurzgjWK0 zcc5t+PNx%1)7&cocq9NY91g7zf=;Ky`Fw8gg%AK3W7zF>UYdbGAn*%g^P|!TkzO|d O0000_jJeGo;`=&@KQiy+N4vZ42g1y}@0;iQywCg0 zJHxy$z~OK>91e%W`F~v6jQe?X~Z5PbfC z^02QD_QnQUMmlY^SYU5#pmkP@1pqYbmu%$o2b5o@Ch^#s7NLd{WrVsASRCrf^gk+tE*YF{uf%D2(E9Sx4R4T3yT1N23tK%`5w2M zc7A?g5xw1A2(E81bg?v>uU@0o)r_@p7-I71$~I#12y5XmT3yZ9eDzwh?HePcPJQ)= z1Nl*335DpfxbFDmr0n^Cq`n{sSPljOAPA7+gA5hB={y3q7}TS1xAc5%J8y@gmT#$u8QTT>V8-+p(g z{Oj|hxWB`!&pZhdl464XYKfdl!z37C5{wY{cj&pCN$awwD*&X^8A&X-t_6a*4oNYA zz3nXk`K(Kd2?*voUG{WmKt>Yr^7%6Z2|}$f2}au4m(QOWfP7F)f>D<}-2wQozyrYg zhwJY5TFnDl`SLr*P35IvdJF;=6JM#aY9a3LXe#4yI2;a#!{Kl^98RV2`2&itLf`!> zK{@^~e-H5a1B%0Hf$RP~Jehy0OwZ0K06>nlK&|;?{;A@+e-93;1$u(O6adnB`yD6R zJ34WiPQ%;ZkLlSt zxqBC1x|-3pw2U8GS^xll|Me%6uwEQi3vSodp}nIM0Pr>%#o76ufR6_U82;%;%rMwv zx&@Z}0f>ijm`wtf&Lh1X3}QJLgvaAyF;x~GkB90Kzsx29;$fWnr4{B|;53~^BoYAt zh=*~swY1PIxLv1jae@V+F*G=cx6vrX!#DsS5{ck6&AvLs{1ix}B<#NbK+gf-o!{Hus!8Y7K9KzZBnWy3 zpzPJ*TJI34w6?AQka^%!cAh|dD4v_NQg#N^dWT4*wRHzT@1~?`P>wHUWx%H#{m;n< c4(DIYKPVNONA{zxs{jB107*qoM6N<$f^=hvpa1{> diff --git a/Resources/Textures/Clothing/Uniforms/uniform_sec.rsi/officerblueclothes.png b/Resources/Textures/Clothing/Uniforms/uniform_sec.rsi/officerblueclothes.png deleted file mode 100644 index 8c04be8e0dec58fa12431eecb4982749ad760e8a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 402 zcmV;D0d4+?P)8ZB6vzK59ZZ@bXlijR&fQ88=T3ri7ajZz*$rk+KSPFO>0HRvIY_^Qv(z?{Au+ev zq1+)h1fL;v=>3-C-s9f??|Y{L5{X3e$8_2p8jUAqJ@y=ht!j}DRfTQK67f|Ww>EM? z5w|T%2y;=s^4y{BoNQn;o|Mxlgr=&{R22Xa_#ReqjKKE*K;))TNHTFraXZw0#9hb1 zY`y>h%;pQYjw5nZ8jpaBaU*;bwq*%%o~O|G!qnU9Iu2f!OR-j=Ttw0cxNx=ILrq2C zd-z)Czl=1Y@d)@+t@Hd~p2yGj8dllvilh6p8(@qb-BTd7%QVgMs@H>}C{Vgx7>0o~ zO~LkiFvhSe3M5HFs!6(p+U-6110C1;jfffA9RT1n`+%~^kR%DEB>gSmVgRt+Watm{ wHYEh)KiI?LllUIIzrA$o`;**AB$9v0H=js+2WZR={r~^~07*qoM6N<$g3R!_q5uE@ diff --git a/Resources/Textures/Clothing/Uniforms/uniform_sec.rsi/officerblueclothes_d-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/uniform_sec.rsi/officerblueclothes_d-equipped-INNERCLOTHING.png deleted file mode 100644 index 3d273e2eb52c670b28b5ea83ef61babac883266e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1249 zcmV<71Rnc|P)^Iu7+-P} z!9Fw;e2FXzlXEbEwg*!b?5e&vmbFr>6_(bzZ4SyzR<<1N%xaZ1nGcxVon6oO&6_u~ zi{1kS0)apv5C{ZcCpMOc6UmfD&L1x>*t)g%8Y}b-Kb%OWw8>}`0Pu2qn~D)}{XHw3 zpx5_G5;k%jl@!L~Vu-oml?ZN$f0H8g%e-G)^HTZo#Y779amrfx1 z!GQp6BZKxz5`qH(de19KO#1e24~=c>ejfsUAEsk5q*vDf0O{2=OvhsM zp51Q8qs4``urz~SUoKZ@dvG8?2Tzd86=wae4gi4l%`M!zIY9><@cU@UPe!8%_*=7| zUR}ejn-f^y+%h;kV-Wp~T&~RtdgO8i8@U{_zM(Mbh2H=5dy$lTv zX)dP|4u=DdOP3H1hfypR(L6mxv)M#LRZ%DuEZYOl>J!Z98~P9;_y;F2_~S@hTiE~M zdVhBZg+hU)OD6n-69|6)!@2fv-yh|JJ!XBbB>(_rxkUf^iCVA0<#fR1bU;4XqvvY9 z#?>E}1IVE3irjYH51eif%5n+&yE_0{QCF5raJoHQ{c%S?U6JwX#WNdmLcef19dxj- zUOck_EvLAg4zB*V9q^?f9KiYy7p?bx?E?+9^Ebyu?cHE{4FVrFzHV(+As_4+Y7+;ZJQy7t2LQaz z=W#lG0}qoaOh%)a`Q>LkX6TQ*ND2T(A`$H5^8i{UGuccA^K-M7rN)5P?8oA9TCAbB zfzb0Bp^G|ST3*pcA`uz|mpy#R2^NUP-8*;iI-iGpRJ^ca%m}7_7AI@|&EcV$Znz+t zX7?SY2nczlbFVx3s7TLGYJB-Q7Kp}4tp@q1*wH2yn3q5&kC&>-xpin2rK&>LeO00d6VS)haVqP1V-vYz{{owa^clt7Ty$z&3fH;A70!(Lz`&}W@Yi%wEkbU4& z4xT`4IJ-9)#dHMpyF#Sb+T0G{ElRQiGq#wDfKNI5pOXy&!T*?dN~c@z?E%{&00000 LNkvXXu0mjf5H3Id diff --git a/Resources/Textures/Clothing/Uniforms/uniform_sec.rsi/officertanclothes-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/uniform_sec.rsi/officertanclothes-equipped-INNERCLOTHING.png deleted file mode 100644 index 39b30e92000026cdc83812c40db1076f1531e904..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1382 zcmV-s1)2JZP)Rd%=3F8G5z_ya6L@wRkhy$FJbmZkrI2ys0&G)LKjc=1?7 z4}y?O+ZY57OJP;m?joz!Lt8ARjfpXnkYtRf*+YG&lh~ShCqHy|=K~=#@B7a4ectDN z=AB{Q7hGIiTwGjSTwMO2cw`z!qA^1pPfbpE>XkQ}R_NPq9Erw^Q-gy5{Ql^XDJI0N zb*%`3RbLGTnM)?kx--MWX!*P&{jX%iyE;3~vhlG|0AqY?l<8Zy&AL;AgAk1w%?v^$ z8Z*ue4-?wcZI+2ntHB_lJ>6!V8Vmy1*00+r5{((ZPEPRK<3H%`+U#WZO^%sF!fbOk z9ImQ6eewjCqp_xBg3y1qv_j@}wkilaogW$Kx2^w$9Vg=V?sNL&38rt|2B5pE(@gnO zgM()0r*GZn^vM&%@78>aWy1teEPV}XmJaFKE;Z+nmIy&gsy_??NUQ($P zmA7xHR4SBpo#o}_mc0qq>I)jtxAh_pAndq`z}y&rtwGr!!i)>bxEJ zlwGW)vMfAb1z_R%Dr>1M>epUJ_8ezGMk_P(;GstZprD|2yiadB~RadB~R zadBxjk!Z|_H0is4Gibyg>F)uNXw2wQgADY2$BpTm#?@=r4FK`q4y>9trf(Vpec#ce z25}MusQ`%1hxYbz^w@EVg#zJ`5w2dlZd|!^(bJBsh(u$?l}i^rSFc?+!XqOT3k8lI zJ5FeCucIJHe-QcQ(nSECEv=B&@+4+wfz8oKYk667ju07;n4Kl9lg^D2eUt8nLiq}Mk#@Oc%6hK6KJHN?=+5I(QM`o@Oom(Qz^ zd6hE#vWxUBP%IRfpPvUH^C|^wtrq(O0a2#r!%r&uVMKFrV0Q!Esu?MXic(psLS zm#gM6V2(sP5t_n>rI)KXnS-P^Wb2AK)p7t+#k>iAEfsOgw*O)Sf8>BHQ;A0l_jH< zTe?5M>ccm^-Drj42g~BJK1fZ1wX4CR^Fmmx*0vI>57w1pr#?tO1%w0E&M!P)ZA<5^ zK8XDRA_z_gpyAcwwbb@IH`_rov>gRN%mbgY^8(>R?c8LShBKhuJ4BkT?Kl8VHzl=# oMto@~13u;Ge@;HQxcrOx2mP3z0P?eeYXATM07*qoM6N<$g257}ga7~l diff --git a/Resources/Textures/Clothing/Uniforms/uniform_sec.rsi/officertanclothes.png b/Resources/Textures/Clothing/Uniforms/uniform_sec.rsi/officertanclothes.png deleted file mode 100644 index c6affba9685ec97234194b08bb74b768e3e77f52..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 405 zcmV;G0c!q4vDaSbti42w(!zDuP2#g4INQjL zM7-|0iLe&cqs|?x&cz1W-TrRS>)_Znj%@?bYBrb!0j*{OAju7S9g&G!iQBUCE$(|B z!_gRk;b@HSc}Y%6<`!r%ZA7=C?z)M%&P&LAVD`)EdmfYNG#S%K4x*?9S~y+qvSZU~ zHuzXZ2S&1xxdr;ImQi#xuj5y{hG{7#PJO)oPXb ze2&^~QA!bSHiTg)+Ea80pB^eyEED_A{D~;;A1%NlTE{F_F<}@=wv^ujfM^{9uvo=Z zEc2JAPb2<=`7h7O_h9n&Uf7>sXWay-EQL!{_Yo$T_NW**aByKZ|b=6S1nk|u%5TvKbA7EYH7(2 zYb__2%TZq|!*LVluEBYi&F!z*xOEQ_3($EEnd{`9Y*DY*Rr*$w@8{)L;NP=AldAmj z59KX~RV&ygjnHld1|OhmPbVA($(Ovk1poX!_+Ci)p+kVGEd~y-n1=H%0F_TGRPH~e za`$_2ziN-@WCE%-9PW>P=5SwG{%8Z_Er;xi*XiD_XN1mka(_Lh`0x$@#czw^zEn25 z5=dHF$k~_j5B?Z#gyW{TFXgXVq2!160O?K_7jBb`$>PI1Ui-9H0XbmVZ(_l_H0V6*|oaA{eJlKw$!qGtd(+x}UPifM&b4|M}fSpj91Z+O=iZHTA5 z?;80+-2nbg$#GNU1IeuR00BC1aV{>8j^OoPb9_##xA4oLpW~+Zlly{5L!r0y9UTQf z8L%XVK+gam24Aydk%vV0)N^~8?c*uYu7SP*{wEj%D8Df*-lNI`*XGsQ$1t5`Fv>hI zXsOfPE*lI6gTY`h7z_r3L4~~KOkDPwCKKqR{Cj{~r+@bYD1Gh;E|j7(h?JGL9B$on zCOMm+Y5?bftkcgYMTxvu1l`=(j>ZUul8}|R9F}j0TH#`v`dXO>xg5;sfP|pGR$sN@ zWGR=czCWC8!o2g>If zsQ)B(dLrCkUN5Fab@-x7xln?gZEa=3P%f0H+<)qRFMjuNP&Y-?J)nE0C1{#__N6!% zBoAi*LZ|N8kT-^-?g0mT;xmziUw;y-LB!PG`iSB;z`}{pA(4bXf6?ko%>aocbWSc0 zI-Lo9B4a9~Gvf2KPZwzn1=K@e(2PeM61gW^gJo)XqnZbFdM-B%f9ZNwy!Hn5gE4w2 zpq>NzUF_}m#Hw((A5DRx)ewfxTo+!@ANw6OZ&V9`njH%W@DIM#nC&@X$XB1No33!9CNu}gP#5Wy;>^#R1nCS@MwDqkU8uriINO*)luV2ULW zF|Zb!yG=rhoe;3u50<;R9cF%J<^}?RKp-HY78`1@(OR1X3_t=#Yi+VSX~;ug#{`Tr z6S%mh)b7yKngmQ!Yf5*IaCV6@6Eb1@7GSzcF|4=X_Xi3^O6?9~u*r{(0T|X>bd>^u zhyyRLT5PzAojpyVPz3#Llh0@Nd-c>l2R(T2dBu)=mF9`d6?>*B0R8)Ze%*K)u_n|5 z?->AK{FWzXK0|%H(0IPJ$(K(lG64XKMgBUhw_Nh{YbODIEwKG`gSDA#)fV(0Bo)Yl zMiEr10I1i*-YxAlzr73CLe_#@*bev$xOs3b$Odtmy0gvC1OIYK)~uin^15v(iG4s9`aKDvWbzH{?9erSS$0vNWa6Zd&$g&(JoN4Jt`e4~>1o=V{-F9;>GFtgs zt<^Cc^zpOxd1Fpc^;cn{e=Cak_pk3U9Q4I8y4We_nD7x!j}OJU;h>Lvp@_2A2%;De zML%CCVmRny$~nfpj)(yHXWZ*x%DJ}w+7$Tk?iC(9ekLxMa$OGlbN>g%z0ShlsUd0# zeGk2ob{KR+bo8$b6UsZfcmUYjKL7wwNK(iF5KbT?<5XwTCx^?9UoL>N$Rj)D&#%+h zGL9TV22i-k2H0E$RDBs!{k1hfhN8gqd|YhkYdHXz1%yBvr`K8_7B9mKkjv)zSn&c z)74Ki1^`eWg@IWLSbGwb#i$TX_(&9_q*5TP2+Ge1x@bFq44^!eR|4BbkWgzt9JCye zW=veX{A>U~M8xHVzcJ&&^Z_hs)AK=^F>QVARe+#;OX{x6Q2tZCU-kdNI*c8#Z73S( z)s%ngLC6ML4oEX53XpmShJ$|WyRi;(uv`P=e}Js70UPrX( z!`fw0(Mo}%=STSVvbjw(9_;fI5>vcIdXq zjrRoQ4N$5HS(XF0*B22Qq$zL2nr@87>I+~~G@ZSTRG?V}a)hZ3+8ZJO m7DU7P^+|9YY;ZVk0Dl4Dy~l>=77hFW00007cYZm46QqEnwBRfQ@c6^WtB1T=`@q>?UW zLrSNM!kxXT!7(QDYkw`m&v#_C=6TVH zCg`L94bvoV74195q!NXNMVu9#sGB4bXBOD%?}|E_026f5R=c|=Vlf%*ZQg2kvuGVn z0Knt@EdZ|P(=bh3&&M$a*Yo*!y2kbVqDyU2C_tCvvt3N*9-3bp!eUVxPV0LK{Sv+2RH`E0sX8;&l( z1f5i(kVN84gkH;hHYJf5i9)LvU?pHJLaiPkQAl+)X0sgfa(BUIIi$K8BT-1L9#|zH zSd?Nd!}(;>61?mCmn2j)+4A*2@3+PJGt#!6Tu-goenurFB_${47khrD{-l>t(*OVf M07*qoM6N<$f;c$1m;e9( diff --git a/Resources/Textures/Clothing/Uniforms/uniform_warden.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/uniform_warden.rsi/meta.json deleted file mode 100644 index e2477ddfb9..0000000000 --- a/Resources/Textures/Clothing/Uniforms/uniform_warden.rsi/meta.json +++ /dev/null @@ -1,272 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/tgstation/tgstation/ at commit c323b1ed63e7a9c33f48abcdf24f11e30e136aa0", - "states": [ - { - "name": "gy_suit-inhand-left hand", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "gy_suit-inhand-right hand", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "rwarden-inhand-left hand", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "rwarden-inhand-right hand", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "rwarden", - "directions": 1, - "delays": [ - [ - 1.0 - ] - ] - }, - { - "name": "rwarden-equipped-INNERCLOTHING", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "rwarden_d-equipped-INNERCLOTHING", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "rwarden_skirt", - "directions": 1, - "delays": [ - [ - 1.0 - ] - ] - }, - { - "name": "rwarden_skirt-equipped-INNERCLOTHING", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "warden", - "directions": 1, - "delays": [ - [ - 1.0 - ] - ] - }, - { - "name": "warden-equipped-INNERCLOTHING", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "warden_d-equipped-INNERCLOTHING", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "wardenblueclothes", - "directions": 1, - "delays": [ - [ - 1.0 - ] - ] - }, - { - "name": "wardenblueclothes-equipped-INNERCLOTHING", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "wardenblueclothes_d-equipped-INNERCLOTHING", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "wardentanclothes", - "directions": 1, - "delays": [ - [ - 1.0 - ] - ] - }, - { - "name": "wardentanclothes-equipped-INNERCLOTHING", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - } - ] -} diff --git a/Resources/Textures/Clothing/Uniforms/uniform_warden.rsi/rwarden_d-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/uniform_warden.rsi/rwarden_d-equipped-INNERCLOTHING.png deleted file mode 100644 index 9c5741990bfc70fffc40b9e485b8d767863818d5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1346 zcmV-I1-<%-P)>dLHHi8t%A7C!&MWidmgBNK|U2@5x2MaO? z_7cys!d_a1lsV+kJ)~@5dk8ZIJgnK;*r0V*&AfYv@9ZQ-lXvn%mcAbd$-Fapzt8*Q zc_x|X0XQ5Ehr{7;IGm=)vP?8hBa$Q$Yr7;#MAI}P%QCs_yPedJ`9tL8-TUS%<`3D{ zceHw;D2hZBMeOYCpz>!P%HFQ|-SCK)IDZIXbaWKCTn@QhuH}C1=!gIM2<=!m&jtEj zP`BhuPWLj!gp9S1X38 zvvqoAo_}zo&$KJ(6qxjdW*1O#-{uC?iU9x!It4r$z70*&Y6h=X4EQ!TF!o{vopOg7 zeZw%@gMv`=4gjjbuHSS5lw=CN%?%`^2u_|n1^~R%bp)LPqR}XVP66-q>UKPN@)!vz z0^jBalw^uwn9cRqrl#Rtn6Fucpdi#tzIS0BYg5zkZEj%q`EpDB_cgm9UC28iMM!vQ z5lS+Jv7uX68XI0(L_&&Gzt;iMg}fs$HBGz=^H7p01o~Yy?nY4!1KPR%+SD|jeR$uJ zK9i9#e~3&B4wweaI}9w7|5jl8=u5{2ewlut-(~u|m95h=XvaFUep45y$GYXL?~PWa zTTso*j#+5x0?owRHNXz4Vbn~xH8`@;yJhPz^*himto}-3{t$le?}NwV!Q9*&R#sL} zEEe(O@fp&Eyq!K<#_e_!0C+ewjNi)pX1n#cR4Os)+X{l0(W@W`T)h7SuoVQEV?d4X zRcd{4o3%3=m_LA=0=7=iYVHV{js9%K0JUP6w>|o~S8N}BLC`5ctr*abb#oE6kG|OI z&vp=`+ug3PU8oDz>tE%XSMk5S3v`OFegc?-p!IJkMKz4JevDivOcPMhbrf{HXj7Hf%{{TL+63kYBBCggY&MH{JdV}! zArfQb1c3S83#^)}x)gjQnEmn_R9<`0pWKh(2Hpc+({?ne5ewzLY< zGjwaA1WiUx3=UK?v&TA~WnLo?2y`tk005e%k%SbfW{HLB(_m}Dl(jg6>4}h%Okpzf z8UWyZ^$K{tT+P!v1*pORqR}WzceaQ|qgb$HsMUTKybJU2O-=#;R;372e@qh)URp%v zVYMhiDIbDnX#koq>CJP&`b@NvOo5irgqIePo}F#EFXkO!O+6*X#z}p4sF%=$OuCSF zq|e)8$rMuzXv=bIrB1cgmBV<`7>+9<%7K`|< zba>(X`;#N48UZF_!y{hu)6lmlp8R9BS?|G5iyvz$NV`FJ#7lnh+yQVg?i^JJ-j+Wz z*}&ui%HFQyZTYi#Y#sb+`LOGQr#7sXt1Dkq8*r>M4<4`)1E@g#;JaBFQct>&Z#W5d z7NG4QcpU+-liJML;d%qEGb`K)?Y4G+Y8c3r4%#-tE}7Cn+mq1N1ki$|UZuyaP)%#K zm>q1pK&Etn%=u@(%LSz^GuZLFT-ADk{ZHmGhr?m!U*R~i5=GLHn*aa+07*qoM6N<$ Eg4N@X(EtDd diff --git a/Resources/Textures/Clothing/Uniforms/uniform_warden.rsi/warden-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/uniform_warden.rsi/warden-equipped-INNERCLOTHING.png deleted file mode 100644 index f8b486bf9970f8a653c1804f21bed04126d365d3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1513 zcmVTLj+ED3FOd2FD3NQpaojUaXScd=t}8wSXW9< zgB$`~AQWSID}fl&p%Q~cN-m~^2x`0_j8ls;cQmaN(!3qQQ)MS{^pseIO+PU9)05u+ zd!OF>o~-u)At50lAt50lA>L6{m9#5&noK4`T0ef<`pWBxXYOi5dPWF$?KTkv!RfTB zszeY3aMx}V=@}ts?rI%zhFf2jWr(8ad}LYntsnJz;+67aq|dyuL>881VP$0nmSutGdC0Pi{%F+cyt{s8B8$o1-V>P$Zv9%V2FtPzJkMRv zqJN|Vsv{#9-<(ISR)b*}&~+WTTn>UD000C*KrWYquIn%i1GQQW9q@bIm(ch8AmnC!eH{Ssm#Q|EgQ9gMIBaF`g69Vz z0H{{0$S*9QtE&rL-Q7qe5~xTNqPmrvwt%2h>a2&Vqw;y~tfOdL$ zdAX?^1gTUChGD=k4A{2q{BAcg+TnWyEH5v^G|dQgLQrrVhg2#B+qPkvX2iB_q*5tx z9OtV&-wyb%5ITVMg2U!}P;sDMuQMG#3Z`Wc_#F5SI(F2f>PfJ)v~=jPAoN2*LPA19 zLPA19LjK1nib8_U3229^s>JUu6w|*!?%Hi4D!*WUT}Su*Av_ZIY`c1jZI6KI&MAsQ68Su4CbAgcoCg5ty6)89D3>u&sdRKS zO!xJXxn$BQ(~a84r>@}U^mSB6Mld@&>)8h87a}tgSx2Z;DmnQ90MP&NA!~EY^hcu@ z9UTR*wGy*O?e~z=7hO+<) zTU)4#;(@t3K|%8ZGOu4FV_ATvVf)i3rZ$)yFg5rCq8En&06VW1aTT8>)tb)S z#Ei=>mMwKA2VC6HASbu>3P}KnH>Iltjb&Mg$K$w#Er6~{8#)RMZJfx)2;HBj`2wAU zY8)pgzzx#~ux%Upg@t{`-T4BYW@%}uDJP+ot?g~5_L!GJ@!Ywla!*eWIF3W9R6?av zVQr3?N~MBWECx{&QLoqW_U+rI`qkA{ruLYofN7c$w*c)tus1pig+j;w6BG)C2wnR* zjzdpRk5jk0x(d@YnQUN=0n`cZ&KrgiNarbqLLox)2B{PLbRIZ?AlS*2m>{%$IpD&D z3nym4aiKO)n^+0+1N>e{qc06eUjnM#x)QL!ybQLAe`%;4VQxT3h%f#HOcwZGZY~fb P00000NkvXXu0mjf3JSNC diff --git a/Resources/Textures/Clothing/Uniforms/uniform_warden.rsi/warden.png b/Resources/Textures/Clothing/Uniforms/uniform_warden.rsi/warden.png deleted file mode 100644 index 2fdfd6caf9750ae7ce4c42152b3f75a73836e6ac..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 462 zcmV;<0WtoGP)*C&fR;v{zMljZZwH6@+MNu#sjQ~(eF`LZ*Sg+U71`ck*FXj^fT5F7H zmNCYlwQl6Sx`BruU+Xd3AHkRLe%`AZ01!eTrTptZDJ4RP7`b=@$Doyg-6Qnt`nnOf zA?m)g*5TdR8NFVQ-svexlCWGZ**-n7-ER5)_()lnQJPU>m?R0q;jpo`-+kvvj1aW%_3mJ&62f>2}FK+Q5jDia}?q#3{7s{@ObwxZa z^bn|pA|ZGap@F(o8knKdOOeumAzMPI&L|rf)Vi#lJ#=TBrvK(mlN5I610i|yCcp3R z{qo-LC3!yx2?+@a2?+@a@sFly_FnBylg(!B)<;lVpZUG<*!Y~CerVg$r5ko4k#GmC zX_}o#B#NJ+ECVnNT&dNV9v((f6l7UuV`GDKI!(M(vVVT@A|l|2Fa4#ZC0E~h_Oi6J zB&@&h5*QmCwDY+F^?IGf#YO7%IpR}( z?HAGCHvsuufqRoGrfFgr2D+|OEEY*55&$F;35vxcx~^jw2Bv9pZ&D?nD~OEKx4vnb z0B#_hXK%lV{=NZtHGVd7_1YB5>@0wrbi6o82|$^h1~ zF(=G^_JimP1>nC(pa86{t^)A8rfq3=i`JcBx1GTczP|_otgWq4nwg=muaCa|e&X>s zYinz)zkkpA`Z{mly$kG!U;RJdym9p%4x%p!=PHN3Oga9pGu{6 z?O$105!Mf!175y-={~y2%E}6oBq2%Cw%0)j6aZ(?3kwTd+T9?PN?{lVhGAe?miv0I znXwmvXTZY30+mW7;sl{vNRmV&BOHL;)_b?| zK(pBty1pMm+aP>Od^=t1^jBek`T6->uXRH|BqSsxBqSsxBqZd2jH;@3w`&6SLen%` zRnlwAF5R$`>Q6jcd_p4q4I0=0w{PEW>q(GboDbo*GrzF9_=NPsdvbIqtkZw%G`g-cGBSduY4*g>P}gR}#L$qfX_`GUGJ>w_^xrzo-Q=ck z7mtXY5eR*9s;b)YQi*)7z_quJ0MK>a?Y~m1;XT9a1QSC;_Vno zHYsFJC;(qQe$2O@&p~f5Lejx;^b|$GvMjRCpOfwFB|E9I^6{gP zEujG1%v`1C)HwkDem3i_x6#qj&GWefoY9HktxCycGEBUc$$R|b!A;+`gaUBt#T;dC zhE-L2r&^tEAMlye+Qk-X6>?ojkf(Q-pxR?Q%g7rwtfNfmaBA|dc9687Te;J zcUSU5TV{ZBKJU~EbP`A7ATn|aD!b>1| z;>4Erz`y{KBvGwaX*3$5=7ec98bqT}lF1~^W|P;iUvKGOUS1ZmC$t1Al}f}b;0zu% zXGghQ?)Yzla=9F_EDP8?DIORYaQl{*m#I`LLOuxR04E6E!5fCrmBBld%jJk+7{I3> z1Q|TEAqjS}B&HkMfdX*yjQ$m(aF9}LOKi_?be+@1mSJ4Rs67V g{0M6ULP7%Z4+J2f2QFB|?f?J)07*qoM6N<$g1I}d_W%F@ diff --git a/Resources/Textures/Clothing/Uniforms/uniform_warden.rsi/wardenblueclothes-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/uniform_warden.rsi/wardenblueclothes-equipped-INNERCLOTHING.png deleted file mode 100644 index 045e72f309ab7bdacc51bfb6dc80eb2062e0832e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1386 zcmV-w1(o`VP)o zdFS1kWoG~mhr{7;I2_LZ69Y?Se=w|&^SMyKP^-MrG(%r=Wq&ZN40${NfZsMYs2CAf z-)lw?)cRJ71?%xRy*D~Cg1jW@(*KM_+}6=S%ciF$0YI6annYx2ncf@ncz|G7X=D)m z!LTwqG6F}ZotBYCTP+qiI_>nH)nWkv&H6PfDS%>FFW^`EF6_2SBXfsGSdGPKopGfY^KACyru42+N1W%|#*I)s?bRR!Uq>zglan)R>Ls&GFThB9i#?OY!sOUnQNyRCz! z{E){(8y{I(rj5TJ3^O+Ma{ZexZCH=TA!c*u))TWitjFWD@mlpSjgUI^)jbYWdVMt( zqsPSZMwrTTeELa`(R00cn*02E6y9R%k>0Rst^7BmGw z&Ee4zQ~9S(%~{~QG%l88w3&peYc+GBfB~wxxgO3-V_81YE0*M{YpM@u(!VqS7d=1a za=9u1<#Ji`e_6Q521$285FpDZ>90qh$;qCc9>pXGFdB_8UcCyZ(}{FCjq>~VD3{A9 z$ud%@RMXxBPwNxv(bx1MM6h+=Lid;MsxqhTv)^#UvB9?pttt(RZf&^AAVy zV3%2+c@QLI#SHzm61iA_Nif1B7$F|)(sQ|3&}C0o07#>Yl2~=!3WPQ@vSJ4NJKF#% zS(gZMbCSy z#(|Q2_MPLh@>(!WgTTqaSF5a9hzGlx$~YVjhr{7;I2;a#(`fv`u;OpfcmGCEk3Y=c z1N_0T(q*-v_r`TRiYzL#^9u?9kYg)QYd(rBD!n(ZqswZ6o**yX%lS0h6FwgRpxvx*ae@V+G2!#U?Q%hUm&R5gghV2N<3a&jfe@2D=2;+Iv0?{Bx_lGeE0Jf9K zD&MrgJPQy3b+j{i3ERmet0`S%@)F&wrN-@Y(MN&>=KTS+>NInIKr?(`-XG9raa5I& zg~_a#K~WN$x<5eeL#Lw)CAoZNS)A1era|!ZYOs1$maG=D*wcgB2lYy^ULTle0pftV z@%ua5Eor>k2eLna1VL{H)V(^~>K!7D*47mOG7fyq#uJDSr^hC()SUsX-XYRxZQTLT syD6y|)ZV!Z diff --git a/Resources/Textures/Clothing/Uniforms/uniform_warden.rsi/wardenblueclothes.png b/Resources/Textures/Clothing/Uniforms/uniform_warden.rsi/wardenblueclothes.png deleted file mode 100644 index 5d53f930da0d22353a3865b358bf6bf61eb90b28..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 404 zcmV;F0c-w=P)iuE6vzKI9nd-$XlWQ5=57rk%$-P>yTITlaB#1wJD#$^k8OK8z=URy(VqvCt15YJD%r# z-<^-u&I?E+5{X12kx2fZSa>Q&qA^0xznh!2G%N2kX6UzEITDSLiC_=_@ca5Y6QknB zdu9Z|sPA+*u$D}+d*P`m6f{jp{{tRzSARb%yLa~v0FZlk?;yUs!tPB3gFrM!IvE72 z|H;TOE2B<39S(Q~-0%#zPyfK7-?S0|h-Iya-`v}9yQ)s+4-WA>kzjRhghDmZ%ymys50`#VvkDKRF_5qw*YhKYFRuUq+^&AsCtNtR<7&`Yk;n<0M155engXBEgRJbb1KT^YGLZd+Np> zKm)+5&%Fv5yL)_jh0XGj3>r>j%Z|Oyd;u^e$!K;CqGN0@8dS`1B>2#W> zNiJN2*WmehwP*uQx`j=#GG{klJh1@Ppx6|v zPiH8IR&iWPV|h002F91Ec1n_!1euav5Hyqv0NA zGq?gko%dYyVRUR9N5vvS)6T>3^Yu@Nf9A)hem?-<&p%#r35()&I?!jgV{~jB0Prf6LSShf^A=X`ByxB_6$HZWrp?!vzeTnWXT!aA33c$|l}bU~&tQfS3+844oFr46oVP+-pT+5zf4#TYPBTJK z&35MVAfu9~H&+=XjtR^ce8_@#8N~nN3D}T7i2NXcX~mLBnP$#oLq+ z*@DK#e9n>`0O&k$p3YOK4fS(VtF+w%x}71?X>H*Eh$bbOK|8jz)dSA+>Az1lNF@Ja{sDE? VY6#opQnvsA002ovPDHLkV1kA(Suy|s diff --git a/Resources/Textures/Clothing/Uniforms/uniform_warden.rsi/wardentanclothes-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/uniform_warden.rsi/wardentanclothes-equipped-INNERCLOTHING.png deleted file mode 100644 index 8fcfa9c8db5937b0255762bb1e4cdf6d10385390..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1381 zcmV-r1)BPaP)B#RG{<#Tq2}MoT|tP7o=WFqBj2kLNelpExVkMs3;e> zSrO0+QZ7j>Uyv$ADyWj%LxF&rL_|?yVjSBm+l#q$dx&OPnTH8;2q>!n zRd*&kh%xHJC3%bOrvLbhO){^tRYBP4{P^>phV}QAt*L40;Bqr(V?)t}{_b``Cl6jTgwq52`mbqlobiPsjT_a>oed~zB)~L@U z66Swx-DWP=^n4&vUr`k9Pfr6|sV_#|ngJpJ0Nt+DJOd?@+bT$}d za$?*Z_1>OtCMU)@8w>(l6Ju>an&tlVw5gvj6eyK-02D<5pj6h)N$`3!>=MChgoXlO zWiywPD*w=_`xMwNjZ0-6k6Woaw{kric42uoH^X*mtm|*}N@cz3+|-AL^mh%wPWMlx zQmG0+rBZ45S{ZigL!`T+DCqjz^tYogW#pklhYYu((ACvN*S>x9_xF=dr>VStO{G$y ztm`Z-Ew$}UuvTBtjDABeLV{xh0gem=EF~2_8&m-mfM+i(!EWM z7l7rpoV335Bq+#fW%JibO8OgApBL5VWqB=U9+&htw)(Rb0O52dU#>du1RiBCtLZGM zrz-%Yp02Q(&Z2(ow$-2Q49Mim%shDL5<%z`s?Uo@*$cqTgNH8I3W~?QZ`bQ~!gc`u zD>wm=y5TpVi zoDUr6=fufV6g7?D*cjJt+%zs}Km$@CEGVN*8HR( zzQE#(74sM{N1~GmO<}|0ixuq5K~i%-pXz5LU!YI*n`N1oY4fdTrXdKcF2pNbe5_sMV{m9%V18&&z5$OD11# z>;3?%4WIV+lGlpwEQ`z9ATk_`?H|6=|DP7J2SAf?3h00000NkvXXu0mjf(es%p diff --git a/Resources/Textures/Clothing/Uniforms/uniform_warden.rsi/wardentanclothes.png b/Resources/Textures/Clothing/Uniforms/uniform_warden.rsi/wardentanclothes.png deleted file mode 100644 index e54b5f4eaeda5c2986bf78df5cf396af9c7c006a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 408 zcmV;J0cZY+P)-F*fJeFMR*tIbPf7DOXLqj$4| zy%(`!J&JT_zU6Yy$vyv{bMH+cB_$>0kI9^~sM+pp_G8_*)>*Ygi*|)8o@e6YFg)AH zjYPcSc}7@^>QUzob?0IO&30$gEjP%!E_v4lpkAvo4nyj-DuBs#%MForc}864C7gU<_S+ixKEu(-jJrq8 From 392454b4cb491adb8795d2dade645bc2a1998b17 Mon Sep 17 00:00:00 2001 From: 20kdc Date: Sun, 22 Nov 2020 06:47:56 +0000 Subject: [PATCH 07/13] Disable automatic on-touch activation of external airlocks (#2385) * Disable automatic on-touch activation of external airlocks It's a total pain to reliably get inside a two-door airlock without tripping the firelocks, and that's if you're *intending* to use it properly... People keep draining the entryway air on the sandbox servers (so people have to crowbar the firelocks open, and this reduces available air) * Disable automatic on-touch activation of external airlocks: Change auto_open to autoOpen * Change auto to bump Co-authored-by: Metal Gear Sloth --- .../Components/Doors/ServerDoorComponent.cs | 10 ++++++++++ .../Entities/Constructible/Doors/airlock_types.yml | 3 +++ 2 files changed, 13 insertions(+) diff --git a/Content.Server/GameObjects/Components/Doors/ServerDoorComponent.cs b/Content.Server/GameObjects/Components/Doors/ServerDoorComponent.cs index a54160d12d..f472399261 100644 --- a/Content.Server/GameObjects/Components/Doors/ServerDoorComponent.cs +++ b/Content.Server/GameObjects/Components/Doors/ServerDoorComponent.cs @@ -80,6 +80,10 @@ namespace Content.Server.GameObjects.Components.Doors public bool Occludes => _occludes; + [ViewVariables(VVAccess.ReadWrite)] private bool _bumpOpen; + + public bool BumpOpen => _bumpOpen; + [ViewVariables(VVAccess.ReadWrite)] public bool IsWeldedShut { @@ -112,6 +116,7 @@ namespace Content.Server.GameObjects.Components.Doors base.ExposeData(serializer); serializer.DataField(ref _occludes, "occludes", true); + serializer.DataField(ref _bumpOpen, "bumpOpen", true); serializer.DataField(ref _isWeldedShut, "welded", false); serializer.DataField(ref _canCrush, "canCrush", true); } @@ -147,6 +152,11 @@ namespace Content.Server.GameObjects.Components.Doors return; } + if (!_bumpOpen) + { + return; + } + // Disabled because it makes it suck hard to walk through double doors. if (entity.HasComponent()) diff --git a/Resources/Prototypes/Entities/Constructible/Doors/airlock_types.yml b/Resources/Prototypes/Entities/Constructible/Doors/airlock_types.yml index af5abe905c..fd89e37025 100644 --- a/Resources/Prototypes/Entities/Constructible/Doors/airlock_types.yml +++ b/Resources/Prototypes/Entities/Constructible/Doors/airlock_types.yml @@ -3,7 +3,10 @@ parent: Airlock id: AirlockExternal suffix: External + description: "It opens, it closes, it might crush you, and there might be only space behind it.\nHas to be manually activated." components: + - type: Airlock + bumpOpen: false - type: Sprite sprite: Constructible/Structures/Doors/airlock_external.rsi - type: Appearance From 6602c8c97224f88440b056f3614c3c7ca5b40a67 Mon Sep 17 00:00:00 2001 From: Paul Ritter Date: Sun, 22 Nov 2020 08:38:07 +0100 Subject: [PATCH 08/13] Objectives (#2459) * temp commit to save progress * adds objectives * refactors mind.addobjective a bit * better names for my testobjectives which i'll remove later on anyways * nullable errors * some misc fixes * no sorted or set, what was i thinking here? * removes unused imports * added commands * fully implements stealcondition * started uiwork * moved prototypeicon to engine * removes objective class & uiwork * refactors ui to only update when opened adds progresstexturerect * adds some margin * removes some testing code * ignores objectiveprototypes on clientside * fixes * removes using statements for exp * gets the job * always show issuer * locs & _ * giving commands some love * Update Content.Client/GameObjects/EntitySystems/DoAfter/DoAfterBar.cs Co-authored-by: Exp * makes commands use new thingy * string interpolation * good catch exp * loc'd * linq gone * runtime * moves function from engine * oopsie * Update Content.Server/Objectives/Conditions/StealCondition.cs Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> * makes messages directed * base call & validation * shuffle once * No? Money down! Co-authored-by: Paul Co-authored-by: Exp Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Co-authored-by: Metal Gear Sloth --- Content.Client/EntryPoint.cs | 1 + .../Actor/CharacterInfoComponent.cs | 101 +++++++++++-- .../Components/Actor/CharacterInterface.cs | 12 ++ .../Components/Actor/ProgressTextureRect.cs | 22 +++ .../Components/Mobs/ICharacterUI.cs | 5 + .../EntitySystems/DoAfter/DoAfterBar.cs | 26 ++-- .../Actor/CharacterInfoComponent.cs | 58 ++++++++ .../Components/ContainerExt/ContainerExt.cs | 23 +++ .../Components/Mobs/MindComponent.cs | 1 - Content.Server/IgnoredComponents.cs | 1 - Content.Server/Mobs/Mind.cs | 35 +++++ Content.Server/Objectives/Commands.cs | 139 ++++++++++++++++++ .../Objectives/Conditions/StealCondition.cs | 57 +++++++ .../Interfaces/IObjectiveCondition.cs | 35 +++++ .../Interfaces/IObjectiveRequirement.cs | 15 ++ .../Interfaces/IObjectivesManager.cs | 17 +++ .../Objectives/ObjectivePrototype.cs | 60 ++++++++ .../Objectives/ObjectivesManager.cs | 53 +++++++ .../SuspicionTraitorRequirement.cs | 17 +++ Content.Server/ServerContentIoC.cs | 3 + .../Actor/SharedCharacterInfoComponent.cs | 37 +++++ Content.Shared/GameObjects/ContentNetIDs.cs | 1 + Content.Shared/Objectives/ConditionInfo.cs | 23 +++ .../Objectives/traitorObjectives.yml | 9 ++ 24 files changed, 724 insertions(+), 27 deletions(-) create mode 100644 Content.Client/GameObjects/Components/Actor/ProgressTextureRect.cs create mode 100644 Content.Server/GameObjects/Components/Actor/CharacterInfoComponent.cs create mode 100644 Content.Server/GameObjects/Components/ContainerExt/ContainerExt.cs create mode 100644 Content.Server/Objectives/Commands.cs create mode 100644 Content.Server/Objectives/Conditions/StealCondition.cs create mode 100644 Content.Server/Objectives/Interfaces/IObjectiveCondition.cs create mode 100644 Content.Server/Objectives/Interfaces/IObjectiveRequirement.cs create mode 100644 Content.Server/Objectives/Interfaces/IObjectivesManager.cs create mode 100644 Content.Server/Objectives/ObjectivePrototype.cs create mode 100644 Content.Server/Objectives/ObjectivesManager.cs create mode 100644 Content.Server/Objectives/Requirements/SuspicionTraitorRequirement.cs create mode 100644 Content.Shared/GameObjects/Components/Actor/SharedCharacterInfoComponent.cs create mode 100644 Content.Shared/Objectives/ConditionInfo.cs create mode 100644 Resources/Prototypes/Objectives/traitorObjectives.yml diff --git a/Content.Client/EntryPoint.cs b/Content.Client/EntryPoint.cs index 66e2898088..e86493ab70 100644 --- a/Content.Client/EntryPoint.cs +++ b/Content.Client/EntryPoint.cs @@ -79,6 +79,7 @@ namespace Content.Client prototypes.RegisterIgnore("gasReaction"); prototypes.RegisterIgnore("seed"); // Seeds prototypes are server-only. prototypes.RegisterIgnore("barSign"); + prototypes.RegisterIgnore("objective"); ClientContentIoC.Register(); diff --git a/Content.Client/GameObjects/Components/Actor/CharacterInfoComponent.cs b/Content.Client/GameObjects/Components/Actor/CharacterInfoComponent.cs index 1a33b83398..28f7ffb381 100644 --- a/Content.Client/GameObjects/Components/Actor/CharacterInfoComponent.cs +++ b/Content.Client/GameObjects/Components/Actor/CharacterInfoComponent.cs @@ -1,26 +1,30 @@ +#nullable enable +using System.Drawing; using Content.Client.GameObjects.Components.Mobs; using Content.Client.UserInterface; using Content.Client.UserInterface.Stylesheets; +using Content.Shared.GameObjects.Components.Actor; using Robust.Client.Interfaces.GameObjects.Components; using Robust.Client.Interfaces.ResourceManagement; using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; +using Robust.Client.Utility; using Robust.Shared.GameObjects; +using Robust.Shared.Interfaces.Network; using Robust.Shared.IoC; using Robust.Shared.Localization; +using Robust.Shared.Players; namespace Content.Client.GameObjects.Components.Actor { [RegisterComponent] - public sealed class CharacterInfoComponent : Component, ICharacterUI + public sealed class CharacterInfoComponent : SharedCharacterInfoComponent, ICharacterUI { [Dependency] private readonly IResourceCache _resourceCache = default!; - private CharacterInfoControl _control; + private CharacterInfoControl _control = default!; - public override string Name => "CharacterInfo"; - - public Control Scene { get; private set; } + public Control Scene { get; private set; } = default!; public UIPriority Priority => UIPriority.Info; public override void OnAdd() @@ -30,18 +34,29 @@ namespace Content.Client.GameObjects.Components.Actor Scene = _control = new CharacterInfoControl(_resourceCache); } - public override void Initialize() + public void Opened() { - base.Initialize(); + SendNetworkMessage(new RequestCharacterInfoMessage()); + } - if (Owner.TryGetComponent(out ISpriteComponent spriteComponent)) + public override void HandleNetworkMessage(ComponentMessage message, INetChannel netChannel, ICommonSession? session = null) + { + base.HandleNetworkMessage(message, netChannel, session); + + if(session?.AttachedEntity != Owner) return; + + switch (message) { - _control.SpriteView.Sprite = spriteComponent; - } + case CharacterInfoMessage characterInfoMessage: + _control.UpdateUI(characterInfoMessage); + if (Owner.TryGetComponent(out ISpriteComponent? spriteComponent)) + { + _control.SpriteView.Sprite = spriteComponent; + } - _control.NameLabel.Text = Owner.Name; - // ReSharper disable once StringLiteralTypo - _control.SubText.Text = Loc.GetString("Professional Greyshirt"); + _control.NameLabel.Text = Owner.Name; + break; + } } private sealed class CharacterInfoControl : VBoxContainer @@ -50,8 +65,12 @@ namespace Content.Client.GameObjects.Components.Actor public Label NameLabel { get; } public Label SubText { get; } + public VBoxContainer ObjectivesContainer { get; } + public CharacterInfoControl(IResourceCache resourceCache) { + IoCManager.InjectDependencies(this); + AddChild(new HBoxContainer { Children = @@ -66,7 +85,8 @@ namespace Content.Client.GameObjects.Components.Actor (SubText = new Label { SizeFlagsVertical = SizeFlags.None, - StyleClasses = {StyleNano.StyleClassLabelSubText} + StyleClasses = {StyleNano.StyleClassLabelSubText}, + }) } } @@ -78,16 +98,65 @@ namespace Content.Client.GameObjects.Components.Actor PlaceholderText = Loc.GetString("Health & status effects") }); - AddChild(new Placeholder(resourceCache) + AddChild(new Label { - PlaceholderText = Loc.GetString("Objectives") + Text = Loc.GetString("Objectives"), + SizeFlagsHorizontal = SizeFlags.ShrinkCenter }); + ObjectivesContainer = new VBoxContainer(); + AddChild(ObjectivesContainer); AddChild(new Placeholder(resourceCache) { PlaceholderText = Loc.GetString("Antagonist Roles") }); } + + public void UpdateUI(CharacterInfoMessage characterInfoMessage) + { + SubText.Text = characterInfoMessage.JobTitle; + + ObjectivesContainer.RemoveAllChildren(); + foreach (var (groupId, objectiveConditions) in characterInfoMessage.Objectives) + { + var vbox = new VBoxContainer + { + Modulate = Color.Gray + }; + + vbox.AddChild(new Label + { + Text = groupId, + Modulate = Color.LightSkyBlue + }); + + foreach (var objectiveCondition in objectiveConditions) + { + var hbox = new HBoxContainer(); + hbox.AddChild(new ProgressTextureRect + { + Texture = objectiveCondition.SpriteSpecifier.Frame0(), + Progress = objectiveCondition.Progress, + SizeFlagsVertical = SizeFlags.ShrinkCenter + }); + hbox.AddChild(new Control + { + CustomMinimumSize = (10,0) + }); + hbox.AddChild(new VBoxContainer + { + Children = + { + new Label{Text = objectiveCondition.Title}, + new Label{Text = objectiveCondition.Description} + } + } + ); + vbox.AddChild(hbox); + } + ObjectivesContainer.AddChild(vbox); + } + } } } } diff --git a/Content.Client/GameObjects/Components/Actor/CharacterInterface.cs b/Content.Client/GameObjects/Components/Actor/CharacterInterface.cs index f776411554..d96fef4f6c 100644 --- a/Content.Client/GameObjects/Components/Actor/CharacterInterface.cs +++ b/Content.Client/GameObjects/Components/Actor/CharacterInterface.cs @@ -116,6 +116,7 @@ namespace Content.Client.GameObjects.Components.Actor public class CharacterWindow : SS14Window { private readonly VBoxContainer _contentsVBox; + private readonly List _windowComponents; public CharacterWindow(List windowComponents) { @@ -129,6 +130,17 @@ namespace Content.Client.GameObjects.Components.Actor { _contentsVBox.AddChild(element.Scene); } + + _windowComponents = windowComponents; + } + + protected override void Opened() + { + base.Opened(); + foreach (var windowComponent in _windowComponents) + { + windowComponent.Opened(); + } } } } diff --git a/Content.Client/GameObjects/Components/Actor/ProgressTextureRect.cs b/Content.Client/GameObjects/Components/Actor/ProgressTextureRect.cs new file mode 100644 index 0000000000..40f95f717b --- /dev/null +++ b/Content.Client/GameObjects/Components/Actor/ProgressTextureRect.cs @@ -0,0 +1,22 @@ +using System; +using Content.Client.GameObjects.EntitySystems.DoAfter; +using Robust.Client.Graphics.Drawing; +using Robust.Client.UserInterface.Controls; +using Robust.Shared.Maths; + +namespace Content.Client.GameObjects.Components.Actor +{ + public class ProgressTextureRect : TextureRect + { + public float Progress; + + protected override void Draw(DrawingHandleScreen handle) + { + var dims = Texture != null ? GetDrawDimensions(Texture) : UIBox2.FromDimensions(Vector2.Zero, PixelSize); + dims.Top = Math.Max(dims.Bottom - dims.Bottom * Progress,0); + handle.DrawRect(dims, DoAfterHelpers.GetProgressColor(Progress)); + + base.Draw(handle); + } + } +} diff --git a/Content.Client/GameObjects/Components/Mobs/ICharacterUI.cs b/Content.Client/GameObjects/Components/Mobs/ICharacterUI.cs index 748bdf40bc..ef9c3a6821 100644 --- a/Content.Client/GameObjects/Components/Mobs/ICharacterUI.cs +++ b/Content.Client/GameObjects/Components/Mobs/ICharacterUI.cs @@ -17,5 +17,10 @@ namespace Content.Client.GameObjects.Components.Mobs /// The order it will appear in the character UI, higher is lower /// UIPriority Priority { get; } + + /// + /// Called when the CharacterUi was opened + /// + void Opened(){} } } diff --git a/Content.Client/GameObjects/EntitySystems/DoAfter/DoAfterBar.cs b/Content.Client/GameObjects/EntitySystems/DoAfter/DoAfterBar.cs index 172c05d047..c612670e5e 100644 --- a/Content.Client/GameObjects/EntitySystems/DoAfter/DoAfterBar.cs +++ b/Content.Client/GameObjects/EntitySystems/DoAfter/DoAfterBar.cs @@ -1,4 +1,4 @@ -#nullable enable +#nullable enable using System; using Robust.Client.Graphics.Drawing; using Robust.Client.Graphics.Shaders; @@ -105,16 +105,10 @@ namespace Content.Client.GameObjects.EntitySystems.DoAfter } color = new Color(1.0f, 0.0f, 0.0f, _flash ? 1.0f : 0.0f); - } - else if (Ratio >= 1.0f) - { - color = new Color(0f, 1f, 0f); - } + } else { - // lerp - var hue = (5f / 18f) * Ratio; - color = Color.FromHsv((hue, 1f, 0.75f, 1f)); + color = DoAfterHelpers.GetProgressColor(Ratio); } handle.UseShader(_shader); @@ -128,4 +122,18 @@ namespace Content.Client.GameObjects.EntitySystems.DoAfter handle.DrawRect(box, color); } } + + public static class DoAfterHelpers + { + public static Color GetProgressColor(float progress) + { + if (progress >= 1.0f) + { + return new Color(0f, 1f, 0f); + } + // lerp + var hue = (5f / 18f) * progress; + return Color.FromHsv((hue, 1f, 0.75f, 1f)); + } + } } diff --git a/Content.Server/GameObjects/Components/Actor/CharacterInfoComponent.cs b/Content.Server/GameObjects/Components/Actor/CharacterInfoComponent.cs new file mode 100644 index 0000000000..7f4c040725 --- /dev/null +++ b/Content.Server/GameObjects/Components/Actor/CharacterInfoComponent.cs @@ -0,0 +1,58 @@ +#nullable enable +using System.Collections.Generic; +using System.Linq; +using Content.Server.GameObjects.Components.Mobs; +using Content.Server.Mobs.Roles; +using Content.Shared.GameObjects.Components.Actor; +using Content.Shared.Objectives; +using Robust.Shared.GameObjects; +using Robust.Shared.Interfaces.Network; +using Robust.Shared.Players; + +namespace Content.Server.GameObjects.Components.Actor +{ + [RegisterComponent] + public class CharacterInfoComponent : SharedCharacterInfoComponent + { + public override void HandleNetworkMessage(ComponentMessage message, INetChannel netChannel, ICommonSession? session = null) + { + switch (message) + { + case RequestCharacterInfoMessage _: + var conditions = new Dictionary>(); + var jobTitle = "No Profession"; + if (Owner.TryGetComponent(out MindComponent? mindComponent)) + { + var mind = mindComponent.Mind; + + if (mind != null) + { + // getting conditions + foreach (var objective in mind.AllObjectives) + { + if (!conditions.ContainsKey(objective.Issuer)) + conditions[objective.Issuer] = new List(); + foreach (var condition in objective.Conditions) + { + conditions[objective.Issuer].Add(new ConditionInfo(condition.GetTitle(), + condition.GetDescription(), condition.GetIcon(), condition.GetProgress(mindComponent.Mind))); + } + } + + // getting jobtitle + foreach (var role in mind.AllRoles) + { + if (role.GetType() == typeof(Job)) + { + jobTitle = role.Name; + break; + } + } + } + } + SendNetworkMessage(new CharacterInfoMessage(jobTitle, conditions)); + break; + } + } + } +} diff --git a/Content.Server/GameObjects/Components/ContainerExt/ContainerExt.cs b/Content.Server/GameObjects/Components/ContainerExt/ContainerExt.cs new file mode 100644 index 0000000000..8263cca814 --- /dev/null +++ b/Content.Server/GameObjects/Components/ContainerExt/ContainerExt.cs @@ -0,0 +1,23 @@ +using Robust.Server.GameObjects.Components.Container; + +namespace Content.Server.GameObjects.Components.ContainerExt +{ + public static class ContainerExt + { + public static int CountPrototypeOccurencesRecursive(this ContainerManagerComponent mgr, string prototypeId) + { + int total = 0; + foreach (var container in mgr.GetAllContainers()) + { + foreach (var entity in container.ContainedEntities) + { + if (entity.Prototype?.ID == prototypeId) total++; + if(!entity.TryGetComponent(out var component)) continue; + total += component.CountPrototypeOccurencesRecursive(prototypeId); + } + } + + return total; + } + } +} diff --git a/Content.Server/GameObjects/Components/Mobs/MindComponent.cs b/Content.Server/GameObjects/Components/Mobs/MindComponent.cs index 8ae15d2640..78af6ec95a 100644 --- a/Content.Server/GameObjects/Components/Mobs/MindComponent.cs +++ b/Content.Server/GameObjects/Components/Mobs/MindComponent.cs @@ -16,7 +16,6 @@ using Robust.Shared.IoC; using Robust.Shared.Localization; using Robust.Shared.Map; using Robust.Shared.Serialization; -using Robust.Shared.Timers; using Robust.Shared.Utility; using Robust.Shared.ViewVariables; diff --git a/Content.Server/IgnoredComponents.cs b/Content.Server/IgnoredComponents.cs index 59b7053ca7..0be2eccd08 100644 --- a/Content.Server/IgnoredComponents.cs +++ b/Content.Server/IgnoredComponents.cs @@ -10,7 +10,6 @@ "SubFloorHide", "LowWall", "ReinforcedWall", - "CharacterInfo", "InteractionOutline", "MeleeWeaponArcAnimation", "AnimationsTest", diff --git a/Content.Server/Mobs/Mind.cs b/Content.Server/Mobs/Mind.cs index 9adcb4a776..77d5c23394 100644 --- a/Content.Server/Mobs/Mind.cs +++ b/Content.Server/Mobs/Mind.cs @@ -3,6 +3,7 @@ using System.Collections.Generic; using System.Linq; using Content.Server.GameObjects.Components.Mobs; using Content.Server.Mobs.Roles; +using Content.Server.Objectives; using Content.Server.Players; using Robust.Server.Interfaces.GameObjects; using Robust.Server.Interfaces.Player; @@ -27,6 +28,8 @@ namespace Content.Server.Mobs { private readonly ISet _roles = new HashSet(); + private readonly List _objectives = new List(); + /// /// Creates the new mind attached to a specific player session. /// @@ -74,6 +77,12 @@ namespace Content.Server.Mobs [ViewVariables] public IEnumerable AllRoles => _roles; + /// + /// An enumerable over all the objectives this mind has. + /// + [ViewVariables] + public IEnumerable AllObjectives => _objectives; + /// /// The session of the player owning this mind. /// Can be null, in which case the player is currently not logged in. @@ -144,6 +153,32 @@ namespace Content.Server.Mobs return _roles.Any(role => role.GetType() == t); } + /// + /// Adds an objective to this mind. + /// + public bool TryAddObjective(ObjectivePrototype objective) + { + if (!objective.CanBeAssigned(this)) + return false; + _objectives.Add(objective); + return true; + } + + /// + /// Removes an objective to this mind. + /// + /// Returns true if the removal succeeded. + public bool TryRemoveObjective(int index) + { + if (_objectives.Count >= index) return false; + + var objective = _objectives[index]; + _objectives.Remove(objective); + return true; + } + + + /// /// Transfer this mind's control over to a new entity. /// diff --git a/Content.Server/Objectives/Commands.cs b/Content.Server/Objectives/Commands.cs new file mode 100644 index 0000000000..47ecdd4f8a --- /dev/null +++ b/Content.Server/Objectives/Commands.cs @@ -0,0 +1,139 @@ +#nullable enable +using System.Linq; +using Content.Server.Administration; +using Content.Server.Players; +using Content.Shared.Administration; +using Robust.Server.Interfaces.Console; +using Robust.Server.Interfaces.Player; +using Robust.Shared.IoC; +using Robust.Shared.Prototypes; + +namespace Content.Server.Objectives +{ + [AdminCommand(AdminFlags.Admin)] + public class AddObjectiveCommand : IClientCommand + { + public string Command => "addobjective"; + public string Description => "Adds an objective to the player's mind."; + public string Help => "addobjective "; + public void Execute(IConsoleShell shell, IPlayerSession? player, string[] args) + { + if (args.Length != 2) + { + shell.SendText(player, "Expected exactly 2 arguments."); + return; + } + + var mgr = IoCManager.Resolve(); + if (!mgr.TryGetPlayerDataByUsername(args[0], out var data)) + { + shell.SendText(player, "Can't find the playerdata."); + return; + } + + + var mind = data.ContentData()?.Mind; + if (mind == null) + { + shell.SendText(player, "Can't find the mind."); + return; + } + + if (!IoCManager.Resolve() + .TryIndex(args[1], out var objectivePrototype)) + { + shell.SendText(player, $"Can't find matching ObjectivePrototype {objectivePrototype}"); + return; + } + + if (!mind.TryAddObjective(objectivePrototype)) + { + shell.SendText(player, "Objective requirements dont allow that objective to be added."); + } + + } + } + + [AdminCommand(AdminFlags.Admin)] + public class ListObjectivesCommand : IClientCommand + { + public string Command => "lsobjectives"; + public string Description => "Lists all objectives in a players mind."; + public string Help => "lsobjectives []"; + public void Execute(IConsoleShell shell, IPlayerSession? player, string[] args) + { + IPlayerData? data; + if (args.Length == 0 && player != null) + { + data = player.Data; + } + else if (player == null || !IoCManager.Resolve().TryGetPlayerDataByUsername(args[0], out data)) + { + shell.SendText(player, "Can't find the playerdata."); + return; + } + + var mind = data.ContentData()?.Mind; + if (mind == null) + { + shell.SendText(player, "Can't find the mind."); + return; + } + + shell.SendText(player, $"Objectives for player {data.UserId}:"); + var objectives = mind.AllObjectives.ToList(); + if (objectives.Count == 0) + { + shell.SendText(player, "None."); + } + for (var i = 0; i < objectives.Count; i++) + { + shell.SendText(player, $"- [{i}] {objectives[i]}"); + } + + } + } + + [AdminCommand(AdminFlags.Admin)] + public class RemoveObjectiveCommand : IClientCommand + { + public string Command => "rmobjective"; + public string Description => "Removes an objective from the player's mind."; + public string Help => "rmobjective "; + public void Execute(IConsoleShell shell, IPlayerSession? player, string[] args) + { + if (args.Length != 2) + { + shell.SendText(player, "Expected exactly 2 arguments."); + return; + } + + var mgr = IoCManager.Resolve(); + if (mgr.TryGetPlayerDataByUsername(args[0], out var data)) + { + var mind = data.ContentData()?.Mind; + if (mind == null) + { + shell.SendText(player, "Can't find the mind."); + return; + } + + if (int.TryParse(args[1], out var i)) + { + shell.SendText(player, + mind.TryRemoveObjective(i) + ? "Objective successfully removed!" + : "Objective removing failed. Maybe the index is out of bounds? Check lsobjectives!"); + } + else + { + shell.SendText(player, $"Invalid index {args[1]}!"); + } + } + else + { + shell.SendText(player, "Can't find the playerdata."); + } + } + } +} diff --git a/Content.Server/Objectives/Conditions/StealCondition.cs b/Content.Server/Objectives/Conditions/StealCondition.cs new file mode 100644 index 0000000000..a7ea32187a --- /dev/null +++ b/Content.Server/Objectives/Conditions/StealCondition.cs @@ -0,0 +1,57 @@ +#nullable enable +using Content.Server.GameObjects.Components.ContainerExt; +using Content.Server.Mobs; +using Content.Server.Objectives.Interfaces; +using Robust.Server.GameObjects.Components.Container; +using Robust.Shared.GameObjects; +using Robust.Shared.IoC; +using Robust.Shared.Localization; +using Robust.Shared.Log; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization; +using Robust.Shared.Utility; + +namespace Content.Server.Objectives.Conditions +{ + public class StealCondition : IObjectiveCondition + { + public string PrototypeId { get; private set; } = default!; + public int Amount { get; private set; } + + public void ExposeData(ObjectSerializer serializer) + { + serializer.DataField(this, x => x.PrototypeId, "prototype", ""); + serializer.DataField(this, x => x.Amount, "amount", 1); + + if (Amount < 1) + { + Logger.Error("StealCondition has an amount less than 1 ({0})", Amount); + } + } + + private string PrototypeName => + IoCManager.Resolve().TryIndex(PrototypeId, out var prototype) + ? prototype.Name + : "[CANNOT FIND NAME]"; + + public string GetTitle() => Loc.GetString("Steal {0} {1}", Amount > 1 ? $"{Amount}x" : "", Loc.GetString(PrototypeName)); + + public string GetDescription() => Loc.GetString("We need you to steal {0}. Don't get caught.", Loc.GetString(PrototypeName)); + + public SpriteSpecifier GetIcon() + { + return new SpriteSpecifier.EntityPrototype(PrototypeId); + } + + public float GetProgress(Mind? mind) + { + if (mind?.OwnedEntity == null) return 0f; + if (!mind.OwnedEntity.TryGetComponent(out var containerManagerComponent)) return 0f; + + float count = containerManagerComponent.CountPrototypeOccurencesRecursive(PrototypeId); + return count/Amount; + } + + public float GetDifficulty() => 1f; + } +} diff --git a/Content.Server/Objectives/Interfaces/IObjectiveCondition.cs b/Content.Server/Objectives/Interfaces/IObjectiveCondition.cs new file mode 100644 index 0000000000..97385aa805 --- /dev/null +++ b/Content.Server/Objectives/Interfaces/IObjectiveCondition.cs @@ -0,0 +1,35 @@ +using Content.Server.Mobs; +using Robust.Shared.Interfaces.Serialization; +using Robust.Shared.Utility; + +namespace Content.Server.Objectives.Interfaces +{ + public interface IObjectiveCondition : IExposeData + { + /// + /// Returns the title of the condition. + /// + string GetTitle(); + + /// + /// Returns the description of the condition. + /// + string GetDescription(); + + /// + /// Returns a SpriteSpecifier to be used as an icon for the condition. + /// + SpriteSpecifier GetIcon(); + + /// + /// Returns the current progress of the condition in %. + /// + /// Current progress in %. + float GetProgress(Mind mind); + + /// + /// Returns a difficulty of the condition. + /// + float GetDifficulty(); + } +} diff --git a/Content.Server/Objectives/Interfaces/IObjectiveRequirement.cs b/Content.Server/Objectives/Interfaces/IObjectiveRequirement.cs new file mode 100644 index 0000000000..7615c8a0a3 --- /dev/null +++ b/Content.Server/Objectives/Interfaces/IObjectiveRequirement.cs @@ -0,0 +1,15 @@ +using Content.Server.Mobs; +using Robust.Shared.Interfaces.Serialization; + +namespace Content.Server.Objectives.Interfaces +{ + public interface IObjectiveRequirement : IExposeData + { + + /// + /// Checks whether or not the entity & its surroundings are valid to be given the objective. + /// + /// Returns true if objective can be given. + bool CanBeAssigned(Mind mind); + } +} diff --git a/Content.Server/Objectives/Interfaces/IObjectivesManager.cs b/Content.Server/Objectives/Interfaces/IObjectivesManager.cs new file mode 100644 index 0000000000..25b72812e7 --- /dev/null +++ b/Content.Server/Objectives/Interfaces/IObjectivesManager.cs @@ -0,0 +1,17 @@ +using Content.Server.Mobs; + +namespace Content.Server.Objectives.Interfaces +{ + public interface IObjectivesManager + { + /// + /// Returns all objectives the provided mind is valid for. + /// + ObjectivePrototype[] GetAllPossibleObjectives(Mind mind); + + /// + /// Returns a randomly picked (no pop) collection of objectives the provided mind is valid for. + /// + ObjectivePrototype[] GetRandomObjectives(Mind mind, float maxDifficulty = 3f); + } +} diff --git a/Content.Server/Objectives/ObjectivePrototype.cs b/Content.Server/Objectives/ObjectivePrototype.cs new file mode 100644 index 0000000000..78965c79f6 --- /dev/null +++ b/Content.Server/Objectives/ObjectivePrototype.cs @@ -0,0 +1,60 @@ +using System.Collections.Generic; +using System.Linq; +using Content.Server.Mobs; +using Content.Server.Objectives.Interfaces; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization; +using Robust.Shared.ViewVariables; +using YamlDotNet.RepresentationModel; + +namespace Content.Server.Objectives +{ + [Prototype("objective")] + public class ObjectivePrototype : IPrototype, IIndexedPrototype + { + [ViewVariables] + public string ID { get; private set; } + + [ViewVariables(VVAccess.ReadWrite)] + public string Issuer { get; private set; } + + [ViewVariables] + public float Probability { get; private set; } + + [ViewVariables] + public IReadOnlyList Conditions => _conditions; + [ViewVariables] + public IReadOnlyList Requirements => _requirements; + + [ViewVariables] + public float Difficulty => _difficultyOverride ?? _conditions.Sum(c => c.GetDifficulty()); + + private List _conditions = new List(); + private List _requirements = new List(); + + [ViewVariables(VVAccess.ReadWrite)] + private float? _difficultyOverride = null; + + public bool CanBeAssigned(Mind mind) + { + foreach (var requirement in _requirements) + { + if (!requirement.CanBeAssigned(mind)) return false; + } + + return true; + } + + public void LoadFrom(YamlMappingNode mapping) + { + var ser = YamlObjectSerializer.NewReader(mapping); + + ser.DataField(this, x => x.ID, "id", string.Empty); + ser.DataField(this, x => x.Issuer, "issuer", "Unknown"); + ser.DataField(this, x => x.Probability, "prob", 0.3f); + ser.DataField(this, x => x._conditions, "conditions", new List()); + ser.DataField(this, x => x._requirements, "requirements", new List()); + ser.DataField(this, x => x._difficultyOverride, "difficultyOverride", null); + } + } +} diff --git a/Content.Server/Objectives/ObjectivesManager.cs b/Content.Server/Objectives/ObjectivesManager.cs new file mode 100644 index 0000000000..e8f75dbc71 --- /dev/null +++ b/Content.Server/Objectives/ObjectivesManager.cs @@ -0,0 +1,53 @@ +using System.Collections.Generic; +using System.Linq; +using Content.Server.Mobs; +using Content.Server.Objectives.Interfaces; +using Robust.Shared.Interfaces.Random; +using Robust.Shared.IoC; +using Robust.Shared.Prototypes; +using Robust.Shared.Random; +using Robust.Shared.Utility; + +namespace Content.Server.Objectives +{ + public class ObjectivesManager : IObjectivesManager + { + [Dependency] private IPrototypeManager _prototypeManager = default!; + [Dependency] private IRobustRandom _random = default!; + + public ObjectivePrototype[] GetAllPossibleObjectives(Mind mind) + { + return _prototypeManager.EnumeratePrototypes().Where(objectivePrototype => objectivePrototype.CanBeAssigned(mind)).ToArray(); + } + + public ObjectivePrototype[] GetRandomObjectives(Mind mind, float maxDifficulty = 3) + { + var objectives = GetAllPossibleObjectives(mind); + + //to prevent endless loops + if(objectives.Length == 0 || objectives.Sum(o => o.Difficulty) == 0f) return objectives; + + var result = new List(); + var currentDifficulty = 0f; + _random.Shuffle(objectives); + while (currentDifficulty < maxDifficulty) + { + foreach (var objective in objectives) + { + if (!_random.Prob(objective.Probability)) continue; + + result.Add(objective); + currentDifficulty += objective.Difficulty; + if (currentDifficulty >= maxDifficulty) break; + } + } + + if (currentDifficulty > maxDifficulty) //will almost always happen + { + result.Pop(); + } + + return result.ToArray(); + } + } +} diff --git a/Content.Server/Objectives/Requirements/SuspicionTraitorRequirement.cs b/Content.Server/Objectives/Requirements/SuspicionTraitorRequirement.cs new file mode 100644 index 0000000000..183e24a2c6 --- /dev/null +++ b/Content.Server/Objectives/Requirements/SuspicionTraitorRequirement.cs @@ -0,0 +1,17 @@ +using Content.Server.Mobs; +using Content.Server.Mobs.Roles.Suspicion; +using Content.Server.Objectives.Interfaces; +using Robust.Shared.Serialization; + +namespace Content.Server.Objectives.Requirements +{ + public class SuspicionTraitorRequirement : IObjectiveRequirement + { + public void ExposeData(ObjectSerializer serializer){} + + public bool CanBeAssigned(Mind mind) + { + return mind.HasRole(); + } + } +} diff --git a/Content.Server/ServerContentIoC.cs b/Content.Server/ServerContentIoC.cs index ad69775abf..9f150e83df 100644 --- a/Content.Server/ServerContentIoC.cs +++ b/Content.Server/ServerContentIoC.cs @@ -14,6 +14,8 @@ using Content.Server.Interfaces; using Content.Server.Interfaces.Chat; using Content.Server.Interfaces.GameTicking; using Content.Server.Interfaces.PDA; +using Content.Server.Objectives; +using Content.Server.Objectives.Interfaces; using Content.Server.PDA; using Content.Server.Preferences; using Content.Server.Sandbox; @@ -49,6 +51,7 @@ namespace Content.Server IoCManager.Register(); IoCManager.Register(); IoCManager.Register(); + IoCManager.Register(); IoCManager.Register(); IoCManager.Register(); IoCManager.Register(); diff --git a/Content.Shared/GameObjects/Components/Actor/SharedCharacterInfoComponent.cs b/Content.Shared/GameObjects/Components/Actor/SharedCharacterInfoComponent.cs new file mode 100644 index 0000000000..9e20f4f86e --- /dev/null +++ b/Content.Shared/GameObjects/Components/Actor/SharedCharacterInfoComponent.cs @@ -0,0 +1,37 @@ +using System; +using System.Collections.Generic; +using Content.Shared.Objectives; +using Robust.Shared.GameObjects; +using Robust.Shared.Serialization; + +namespace Content.Shared.GameObjects.Components.Actor +{ + public class SharedCharacterInfoComponent : Component + { + public override string Name => "CharacterInfo"; + public override uint? NetID => ContentNetIDs.CHARACTERINFO; + + [Serializable, NetSerializable] + protected class RequestCharacterInfoMessage : ComponentMessage + { + public RequestCharacterInfoMessage() + { + Directed = true; + } + } + + [Serializable, NetSerializable] + protected class CharacterInfoMessage : ComponentMessage + { + public readonly Dictionary> Objectives; + public readonly string JobTitle; + + public CharacterInfoMessage(string jobTitle, Dictionary> objectives) + { + Directed = true; + JobTitle = jobTitle; + Objectives = objectives; + } + } + } +} diff --git a/Content.Shared/GameObjects/ContentNetIDs.cs b/Content.Shared/GameObjects/ContentNetIDs.cs index a2d20277d0..8e1c89dd5e 100644 --- a/Content.Shared/GameObjects/ContentNetIDs.cs +++ b/Content.Shared/GameObjects/ContentNetIDs.cs @@ -84,6 +84,7 @@ public const uint PULLABLE = 1078; public const uint GAS_TANK = 1079; public const uint SINGULARITY = 1080; + public const uint CHARACTERINFO = 1081; // Net IDs for integration tests. public const uint PREDICTION_TEST = 10001; diff --git a/Content.Shared/Objectives/ConditionInfo.cs b/Content.Shared/Objectives/ConditionInfo.cs new file mode 100644 index 0000000000..de0e7f934b --- /dev/null +++ b/Content.Shared/Objectives/ConditionInfo.cs @@ -0,0 +1,23 @@ +using System; +using Robust.Shared.Serialization; +using Robust.Shared.Utility; + +namespace Content.Shared.Objectives +{ + [Serializable, NetSerializable] + public class ConditionInfo + { + public string Title { get; } + public string Description { get; } + public SpriteSpecifier SpriteSpecifier { get; } + public float Progress { get; } + + public ConditionInfo(string title, string description, SpriteSpecifier spriteSpecifier, float progress) + { + Title = title; + Description = description; + SpriteSpecifier = spriteSpecifier; + Progress = progress; + } + } +} diff --git a/Resources/Prototypes/Objectives/traitorObjectives.yml b/Resources/Prototypes/Objectives/traitorObjectives.yml new file mode 100644 index 0000000000..2423769e5c --- /dev/null +++ b/Resources/Prototypes/Objectives/traitorObjectives.yml @@ -0,0 +1,9 @@ +- type: objective + id: SoapDeluxeStealObjective + prob: 0.3 + issuer: The Syndicate + requirements: + - !type:SuspicionTraitorRequirement {} + conditions: + - !type:StealCondition + prototype: SoapDeluxe From 3f2512851fcef18a74ae499328dd26e3c0f4d0e0 Mon Sep 17 00:00:00 2001 From: DrSmugleaf Date: Sun, 22 Nov 2020 12:56:15 +0100 Subject: [PATCH 09/13] Update RobustToolbox --- RobustToolbox | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RobustToolbox b/RobustToolbox index add186ea8b..2944154bab 160000 --- a/RobustToolbox +++ b/RobustToolbox @@ -1 +1 @@ -Subproject commit add186ea8b79c753c8c09dca2fd7d1f2a68be657 +Subproject commit 2944154babe40cfd3a7a3fa6e25401a2e1024f8f From 8a190523940d3ba66636d7e62aee02da8d769a50 Mon Sep 17 00:00:00 2001 From: Ygg01 Date: Sun, 22 Nov 2020 15:02:39 +0100 Subject: [PATCH 10/13] Removed Catwalk. Replaced with FootstepModifierComponent (#2496) Co-authored-by: Metal Gear Sloth --- Content.Client/IgnoredComponents.cs | 1 - .../Components/CatwalkComponent.cs | 13 ---------- .../GameObjects/EntitySystems/MoverSystem.cs | 24 ++++++++----------- .../Entities/Constructible/Ground/catwalk.yml | 3 ++- 4 files changed, 12 insertions(+), 29 deletions(-) delete mode 100644 Content.Server/GameObjects/Components/CatwalkComponent.cs diff --git a/Content.Client/IgnoredComponents.cs b/Content.Client/IgnoredComponents.cs index 41c10d6f2d..9833230e94 100644 --- a/Content.Client/IgnoredComponents.cs +++ b/Content.Client/IgnoredComponents.cs @@ -35,7 +35,6 @@ "Smes", "LightBulb", "Healing", - "Catwalk", "RangedMagazine", "Ammo", "HitscanWeaponCapacitor", diff --git a/Content.Server/GameObjects/Components/CatwalkComponent.cs b/Content.Server/GameObjects/Components/CatwalkComponent.cs deleted file mode 100644 index 4027c5045d..0000000000 --- a/Content.Server/GameObjects/Components/CatwalkComponent.cs +++ /dev/null @@ -1,13 +0,0 @@ -using Robust.Shared.GameObjects; - -namespace Content.Server.GameObjects.Components -{ - /// - /// Literally just a marker component for footsteps for now. - /// - [RegisterComponent] - public sealed class CatwalkComponent : Component - { - public override string Name => "Catwalk"; - } -} diff --git a/Content.Server/GameObjects/EntitySystems/MoverSystem.cs b/Content.Server/GameObjects/EntitySystems/MoverSystem.cs index 50219e5c07..4801729395 100644 --- a/Content.Server/GameObjects/EntitySystems/MoverSystem.cs +++ b/Content.Server/GameObjects/EntitySystems/MoverSystem.cs @@ -56,7 +56,8 @@ namespace Content.Server.GameObjects.EntitySystems public override void Update(float frameTime) { - foreach (var (moverComponent, collidableComponent) in EntityManager.ComponentManager.EntityQuery()) + foreach (var (moverComponent, collidableComponent) in EntityManager.ComponentManager + .EntityQuery(false)) { var entity = moverComponent.Owner; UpdateKinematics(entity.Transform, moverComponent, collidableComponent); @@ -141,24 +142,19 @@ namespace Content.Server.GameObjects.EntitySystems var grid = _mapManager.GetGrid(coordinates.GetGridId(EntityManager)); var tile = grid.GetTileRef(coordinates); - // If the coordinates have a catwalk, it's always catwalk. - string soundCollectionName; - var catwalk = false; - foreach (var maybeCatwalk in grid.GetSnapGridCell(tile.GridIndices, SnapGridOffset.Center)) + // If the coordinates have a FootstepModifier component + // i.e. component that emit sound on footsteps emit that sound + string? soundCollectionName = null; + foreach (var maybeFootstep in grid.GetSnapGridCell(tile.GridIndices, SnapGridOffset.Center)) { - if (maybeCatwalk.Owner.HasComponent()) + if (maybeFootstep.Owner.TryGetComponent(out FootstepModifierComponent? footstep)) { - catwalk = true; + soundCollectionName = footstep._soundCollectionName; break; } } - - if (catwalk) - { - // Catwalk overrides tile sound.s - soundCollectionName = "footstep_catwalk"; - } - else + // if there is no FootstepModifierComponent, determine sound based on tiles + if (soundCollectionName == null) { // Walking on a tile. var def = (ContentTileDefinition) _tileDefinitionManager[tile.Tile.TypeId]; diff --git a/Resources/Prototypes/Entities/Constructible/Ground/catwalk.yml b/Resources/Prototypes/Entities/Constructible/Ground/catwalk.yml index b37a374bbe..21affcdef7 100644 --- a/Resources/Prototypes/Entities/Constructible/Ground/catwalk.yml +++ b/Resources/Prototypes/Entities/Constructible/Ground/catwalk.yml @@ -22,7 +22,8 @@ - type: IconSmooth key: catwalk base: catwalk_ - - type: Catwalk + - type: FootstepModifier + footstepSoundCollection: footstep_catwalk - type: Construction graph: Catwalk node: Catwalk From e97763afd2c74713d7c3c6e55fc40e767cc218ab Mon Sep 17 00:00:00 2001 From: Peter Wedder Date: Sun, 22 Nov 2020 17:00:06 +0200 Subject: [PATCH 11/13] Expose UseDelay to ViewVars (#2609) --- .../GameObjects/Components/Timing/UseDelayComponent.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Content.Server/GameObjects/Components/Timing/UseDelayComponent.cs b/Content.Server/GameObjects/Components/Timing/UseDelayComponent.cs index 2b20077cb1..8c2ba42bbc 100644 --- a/Content.Server/GameObjects/Components/Timing/UseDelayComponent.cs +++ b/Content.Server/GameObjects/Components/Timing/UseDelayComponent.cs @@ -6,6 +6,7 @@ using Robust.Shared.GameObjects.Components.Timers; using Robust.Shared.Interfaces.Timing; using Robust.Shared.IoC; using Robust.Shared.Serialization; +using Robust.Shared.ViewVariables; using Timer = Robust.Shared.Timers.Timer; namespace Content.Server.GameObjects.Components.Timing @@ -24,6 +25,7 @@ namespace Content.Server.GameObjects.Components.Timing /// /// The time, in seconds, between an object's use and when it can be used again /// + [ViewVariables(VVAccess.ReadWrite)] public float Delay { get => _delay; set => _delay = value; } public bool ActiveDelay{ get; private set; } From fb6dd4a4901359f5fe87f86686eda82288b73d55 Mon Sep 17 00:00:00 2001 From: Alex Evgrashin Date: Mon, 23 Nov 2020 06:17:38 +0300 Subject: [PATCH 12/13] Working flashlight for hard hats (#2599) * Add verb to toggle flashlight * Playing with hand-held light for hard hat * ClothingEquippedPrefix will update players sprite when changed * Make abstract prototype for hardhat and fixed hardhat orange sprites * Fixed all other hard hats * Fixed requested changes * Restore prototype and sprites changes * Nullables * That's actually nullable Co-authored-by: Metal Gear Sloth --- .../Components/Clothing/ClothingComponent.cs | 31 +++++++++++++-- .../HUD/Inventory/ClientInventoryComponent.cs | 36 ++++++++++++++---- .../Interactable/HandheldLightComponent.cs | 24 +++++++++++- .../Entities/Clothing/Head/hardhats.yml | 32 ++++++++++++++-- .../Head/Hardhats/blue.rsi/light-icon.png | Bin 0 -> 256 bytes .../Clothing/Head/Hardhats/blue.rsi/meta.json | 22 +++++++++-- ...ped-HELMET.png => off-equipped-HELMET.png} | Bin .../{inhand-left.png => off-inhand-left.png} | Bin ...{inhand-right.png => off-inhand-right.png} | Bin .../Head/Hardhats/blue.rsi/on-icon.png | Bin 196 -> 0 bytes .../Head/Hardhats/blue.rsi/on-inhand-left.png | Bin 548 -> 691 bytes .../Hardhats/blue.rsi/on-inhand-right.png | Bin 555 -> 719 bytes .../Head/Hardhats/orange.rsi/light-icon.png | Bin 0 -> 256 bytes .../Head/Hardhats/orange.rsi/meta.json | 22 +++++++++-- ...ped-HELMET.png => off-equipped-HELMET.png} | Bin .../{inhand-left.png => off-inhand-left.png} | Bin ...{inhand-right.png => off-inhand-right.png} | Bin .../Head/Hardhats/orange.rsi/on-icon.png | Bin 229 -> 0 bytes .../Hardhats/orange.rsi/on-inhand-left.png | Bin 558 -> 702 bytes .../Hardhats/orange.rsi/on-inhand-right.png | Bin 551 -> 728 bytes .../Head/Hardhats/red.rsi/light-icon.png | Bin 0 -> 256 bytes .../Clothing/Head/Hardhats/red.rsi/meta.json | 22 +++++++++-- ...ped-HELMET.png => off-equipped-HELMET.png} | Bin .../{inhand-left.png => off-inhand-left.png} | Bin ...{inhand-right.png => off-inhand-right.png} | Bin .../Head/Hardhats/red.rsi/on-icon.png | Bin 204 -> 0 bytes .../Head/Hardhats/red.rsi/on-inhand-left.png | Bin 543 -> 703 bytes .../Head/Hardhats/red.rsi/on-inhand-right.png | Bin 542 -> 728 bytes .../Head/Hardhats/white.rsi/light-icon.png | Bin 0 -> 256 bytes .../Head/Hardhats/white.rsi/meta.json | 22 +++++++++-- ...ped-HELMET.png => off-equipped-HELMET.png} | Bin .../{inhand-left.png => off-inhand-left.png} | Bin ...{inhand-right.png => off-inhand-right.png} | Bin .../Head/Hardhats/white.rsi/on-icon.png | Bin 207 -> 0 bytes .../Hardhats/white.rsi/on-inhand-left.png | Bin 544 -> 701 bytes .../Hardhats/white.rsi/on-inhand-right.png | Bin 548 -> 713 bytes .../Head/Hardhats/yellow.rsi/light-icon.png | Bin 0 -> 256 bytes .../Head/Hardhats/yellow.rsi/meta.json | 22 +++++++++-- ...ped-HELMET.png => off-equipped-HELMET.png} | Bin .../{inhand-left.png => off-inhand-left.png} | Bin ...{inhand-right.png => off-inhand-right.png} | Bin .../Head/Hardhats/yellow.rsi/on-icon.png | Bin 202 -> 0 bytes .../Hardhats/yellow.rsi/on-inhand-left.png | Bin 549 -> 715 bytes .../Hardhats/yellow.rsi/on-inhand-right.png | Bin 550 -> 725 bytes 44 files changed, 202 insertions(+), 31 deletions(-) create mode 100644 Resources/Textures/Clothing/Head/Hardhats/blue.rsi/light-icon.png rename Resources/Textures/Clothing/Head/Hardhats/blue.rsi/{equipped-HELMET.png => off-equipped-HELMET.png} (100%) rename Resources/Textures/Clothing/Head/Hardhats/blue.rsi/{inhand-left.png => off-inhand-left.png} (100%) rename Resources/Textures/Clothing/Head/Hardhats/blue.rsi/{inhand-right.png => off-inhand-right.png} (100%) delete mode 100644 Resources/Textures/Clothing/Head/Hardhats/blue.rsi/on-icon.png create mode 100644 Resources/Textures/Clothing/Head/Hardhats/orange.rsi/light-icon.png rename Resources/Textures/Clothing/Head/Hardhats/orange.rsi/{equipped-HELMET.png => off-equipped-HELMET.png} (100%) rename Resources/Textures/Clothing/Head/Hardhats/orange.rsi/{inhand-left.png => off-inhand-left.png} (100%) rename Resources/Textures/Clothing/Head/Hardhats/orange.rsi/{inhand-right.png => off-inhand-right.png} (100%) delete mode 100644 Resources/Textures/Clothing/Head/Hardhats/orange.rsi/on-icon.png create mode 100644 Resources/Textures/Clothing/Head/Hardhats/red.rsi/light-icon.png rename Resources/Textures/Clothing/Head/Hardhats/red.rsi/{equipped-HELMET.png => off-equipped-HELMET.png} (100%) rename Resources/Textures/Clothing/Head/Hardhats/red.rsi/{inhand-left.png => off-inhand-left.png} (100%) rename Resources/Textures/Clothing/Head/Hardhats/red.rsi/{inhand-right.png => off-inhand-right.png} (100%) delete mode 100644 Resources/Textures/Clothing/Head/Hardhats/red.rsi/on-icon.png create mode 100644 Resources/Textures/Clothing/Head/Hardhats/white.rsi/light-icon.png rename Resources/Textures/Clothing/Head/Hardhats/white.rsi/{equipped-HELMET.png => off-equipped-HELMET.png} (100%) rename Resources/Textures/Clothing/Head/Hardhats/white.rsi/{inhand-left.png => off-inhand-left.png} (100%) rename Resources/Textures/Clothing/Head/Hardhats/white.rsi/{inhand-right.png => off-inhand-right.png} (100%) delete mode 100644 Resources/Textures/Clothing/Head/Hardhats/white.rsi/on-icon.png create mode 100644 Resources/Textures/Clothing/Head/Hardhats/yellow.rsi/light-icon.png rename Resources/Textures/Clothing/Head/Hardhats/yellow.rsi/{equipped-HELMET.png => off-equipped-HELMET.png} (100%) rename Resources/Textures/Clothing/Head/Hardhats/yellow.rsi/{inhand-left.png => off-inhand-left.png} (100%) rename Resources/Textures/Clothing/Head/Hardhats/yellow.rsi/{inhand-right.png => off-inhand-right.png} (100%) delete mode 100644 Resources/Textures/Clothing/Head/Hardhats/yellow.rsi/on-icon.png diff --git a/Content.Client/GameObjects/Components/Clothing/ClothingComponent.cs b/Content.Client/GameObjects/Components/Clothing/ClothingComponent.cs index be2d6957e0..37fa84f161 100644 --- a/Content.Client/GameObjects/Components/Clothing/ClothingComponent.cs +++ b/Content.Client/GameObjects/Components/Clothing/ClothingComponent.cs @@ -1,9 +1,13 @@ -using Content.Client.GameObjects.Components.Items; +#nullable enable +using Content.Client.GameObjects.Components.HUD.Inventory; +using Content.Client.GameObjects.Components.Items; using Content.Shared.GameObjects; using Content.Shared.GameObjects.Components.Inventory; using Content.Shared.GameObjects.Components.Items; using Robust.Client.Graphics; +using Robust.Shared.Containers; using Robust.Shared.GameObjects; +using Robust.Shared.Interfaces.GameObjects.Components; using Robust.Shared.Serialization; using Robust.Shared.ViewVariables; @@ -18,8 +22,29 @@ namespace Content.Client.GameObjects.Components.Clothing public override string Name => "Clothing"; public override uint? NetID => ContentNetIDs.CLOTHING; + private string? _clothingEquippedPrefix; + [ViewVariables(VVAccess.ReadWrite)] - public string ClothingEquippedPrefix { get; set; } + public string? ClothingEquippedPrefix + { + get => _clothingEquippedPrefix; + set + { + if (_clothingEquippedPrefix == value) + return; + + _clothingEquippedPrefix = value; + + if (!Owner.TryGetContainer(out IContainer? container)) + return; + if (!container.Owner.TryGetComponent(out ClientInventoryComponent? inventory)) + return; + if (!inventory.TryFindItemSlots(Owner, out EquipmentSlotDefines.Slots? slots)) + return; + + inventory.SetSlotVisuals(slots.Value, Owner); + } + } [ViewVariables(VVAccess.ReadWrite)] public FemaleClothingMask FemaleMask @@ -54,7 +79,7 @@ namespace Content.Client.GameObjects.Components.Clothing return null; } - public override void HandleComponentState(ComponentState curState, ComponentState nextState) + public override void HandleComponentState(ComponentState? curState, ComponentState? nextState) { if (curState == null) return; diff --git a/Content.Client/GameObjects/Components/HUD/Inventory/ClientInventoryComponent.cs b/Content.Client/GameObjects/Components/HUD/Inventory/ClientInventoryComponent.cs index d74f8d30e7..a543b709f2 100644 --- a/Content.Client/GameObjects/Components/HUD/Inventory/ClientInventoryComponent.cs +++ b/Content.Client/GameObjects/Components/HUD/Inventory/ClientInventoryComponent.cs @@ -1,4 +1,6 @@ -using System.Collections.Generic; +#nullable enable +using System.Collections.Generic; +using System.Diagnostics.CodeAnalysis; using System.Linq; using Content.Client.GameObjects.Components.Clothing; using Content.Shared.GameObjects.Components.Inventory; @@ -22,10 +24,9 @@ namespace Content.Client.GameObjects.Components.HUD.Inventory { private readonly Dictionary _slots = new Dictionary(); - [ViewVariables] - public InventoryInterfaceController InterfaceController { get; private set; } + [ViewVariables] public InventoryInterfaceController InterfaceController { get; private set; } = default!; - private ISpriteComponent _sprite; + private ISpriteComponent? _sprite; private bool _playerAttached = false; @@ -69,7 +70,7 @@ namespace Content.Client.GameObjects.Components.HUD.Inventory } } - public override void HandleComponentState(ComponentState curState, ComponentState nextState) + public override void HandleComponentState(ComponentState? curState, ComponentState? nextState) { base.HandleComponentState(curState, nextState); @@ -126,7 +127,7 @@ namespace Content.Client.GameObjects.Components.HUD.Inventory return; } - if (entity != null && entity.TryGetComponent(out ClothingComponent clothing)) + if (entity.TryGetComponent(out ClothingComponent? clothing)) { var flag = SlotMasks[slot]; var data = clothing.GetEquippedStateInfo(flag); @@ -155,6 +156,9 @@ namespace Content.Client.GameObjects.Components.HUD.Inventory internal void ClearAllSlotVisuals() { + if (_sprite == null) + return; + foreach (var slot in InventoryInstance.SlotMasks) { if (slot != Slots.NONE) @@ -192,7 +196,7 @@ namespace Content.Client.GameObjects.Components.HUD.Inventory SendNetworkMessage(new OpenSlotStorageUIMessage(slot)); } - public override void HandleMessage(ComponentMessage message, IComponent component) + public override void HandleMessage(ComponentMessage message, IComponent? component) { base.HandleMessage(message, component); @@ -210,9 +214,25 @@ namespace Content.Client.GameObjects.Components.HUD.Inventory } } - public bool TryGetSlot(Slots slot, out IEntity item) + public bool TryGetSlot(Slots slot, out IEntity? item) { return _slots.TryGetValue(slot, out item); } + + public bool TryFindItemSlots(IEntity item, [NotNullWhen(true)] out Slots? slots) + { + slots = null; + + foreach (var (slot, entity) in _slots) + { + if (entity == item) + { + slots = slot; + return true; + } + } + + return false; + } } } diff --git a/Content.Server/GameObjects/Components/Interactable/HandheldLightComponent.cs b/Content.Server/GameObjects/Components/Interactable/HandheldLightComponent.cs index 3774218410..25f3314fc5 100644 --- a/Content.Server/GameObjects/Components/Interactable/HandheldLightComponent.cs +++ b/Content.Server/GameObjects/Components/Interactable/HandheldLightComponent.cs @@ -3,8 +3,10 @@ using System.Threading.Tasks; using Content.Server.GameObjects.Components.Items.Clothing; using Content.Server.GameObjects.Components.Items.Storage; using Content.Server.GameObjects.Components.Power; +using Content.Server.GameObjects.Components.Weapon.Ranged.Barrels; using Content.Shared.GameObjects.Components; using Content.Shared.GameObjects.EntitySystems; +using Content.Shared.GameObjects.Verbs; using Content.Shared.Interfaces; using Content.Shared.Interfaces.GameObjects.Components; using Content.Shared.Utility; @@ -164,7 +166,7 @@ namespace Content.Server.GameObjects.Components.Interactable if (Owner.TryGetComponent(out ClothingComponent? clothing)) { - clothing.ClothingEquippedPrefix = on ? "On" : "Off"; + clothing.ClothingEquippedPrefix = on ? "on" : "off"; } if (Owner.TryGetComponent(out ItemComponent? item)) @@ -226,5 +228,25 @@ namespace Content.Server.GameObjects.Components.Interactable { return new HandheldLightComponentState(GetLevel()); } + + [Verb] + public sealed class ToggleLightVerb : Verb + { + protected override void GetData(IEntity user, HandheldLightComponent component, VerbData data) + { + if (!ActionBlockerSystem.CanInteract(user)) + { + data.Visibility = VerbVisibility.Invisible; + return; + } + + data.Text = Loc.GetString("Toggle light"); + } + + protected override void Activate(IEntity user, HandheldLightComponent component) + { + component.ToggleStatus(user); + } + } } } diff --git a/Resources/Prototypes/Entities/Clothing/Head/hardhats.yml b/Resources/Prototypes/Entities/Clothing/Head/hardhats.yml index 11b8830005..236cfac568 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/hardhats.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/hardhats.yml @@ -1,5 +1,29 @@ - type: entity parent: ClothingHeadBase + id: ClothingHeadHatHardhatBase + abstract: true + components: + - type: Sprite + layers: + - state: icon + - state: light-icon + shader: unshaded + visible: false + - type: Clothing + HeldPrefix: off + ClothingPrefix: off + - type: PointLight + enabled: false + radius: 3 + - type: LoopingSound + - type: Appearance + visuals: + - type: FlashLightVisualizer + - type: HandheldLight + - type: PowerCellSlot + +- type: entity + parent: ClothingHeadHatHardhatBase id: ClothingHeadHatHardhatBlue name: blue hard hat description: A hard hat, painted in blue, used in dangerous working conditions to protect the head. Comes with a built-in flashlight. @@ -10,7 +34,7 @@ sprite: Clothing/Head/Hardhats/blue.rsi - type: entity - parent: ClothingHeadBase + parent: ClothingHeadHatHardhatBase id: ClothingHeadHatHardhatOrange name: orange hard hat description: A hard hat, painted in orange, used in dangerous working conditions to protect the head. Comes with a built-in flashlight. @@ -21,7 +45,7 @@ sprite: Clothing/Head/Hardhats/orange.rsi - type: entity - parent: ClothingHeadBase + parent: ClothingHeadHatHardhatBase id: ClothingHeadHatHardhatRed name: red hard hat description: A hard hat, painted in red, used in dangerous working conditions to protect the head. Comes with a built-in flashlight. @@ -32,7 +56,7 @@ sprite: Clothing/Head/Hardhats/red.rsi - type: entity - parent: ClothingHeadBase + parent: ClothingHeadHatHardhatBase id: ClothingHeadHatHardhatWhite name: white hard hat description: A hard hat, painted in white, used in dangerous working conditions to protect the head. Comes with a built-in flashlight. @@ -43,7 +67,7 @@ sprite: Clothing/Head/Hardhats/white.rsi - type: entity - parent: ClothingHeadBase + parent: ClothingHeadHatHardhatBase id: ClothingHeadHatHardhatYellow name: yellow hard hat description: A hard hat, painted in yellow, used in dangerous working conditions to protect the head. Comes with a built-in flashlight. diff --git a/Resources/Textures/Clothing/Head/Hardhats/blue.rsi/light-icon.png b/Resources/Textures/Clothing/Head/Hardhats/blue.rsi/light-icon.png new file mode 100644 index 0000000000000000000000000000000000000000..3a850ef0d89953c939f371809f8b31c012e41ea9 GIT binary patch literal 256 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?3oVGw3ym^DWNq$1fP z$d`ekN|k}3p_zf<=YJsml7XSrfPvvv0t1893x)$HK(b2mV$ZB7@SK);0v)zX|<38Ij@u~Qu#pO_ROr@AZp@D%3 zOl)HAdg7b!vm`{Yd?W9E^9T1r`~B4~T$``OFu}x7rkul}=k&ZPW``=~Reuw#;+MVt qv6SIyv>yW_%M-ReKqvhF&&+U9wQ};k!wz;pE`z75pUXO@geCx&CRED+ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Hardhats/blue.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardhats/blue.rsi/meta.json index adaa2fb070..ce1c5b7db5 100644 --- a/Resources/Textures/Clothing/Head/Hardhats/blue.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardhats/blue.rsi/meta.json @@ -10,17 +10,33 @@ { "name": "icon", "directions": 1 + }, + { + "name": "light-icon", + "directions": 1 }, { - "name": "equipped-HELMET", + "name": "off-equipped-HELMET", "directions": 4 }, { - "name": "inhand-left", + "name": "off-inhand-left", "directions": 4 }, { - "name": "inhand-right", + "name": "off-inhand-right", + "directions": 4 + }, + { + "name": "on-equipped-HELMET", + "directions": 4 + }, + { + "name": "on-inhand-left", + "directions": 4 + }, + { + "name": "on-inhand-right", "directions": 4 } ] diff --git a/Resources/Textures/Clothing/Head/Hardhats/blue.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardhats/blue.rsi/off-equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/Hardhats/blue.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Hardhats/blue.rsi/off-equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/Hardhats/blue.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hardhats/blue.rsi/off-inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/Hardhats/blue.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Hardhats/blue.rsi/off-inhand-left.png diff --git a/Resources/Textures/Clothing/Head/Hardhats/blue.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hardhats/blue.rsi/off-inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/Hardhats/blue.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Hardhats/blue.rsi/off-inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Hardhats/blue.rsi/on-icon.png b/Resources/Textures/Clothing/Head/Hardhats/blue.rsi/on-icon.png deleted file mode 100644 index 3833f5be96c0ec4b84f398330e6a74a91875bd80..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 196 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJZci7-kcv5PFDUXc8H%(#R9t!J z`kMT2EV1m1)HAg_s@P1_os&MK>^!6u;LEmo(KPi{&n7GX`X?eFC}=p#CZhP!lYWmECx?kKbLh*2~7ZnXh_Kb diff --git a/Resources/Textures/Clothing/Head/Hardhats/blue.rsi/on-inhand-left.png b/Resources/Textures/Clothing/Head/Hardhats/blue.rsi/on-inhand-left.png index e9bdb52b156f17cd09c2f64bf446500c89939773..445521b606efdc6cf02ae6bc5d6c7ae2cb2c58af 100644 GIT binary patch delta 668 zcmZ3&vYB;)ayAe#yX4 zYQVtoDuIE)Y6b&?c>bjLqizfgOqQN5jv*Dd-rU-lEu1KE{Nwwh!BK0v6+~8hu$|3_ zHVw!)vHHJjAlD-WC63Il=7Sp}?@Y%CL>?Q7qyM~?#1)c*Y_KQ5WPZOh(k z=KoF#C-@wy=i{r^%W9yO7(2@Q|-hn(Y% zA5z_iHWjC0+?{%O!$YZ#@pXtB$tWVktS|`ALpV7MF zanOy-F2+pN72(j(Knj=*$ve*0HNGsV^1eNz;Kq~&$0c_(!&0pcmB)jH2eC! z{Zm%S%CnuCz4On_ca;t6S6^J&ch16j`nuvTCsclX)iFzk zLc8c*a4>Tn+yz}K9MVOcf~(vXNGEZ!4n>fo^aU4j5%G06QyXpC*34EYu5Tanq?0NFnYHQYypruNZmHjpQHZMx$nzV+9Wvn z?etl_evQV`XMgAe#yX4 zYQVtoDuIE)Y6b&?c>bjLqizfgOrf4Gjv*Dd-rV-h5O$PkcvybjHR^)*mH?d)uB>&r zYa5#qk1tN=*K%4?5y-O8UcFiTqRf|N9UNOTG$KT+>N#z{BzS6Qthu2ScS(vPi?`Lu zwu4LYWkrU0Uecy{OFX~*PDn7?EuA)RZls#Av~#xagu^Ni6d9Nl(2*n0>9Z+DGgmQ} zm7Lk~?b~$kqibeH`k2I+1bDs8V!rgUhg+mR-!{c-+m%(FL7sOn?=?xBxM=zBug3d-&Hk#l&BO5jsfCM+J5H*b zZ}7ON#gX@yTl)2s9}bDhcenpbdwWzM-C)nDD^FPK{?;7$a=DtPExfVfvU0_1etWHx z>;HxA)h`M=R_NAWm|Mcx!SvW+PikAk=1ni_f8UgD+pUo$G2O$4=5$pI`hvEh^UZNqn-Apb*@-4GqWMGcv6Ba55tARhS7dMKXB0 L`njxgN@xNAF$XVe delta 531 zcmV+u0_^?I1*-&*BYy$%NklLt(w~*zaU*Yn3AQV$rg;Zf;@!MDd}KJg9yHmC3FcT>JZyeTwDH1b7g!U5ZIC> zj*evsd@qQIh=_=Yh{&obMNu?%qcM#%igrqQ2QbDwaHQERnt#7MZpWZ*(h5z2x=D>` zq>IITT(ji=rvPIbX@w?T>+vSoqH8@WG+CAs`uP)k!5_Yp*o)l!<>8$nWYa%m&9fXF zwpsHmoBkOP7QTdRe)v6D^729Dp3Kh1GuIF zTnBJX1-K62nhJ0oKtx1DL_|bH@LmCM62Ao?>CG#cW`0f)%v`|mEQ^y) ztM@9T=2zMO_^t3Koi%d-!k72rC6YbwBX0M}H2>j19(1qx`g V(0FnwL<|4`002ovPDHLkV1iZu12q5u diff --git a/Resources/Textures/Clothing/Head/Hardhats/orange.rsi/light-icon.png b/Resources/Textures/Clothing/Head/Hardhats/orange.rsi/light-icon.png new file mode 100644 index 0000000000000000000000000000000000000000..3a850ef0d89953c939f371809f8b31c012e41ea9 GIT binary patch literal 256 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?3oVGw3ym^DWNq$1fP z$d`ekN|k}3p_zf<=YJsml7XSrfPvvv0t1893x)$HK(b2mV$ZB7@SK);0v)zX|<38Ij@u~Qu#pO_ROr@AZp@D%3 zOl)HAdg7b!vm`{Yd?W9E^9T1r`~B4~T$``OFu}x7rkul}=k&ZPW``=~Reuw#;+MVt qv6SIyv>yW_%M-ReKqvhF&&+U9wQ};k!wz;pE`z75pUXO@geCx&CRED+ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Hardhats/orange.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardhats/orange.rsi/meta.json index adaa2fb070..ce1c5b7db5 100644 --- a/Resources/Textures/Clothing/Head/Hardhats/orange.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardhats/orange.rsi/meta.json @@ -10,17 +10,33 @@ { "name": "icon", "directions": 1 + }, + { + "name": "light-icon", + "directions": 1 }, { - "name": "equipped-HELMET", + "name": "off-equipped-HELMET", "directions": 4 }, { - "name": "inhand-left", + "name": "off-inhand-left", "directions": 4 }, { - "name": "inhand-right", + "name": "off-inhand-right", + "directions": 4 + }, + { + "name": "on-equipped-HELMET", + "directions": 4 + }, + { + "name": "on-inhand-left", + "directions": 4 + }, + { + "name": "on-inhand-right", "directions": 4 } ] diff --git a/Resources/Textures/Clothing/Head/Hardhats/orange.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardhats/orange.rsi/off-equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/Hardhats/orange.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Hardhats/orange.rsi/off-equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/Hardhats/orange.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hardhats/orange.rsi/off-inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/Hardhats/orange.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Hardhats/orange.rsi/off-inhand-left.png diff --git a/Resources/Textures/Clothing/Head/Hardhats/orange.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hardhats/orange.rsi/off-inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/Hardhats/orange.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Hardhats/orange.rsi/off-inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Hardhats/orange.rsi/on-icon.png b/Resources/Textures/Clothing/Head/Hardhats/orange.rsi/on-icon.png deleted file mode 100644 index 001a1f5d3b5d2ae91519a376fd961c27e8e9089e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 229 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJHJ&bxAr*6y6C_v{Cy4Yk1sZUj zU|_6OxsEn0WNV|Kw>0>z@exn34M7 z{^2egcY{e;mCIK!G&gNwI=p}WeMuIz^(j9lNS`}!l;(87edTa$7{Q?<_dX(-mK3#8ba3<_=O2zkivU+MNKPD@Fy~e&t#(>N1pa#Tk aObjN%rl;BX?Ae#yX4 zYQVtoDuIE)Y6b&?c>bjLqizfgOfH@-jv*Dd-rPEveK|me{lok0O_3|u`!;$% zscEiPp2>H0zq*)H7yZ29){bYt8ln&M{%-Y>Zdj`6`+WV+|Mhw9l1i(5FP=Q?wN=?W zSfJli!|A|up{EWB-wwNps^{r;on80u*YnHl|72$9+p*1lw%v-;jqSn@ksB*toLJ5v z?gS5r1=32JrY;azq|EimYr=Mv&;bWj!s!6(zwFOG|J=1LSL)N5f4#56w#9YU$J#S} zxp@0|d;gOs)6XwsX=wiK^0njqyeYfo9{ld_zWLAgx?$ZrCZl*}o%LZ^ei|8)3$+=9 zs_%>0zL%V5U)!UuJau@bsDbD}^ delta 534 zcmdnTx{hUnay{c$PZ!6KiaBp@?e#wFAi?%Q-IsOYlyCe21%k`-_+E)D=BvxOw6uG{ z?C4!qyRO$eu#1aFtJ|~rzEtsZEf5lS3|CZga-3A$vDI<0$=)m3AAUNvZ`t#*+JC+I z6FvncFj(~8ZSr2n#TS2kG`?+g^p4-&=kH%EyJyf7m(RbT-k2JZ2e9N11YAmng@1Fbp_VtFUo01czt@?NH+t%*hiTx+1 zeqMi?b?@t64;~y|_gLh1Jr9T9#UjV!1zrxM21z;0lkbX@*GUr7VKiYD$($Ytpf`F&H8dKV1Mo1%1ye#I{jty z9&b4%9`u}D=(9^k@m+zXixe3Wl-AeoYt#N5bo*H+$ASuJ?Pmhr#{wzrKHKl`qr?ov3-U>${Xw{5kd`XSexmoaN1E`QXXH`)c>K zemu^#E3JR0;PXiA;LN|Q7wvR~)LwB;ayiqm;PlpFUWR8$yW*9uHPj_xadk*Fd-uw% V+`sw%|F>fR0#8>zmvv4FO#s8M3c&yX diff --git a/Resources/Textures/Clothing/Head/Hardhats/orange.rsi/on-inhand-right.png b/Resources/Textures/Clothing/Head/Hardhats/orange.rsi/on-inhand-right.png index dfec42517860960c94d8db2b4414b17b459d7e1a..decf2c9141d97b970dbc0d7e6158c8129cec3847 100644 GIT binary patch delta 705 zcmZ3^a)Wh(ayAe#yX4 zYQVtoDuIE)Y6b&?c>bjLqizfgOmUtrjv*Dd-rPQ)eK|pb{loj&=Cd2)w%tw;XLYp+ zaWOAV@T`CHDBj@c;l5WJ6XR@p3^%g3<}G;S*sXDBS^bvXypAt(Bts;kjLI&)Joz$k z1AAiE$=3^)d2iP{+`J}tA3w{aWuEiDPyWuEf6rXhOS8q&q{W8Afq_Y&fq_MVff33~ zMF0nHIbam&qU%W!k)VI&@E4#A7({OG`GxOC>r?W>NIHc-n)UUmI zuyt1VbZ_k!rfna8yet*T(z9Ycc-nscg^vXu?sf~=pRLceztQD&BaOd^U+>}bXR$V? z?l$LsJJ5A%oBN07^=AZnRW<7OUhT}g!IuzT@Y-|fK3;bL z*Vdn*-=F_~E&nOqy#pQ~EoM@&iHa^6TyN{un|x6M3LItvhc0~obtv!i`}#PEn-`BA z{`#oxwuv+IoBvmC)~{uBD+`f*EBrx>A)>-=U7Nq?6v^Gi`?a$U#I^RH`1R&>`+KgP z`g-@$pIxYaU{PoNIh-Nptrx@kTka|Wf47u3La8kzq+A}j5U({;uitNPPPg^S|~w6z2$I;8#yb?;rr^)I_eRuLY( e0+)UmGbG(VzqElP=L#@sGI+ZBxvXCnvov^j?67 zh=_=Yh=`_*RNIT+DC6ngz~YeO&Js)!#=?F35knYT{_w#ObOTn_ur9?Aitzg&DNpfSbDu zwBLY6VFs>kq`rh`{>6+I9&!2mPJx4lhjQ+#o4L-pYa4%?{ujM_@#j(DmteFV*EW#R z6%0*-rxZSX4S$u#@2f=TQ(C?Rqxm=HduBE+pZ)N4G=J=`z)z&5fN}L!HDy?UbO32A zKstal79br!8VisPKtx1DL_|bH^xuXqc@JB8$yC7$&}u{Ecselta&?*@rD-8WWib{@2A z8^{{K?atLiJo&)L1q|A3^pHG@h^b!}U;)wrq_F_$0Mb~1bO32AKstc5Prg64Mhk6A R6aWAK00>D%PDHLkV1fg1_Wl3> diff --git a/Resources/Textures/Clothing/Head/Hardhats/red.rsi/light-icon.png b/Resources/Textures/Clothing/Head/Hardhats/red.rsi/light-icon.png new file mode 100644 index 0000000000000000000000000000000000000000..3a850ef0d89953c939f371809f8b31c012e41ea9 GIT binary patch literal 256 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?3oVGw3ym^DWNq$1fP z$d`ekN|k}3p_zf<=YJsml7XSrfPvvv0t1893x)$HK(b2mV$ZB7@SK);0v)zX|<38Ij@u~Qu#pO_ROr@AZp@D%3 zOl)HAdg7b!vm`{Yd?W9E^9T1r`~B4~T$``OFu}x7rkul}=k&ZPW``=~Reuw#;+MVt qv6SIyv>yW_%M-ReKqvhF&&+U9wQ};k!wz;pE`z75pUXO@geCx&CRED+ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Hardhats/red.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardhats/red.rsi/meta.json index adaa2fb070..ce1c5b7db5 100644 --- a/Resources/Textures/Clothing/Head/Hardhats/red.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardhats/red.rsi/meta.json @@ -10,17 +10,33 @@ { "name": "icon", "directions": 1 + }, + { + "name": "light-icon", + "directions": 1 }, { - "name": "equipped-HELMET", + "name": "off-equipped-HELMET", "directions": 4 }, { - "name": "inhand-left", + "name": "off-inhand-left", "directions": 4 }, { - "name": "inhand-right", + "name": "off-inhand-right", + "directions": 4 + }, + { + "name": "on-equipped-HELMET", + "directions": 4 + }, + { + "name": "on-inhand-left", + "directions": 4 + }, + { + "name": "on-inhand-right", "directions": 4 } ] diff --git a/Resources/Textures/Clothing/Head/Hardhats/red.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardhats/red.rsi/off-equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/Hardhats/red.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Hardhats/red.rsi/off-equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/Hardhats/red.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hardhats/red.rsi/off-inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/Hardhats/red.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Hardhats/red.rsi/off-inhand-left.png diff --git a/Resources/Textures/Clothing/Head/Hardhats/red.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hardhats/red.rsi/off-inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/Hardhats/red.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Hardhats/red.rsi/off-inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Hardhats/red.rsi/on-icon.png b/Resources/Textures/Clothing/Head/Hardhats/red.rsi/on-icon.png deleted file mode 100644 index 8640074077e3d3ad4eb51f0e8d8e61a3ce0ab9ee..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 204 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJ$(}BbAr*7pUQ*;cWFT?$#j_hs?ySfLWT;B`^*&rcv!uTG^|^4;JH|)-SWvM=QTH;(A>m-fH@-n zlEQ(H^NNGr8Z{3jMsBpKm8-rP>SO<-J1s5k|3luj^GsFv)K|vgTe~DWM4f DM&VEL diff --git a/Resources/Textures/Clothing/Head/Hardhats/red.rsi/on-inhand-left.png b/Resources/Textures/Clothing/Head/Hardhats/red.rsi/on-inhand-left.png index d8a465ba1f788e2c219ddc2755ca513f04a6dd08..3fdba97d514f923df91d6a20cbb83ef150f8162b 100644 GIT binary patch delta 680 zcmbQwvY&N=ayAe#yX4 zYQVtoDuIE)Y6b&?c>bjLqizfgOs<|Tjv*Dd-rPFxEs`j~{^9*@UFOUDR!5p1Eu3J* z(wLL5K;!o-#|ce*feNml*()^8HnYg>dEp?w@LAXux%wj}Hd8sd5Au0UYGjVH67jx$ zCDYL$@#uj#{^rN)qRif2dAI96d)wUf%K6i4?SH?s*4Njb613uJ$AV+c3@i!^j2sRO zOacuMW7Bg`l6S=Mhs1|5T%K_16ce}afyu|sH%_c?S?)g|?|9xHlH8qx*>+vzJhK-eb_VhC&aHK+dbZ<{j$iLzZ~^9AeN z!^ARJHi)tNSvascyni`&Tl2{+H{RdAzi)q8(EZE*zr6aj@9R>%riF}e>bU-_UvXkN zgSitt3>HW!ZJE13V388rk+}->OmJ~%*f=yWD@VPQH<;@u{&bn*)vJ4+J%1j*jIIBK`D$nWESUasVCn}t#tAJ_q%rU;9|1*ej-84mSb%qzRP@enWtGI+ZB KxvX^$D&H9b6ow zMO^X#F1mGbaLeY@2XLqg;^5-Y#XNxp7oCKXZlx_ERB*Wtm)M}OnxyS*@c)*Qv?o3J zbCRLG01*)p5fKp){Wqz&2XGwc$M$5|epBMW9s&4weQ_g1^31@9+1vgX$-40sx@YQDbYG>b2AfSMNXhpzUEA+64GV zw9){U0lemcxqmwF40ZK9K~vzb-<{8V`=0BUx4`;|d;((w}U3>YN_pt}Lx7=Z2ubYlRz8_Ae#yX4 zYQVtoDuIE)Y6b&?c>bjLqizfgOmUtrjv*Dd-rRP~xEvtE_Thc2&gv8_($uE2* zY~L7cRH@Ps>EHD5!-UljT#xZNe=v~P{NP|?Tdc@i$NFW5Ijwgbbnv)wBVa>oESpuE zX_b_)%Z&nw`Rx~UVzXDVNA9Yr=Q!&fcdB~-zVDOvUFXtNog~90B*&t_z{ugiz$DPX z0AV($xUJgt*uw8Dr>*sx7`y0iakVeP=Pd2C_mh%nD_kMEA$Rw~LR;$^^ZUV4kvDAY zpXm77tgg3Q{`#Wsf&{5gPXER8m;GTA|JobRdO2fdQW{+4eKdh&lG>$)@>i3H4h8#BXT1FF&lfYVx9= zd4ew@L>I6h_|8+Xh9`$gn(Of1)cV*E;B0VkjT3S4 z1++A_G`P7n-3w?af@rvd$aefp=DIWIBAN)PpXaX}Nd&OXz6ui?00000NkvXX Hu0mjfZ!PsM diff --git a/Resources/Textures/Clothing/Head/Hardhats/white.rsi/light-icon.png b/Resources/Textures/Clothing/Head/Hardhats/white.rsi/light-icon.png new file mode 100644 index 0000000000000000000000000000000000000000..3a850ef0d89953c939f371809f8b31c012e41ea9 GIT binary patch literal 256 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?3oVGw3ym^DWNq$1fP z$d`ekN|k}3p_zf<=YJsml7XSrfPvvv0t1893x)$HK(b2mV$ZB7@SK);0v)zX|<38Ij@u~Qu#pO_ROr@AZp@D%3 zOl)HAdg7b!vm`{Yd?W9E^9T1r`~B4~T$``OFu}x7rkul}=k&ZPW``=~Reuw#;+MVt qv6SIyv>yW_%M-ReKqvhF&&+U9wQ};k!wz;pE`z75pUXO@geCx&CRED+ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Hardhats/white.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardhats/white.rsi/meta.json index adaa2fb070..ce1c5b7db5 100644 --- a/Resources/Textures/Clothing/Head/Hardhats/white.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardhats/white.rsi/meta.json @@ -10,17 +10,33 @@ { "name": "icon", "directions": 1 + }, + { + "name": "light-icon", + "directions": 1 }, { - "name": "equipped-HELMET", + "name": "off-equipped-HELMET", "directions": 4 }, { - "name": "inhand-left", + "name": "off-inhand-left", "directions": 4 }, { - "name": "inhand-right", + "name": "off-inhand-right", + "directions": 4 + }, + { + "name": "on-equipped-HELMET", + "directions": 4 + }, + { + "name": "on-inhand-left", + "directions": 4 + }, + { + "name": "on-inhand-right", "directions": 4 } ] diff --git a/Resources/Textures/Clothing/Head/Hardhats/white.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardhats/white.rsi/off-equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/Hardhats/white.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Hardhats/white.rsi/off-equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/Hardhats/white.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hardhats/white.rsi/off-inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/Hardhats/white.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Hardhats/white.rsi/off-inhand-left.png diff --git a/Resources/Textures/Clothing/Head/Hardhats/white.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hardhats/white.rsi/off-inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/Hardhats/white.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Hardhats/white.rsi/off-inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Hardhats/white.rsi/on-icon.png b/Resources/Textures/Clothing/Head/Hardhats/white.rsi/on-icon.png deleted file mode 100644 index f1c549fdb92c8ba64f564af73752db6df26d2955..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 207 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJX`U{QAr*7pUf9Tc$Uva=p>~9# zlh;X>lIyz@n5(wu$ucvkc_au=JIV6JoMGa+suDpV(PTPjC8vcOd7?gLehx2~y9u&kS{4ljWrM z{Pp!W6;@Z){IX4Wk-zEooz&giE6wb#8GQ-;-r3RNaj)*ZXZMVGd^dnDWbkzLb6Mw< G&;$S*DOl(L diff --git a/Resources/Textures/Clothing/Head/Hardhats/white.rsi/on-inhand-left.png b/Resources/Textures/Clothing/Head/Hardhats/white.rsi/on-inhand-left.png index 8d06c56c1f8f1c9af706cc94116cb752f2055910..2b88d428ae8668274a0f902c3b26228d8447225f 100644 GIT binary patch delta 678 zcmZ3$vX^y&ayAe#yX4 zYQVtoDuIE)Y6b&?c>bjLqizfgOwOJzjv*Dd-rPQ)eK|pb{X@RjT~|fRKEMAB^Y)zN zl71=jb<^3)e4;l4Z7XigYRheZbnxJ{hew+Yju%MhIM;u?6!Kx)p9pn}5BvgxUK^h; za}G@0chAXaRd!6t+fTI%+Lyl-p5%Yerm}LjmlMYkOQDWRfd&Q^1qMbA2L>i6^O3~K z6=o@sVG7~x%Y|5LpA-~6%so`}%vs-R#o^$kd&*4rhuk_HdG61*_xq-wO=GUS@wKSz0}h#j%fP}|Lyiiml|Byzg=|OzYw>E`sd}V`O3<^O|&WJ zd_9}r(D0)S!;u?5R$R&a`^@`twg2_6eXsquvP(Se(s&`2bNkq-Pq}}7{1aJyUheR= zT#*vq<8wXhYpv#fi<^6`+*f$c+?md6?K+Y^3iIu|bLh>PnEDmJ(l-A*ZgXnFq9~EG z{@M51xOTC*1~Rd4*b(sQQ9y6hrt4I zrA;#zsCdQ}I?UnxB!n6?piq*LKACsl@v;f?&cJmY)!*M&RW80b;hYHr!wTnmf3^K} zyLWth)yn%oDkbt;y^deg1>xxquM?`)u759BR4$j0oy@uJH4}q~YopF-kEKD6e3<9# z-|&Ck)vD&}$IQ;WVrOW0y=%qQtb6M()OQ25Hmtk8o}rXs`ooavj11;^asBSXEKTQ` zQ;Z}Fzf>~U+XsZ2hS*Q|vEIFVdQ&MBb@ E0F2xvbpQYW delta 520 zcmV+j0{8vB1)v0wBYy$sNklWdH3dz{%c94W%W2+{5oA&#G!;PHe2)hHzvKIbl=%y%FN^2iunRr!I*WEn;U?)`c0)K{Xidt0_{Xq}4swxcK z6x)nn#ctF)G;~w+2R&r-3JwZs01Enp9sn#g8{GI#*YdV$nznTOsv^Aw4BZqBt&UVG zh1~ugvUvrQ(Gah1AFyp3w>NkA?j-#2wrzXc-EmNS*jpg-82|vSW*cYc*R#Rl5n9bQ z8d`nnc>l=Gzh!Yk- zb^@}o0J0O1jRlaMfNU&)>;#C2h=_=Yh={f=^3~R;&96Kex+yNNF1+z{It|r75SuST znx=_bRTTh`OeVcwCX)%(I}nQk)T*jDD5R0iD|mdkhkxTZ0A|bPVT%xp0(81o;_2lb zlhF{?;28kmI1a|+v9}7nZV_Vf3uO z-@s?(Hkw$>fH3~dTVPXI0NDx1#sbJrKsFXYb^@}o0J0O1?GpuCyOILv^OgVr002ov KPDHLkU;%=GmG4{t diff --git a/Resources/Textures/Clothing/Head/Hardhats/white.rsi/on-inhand-right.png b/Resources/Textures/Clothing/Head/Hardhats/white.rsi/on-inhand-right.png index 186f0703034810f0b7c6d643932bf1a9862354be..17f4d27bb1ea85cb73a7308ee14af6febb08f7b9 100644 GIT binary patch delta 690 zcmZ3&a*}m|ayAe#yX4 zYQVtoDuIE)Y6b&?c>bjLqizfgO#YrOjv*Dd-rPQ)eK|pb{X@Rf-J{OMGLruokFI8B z^|m^nZOc1%dhA!L*=@P)k5V^mt@>y%SIIfiUPR=UT>YQIh{;=4D^;!M@fLW0@lwAQ}%o_YR#bJ3XVu2Y;{jx;l{C@?T`I502?G(eaFM>{I5 zcdaX*6ELYe$!~V%`t_zRcVpgKXHM{1+P9VIYSz~0uf2*kP6*Xc>27VVyc=`(t;KSU zhmrw$p?B&(KeyZd`Df)BjduIfOHX;6oi)W#x+d&HrFExhc<@1wI>AL=)}+kIgFu?_cF z4<$W_ZD3YJ1V!ry_ogNVmt~g@rYqfGK@KHIfC={8SYXZ*RXH*B=KsRl@8{~(c7-SO zS3iBRKdnLMbe@e|`*y|ymydJ5`!X|q-K0Hx4aFo4R(zVIa&TL&MPKt=cUKes`w2;p zOzO6juV>m}Hm$Z{`Zu8LCLN2u&%1YCv0rfW&f$v}i#s0e-n;P}1H%R#?zLgu3?Dun zUET09n?YTFsqqe*GKRnNgg(yG%rKEs);8U(^&vi4hC>h-o-xk%_O z(u1}xNPB>48`#2~x~VpU7o;Z;S|m~rFfLn7i z4of0Hw>azpS?ym4~37Kb207>{qWfpl$c_PkamfMpO!z)!4Vd zDq#WA0i>}2=>XDLfOG(9EI>K{5fKp)5fKs5e+wPx3>$edP17Hey1Bl^&%sCOk)tqk z{Ucu?`H0+p&A*?9!InVtdqec$i*0RWE=Pb2%K(#crVp8-=}0YUR^yg3Ek zZg(kudC$}Z1Wl3Y^?LKC5wP;(0xUo}fHW2$9Y7ijkPaY?1xN>w_6e7LxpBRM8x;Tm O002ovP6b4+LSTZh6!p9S diff --git a/Resources/Textures/Clothing/Head/Hardhats/yellow.rsi/light-icon.png b/Resources/Textures/Clothing/Head/Hardhats/yellow.rsi/light-icon.png new file mode 100644 index 0000000000000000000000000000000000000000..3a850ef0d89953c939f371809f8b31c012e41ea9 GIT binary patch literal 256 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?3oVGw3ym^DWNq$1fP z$d`ekN|k}3p_zf<=YJsml7XSrfPvvv0t1893x)$HK(b2mV$ZB7@SK);0v)zX|<38Ij@u~Qu#pO_ROr@AZp@D%3 zOl)HAdg7b!vm`{Yd?W9E^9T1r`~B4~T$``OFu}x7rkul}=k&ZPW``=~Reuw#;+MVt qv6SIyv>yW_%M-ReKqvhF&&+U9wQ};k!wz;pE`z75pUXO@geCx&CRED+ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Hardhats/yellow.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardhats/yellow.rsi/meta.json index adaa2fb070..ce1c5b7db5 100644 --- a/Resources/Textures/Clothing/Head/Hardhats/yellow.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardhats/yellow.rsi/meta.json @@ -10,17 +10,33 @@ { "name": "icon", "directions": 1 + }, + { + "name": "light-icon", + "directions": 1 }, { - "name": "equipped-HELMET", + "name": "off-equipped-HELMET", "directions": 4 }, { - "name": "inhand-left", + "name": "off-inhand-left", "directions": 4 }, { - "name": "inhand-right", + "name": "off-inhand-right", + "directions": 4 + }, + { + "name": "on-equipped-HELMET", + "directions": 4 + }, + { + "name": "on-inhand-left", + "directions": 4 + }, + { + "name": "on-inhand-right", "directions": 4 } ] diff --git a/Resources/Textures/Clothing/Head/Hardhats/yellow.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardhats/yellow.rsi/off-equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/Hardhats/yellow.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Hardhats/yellow.rsi/off-equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/Hardhats/yellow.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hardhats/yellow.rsi/off-inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/Hardhats/yellow.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Hardhats/yellow.rsi/off-inhand-left.png diff --git a/Resources/Textures/Clothing/Head/Hardhats/yellow.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hardhats/yellow.rsi/off-inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/Hardhats/yellow.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Hardhats/yellow.rsi/off-inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Hardhats/yellow.rsi/on-icon.png b/Resources/Textures/Clothing/Head/Hardhats/yellow.rsi/on-icon.png deleted file mode 100644 index dad960c29011e818ec7597e92ebb42f22c08aa8a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 202 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJiJmTwAr*7pUQpya?^ z=gP;{t1f7-o~FHERfg8Z484Q4Rs1KoVmzzZH#A2CU5H;ZE4|D(DScBzM@L6+Y@_q_ zP3sOkdfNN6XrCHi?CE1%eI1M`M*sdZOg3y|QchxcZYcg~pW6NHHENG-4w)uBmE81x z`TN}MDc3hYS3TbFnAJkI;q9~Ow(~5-1qB8B`KRSt2W@6M^cmAe#yX4 zYQVtoDuIE)Y6b&?c>bjLqizfgOo5&*jv*Dd-rU;gFB~Yt{^9*@fh{KYm3Qk5H8rg!o_ek&YN~rfcoU8sY2kc)A*ra) zS$Gw5E#J{gVIt?|ZCiRj{?d~Dum8r~t6lg0?&<8-DMGz6Tv9e14h&2J4Gb&_42)1_ zuY_-&X-Z_6=enQmQ;l!!J}bG}dt;E`@!5Q{>VJe?*l%Mr-RffcQlUB-L@A zWw#crPEg2w-fz89p0~1K>HX%56OISghBEp%Prqoe!DwyLpE&z{^}CyYKQ7;Bv{p&# z-e0Az*Z#jZwO)^Vz1oUh#Qno0-UG+pOrHMJhSBA4_4@N`Zr0bIxy$qL+OmufOEgSG zc$x1lmUYNu4v3oIS%2g~@7v<_u9K3M@BaV!@6Lwj)4$DE+hlz$+=_D-Tfje&AMt^c z{TcOI;9=ol+mfyAsOaJwBM{ys!-Nz#5N1Q{;+5B|XZWaj7hS&a^yh(Zwbo+wGsJ&O zF)(a-cbi%Irt-#>YvrS>Yj++>|LD@chGn5%+kxrp!;{al=Pi2wD0NRf>m%-;dDXW= zzx*nS@cnY4mbYNV*Rz*?{VG0VQ{D4=Va@c%++4@h><`~w$8;cG`N~lNi`Bfc`u1jq z7dROtX4gaq-ZtH@8D+l-XhBEBnLqsLZip@U^89v2cuQHn~ RRR&Cr44$rjF6*2UngIJbC@}y4 delta 525 zcmX@jx|C&tay{c4PZ!6KiaBp@8G0WM5Mh0gT)0x8WY;%&uSM6-9qX(1w^=c^={-qh^iVU= zSrc`){=?Hi=he9nKkWIhvg37h?&{t5Z+=@fe+MT+!&hZ)?@WcIHy`h=OX1ZkDvaNA z{hI-AF4G<5sz`=OE9+esd}ch7b|K5|@rOO(k4;(M{W=@-=Xm8i?fLV*3jY+4S>Cya zbx{lBiaZBXwgtNwuSzt$Vhc%TSS78X1OZapFT}UGz5P91-C4Xy`+9Z%j2vCnk*s;%sM_A;ke?tWUN+qU|W_9RYT2Bvm_&gcUdT75FVRWPx{ZlHK1a?l9V~JolAe#yX4 zYQVtoDuIE)Y6b&?c>bjLqizfgOwpb$jv*Dd-rPQ)eK|pb{lk0dQ(NwpahFWh{KuZW zVWn!J+?I;Z3r_IeTXHYujlrzbEWND#T29X-x;9u|e_Q|L7~8~_RWI6vTVlgLPS9l0 zzc;5T*JjGGFYPPkQeJ+lRhST;UwPmE{&(MBDx&kAE1pwSeCEi&B+$UXqQJn&;Q(QF zB&)pA-j-`F6JV5l$?|FJ)0wt9H&y@kdoqWHe&514Ep_YN^(n{l(v4?7)?WH}`kP61 z*9&|C4^=zVE3U6nZ?_MBHvRsCDW4Wbomd?^)l~CIsJ?1`pS9kEN%3dfuEuAD-zaR{ z`uz0^ON);7{?7$>ZvD&4-1C@e@=ld?y=sOtz1yzEXX)i+9Jn^A=jF=4KR@ckjW2)S zuvO*og+=`WYyRI{7+cS|x_;4J_SE&e7-DqnYXfhaF*?7Vr?{d1^GV*jd~GY#T{o+@ ztWVBx`1K)h!7ttke2K?@c4(W|i_f~CE4bCu;K$o}_H%PA^Do}{dObX@Y7y&#pIRTb z3tnCA5K*#+>w{YdJUEUh{;_scbjgvDtx<1sMhzxVhzT6_D6v|2dGhp4mXH4LsMniy zwe5J?fqV9rzt-C>$my#{Z(FrOpJ9VV{Y_~ZjViBa=l<5(vb^f`|9+C8;p%mvd(#`G zf9X{5-8ppL%WS)Tn?uBQpj5?%4@b-Q%$vMn@7{)g%6wJT_w5+_T;&!d`)#-@BOvo# zJeZlGfxF)<>fCIge~wxz%n<(bT<*f3Y38niTic|g*1F$_f4)m=x7LsKhW9uGVXkhN dacn&!!vX22WQ%mvv4FO#mvuHQoRK delta 526 zcmcc0x{PIlay{c)PZ!6KiaBp@?e}I%lwkj`{!)^Hh1`#1j+ode8Gdf1<0qPC3E!4l zJWZ(H#A$Sp3TpYjk&}2$dLD9B=`2G z+I#jf`kPB-m2&^ITQ)_-w0>>g&fnL?c0bRb&B$P|KTmNgi;&a=uUoelyX^hpcU$Yb z;tIcskIV%8eHeSo73wWIqrM9M+`HZ}OZ4w2fsoJoXIgIc?KZKyb3W_ey!^(xA4?gU zUsZ7T2#YybHJG3f41y4FG5&K-NmXf_mfNvhBb(b7@7ik~cf{HviZw8y7d?{2|% z@3y=B{Vk1$lmC}Z3}ybW`Yfi#W*H;Hy3_TJ7TrQdFLlC-7H^!Fuz< Date: Tue, 24 Nov 2020 01:36:36 +0100 Subject: [PATCH 13/13] Update LangVersion to 9 for all Content projects (#2587) --- Content.Benchmarks/Content.Benchmarks.csproj | 2 +- Content.Client/Content.Client.csproj | 2 +- Content.IntegrationTests/Content.IntegrationTests.csproj | 2 +- Content.Server.Database/Content.Server.Database.csproj | 2 +- Content.Server/Content.Server.csproj | 2 +- Content.Shared/Content.Shared.csproj | 2 +- Content.Tests/Content.Tests.csproj | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Content.Benchmarks/Content.Benchmarks.csproj b/Content.Benchmarks/Content.Benchmarks.csproj index 2eedacc7f0..194ddc4d61 100644 --- a/Content.Benchmarks/Content.Benchmarks.csproj +++ b/Content.Benchmarks/Content.Benchmarks.csproj @@ -8,7 +8,7 @@ false Exe true - 8 + 9 diff --git a/Content.Client/Content.Client.csproj b/Content.Client/Content.Client.csproj index 38f4d32250..66beb8956c 100644 --- a/Content.Client/Content.Client.csproj +++ b/Content.Client/Content.Client.csproj @@ -3,7 +3,7 @@ $(TargetFramework) - 8 + 9 false false ..\bin\Content.Client\ diff --git a/Content.IntegrationTests/Content.IntegrationTests.csproj b/Content.IntegrationTests/Content.IntegrationTests.csproj index b7587d5ec8..1452fb6809 100644 --- a/Content.IntegrationTests/Content.IntegrationTests.csproj +++ b/Content.IntegrationTests/Content.IntegrationTests.csproj @@ -6,7 +6,7 @@ ..\bin\Content.IntegrationTests\ false false - 8 + 9 diff --git a/Content.Server.Database/Content.Server.Database.csproj b/Content.Server.Database/Content.Server.Database.csproj index 4daa852b65..2cf17ebfd3 100644 --- a/Content.Server.Database/Content.Server.Database.csproj +++ b/Content.Server.Database/Content.Server.Database.csproj @@ -3,7 +3,7 @@ $(TargetFramework) - 8 + 9 false false ..\bin\Content.Server.Database\ diff --git a/Content.Server/Content.Server.csproj b/Content.Server/Content.Server.csproj index e13b99e8a1..8923cb0774 100644 --- a/Content.Server/Content.Server.csproj +++ b/Content.Server/Content.Server.csproj @@ -3,7 +3,7 @@ $(TargetFramework) - 8 + 9 false false ..\bin\Content.Server\ diff --git a/Content.Shared/Content.Shared.csproj b/Content.Shared/Content.Shared.csproj index ec92c5eb36..09cb30317d 100644 --- a/Content.Shared/Content.Shared.csproj +++ b/Content.Shared/Content.Shared.csproj @@ -3,7 +3,7 @@ $(TargetFramework) - 8 + 9 false false ../bin/Content.Shared diff --git a/Content.Tests/Content.Tests.csproj b/Content.Tests/Content.Tests.csproj index f82a4628d7..74b5abb421 100644 --- a/Content.Tests/Content.Tests.csproj +++ b/Content.Tests/Content.Tests.csproj @@ -3,7 +3,7 @@ $(TargetFramework) - 8 + 9 false false ..\bin\Content.Tests\