diff --git a/Content.Shared/Preferences/Loadouts/LoadoutGroupPrototype.cs b/Content.Shared/Preferences/Loadouts/LoadoutGroupPrototype.cs index c4a33af4147a..e72b2114fe7f 100644 --- a/Content.Shared/Preferences/Loadouts/LoadoutGroupPrototype.cs +++ b/Content.Shared/Preferences/Loadouts/LoadoutGroupPrototype.cs @@ -29,11 +29,17 @@ // SPDX-FileCopyrightText: 2024 plykiya // SPDX-FileCopyrightText: 2024 Арт <123451459+JustArt1m@users.noreply.github.com> // SPDX-FileCopyrightText: 2025 Aiden <28298836+Aidenkrz@users.noreply.github.com> +// SPDX-FileCopyrightText: 2025 BloodfiendishOperator <141253729+Diggy0@users.noreply.github.com> +// SPDX-FileCopyrightText: 2025 Froffy025 +// SPDX-FileCopyrightText: 2025 GoobBot +// SPDX-FileCopyrightText: 2025 SX-7 // SPDX-FileCopyrightText: 2025 Tayrtahn // // SPDX-License-Identifier: AGPL-3.0-or-later +using Content.Shared.Inventory; using Robust.Shared.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Array; namespace Content.Shared.Preferences.Loadouts; @@ -41,7 +47,7 @@ namespace Content.Shared.Preferences.Loadouts; /// Corresponds to a set of loadouts for a particular slot. /// [Prototype] -public sealed partial class LoadoutGroupPrototype : IPrototype +public sealed partial class LoadoutGroupPrototype : IPrototype, IInheritingPrototype { [IdDataField] public string ID { get; private set; } = string.Empty; @@ -72,4 +78,18 @@ public sealed partial class LoadoutGroupPrototype : IPrototype [DataField(required: true)] public List> Loadouts = new(); -} \ No newline at end of file + + /// + /// If another item with these slotflags is attempted to be equippped, cancel. - Goobstation + /// + [DataField] + public SlotFlags? ExclusiveWith; + + [ViewVariables] + [ParentDataField(typeof(AbstractPrototypeIdArraySerializer))] + public string[]? Parents { get; private set; } + + [ViewVariables] + [AbstractDataField] + public bool Abstract { get; private set; } = false; +} diff --git a/Content.Shared/Preferences/Loadouts/RoleLoadout.cs b/Content.Shared/Preferences/Loadouts/RoleLoadout.cs index 484e55e89eaa..e9840e7e8b3d 100644 --- a/Content.Shared/Preferences/Loadouts/RoleLoadout.cs +++ b/Content.Shared/Preferences/Loadouts/RoleLoadout.cs @@ -65,22 +65,25 @@ // SPDX-FileCopyrightText: 2024 slarticodefast <161409025+slarticodefast@users.noreply.github.com> // SPDX-FileCopyrightText: 2024 Арт <123451459+JustArt1m@users.noreply.github.com> // SPDX-FileCopyrightText: 2025 Aiden <28298836+Aidenkrz@users.noreply.github.com> +// SPDX-FileCopyrightText: 2025 BloodfiendishOperator <141253729+Diggy0@users.noreply.github.com> +// SPDX-FileCopyrightText: 2025 Froffy025 +// SPDX-FileCopyrightText: 2025 GoobBot // SPDX-FileCopyrightText: 2025 Pieter-Jan Briers +// SPDX-FileCopyrightText: 2025 SX-7 // SPDX-FileCopyrightText: 2025 metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> +// SPDX-FileCopyrightText: 2025 āda // // SPDX-License-Identifier: AGPL-3.0-or-later -using System.Diagnostics.CodeAnalysis; -using System.Linq; using Content.Shared.CCVar; -using Content.Shared.Humanoid.Prototypes; -using Content.Shared.Random; using Robust.Shared.Collections; using Robust.Shared.Configuration; using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Serialization; using Robust.Shared.Utility; +using System.Diagnostics.CodeAnalysis; +using System.Linq; namespace Content.Shared.Preferences.Loadouts; @@ -298,6 +301,7 @@ public void SetDefault(HumanoidCharacterProfile? profile, ICommonSession? sessio continue; var loadouts = new List(); + SelectedLoadouts[group] = loadouts; if (groupProto.MinLimit > 0) @@ -309,6 +313,7 @@ public void SetDefault(HumanoidCharacterProfile? profile, ICommonSession? sessio if (loadouts.Count >= groupProto.MinLimit) break; + if (!protoManager.TryIndex(protoId, out var loadoutProto)) continue; @@ -457,4 +462,4 @@ public override int GetHashCode() { return HashCode.Combine(Role, SelectedLoadouts, Points); } -} \ No newline at end of file +} diff --git a/Resources/Locale/en-US/preferences/loadout-groups.ftl b/Resources/Locale/en-US/preferences/loadout-groups.ftl index 6f39d534b89c..7544b5cc4996 100644 --- a/Resources/Locale/en-US/preferences/loadout-groups.ftl +++ b/Resources/Locale/en-US/preferences/loadout-groups.ftl @@ -54,12 +54,14 @@ loadout-group-hop-backpack = Head of Personnel backpack loadout-group-hop-outerclothing = Head of Personnel outer clothing # Civilian -loadout-group-passenger-jumpsuit = Passenger jumpsuit -loadout-group-passenger-mask = Passenger mask -loadout-group-passenger-gloves = Passenger gloves -loadout-group-passenger-outerclothing = Passenger outer clothing -loadout-group-passenger-shoes = Passenger shoes -loadout-group-passenger-neck = Passenger neck +loadout-group-civilian-jumpsuit = Civilian Jumpsuits +loadout-group-civilian-mask = Civilian Facewear +loadout-group-civilian-hat = Civilian Headwear +loadout-group-civilian-gloves = Civilian Gloves +loadout-group-civilian-outerclothing = Civilian Outerwear +loadout-group-civilian-shoes = Civilian Footwear +loadout-group-civilian-neck = Civilian Neckwear +loadout-group-civilian-belt = Civilian Beltwear loadout-group-bartender-head = Bartender head loadout-group-bartender-jumpsuit = Bartender jumpsuit diff --git a/Resources/Prototypes/Catalog/Cargo/cargo_vending.yml b/Resources/Prototypes/Catalog/Cargo/cargo_vending.yml index 5beaabfbc472..c4460d24fd98 100644 --- a/Resources/Prototypes/Catalog/Cargo/cargo_vending.yml +++ b/Resources/Prototypes/Catalog/Cargo/cargo_vending.yml @@ -29,7 +29,6 @@ # SPDX-FileCopyrightText: 2024 Scruq445 # SPDX-FileCopyrightText: 2024 beck-thompson <107373427+beck-thompson@users.noreply.github.com> # SPDX-FileCopyrightText: 2024 degradka <69397649+degradka@users.noreply.github.com> -# SPDX-FileCopyrightText: 2024 lzk <124214523+lzk228@users.noreply.github.com> # SPDX-FileCopyrightText: 2024 metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> # SPDX-FileCopyrightText: 2024 metalgearsloth # SPDX-FileCopyrightText: 2024 potato1234_x <79580518+potato1234x@users.noreply.github.com> @@ -40,11 +39,14 @@ # SPDX-FileCopyrightText: 2025 Aineias1 <142914808+Aineias1@users.noreply.github.com> # SPDX-FileCopyrightText: 2025 Aineias1 # SPDX-FileCopyrightText: 2025 FaDeOkno <143940725+FaDeOkno@users.noreply.github.com> +# SPDX-FileCopyrightText: 2025 Froffy025 <78222136+Froffy025@users.noreply.github.com> # SPDX-FileCopyrightText: 2025 GoobBot # SPDX-FileCopyrightText: 2025 McBosserson <148172569+McBosserson@users.noreply.github.com> # SPDX-FileCopyrightText: 2025 Milon # SPDX-FileCopyrightText: 2025 Piras314 +# SPDX-FileCopyrightText: 2025 PotRoastPiggy <121025443+PotRoastPiggy@users.noreply.github.com> # SPDX-FileCopyrightText: 2025 Rouden <149893554+Roudenn@users.noreply.github.com> +# SPDX-FileCopyrightText: 2025 SX-7 # SPDX-FileCopyrightText: 2025 TheBorzoiMustConsume <197824988+TheBorzoiMustConsume@users.noreply.github.com> # SPDX-FileCopyrightText: 2025 Unlumination <144041835+Unlumy@users.noreply.github.com> # SPDX-FileCopyrightText: 2025 coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> @@ -52,6 +54,7 @@ # SPDX-FileCopyrightText: 2025 deltanedas <@deltanedas:kde.org> # SPDX-FileCopyrightText: 2025 gluesniffler <159397573+gluesniffler@users.noreply.github.com> # SPDX-FileCopyrightText: 2025 gluesniffler +# SPDX-FileCopyrightText: 2025 lzk <124214523+lzk228@users.noreply.github.com> # SPDX-FileCopyrightText: 2025 username <113782077+whateverusername0@users.noreply.github.com> # SPDX-FileCopyrightText: 2025 whateverusername0 # @@ -90,7 +93,7 @@ sprite: Objects/Specific/Service/vending_machine_restock.rsi state: base product: CrateVendingMachineRestockClothesFilled - cost: 3200 + cost: 7500 # Goob - NoCargoOrderArbitrage test category: cargoproduct-category-name-service group: market diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/bardrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/bardrobe.yml index 3e7319ce061f..202281b12276 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/bardrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/bardrobe.yml @@ -18,10 +18,14 @@ # SPDX-FileCopyrightText: 2024 Alekshhh <44923899+Alekshhh@users.noreply.github.com> # SPDX-FileCopyrightText: 2024 Hanz <41141796+Hanzdegloker@users.noreply.github.com> # SPDX-FileCopyrightText: 2025 Aiden <28298836+Aidenkrz@users.noreply.github.com> +# SPDX-FileCopyrightText: 2025 BloodfiendishOperator <141253729+Diggy0@users.noreply.github.com> +# SPDX-FileCopyrightText: 2025 Froffy025 +# SPDX-FileCopyrightText: 2025 GoobBot +# SPDX-FileCopyrightText: 2025 SX-7 # SPDX-FileCopyrightText: 2025 SX_7 +# SPDX-FileCopyrightText: 2025 Smith <182301147+AgentSmithRadio@users.noreply.github.com> # # SPDX-License-Identifier: AGPL-3.0-or-later - - type: vendingMachineInventory id: BarDrobeInventory startingInventory: @@ -40,5 +44,6 @@ ClothingOuterVest: 2 ClothingBeltBandolier: 2 ClothingEyesGlassesSunglasses: 2 + ClothingUniformJumpskirtWaitress: 2 # Loadouts Rework Addition - Einstein Engines contrabandInventory: - ToyFigurineBartender: 1 \ No newline at end of file + ToyFigurineBartender: 1 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/clothesmate.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/clothesmate.yml index 2ceeed0da505..39a753458b19 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/clothesmate.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/clothesmate.yml @@ -35,8 +35,12 @@ # SPDX-FileCopyrightText: 2024 slarticodefast <161409025+slarticodefast@users.noreply.github.com> # SPDX-FileCopyrightText: 2025 Aiden <28298836+Aidenkrz@users.noreply.github.com> # SPDX-FileCopyrightText: 2025 Armok <155400926+ARMOKS@users.noreply.github.com> +# SPDX-FileCopyrightText: 2025 BloodfiendishOperator <141253729+Diggy0@users.noreply.github.com> +# SPDX-FileCopyrightText: 2025 Froffy025 # SPDX-FileCopyrightText: 2025 GoobBot +# SPDX-FileCopyrightText: 2025 Jacktastic09 <148667265+Jacktastic09@users.noreply.github.com> # SPDX-FileCopyrightText: 2025 Marcus F <199992874+thebiggestbruh@users.noreply.github.com> +# SPDX-FileCopyrightText: 2025 PotRoastPiggy <121025443+PotRoastPiggy@users.noreply.github.com> # SPDX-FileCopyrightText: 2025 SX_7 # SPDX-FileCopyrightText: 2025 Smith <182301147+AgentSmithRadio@users.noreply.github.com> # SPDX-FileCopyrightText: 2025 Solstice @@ -147,6 +151,51 @@ ClothingUniformJumpskirtDressOpenShoulder: 1 # Goobstation ClothingShoesSandals: 1 # Goobstation # DO NOT ADD MORE, USE UNIFORM DYING + #Loadouts Rework Stuff Start + ClothingOuterCoatAcidRaincoat: 3 #Loadouts Rework addition - Frontier + ClothingOuterCoatAcidRaincoatBlue: 3 #Loadouts Rework addition - Frontier + ClothingOuterCoatAcidRaincoatGreen: 3 #Loadouts Rework addition - Frontier + ClothingOuterCoatAcidRaincoatMagenta: 3 #Loadouts Rework addition - Frontier + ClothingOuterCoatAcidRaincoatYellow: 3 #Loadouts Rework addition - Frontier + ClothingOuterCoatBomberPunkRed: 3 #Loadouts Rework addition - Frontier + ClothingOuterCoatJacketLeather: 3 #Loadouts Rework addition - Frontier + ClothingOuterCoatJacketBiker: 3 #Loadouts Rework addition - Frontier + ClothingOuterCoatJacketJamrock: 3 #Loadouts Rework addition - Frontier + ClothingOuterCoatBomberAerostatic: 3 #Loadouts Rework addition - Frontier + ClothingOuterCoatJacketLettermanBrown: 3 #Loadouts Rework addition - Frontier + ClothingOuterCoatJacketLettermanMagenta: 3 #Loadouts Rework addition - Frontier + ClothingOuterCoatBomberPinkSleeves: 3 #Loadouts Rework addition - Frontier + ClothingUniformJumpskirtDressAsymmetric: 3 #Loadouts Rework addition - EE + ClothingUniformJumpskirtDressEvening: 3 #Loadouts Rework addition - EE + ClothingUniformJumpskirtDressMidi: 3 #Loadouts Rework addition - EE + ClothingUniformJumpskirtDressTea: 3 #Loadouts Rework addition - EE + ClothingUniformJumpskirtDressSleeveless: 3 #Loadouts Rework addition - EE + ClothingUniformJumpsuitYogaGymBra: 3 #Loadouts Rework addition - EE + ClothingUniformJumpsuitSuitBlueBlazer: 3 #Loadouts Rework addition - EE + ClothingUniformJumpsuitOliveSweater: 3 #Loadouts Rework addition - EE + ClothingUniformJumpsuitVictorianRedBlack: 3 #Loadouts Rework addition - EE + ClothingUniformJumpsuitVictorianRedVest: 3 #Loadouts Rework addition - EE + ClothingUniformJumpsuitRippedPunk: 3 #Loadouts Rework addition - Nyanotrasen + ClothingOuterCoatInspector: 3 #Loadouts Rework addition - EE + ClothingOuterCoatModern: 3 #Loadouts Rework addition - EE + ClothingOuterTailcoat: 3 #Loadouts Rework addition - EE + ClothingOuterCoatVictorian: 3 #Loadouts Rework addition - EE + ClothingOuterCoatVictorianRed: 3 #Loadouts Rework addition - EE + ClothingOuterCoatPeacoat: 3 #Loadouts Rework addition - EE + ClothingOuterCoatAsymmetric: 3 #Loadouts Rework addition - EE + ClothingOuterCoatSubmariner: 3 #Loadouts Rework addition - EE + ClothingOuterSuitJacket: 3 #Loadouts Rework addition - EE + ClothingOuterCardigan: 3 #Loadouts Rework addition - EE + ClothingOuterCardiganSweater: 3 #Loadouts Rework addition - EE + ClothingOuterCardiganArgyle: 3 #Loadouts Rework addition - EE + ClothingOuterCardiganSlim: 3 #Loadouts Rework addition - EE + ClothingOuterCowboyDuster: 3 #Loadouts Rework addition - EE + ClothingOuterBlazer: 3 #Loadouts Rework addition - EE + ClothingOuterBlazerLong: 3 #Loadouts Rework addition - EE + ClothingOuterBlazerFormal: 3 #Loadouts Rework addition - EE + ClothingOuterBlazerFlatCollar: 3 #Loadouts Rework addition - EE + ClothingOuterBlazerPosh: 3 #Loadouts Rework addition - EE + #Loadouts Rework Stuff End contrabandInventory: ClothingMaskNeckGaiter: 2 ClothingUniformJumpsuitTacticool: 2 # +1 Goobstation diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/janidrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/janidrobe.yml index c19f3b7c35f7..006b5bfbae37 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/janidrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/janidrobe.yml @@ -12,6 +12,8 @@ # SPDX-FileCopyrightText: 2024 deltanedas <39013340+deltanedas@users.noreply.github.com> # SPDX-FileCopyrightText: 2024 lzk <124214523+lzk228@users.noreply.github.com> # SPDX-FileCopyrightText: 2025 Aiden <28298836+Aidenkrz@users.noreply.github.com> +# SPDX-FileCopyrightText: 2025 BloodfiendishOperator <141253729+Diggy0@users.noreply.github.com> +# SPDX-FileCopyrightText: 2025 Froffy025 # SPDX-FileCopyrightText: 2025 Bokser815 <70928915+Bokser815@users.noreply.github.com> # SPDX-FileCopyrightText: 2025 GoobBot # SPDX-FileCopyrightText: 2025 SX-7 @@ -19,7 +21,6 @@ # SPDX-FileCopyrightText: 2025 Smith <182301147+AgentSmithRadio@users.noreply.github.com> # # SPDX-License-Identifier: AGPL-3.0-or-later - - type: vendingMachineInventory id: JaniDrobeInventory startingInventory: @@ -32,9 +33,10 @@ ClothingHeadsetService: 2 ClothingOuterWinterJani: 2 ClothingNeckScarfStripedPurple: 3 + UniformMaid: 1 # Loadouts Rework addition - Nyanotrasen contrabandInventory: ToyFigurineJanitor: 1 emaggedInventory: ClothingUniformJumpskirtJanimaid: 2 ClothingUniformJumpskirtJanimaidmini: 1 - SlipocalypseClusterSoap: 1 # Goobstation \ No newline at end of file + SlipocalypseClusterSoap: 1 # Goobstation diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/medidrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/medidrobe.yml index 36ce5fc7a647..f9707cd9f616 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/medidrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/medidrobe.yml @@ -18,23 +18,28 @@ # SPDX-FileCopyrightText: 2024 icekot8 <93311212+icekot8@users.noreply.github.com> # SPDX-FileCopyrightText: 2024 lzk <124214523+lzk228@users.noreply.github.com> # SPDX-FileCopyrightText: 2025 Aiden <28298836+Aidenkrz@users.noreply.github.com> +# SPDX-FileCopyrightText: 2025 BloodfiendishOperator <141253729+Diggy0@users.noreply.github.com> +# SPDX-FileCopyrightText: 2025 Froffy025 +# SPDX-FileCopyrightText: 2025 GoobBot +# SPDX-FileCopyrightText: 2025 SX-7 # SPDX-FileCopyrightText: 2025 SX_7 +# SPDX-FileCopyrightText: 2025 Smith <182301147+AgentSmithRadio@users.noreply.github.com> # SPDX-FileCopyrightText: 2025 Ted Lukin <66275205+pheenty@users.noreply.github.com> # # SPDX-License-Identifier: AGPL-3.0-or-later - - type: vendingMachineInventory id: MediDrobeInventory startingInventory: ClothingBackpackDuffelMedical: 4 ClothingBackpackMedical: 4 ClothingBackpackSatchelMedical: 4 - ClothingBackpackMessengerMedical: 4 # Frontier + ClothingBackpackMessengerMedical: 4 # Frontier ClothingUniformJumpsuitMedicalDoctor: 4 ClothingUniformJumpskirtMedicalDoctor: 4 ClothingBeltMedical: 4 ClothingHeadHatBeretMedic: 4 ClothingHeadNurseHat: 4 + ClothingUniformJumpskirtNurse: 4 # Loadout Reworks Addition - Nyanotrasen ClothingOuterCoatLab: 4 ClothingShoesColorWhite: 4 ClothingHandsGlovesLatex: 4 @@ -53,4 +58,4 @@ ClothingUniformJumpskirtOfLife: 1 ToyFigurineMedicalDoctor: 1 ToyFigurineParamedic: 1 - ToyFigurineChiefMedicalOfficer: 1 \ No newline at end of file + ToyFigurineChiefMedicalOfficer: 1 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/secdrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/secdrobe.yml index d8f0f33be31e..6b5a47fd60bf 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/secdrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/secdrobe.yml @@ -21,6 +21,7 @@ # SPDX-FileCopyrightText: 2024 Speebro # SPDX-FileCopyrightText: 2024 themias <89101928+themias@users.noreply.github.com> # SPDX-FileCopyrightText: 2025 Aiden <28298836+Aidenkrz@users.noreply.github.com> +# SPDX-FileCopyrightText: 2025 BloodfiendishOperator <141253729+Diggy0@users.noreply.github.com> # SPDX-FileCopyrightText: 2025 Bokser815 <70928915+Bokser815@users.noreply.github.com> # SPDX-FileCopyrightText: 2025 Creatorbot01 # SPDX-FileCopyrightText: 2025 Creatorbot01 @@ -53,6 +54,7 @@ ClothingUniformJumpsuitSecGrey: 3 ClothingUniformJumpskirtSecGrey: 3 ClothingUniformJumpsuitSecBlue: 3 + ClothingUniformJumpsuitSecSummer: 3 # Loadouts Rework Addition - Nyanotrasen ClothingUniformJumpsuitBrigmedic: 1 # Goobstation ClothingUniformJumpskirtBrigmedic: 1 # Goobstation ClothingHeadsetAltSecurityRegular: 3 # Goobstation diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/theater.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/theater.yml index 989174ee5389..7bc2e7864004 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/theater.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/theater.yml @@ -40,6 +40,9 @@ # SPDX-FileCopyrightText: 2024 themias <89101928+themias@users.noreply.github.com> # SPDX-FileCopyrightText: 2025 Aiden <28298836+Aidenkrz@users.noreply.github.com> # SPDX-FileCopyrightText: 2025 Armok <155400926+ARMOKS@users.noreply.github.com> +# SPDX-FileCopyrightText: 2025 BloodfiendishOperator <141253729+Diggy0@users.noreply.github.com> +# SPDX-FileCopyrightText: 2025 Froffy025 <78222136+Froffy025@users.noreply.github.com> +# SPDX-FileCopyrightText: 2025 Froffy025 # SPDX-FileCopyrightText: 2025 GoobBot # SPDX-FileCopyrightText: 2025 Ilya246 <57039557+Ilya246@users.noreply.github.com> # SPDX-FileCopyrightText: 2025 JustinWinningham @@ -53,7 +56,6 @@ # SPDX-FileCopyrightText: 2025 gluesniffler # # SPDX-License-Identifier: AGPL-3.0-or-later - - type: vendingMachineInventory id: AutoDrobeInventory startingInventory: @@ -114,17 +116,38 @@ ClothingShoesBootsCowboyWhite: 1 ClothingCostumeAbductorHead: 1 ClothingCostumeAbductor: 1 + # Loadouts Rework Stuff Start + ClothingUniformMNKOfficeSkirt: 2 # Loadouts Rework addition - Nyanotrasen + ClothingUniformMNKUnderGarment: 2 # Loadouts Rework addition - Nyanotrasen + ClothingUniformMNKGymBra: 2 # Loadouts Rework addition - Nyanotrasen + ClothingUniformMNKDressBlack: 2 # Loadouts Rework addition - Nyanotrasen + ClothingUniformMNKBlackShoulder: 2 # Loadouts Rework addition - Nyanotrasen + ClothingUniformMNKTracksuitBlack: 2 # Loadouts Rework addition - Nyanotrasen + ClothingHeadHatBunny: 1 # Goobstation + ClothingCostumeBunnySuit: 1 # Goobstation - If you want it, you'll have to take it + UniformGeisha: 1 # Loadouts Rework addition - Nyanotrasen + ClothingCostumeMioSkirt: 1 # Loadouts Rework addition - Nyanotrasen + ClothingCostumeNaota: 1 # Loadouts Rework addition - Nyanotrasen + ClothingUniformRat: 1 # Loadouts Rework addition - Nyanotrasen - The fucking rat that I hate + ClothingUniformDressRed: 1 # Loadouts Rework addition - Nyanotrasen + ClothingUniformKendoHakama: 1 # Loadouts Rework addition - Nyanotrasen + ClothingKimonoBlue: 1 # Loadouts Rework addition - Nyanotrasen + ClothingKimonoPink: 1 # Loadouts Rework addition - Nyanotrasen + ClothingKimonoSky: 1 # Loadouts Rework addition - Nyanotrasen + ClothingKimonoGreen: 1 # Loadouts Rework addition - Nyanotrasen + # Loadouts Rework Stuff End ClothingHeadSanabi: 1 # Goobstation ClothingNeckCloakSanabi: 1 # Goobstation contrabandInventory: ClothingHeadHatRichard: 1 ToyFigurineBoxer: 1 ToyFigurineMusician: 1 - WeaponLauncherTaiwanPond: 1 # Goobstation - GrenadeToy: 5 # Goobstation - ClothingShoesResonant: 1 # Goobstation - ClothingNeckCloakResonant: 1 # Goobstation - ClothingUniformJumpsuitResonant: 1 # Goobstation + WeaponLauncherTaiwanPond: 1 # Goobstation + GrenadeToy: 5 # Goobstation + ClothingShoesResonant: 1 # Goobstation + ClothingNeckCloakResonant: 1 # Goobstation + ClothingUniformJumpsuitResonant: 1 # Goobstation + ClothingCostumeArcDress: 1 # Seal away the beast emaggedInventory: ClothingShoesBling: 1 ClothingShoesBootsCowboyFancy: 1 @@ -132,3 +155,4 @@ ClothingMaskSexyClown: 1 ClothingMaskSexyMime: 1 ClothingHeadHatCowboyBountyHunter: 1 + ClothingUniformSwimsuitBlue: 1 # Goobstation - It came in the trash diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/winterdrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/winterdrobe.yml index 47fc9386d59c..d6ca544b5986 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/winterdrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/winterdrobe.yml @@ -8,11 +8,16 @@ # SPDX-FileCopyrightText: 2024 Ubaser <134914314+UbaserB@users.noreply.github.com> # SPDX-FileCopyrightText: 2025 Aiden <28298836+Aidenkrz@users.noreply.github.com> # SPDX-FileCopyrightText: 2025 Aineias1 <142914808+Aineias1@users.noreply.github.com> +# SPDX-FileCopyrightText: 2025 BloodfiendishOperator <141253729+Diggy0@users.noreply.github.com> +# SPDX-FileCopyrightText: 2025 Froffy025 # SPDX-FileCopyrightText: 2025 GoobBot +# SPDX-FileCopyrightText: 2025 Ko4ergaPunk <62609550+Ko4ergaPunk@users.noreply.github.com> +# SPDX-FileCopyrightText: 2025 Nemanja <98561806+EmoGarbage404@users.noreply.github.com> +# SPDX-FileCopyrightText: 2025 Ted Lukin <66275205+pheenty@users.noreply.github.com> +# SPDX-FileCopyrightText: 2025 UBlueberry <161545003+UBlueberry@users.noreply.github.com> # SPDX-FileCopyrightText: 2025 pheenty # # SPDX-License-Identifier: AGPL-3.0-or-later - - type: vendingMachineInventory id: WinterDrobeInventory startingInventory: @@ -24,7 +29,7 @@ ClothingNeckScarfStripedLightBlue: 3 ClothingNeckScarfStripedOrange: 3 ClothingNeckScarfStripedPurple: 3 - ClothingOuterCoatGentle: 3 #goob start + ClothingOuterCoatGentle: 3 # goob start ClothingOuterCoatJensen: 3 ClothingOuterCoatTrench: 4 ClothingOuterWinterCoat: 4 @@ -38,7 +43,15 @@ ClothingOuterWinterColorBrown: 2 ClothingOuterWinterColorBlack: 2 ClothingOuterWinterColorGray: 2 - ClothingOuterWinterColorWhite: 2 #goob end + ClothingOuterWinterColorWhite: 2 # goob end + # Loadouts Rework Stuff Start + ClothingOuterDenimJacket: 2 # Loadouts Rework addition - DeltaV + ClothingOuterCoatLettermanBlue: 1 # Loadouts Rework addition - Nyanotrasen + ClothingOuterCoatLettermanRed: 1 # Loadouts Rework addition - Nyanotrasen + ClothingOuterCoatHyenhSweater: 1 # Loadouts Rework addition - Nyanotrasen + ClothingOuterWinterCoatLong: 1 # Loadouts Rework addition - Nyanotrasen + ClothingOuterWinterCoatPlaid: 1 # Loadouts Rework addition - Nyanotrasen + # Loadouts Rework Stuff End ClothingShoesBootsWinter: 6 ClothingOuterFlannelRed: 2 ClothingOuterFlannelBlue: 2 @@ -47,10 +60,8 @@ ClothingHeadHatCanadaBeanie: 4 ClothingHeadHatSantahat: 2 ClothingHeadHatXmasCrown: 2 - - contrabandInventory: # Goobstation + contrabandInventory: # Goobstation ClothingOuterDavidsJacket: 1 - emaggedInventory: ClothingNeckScarfStripedSyndieGreen: 3 ClothingNeckScarfStripedSyndieRed: 3 diff --git a/Resources/Prototypes/Loadouts/Jobs/Civilian/bartender.yml b/Resources/Prototypes/Loadouts/Jobs/Civilian/bartender.yml index 33bef9738c17..23cd8f43c4ac 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Civilian/bartender.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Civilian/bartender.yml @@ -72,6 +72,12 @@ # SPDX-FileCopyrightText: 2024 to4no_fix <156101927+chavonadelal@users.noreply.github.com> # SPDX-FileCopyrightText: 2024 voidnull000 <18663194+voidnull000@users.noreply.github.com> # SPDX-FileCopyrightText: 2025 Aiden <28298836+Aidenkrz@users.noreply.github.com> +# SPDX-FileCopyrightText: 2025 BloodfiendishOperator <141253729+Diggy0@users.noreply.github.com> +# SPDX-FileCopyrightText: 2025 Froffy025 <78222136+Froffy025@users.noreply.github.com> +# SPDX-FileCopyrightText: 2025 Froffy025 +# SPDX-FileCopyrightText: 2025 GoobBot +# SPDX-FileCopyrightText: 2025 SX-7 +# SPDX-FileCopyrightText: 2025 gluesniffler <159397573+gluesniffler@users.noreply.github.com> # # SPDX-License-Identifier: AGPL-3.0-or-later # Head @@ -79,8 +85,6 @@ id: BartenderHead equipment: head: ClothingHeadHatTophat - - - type: loadout id: BartenderBowler equipment: @@ -92,18 +96,19 @@ id: BartenderJumpsuit equipment: jumpsuit: ClothingUniformJumpsuitBartender - - - type: loadout id: BartenderJumpskirt equipment: jumpsuit: ClothingUniformJumpskirtBartender - - type: loadout id: BartenderJumpsuitPurple equipment: jumpsuit: ClothingUniformJumpsuitBartenderPurple +- type: loadout + id: WaitressUniform + equipment: + jumpsuit: ClothingUniformJumpskirtWaitress # Outer clothing @@ -111,12 +116,10 @@ id: BartenderApron equipment: outerClothing: ClothingOuterApronBar - - type: loadout id: BartenderVest equipment: outerClothing: ClothingOuterVest - - type: loadout id: BartenderWintercoat equipment: diff --git a/Resources/Prototypes/Loadouts/Jobs/Civilian/janitor.yml b/Resources/Prototypes/Loadouts/Jobs/Civilian/janitor.yml index e1008b50552f..d57787f6093a 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Civilian/janitor.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Civilian/janitor.yml @@ -86,17 +86,21 @@ # SPDX-FileCopyrightText: 2024 voidnull000 <18663194+voidnull000@users.noreply.github.com> # SPDX-FileCopyrightText: 2024 Арт <123451459+JustArt1m@users.noreply.github.com> # SPDX-FileCopyrightText: 2025 Aiden <28298836+Aidenkrz@users.noreply.github.com> +# SPDX-FileCopyrightText: 2025 BloodfiendishOperator <141253729+Diggy0@users.noreply.github.com> +# SPDX-FileCopyrightText: 2025 Froffy025 <78222136+Froffy025@users.noreply.github.com> +# SPDX-FileCopyrightText: 2025 Froffy025 +# SPDX-FileCopyrightText: 2025 GoobBot +# SPDX-FileCopyrightText: 2025 SX-7 +# SPDX-FileCopyrightText: 2025 gluesniffler <159397573+gluesniffler@users.noreply.github.com> # # SPDX-License-Identifier: AGPL-3.0-or-later - - type: loadoutEffectGroup id: SeniorJanitorial effects: - - !type:JobRequirementLoadoutEffect - requirement: - !type:RoleTimeRequirement - role: JobJanitor - time: 187200 #52 hrs (1 hour per week for 1 year) + - !type:JobRequirementLoadoutEffect + requirement: !type:RoleTimeRequirement + role: JobJanitor + time: 187200 # 52 hrs (1 hour per week for 1 year) # Head - type: loadout @@ -110,12 +114,14 @@ id: JanitorJumpsuit equipment: jumpsuit: ClothingUniformJumpsuitJanitor - - - type: loadout id: JanitorJumpskirt equipment: jumpsuit: ClothingUniformJumpskirtJanitor +- type: loadout + id: MaidOutfitJanitor + equipment: + jumpsuit: UniformMaid # Gloves @@ -123,14 +129,10 @@ id: JanitorRubberGloves equipment: gloves: ClothingHandsGlovesJanitor - - - type: loadout id: OrangeGloves equipment: gloves: ClothingHandsGlovesColorOrange - - - type: loadout id: PurpleGloves equipment: @@ -147,8 +149,8 @@ - type: loadout id: JanitorGoldenPlunger effects: - - !type:GroupLoadoutEffect - proto: SeniorJanitorial + - !type:GroupLoadoutEffect + proto: SeniorJanitorial storage: back: - GoldenPlunger diff --git a/Resources/Prototypes/Loadouts/Jobs/Civilian/passenger.yml b/Resources/Prototypes/Loadouts/Jobs/Civilian/passenger.yml index dad7f5b880b5..75bb2f549cc3 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Civilian/passenger.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Civilian/passenger.yml @@ -74,10 +74,13 @@ # SPDX-FileCopyrightText: 2025 Aiden <28298836+Aidenkrz@users.noreply.github.com> # SPDX-FileCopyrightText: 2025 Aiden # SPDX-FileCopyrightText: 2025 BloodfiendishOperator <141253729+Diggy0@users.noreply.github.com> +# SPDX-FileCopyrightText: 2025 Froffy025 <78222136+Froffy025@users.noreply.github.com> +# SPDX-FileCopyrightText: 2025 Froffy025 # SPDX-FileCopyrightText: 2025 GoobBot # SPDX-FileCopyrightText: 2025 SX-7 <92227810+SX-7@users.noreply.github.com> # SPDX-FileCopyrightText: 2025 SX-7 # SPDX-FileCopyrightText: 2025 Solstice +# SPDX-FileCopyrightText: 2025 gluesniffler <159397573+gluesniffler@users.noreply.github.com> # SPDX-FileCopyrightText: 2025 paige404 <59348003+paige404@users.noreply.github.com> # SPDX-FileCopyrightText: 2025 starch # @@ -102,9 +105,16 @@ role: JobPassenger time: 72000 #20 hrs, fun mantle for the most experienced greytiders +# Head # goob loadout rework addition + +- type: loadout + id: HeadbandBlack + equipment: + head: ClothingHeadBandBlack + # Face - type: loadout - id: PassengerFace + id: GreyTiderMask effects: - !type:GroupLoadoutEffect proto: GreyTider @@ -152,6 +162,7 @@ equipment: jumpsuit: ClothingUniformJumpsuitAncient + # Neck - type: loadout id: Mantle @@ -182,9 +193,14 @@ equipment: back: ClothingBackpackDuffel +- type: loadout + id: LeatherSatchel + equipment: + back: ClothingBackpackSatchelLeather + # Gloves - type: loadout - id: PassengerGloves + id: GreyTiderGloves effects: - !type:GroupLoadoutEffect proto: GreyTider @@ -196,6 +212,18 @@ id: PassengerWintercoat equipment: outerClothing: ClothingOuterWinterCoat + groupBy: "Wintercoat" + +- type: loadout + id: SuitWitchRobes + equipment: + outerClothing: ClothingOuterSuitWitchRobes + +- type: loadout + id: Bomber + equipment: + outerClothing: ClothingOuterCoatBomber + groupBy: "Bomber" # Shoes - type: loadout @@ -214,91 +242,91 @@ id: GreyMJ equipment: jumpsuit: ClothingUniformJumpsuitMilitaryColorGrey - + groupBy: "Milijump" - type: loadout id: BlackMJ equipment: jumpsuit: ClothingUniformJumpsuitMilitaryColorBlack - + groupBy: "Milijump" - type: loadout id: BlueMJ equipment: jumpsuit: ClothingUniformJumpsuitMilitaryColorBlue - + groupBy: "Milijump" - type: loadout id: DarkBlueMJ equipment: jumpsuit: ClothingUniformJumpsuitMilitaryColorDarkBlue - + groupBy: "Milijump" - type: loadout id: TealMJ equipment: jumpsuit: ClothingUniformJumpsuitMilitaryColorTeal - + groupBy: "Milijump" - type: loadout id: GreenMJ equipment: jumpsuit: ClothingUniformJumpsuitMilitaryColorGreen - + groupBy: "Milijump" - type: loadout id: DarkGreenMJ equipment: jumpsuit: ClothingUniformJumpsuitMilitaryColorDarkGreen - + groupBy: "Milijump" - type: loadout id: OrangeMJ equipment: jumpsuit: ClothingUniformJumpsuitMilitaryColorOrange - + groupBy: "Milijump" - type: loadout id: PinkMJ equipment: jumpsuit: ClothingUniformJumpsuitMilitaryColorPink - + groupBy: "Milijump" - type: loadout id: RedMJ equipment: jumpsuit: ClothingUniformJumpsuitMilitaryColorRed - + groupBy: "Milijump" - type: loadout id: YellowMJ equipment: jumpsuit: ClothingUniformJumpsuitMilitaryColorYellow - + groupBy: "Milijump" - type: loadout id: PurpleMJ equipment: jumpsuit: ClothingUniformJumpsuitMilitaryColorPurple - + groupBy: "Milijump" - type: loadout id: LightBrownMJ equipment: jumpsuit: ClothingUniformJumpsuitMilitaryColorLightBrown - + groupBy: "Milijump" - type: loadout id: BrownMJ equipment: jumpsuit: ClothingUniformJumpsuitMilitaryColorBrown - + groupBy: "Milijump" - type: loadout id: MaroonMJ equipment: jumpsuit: ClothingUniformJumpsuitMilitaryColorMaroon - + groupBy: "Milijump" # service jumpsuit - putting it here because frontier's only service jumpsuits are hydroponics and general lmao # goob change btw @@ -307,4 +335,3 @@ id: ServiceMJ equipment: jumpsuit: ClothingUniformJumpsuitMilitaryService - diff --git a/Resources/Prototypes/Loadouts/Jobs/Medical/medical_doctor.yml b/Resources/Prototypes/Loadouts/Jobs/Medical/medical_doctor.yml index c2b0757e0e52..abc3b4a40d50 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Medical/medical_doctor.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Medical/medical_doctor.yml @@ -74,6 +74,11 @@ # SPDX-FileCopyrightText: 2024 to4no_fix <156101927+chavonadelal@users.noreply.github.com> # SPDX-FileCopyrightText: 2024 voidnull000 <18663194+voidnull000@users.noreply.github.com> # SPDX-FileCopyrightText: 2025 Aiden <28298836+Aidenkrz@users.noreply.github.com> +# SPDX-FileCopyrightText: 2025 BloodfiendishOperator <141253729+Diggy0@users.noreply.github.com> +# SPDX-FileCopyrightText: 2025 Froffy025 <78222136+Froffy025@users.noreply.github.com> +# SPDX-FileCopyrightText: 2025 GoobBot +# SPDX-FileCopyrightText: 2025 Phooooooooooooooooooooooooooooooosphate <184853112+Phooooooooooooooooooooooooooooooosphate@users.noreply.github.com> +# SPDX-FileCopyrightText: 2025 gluesniffler <159397573+gluesniffler@users.noreply.github.com> # SPDX-FileCopyrightText: 2025 starch # # SPDX-License-Identifier: AGPL-3.0-or-later @@ -208,6 +213,10 @@ equipment: jumpsuit: ClothingUniformJumpsuitMilitaryMedicalDoctor +- type: loadout # Loadout Reworks + id: NurseOutfit + equipment: + jumpsuit: ClothingUniformJumpskirtNurse # Back - type: loadout diff --git a/Resources/Prototypes/Loadouts/Jobs/Security/security_officer.yml b/Resources/Prototypes/Loadouts/Jobs/Security/security_officer.yml index 93dca2d13985..051b6af91055 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Security/security_officer.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Security/security_officer.yml @@ -76,8 +76,11 @@ # SPDX-FileCopyrightText: 2024 to4no_fix <156101927+chavonadelal@users.noreply.github.com> # SPDX-FileCopyrightText: 2024 voidnull000 <18663194+voidnull000@users.noreply.github.com> # SPDX-FileCopyrightText: 2025 Aiden <28298836+Aidenkrz@users.noreply.github.com> +# SPDX-FileCopyrightText: 2025 BloodfiendishOperator <141253729+Diggy0@users.noreply.github.com> +# SPDX-FileCopyrightText: 2025 Froffy025 <78222136+Froffy025@users.noreply.github.com> # SPDX-FileCopyrightText: 2025 GoobBot # SPDX-FileCopyrightText: 2025 Ted Lukin <66275205+pheenty@users.noreply.github.com> +# SPDX-FileCopyrightText: 2025 gluesniffler <159397573+gluesniffler@users.noreply.github.com> # SPDX-FileCopyrightText: 2025 pheenty # # SPDX-License-Identifier: AGPL-3.0-or-later @@ -162,6 +165,11 @@ jumpsuit: ClothingUniformJumpskirtSecGrey +- type: loadout + id: SecuritySummerJumpsuit + equipment: + jumpsuit: ClothingUniformJumpsuitSecSummer + - type: loadout id: TrooperUniform equipment: diff --git a/Resources/Prototypes/Loadouts/loadout_groups.yml b/Resources/Prototypes/Loadouts/loadout_groups.yml index d5ba37ca65d9..5e3fa6841e21 100644 --- a/Resources/Prototypes/Loadouts/loadout_groups.yml +++ b/Resources/Prototypes/Loadouts/loadout_groups.yml @@ -133,6 +133,8 @@ # SPDX-FileCopyrightText: 2025 Cass <45694413+CubixThree@users.noreply.github.com> # SPDX-FileCopyrightText: 2025 Creatorbot01 # SPDX-FileCopyrightText: 2025 Creatorbot01 +# SPDX-FileCopyrightText: 2025 Froffy025 <78222136+Froffy025@users.noreply.github.com> +# SPDX-FileCopyrightText: 2025 Froffy025 # SPDX-FileCopyrightText: 2025 GoobBot # SPDX-FileCopyrightText: 2025 JORJ949 <159719201+JORJ949@users.noreply.github.com> # SPDX-FileCopyrightText: 2025 Julian Giebel @@ -167,65 +169,65 @@ minLimit: 0 maxLimit: 3 loadouts: - - FlowerWreath - - Hairflower - - Headphones - - PlushieLizard - - PlushieSpaceLizard - - PersonalAI # Goobstation - - GoldPersonalAI # Goobstation - - ThreeCandles - - Lighter - - CigPackGreen - - CigPackRed - - CigPackBlue - - CigPackBlack - - CigarCase - - CigarGold - - ClothingNeckLGBTPin - - ClothingNeckAllyPin - - ClothingNeckAromanticPin - - ClothingNeckAsexualPin - - ClothingNeckAroacePin - - ClothingNeckBisexualPin - - ClothingNeckGayPin - - ClothingNeckIntersexPin - - ClothingNeckLesbianPin - - ClothingNeckNonBinaryPin - - ClothingNeckPansexualPin - - ClothingNeckPluralPin - - ClothingNeckOmnisexualPin - - ClothingNeckGenderqueerPin - - ClothingNeckGenderfluidPin - - ClothingNeckTransPin - - ClothingNeckAutismPin - - CardBoxBlack # GoobStation - - CardBoxNanotrasen # GoobStation - - FoodSnackLollypopWrapped # Goobstation - - FoodSnackLollypopWrappedRainbow # Goobstation - - FoodSnackLollypopWrappedCarp # Goobstation - - TowelColorBlack - - TowelColorDarkBlue - - TowelColorDarkGreen - - TowelColorGold - - TowelColorGray - - TowelColorGreen - - TowelColorLightBlue - - TowelColorLightBrown - - TowelColorMaroon - - TowelColorMime - - TowelColorOrange - - TowelColorPurple - - TowelColorRed - - TowelColorSilver - - TowelColorWhite - - TowelColorYellow + - FlowerWreath + - Hairflower + - Headphones + - PlushieLizard + - PlushieSpaceLizard + - PersonalAI # Goobstation + - GoldPersonalAI # Goobstation + - ThreeCandles + - Lighter + - CigPackGreen + - CigPackRed + - CigPackBlue + - CigPackBlack + - CigarCase + - CigarGold + - ClothingNeckLGBTPin + - ClothingNeckAllyPin + - ClothingNeckAromanticPin + - ClothingNeckAsexualPin + - ClothingNeckAroacePin + - ClothingNeckBisexualPin + - ClothingNeckGayPin + - ClothingNeckIntersexPin + - ClothingNeckLesbianPin + - ClothingNeckNonBinaryPin + - ClothingNeckPansexualPin + - ClothingNeckPluralPin + - ClothingNeckOmnisexualPin + - ClothingNeckGenderqueerPin + - ClothingNeckGenderfluidPin + - ClothingNeckTransPin + - ClothingNeckAutismPin + - CardBoxBlack # GoobStation + - CardBoxNanotrasen # GoobStation + - FoodSnackLollypopWrapped # Goobstation + - FoodSnackLollypopWrappedRainbow # Goobstation + - FoodSnackLollypopWrappedCarp # Goobstation + - TowelColorBlack + - TowelColorDarkBlue + - TowelColorDarkGreen + - TowelColorGold + - TowelColorGray + - TowelColorGreen + - TowelColorLightBlue + - TowelColorLightBrown + - TowelColorMaroon + - TowelColorMime + - TowelColorOrange + - TowelColorPurple + - TowelColorRed + - TowelColorSilver + - TowelColorWhite + - TowelColorYellow # Begin DeltaV Additions - - GoldRing - - SilverRing - - Cane - - WhiteCane - - TapeRecorder + - GoldRing + - SilverRing + - Cane + - WhiteCane + - TapeRecorder # End DeltaV Additions - type: loadoutGroup @@ -233,30 +235,22 @@ name: loadout-group-glasses minLimit: 0 loadouts: - - Glasses - - GlassesJamjar - - GlassesJensen - - CheapSunglasses # Goobstation - + - Glasses + - GlassesJamjar + - GlassesJensen + - CheapSunglasses # Goobstation - type: loadoutGroup id: Animals # Goobstation name: loadout-group-animals minLimit: 0 maxLimit: 1 - loadouts: - - Squackroach - - Mouse - - Mothroach - - Goldfish - + loadouts: [Squackroach, Mouse, Mothroach, Goldfish] - type: loadoutGroup id: GroupTankHarness name: loadout-group-tank-harness minLimit: 1 hidden: true - loadouts: - - LoadoutTankHarness - + loadouts: [LoadoutTankHarness] - type: loadoutGroup id: Survival name: loadout-group-survival-basic @@ -275,433 +269,582 @@ name: loadout-group-EVA-tank hidden: true loadouts: - - LoadoutSpeciesEVANitrogen - - LoadoutSpeciesEVAOxygen + - LoadoutSpeciesEVANitrogen + - LoadoutSpeciesEVAOxygen # vox get a nitrogen tank, other species get nothing - type: loadoutGroup id: GroupEVATankVox name: loadout-group-vox-tank hidden: true - loadouts: - - LoadoutSpeciesVoxNitrogen - + loadouts: [LoadoutSpeciesVoxNitrogen] - type: loadoutGroup id: GroupPocketTankDouble name: loadout-group-pocket-tank-double hidden: true loadouts: - - LoadoutSpeciesPocketDoubleNitrogen - - LoadoutSpeciesPocketDoubleOxygen + - LoadoutSpeciesPocketDoubleNitrogen + - LoadoutSpeciesPocketDoubleOxygen # Command - type: loadoutGroup id: CaptainHead name: loadout-group-captain-head minLimit: 0 - loadouts: - - CaptainHead - - CaptainCap - + loadouts: [CaptainHead, CaptainCap] - type: loadoutGroup id: CaptainJumpsuit name: loadout-group-captain-jumpsuit + minLimit: 1 + exclusiveWith: INNERCLOTHING # Goobstation loadouts: - - CaptainJumpsuit - - CaptainJumpskirt - - CaptainFormalSuit - - CaptainFormalSkirt - - CaptainJumpsuitMilitary # goob - + - CaptainJumpsuit + - CaptainJumpskirt + - CaptainFormalSuit + - CaptainFormalSkirt + - CaptainJumpsuitMilitary # goob - type: loadoutGroup id: CaptainNeck name: loadout-group-captain-neck minLimit: 0 - loadouts: - - CaptainCloak - - CaptainCloakFormal - - CaptainMantle - + loadouts: [CaptainCloak, CaptainCloakFormal, CaptainMantle] - type: loadoutGroup id: CaptainBackpack name: loadout-group-captain-backpack + exclusiveWith: BACK # Goobstation loadouts: - - CaptainBackpack - - CaptainSatchel - - CaptainDuffel - - CaptainMessenger # Frontier - + - CaptainBackpack + - CaptainSatchel + - CaptainDuffel + - CaptainMessenger # Frontier - type: loadoutGroup id: CaptainOuterClothing name: loadout-group-captain-outerclothing + minLimit: 0 loadouts: - - CaptainOuterClothing - - CaptainWintercoat - - CaptainJacket # Goobstation - + - CaptainOuterClothing + - CaptainWintercoat + - CaptainJacket # Goobstation - type: loadoutGroup id: HoPHead name: loadout-group-hop-head minLimit: 0 - loadouts: - - HoPHead - + loadouts: [HoPHead] - type: loadoutGroup id: HoPJumpsuit name: loadout-group-hop-jumpsuit + minLimit: 1 + exclusiveWith: INNERCLOTHING # Goobstation loadouts: - - HoPJumpsuit - - HoPJumpskirt - - HoPJumpsuitMilitary # goob - + - HoPJumpsuit + - HoPJumpskirt + - HoPJumpsuitMilitary # goob - type: loadoutGroup id: HoPNeck name: loadout-group-hop-neck minLimit: 0 - loadouts: - - HoPCloak - - HoPMantle - + loadouts: [HoPCloak, HoPMantle] - type: loadoutGroup id: HoPBackpack name: loadout-group-hop-backpack + exclusiveWith: BACK # Goobstation loadouts: - - CommonBackpack - - CommonSatchel - - CommonDuffel - - CommonMessenger # Frontier - - HoPBackpackIan - + - CommonBackpack + - CommonSatchel + - CommonDuffel + - CommonMessenger # Frontier + - HoPBackpackIan - type: loadoutGroup id: HoPOuterClothing name: loadout-group-hop-outerclothing minLimit: 0 loadouts: - - HoPWintercoat + - HoPWintercoat # Civilian - type: loadoutGroup - id: PassengerJumpsuit - name: loadout-group-passenger-jumpsuit - loadouts: - - GreyJumpsuit - - GreyJumpskirt - - AncientJumpsuit - - RainbowJumpsuit - - RainbowJumpskirt + id: CivilianJumpsuit + name: loadout-group-civilian-jumpsuit + minLimit: 0 + exclusiveWith: INNERCLOTHING # Goobstation + loadouts: + - GreyJumpsuit + - GreyJumpskirt + - AncientJumpsuit + - RainbowJumpsuit + - RainbowJumpskirt + # Goobstation Loadout Rework Start + - AssymetricDress # EE + - EveningDress # EE + - MidiDress # EE + - TeaDress # EE + - SlevelessDress # EE + - LongSleeveDress # EE + - BlackNGoldDress # EE + - TangoDress # EE + - CheonsamGreenDress # EE + - CheonsamPurpleDress # EE + - CheonsamRedDress # EE + - CheonsamWhiteDress # EE + - BlueSundress # EE + - ClubDress # EE + - CovetDress # EE + - FlamencoDress # EE + - FireDress # EE + - OrangeDress # EE + - YellowDress # EE + - FlowergirlDress # EE + - FluffyDress # EE + - FormalRedDress # EE + - GothicDress # EE + - OutfitKimono # EE + - LacyGownDress # EE + - LongLongDress # EE + - FlaredDressOutfit # EE + - QipaoOutfit # EE + - QipaoOutfitSlim # EE + - RedSweptDressOutfit # EE + - GymBraOutfit # EE + - PuffyDressOutfit # EE + - SailorDress # EE + - StripedDress # EE + - SundressOutfit # EE + - SundressOutfitWhite # EE + - VictorianBlackDress # EE + - VictorianRedDress # EE + - YellowSwoopDress # EE + - NekoArcCurse # Nyanotrasen + - GeishaOutfit # Nyanotrasen + - JumpsuitTShirtJeans # Nyanotrasen + - JumpsuitTShirtJeansGray # Nyanotrasen + - JumpsuitTShirtJeansKhaki # Nyanotrasen + - JumpsuitTShirtJeansPeach # Nyanotrasen + - FlannelJeansJumpsuit # EE + - BlackFlannelJeansJumpsuit # EE + - BlackKhakiFlannelJeansJumpsuit # EE + - BlueBlazerJumpsuit # EE + - CheckeredSuitOutfit # EE + - OliveSweaterOutfit # EE + - VictorianBlackRedVest # EE + - VictorianRedVest # EE + - VictorianVest # EE + - GymBra # EE + - RippedPunk # EE + - ClothingCostumeMioSkirtOutfit # Nyanotrasen + - ClothingCostumeNaotaOutfit # Nyanotrasen + - ClothingUniformRatOutfit # Nyanotrasen + - ClothingUniformDressRedOutfit # Nyanotrasen + - ClothingUniformKendoHakamaOutfit # Nyanotrasen + - ClothingKimonoBlueOutfit # Nyanotrasen + - ClothingKimonoPinkOutfit # Nyanotrasen + - ClothingKimonoPurpleOutfit # Nyanotrasen + - ClothingKimonoSkyOutfit # Nyanotrasen + - ClothingKimonoGreenOutfit # Nyanotrasen + - UniformSchoolgirlDuskOutfit # Nyanotrasen + - UniformSchoolgirlBlazerTanOutfit # Nyanotrasen + - ClothingUniformMNKOfficeSkirtOutfit # Nyanotrasen + - ClothingUniformMNKUnderGarmentOutfit # Nyanotrasen + - ClothingUniformMNKGymBraOutfit # Nyanotrasen + - ClothingUniformMNKDressBlackOutfit # Nyanotrasen + - ClothingUniformMNKBlackOverallsOutfit # Nyanotrasen + - ClothingUniformMNKBlackShoulderOutfit # Nyanotrasen + - ClothingUniformMNKTracksuitBlackOutfit # Nyanotrasen + # Goobstation Loadout Rework End # goob changes start - - GreyMJ - - BlackMJ - - BlueMJ - - DarkBlueMJ - - TealMJ - - GreenMJ - - DarkGreenMJ - - OrangeMJ - - PinkMJ - - RedMJ - - YellowMJ - - PurpleMJ - - LightBrownMJ - - BrownMJ - - MaroonMJ + - GreyMJ + - BlackMJ + - BlueMJ + - DarkBlueMJ + - TealMJ + - GreenMJ + - DarkGreenMJ + - OrangeMJ + - PinkMJ + - RedMJ + - YellowMJ + - PurpleMJ + - LightBrownMJ + - BrownMJ + - MaroonMJ # goob changes end - type: loadoutGroup - id: PassengerFace - name: loadout-group-passenger-mask - minLimit: 0 - loadouts: - - PassengerFace + id: CivilianJumpsuitRequired #Passengers need to be forced to spawn with clothes. + parent: CivilianJumpsuit #They can have the same clothes as everyone else. + minLimit: 1 #But they better have clothes on. - type: loadoutGroup - id: PassengerGloves - name: loadout-group-passenger-gloves + id: CivilianHat + name: loadout-group-civilian-hat minLimit: 0 - loadouts: - - PassengerGloves - -- type: loadoutGroup - id: CommonBackpack - name: loadout-group-backpack - loadouts: - - CommonBackpack - - CommonSatchel - - CommonDuffel - - CommonMessenger # Frontier + loadouts: [HeadbandBlack] - type: loadoutGroup - id: PassengerNeck - name: loadout-group-passenger-neck + id: CivilianFace + name: loadout-group-civilian-mask minLimit: 0 - loadouts: - - Mantle - - OldNeckWrap # EE + loadouts: [GreyTiderMask] - type: loadoutGroup - id: PassengerOuterClothing - name: loadout-group-passenger-outerclothing + id: CivilianGloves + name: loadout-group-civilian-gloves minLimit: 0 loadouts: - - PassengerWintercoat + - GreyTiderGloves + #Goobstation Loadout Rework Start + - BlackGloves + - WhiteGloves + - PurpleGloves + - RedGloves + - BlueGloves + - TealGloves + - BrownGloves + - GrayGloves + - GreenGloves + - LightBrownGloves + - OrangeGloves + #Goobstation Loadout Rework End - type: loadoutGroup - id: PassengerShoes - name: loadout-group-passenger-shoes - loadouts: - - BlackShoes - - WinterBoots + id: CivilianBackpack + name: loadout-group-backpack + exclusiveWith: BACK # Goobstation + loadouts: + - CommonBackpack + - CommonSatchel + - CommonDuffel + - CommonMessenger # Frontier + # Goobstation Loadout Rework Start + - ClothingPurse # EE Stuff + - LeatherSatchel + # Goobstation Loadout Rework End + +- type: loadoutGroup + id: CivilianNeck + name: loadout-group-civilian-neck + minLimit: 0 + loadouts: + - Mantle + - OldNeckWrap # EE + # Goobstation Loadout Rework Start + - FurWrap # EE + - NeckScarfBlack + - NeckScarfBlue + - NeckScarfGreen + - NeckScarfOrange + - NeckScarfRed + - NeckScarfPurple + - NeckTieRed + # Goobstation Loadout Rework End + +- type: loadoutGroup + id: CivilianOuterClothing + name: loadout-group-civilian-outerclothing + minLimit: 0 + loadouts: + - PassengerWintercoat + # Goobstation Loadout Rework Start + - PassengerRedVictorianCoat # EE + - PassengerBlackVictorianCoat # EE + - LettermanJacketBlue # Nyanotrasen + - LettermanJacketRed # Nyanotrasen + - PassengerWinterCoatLong # Nyanotrasen + - PassengerWinterCoatPlaid # Nyanotrasen + - LettermanJacketBrown + - LettermanJacketMagenta + - Bomber + - BomberAerostatic # Frontier + - BomberPunkRed # Frontier + - BomberPinkSleeves # Frontier + - HoodieBlack + - HoodieGrey + - HyenhSweater # Nyanotrasen + - Vest + - VestThick # EE + - MNKWhiteHoodie # Nyanotrasen + - MNKBlackTopCoat # Nyanotrasen + - MNKBlackJacket # Nyanotrasen + - DenimJacket # DV + - FlannelRed + - FlannelGreen + - FlannelBlue + - Trench + - Jensen + - Gentle + - Inspector # EE + - Overcoat # DV + - JacketLeather # Frontier + - JacketBiker # Frontier + - JacketJamrock # Frontier + - AcidRaincoat # Frontier + - AcidRaincoatBlue # Frontier + - AcidRaincoatGreen # Frontier + - AcidRaincoatMagenta # Frontier + - AcidRaincoatYellow # Frontier + - SuitJacket # EE + - Modern # EE + - Tailcoat # EE + - Cardigan # EE + - CardiganArgyle # EE + - CardiganSweater # EE + - CowboyDuster + - Blazer # EE + - BlazerLong # EE + - BlazerFormal # EE + - BlazerLooseSleeve # EE + - BlazerFlatCollar # EE + - BlazerPosh + - CoatPeacoat # EE + - CoatAsymmetric # EE + - CoatSubmariner # EE + - CoatExpensive + - SuitWitchRobes + # Goobstation Loadout Rework End + +- type: loadoutGroup + id: CivilianBelt # Goobstation Loadout Rework Addition + name: loadout-group-civilian-belt + minLimit: 0 + loadouts: [WaistLeatherBag] + +- type: loadoutGroup + id: CivilianShoes + name: loadout-group-civilian-shoes + minLimit: 0 + exclusiveWith: FEET #Goostation + loadouts: + - BlackShoes + - WinterBoots + # Goob Loadouts Rework Start + - LoadoutWorkBoots + - LoadoutSalvageBoots + - LaceupShoes + - JackBootsFake + - CombatBootsFake + - MercBootsFake + - CowboyBootsBrown + - CowboyBootsBlack + - CowboyBootsWhite + - CowboyBootsFancy + # Goob Loadouts Rework End + +- type: loadoutGroup + id: CivilianShoesRequired + parent: CivilianShoes + minLimit: 1 #Passengers also need to be forced to wear shoes. - type: loadoutGroup id: BartenderHead name: loadout-group-bartender-head minLimit: 0 - loadouts: - - BartenderHead - - BartenderBowler - + loadouts: [BartenderHead, BartenderBowler] - type: loadoutGroup id: BartenderJumpsuit name: loadout-group-bartender-jumpsuit + minLimit: 1 + exclusiveWith: INNERCLOTHING # Goobstation loadouts: - - BartenderJumpsuit - - BartenderJumpskirt - - BartenderJumpsuitPurple - - ServiceMJ # goob - + - BartenderJumpsuit + - BartenderJumpskirt + - BartenderJumpsuitPurple + - ServiceMJ # goob + - WaitressUniform # EE - type: loadoutGroup id: BartenderOuterClothing name: loadout-group-bartender-outerclothing minLimit: 0 - loadouts: - - BartenderVest - - BartenderApron - - BartenderWintercoat - + loadouts: [BartenderVest, BartenderApron, BartenderWintercoat] - type: loadoutGroup id: ChefHead name: loadout-group-chef-head minLimit: 0 - loadouts: - - ChefHead - + loadouts: [ChefHead] - type: loadoutGroup id: ChefMask name: loadout-group-chef-mask minLimit: 0 - loadouts: - - ChefMask - + loadouts: [ChefMask] - type: loadoutGroup id: ChefJumpsuit name: loadout-group-chef-jumpsuit + minLimit: 1 + exclusiveWith: INNERCLOTHING # Goobstation loadouts: - - ChefJumpsuit - - ChefJumpskirt - - ServiceMJ # goob - + - ChefJumpsuit + - ChefJumpskirt + - ServiceMJ # goob - type: loadoutGroup id: ChefOuterClothing name: loadout-group-chef-outerclothing minLimit: 0 - loadouts: - - ChefApron - - ChefJacket - - ChefWintercoat - + loadouts: [ChefApron, ChefJacket, ChefWintercoat] - type: loadoutGroup id: LibrarianJumpsuit name: loadout-group-librarian-jumpsuit + minLimit: 1 + exclusiveWith: INNERCLOTHING # Goobstation loadouts: - - LibrarianJumpsuit - - LibrarianJumpskirt - - CuratorJumpsuit - - CuratorJumpskirt - - ServiceMJ # goob - + - LibrarianJumpsuit + - LibrarianJumpskirt + - CuratorJumpsuit + - CuratorJumpskirt + - ServiceMJ # goob - type: loadoutGroup id: LawyerJumpsuit name: loadout-group-lawyer-jumpsuit - loadouts: - - LawyerJumpsuit - - LawyerJumpskirt - - LawyerJumpsuitBlue - - LawyerJumpskirtBlue - - LawyerJumpsuitPurple - - LawyerJumpskirtPurple - - LawyerJumpsuitRed - - LawyerJumpskirtRed - - LawyerJumpsuitGood - - LawyerJumpskirtGood - - ServiceMJ # goob - + minLimit: 1 + exclusiveWith: INNERCLOTHING # Goobstation + loadouts: + - LawyerJumpsuit + - LawyerJumpskirt + - LawyerJumpsuitBlue + - LawyerJumpskirtBlue + - LawyerJumpsuitPurple + - LawyerJumpskirtPurple + - LawyerJumpsuitRed + - LawyerJumpskirtRed + - LawyerJumpsuitGood + - LawyerJumpskirtGood + - ServiceMJ # goob - type: loadoutGroup id: LawyerNeck name: loadout-group-lawyer-neck minLimit: 0 - loadouts: - - LawyerNeck - + loadouts: [LawyerNeck] - type: loadoutGroup id: ChaplainHead name: loadout-group-chaplain-head minLimit: 0 loadouts: - - ChaplainHead - - ChaplainNunHood - - ChaplainPlagueHat - - ChaplainWitchHat - - ChaplainWitchHatAlt - + - ChaplainHead + - ChaplainNunHood + - ChaplainPlagueHat + - ChaplainWitchHat + - ChaplainWitchHatAlt - type: loadoutGroup id: ChaplainMask name: loadout-group-chaplain-mask minLimit: 0 - loadouts: - - ChaplainMask - + loadouts: [ChaplainMask] - type: loadoutGroup id: ChaplainJumpsuit name: loadout-group-chaplain-jumpsuit + minLimit: 1 + exclusiveWith: INNERCLOTHING # Goobstation loadouts: - - ChaplainJumpsuit - - ChaplainJumpskirt - - ChaplainRobesLight - - ChaplainRobesDark - - ServiceMJ # goob - + - ChaplainJumpsuit + - ChaplainJumpskirt + - ChaplainRobesLight + - ChaplainRobesDark + - ServiceMJ # goob - type: loadoutGroup id: ChaplainOuterClothing name: loadout-group-chaplain-outerclothing minLimit: 0 loadouts: - - ChaplainPlagueSuit - - ChaplainNunRobe - - ChaplainBlackHoodie - - ChaplainHoodie - + - ChaplainPlagueSuit + - ChaplainNunRobe + - ChaplainBlackHoodie + - ChaplainHoodie - type: loadoutGroup id: ChaplainNeck name: loadout-group-chaplain-neck minLimit: 0 - loadouts: - - ChaplainNeck - + loadouts: [ChaplainNeck] - type: loadoutGroup id: JanitorHead name: loadout-group-janitor-head minLimit: 0 - loadouts: - - JanitorHead - + loadouts: [JanitorHead] - type: loadoutGroup id: JanitorJumpsuit name: loadout-group-janitor-jumpsuit + minLimit: 1 + exclusiveWith: INNERCLOTHING # Goobstation loadouts: - - JanitorJumpsuit - - JanitorJumpskirt - - ServiceMJ # goob - + - JanitorJumpsuit + - JanitorJumpskirt + - ServiceMJ # goob + - MaidOutfitJanitor - type: loadoutGroup id: JanitorGloves name: loadout-group-janitor-gloves minLimit: 0 - loadouts: - - JanitorRubberGloves - - OrangeGloves - - PurpleGloves - + loadouts: [JanitorRubberGloves, OrangeGloves, PurpleGloves] - type: loadoutGroup id: JanitorOuterClothing name: loadout-group-janitor-outerclothing minLimit: 0 - loadouts: - - JanitorWintercoat - + loadouts: [JanitorWintercoat] - type: loadoutGroup id: JanitorPlunger name: loadout-group-janitor-plunger minLimit: 0 - loadouts: - - JanitorGoldenPlunger - + loadouts: [JanitorGoldenPlunger] - type: loadoutGroup id: BotanistHead name: loadout-group-botanist-head minLimit: 0 loadouts: - - BotanistHead - - BotanistBandana - - BotanistBeret # Goobstation - + - BotanistHead + - BotanistBandana + - BotanistBeret # Goobstation - type: loadoutGroup id: BotanistJumpsuit name: loadout-group-botanist-jumpsuit + minLimit: 1 + exclusiveWith: INNERCLOTHING # Goobstation loadouts: - - BotanistJumpsuit - - BotanistJumpskirt - - BotanistOveralls - - ServiceMJ # goob - - HydroMJ # goob - + - BotanistJumpsuit + - BotanistJumpskirt + - BotanistOveralls + - ServiceMJ # goob + - HydroMJ # goob - type: loadoutGroup id: BotanistBackpack name: loadout-group-botanist-backpack + exclusiveWith: BACK # Goobstation loadouts: - - BotanistBackpack - - BotanistSatchel - - BotanistDuffel - - BotanistMessenger # Frontier - + - BotanistBackpack + - BotanistSatchel + - BotanistDuffel + - BotanistMessenger # Frontier - type: loadoutGroup id: BotanistOuterClothing name: loadout-group-botanist-outerclothing minLimit: 0 - loadouts: - - BotanistApron - - BotanistWintercoat - + loadouts: [BotanistApron, BotanistWintercoat] - type: loadoutGroup id: ClownHead name: loadout-group-clown-head minLimit: 0 - loadouts: - - JesterHat - - JesterAltHat - + loadouts: [JesterHat, JesterAltHat] - type: loadoutGroup id: ClownJumpsuit name: loadout-group-clown-jumpsuit - loadouts: - - ClownSuit - - ClownSkirt - - JesterSuit - - JesterAltSuit - + minLimit: 1 + exclusiveWith: INNERCLOTHING # Goobstation + loadouts: [ClownSuit, ClownSkirt, JesterSuit, JesterAltSuit] - type: loadoutGroup id: ClownBackpack name: loadout-group-clown-backpack + exclusiveWith: BACK # Goobstation loadouts: - - ClownBackpack - - ClownSatchel - - ClownDuffel - - ClownMessenger # Frontier - + - ClownBackpack + - ClownSatchel + - ClownDuffel + - ClownMessenger # Frontier - type: loadoutGroup id: ClownOuterClothing name: loadout-group-clown-outerclothing minLimit: 0 - loadouts: - - ClownRobes - - ClownWintercoat - + loadouts: [ClownRobes, ClownWintercoat] - type: loadoutGroup id: ClownShoes name: loadout-group-clown-shoes - loadouts: - - ClownShoes - - JesterShoes - + minLimit: 1 + exclusiveWith: FEET #Goostation + loadouts: [ClownShoes, JesterShoes] - type: loadoutGroup id: SurvivalClown name: loadout-group-survival-clown @@ -718,49 +861,37 @@ id: MimeHead name: loadout-group-mime-head minLimit: 0 - loadouts: - - MimeHead - - MimeFrenchBeret - - MimeCap - + loadouts: [MimeHead, MimeFrenchBeret, MimeCap] - type: loadoutGroup id: MimeMask name: loadout-group-mime-mask - loadouts: - - MimeMask - - MimeMaskSad - - MimeMaskScared - + minLimit: 0 + loadouts: [MimeMask, MimeMaskSad, MimeMaskScared] - type: loadoutGroup id: MimeJumpsuit name: loadout-group-mime-jumpsuit - loadouts: - - MimeJumpsuit - - MimeJumpskirt - + minLimit: 1 + exclusiveWith: INNERCLOTHING # Goobstation + loadouts: [MimeJumpsuit, MimeJumpskirt] - type: loadoutGroup id: MimeBackpack name: loadout-group-mime-backpack + exclusiveWith: BACK # Goobstation loadouts: - - MimeBackpack - - MimeSatchel - - MimeDuffel - - MimeMessenger # Frontier - + - MimeBackpack + - MimeSatchel + - MimeDuffel + - MimeMessenger # Frontier - type: loadoutGroup id: MimeOuterClothing name: loadout-group-mime-outerclothing minLimit: 0 - loadouts: - - MimeWintercoat - + loadouts: [MimeWintercoat] - type: loadoutGroup id: MimeBelt name: loadout-group-mime-belt - loadouts: - - MimeSuspendersRed - - MimeSuspendersBlack - + minLimit: 0 + loadouts: [MimeSuspendersRed, MimeSuspendersBlack] - type: loadoutGroup id: SurvivalMime name: loadout-group-survival-mime @@ -777,302 +908,274 @@ - type: loadoutGroup id: MusicianJumpsuit name: loadout-group-musician-jumpsuit + minLimit: 1 + exclusiveWith: INNERCLOTHING # Goobstation loadouts: - - MusicianJumpsuit - - MusicianJumpskirt - - ServiceMJ # goob - + - MusicianJumpsuit + - MusicianJumpskirt + - ServiceMJ # goob - type: loadoutGroup id: MusicianOuterClothing name: loadout-group-musician-outerclothing minLimit: 0 - loadouts: - - MusicianWintercoat - + loadouts: [MusicianWintercoat] - type: loadoutGroup id: Instruments name: loadout-group-instruments minLimit: 0 maxLimit: 2 loadouts: - - Glockenspiel - - MusicBox - - Xylophone - - Microphone - - Synthesizer - - Kalimba - - Woodblock - - ElectricGuitar - - BassGuitar - - RockGuitar - - AcousticGuitar - - Banjo - - Violin - - Viola - - Cello - - Trumpet - - Trombone - - FrenchHorn - - Euphonium - - Saxophone - - Accordion - - Harmonica - - Clarinet - - Flute - - Recorder - - PanFlute - - Ocarina - - Bagpipe + - Glockenspiel + - MusicBox + - Xylophone + - Microphone + - Synthesizer + - Kalimba + - Woodblock + - ElectricGuitar + - BassGuitar + - RockGuitar + - AcousticGuitar + - Banjo + - Violin + - Viola + - Cello + - Trumpet + - Trombone + - FrenchHorn + - Euphonium + - Saxophone + - Accordion + - Harmonica + - Clarinet + - Flute + - Recorder + - PanFlute + - Ocarina + - Bagpipe # Cargo - type: loadoutGroup id: QuartermasterHead name: loadout-group-quartermaster-head minLimit: 0 - loadouts: - - QuartermasterHead - - QuartermasterBeret - + loadouts: [QuartermasterHead, QuartermasterBeret] - type: loadoutGroup id: QuartermasterJumpsuit name: loadout-group-quartermaster-jumpsuit + minLimit: 1 + exclusiveWith: INNERCLOTHING # Goobstation loadouts: - - QuartermasterJumpsuit - - QuartermasterJumpskirt - - QuartermasterTurtleneck - - QuartermasterTurtleneckSkirt - - QuartermasterFormalSuit - - QuartermasterMJ # goob - + - QuartermasterJumpsuit + - QuartermasterJumpskirt + - QuartermasterTurtleneck + - QuartermasterTurtleneckSkirt + - QuartermasterFormalSuit + - QuartermasterMJ # goob - type: loadoutGroup id: QuartermasterNeck name: loadout-group-quartermaster-neck minLimit: 0 - loadouts: - - QuartermasterCloak - - QuartermasterMantle - + loadouts: [QuartermasterCloak, QuartermasterMantle] - type: loadoutGroup id: QuartermasterOuterClothing name: loadout-group-quartermaster-outerclothing minLimit: 0 - loadouts: - - QuartermasterWintercoat - + loadouts: [QuartermasterWintercoat] - type: loadoutGroup id: QuartermasterShoes name: loadout-group-quartermaster-shoes - loadouts: - - BrownShoes - - CargoWinterBoots - + minLimit: 1 + exclusiveWith: FEET #Goostation + loadouts: [BrownShoes, CargoWinterBoots] - type: loadoutGroup id: CargoTechnicianHead name: loadout-group-cargo-technician-head minLimit: 0 loadouts: - - CargoTechnicianHead - - CargoTechnicianHeadMail # Goob/DeltaV - Mail - + - CargoTechnicianHead + - CargoTechnicianHeadMail # Goob/DeltaV - Mail - type: loadoutGroup id: CargoTechnicianJumpsuit name: loadout-group-cargo-technician-jumpsuit + minLimit: 1 + exclusiveWith: INNERCLOTHING # Goobstation loadouts: - - CargoTechnicianJumpsuit - - CargoTechnicianJumpskirt - - CargoTechnicianJumpsuitMail # Goob/DeltaV - Mail - - CargoTechnicianJumpskirtMail # Goob/DeltaV - Mail - - CargoTechMJ # goob - + - CargoTechnicianJumpsuit + - CargoTechnicianJumpskirt + - CargoTechnicianJumpsuitMail # Goob/DeltaV - Mail + - CargoTechnicianJumpskirtMail # Goob/DeltaV - Mail + - CargoTechMJ # goob - type: loadoutGroup id: CargoTechnicianBackpack name: loadout-group-cargo-technician-backpack + exclusiveWith: BACK # Goobstation loadouts: - - CargoTechnicianBackpack - - CargoTechnicianSatchel - - CargoTechnicianDuffel - - CargoTechnicianMessenger # Frontier - + - CargoTechnicianBackpack + - CargoTechnicianSatchel + - CargoTechnicianDuffel + - CargoTechnicianMessenger # Frontier - type: loadoutGroup id: CargoTechnicianOuterClothing name: loadout-group-cargo-technician-outerclothing minLimit: 0 loadouts: - - CargoTechnicianWintercoat - - CargoTechnicianWintercoatMail # Goob/DeltaV - Mail - + - CargoTechnicianWintercoat + - CargoTechnicianWintercoatMail # Goob/DeltaV - Mail - type: loadoutGroup id: CargoTechnicianShoes name: loadout-group-cargo-technician-shoes - loadouts: - - BlackShoes - - CargoWinterBoots - + minLimit: 1 + exclusiveWith: FEET #Goostation + loadouts: [BlackShoes, CargoWinterBoots] - type: loadoutGroup id: SalvageSpecialistBackpack name: loadout-group-salvage-specialist-backpack + exclusiveWith: BACK # Goobstation loadouts: - - SalvageSpecialistBackpack - - SalvageSpecialistSatchel - - SalvageSpecialistDuffel - - SalvageSpecialistMessenger # Frontier - + - SalvageSpecialistBackpack + - SalvageSpecialistSatchel + - SalvageSpecialistDuffel + - SalvageSpecialistMessenger # Frontier - type: loadoutGroup id: SalvageSpecialistOuterClothing name: loadout-group-salvage-specialist-outerclothing minLimit: 0 - loadouts: - - SalvageSpecialistWintercoat - + loadouts: [SalvageSpecialistWintercoat] - type: loadoutGroup id: SalvageSpecialistShoes name: loadout-group-salvage-specialist-shoes + minLimit: 1 + exclusiveWith: FEET #Goostation loadouts: - - SalvageBoots - - CargoWinterBoots + - SalvageBoots + - CargoWinterBoots # Engineering - type: loadoutGroup id: ChiefEngineerHead name: loadout-group-chief-engineer-head minLimit: 0 - loadouts: - - ChiefEngineerHead - - ChiefEngineerBeret - + loadouts: [ChiefEngineerHead, ChiefEngineerBeret] - type: loadoutGroup id: ChiefEngineerJumpsuit name: loadout-group-chief-engineer-jumpsuit + minLimit: 1 + exclusiveWith: INNERCLOTHING # Goobstation loadouts: - - ChiefEngineerJumpsuit - - ChiefEngineerJumpskirt - - ChiefEngineerTurtleneck - - ChiefEngineerTurtleneckSkirt - - ChiefEngineerMJ # goob - + - ChiefEngineerJumpsuit + - ChiefEngineerJumpskirt + - ChiefEngineerTurtleneck + - ChiefEngineerTurtleneckSkirt + - ChiefEngineerMJ # goob - type: loadoutGroup id: ChiefEngineerNeck name: loadout-group-chief-engineer-neck minLimit: 0 - loadouts: - - ChiefEngineerCloak - - ChiefEngineerMantle - + loadouts: [ChiefEngineerCloak, ChiefEngineerMantle] - type: loadoutGroup id: ChiefEngineerOuterClothing name: loadout-group-chief-engineer-outerclothing minLimit: 0 - loadouts: - - ChiefEngineerWintercoat - + loadouts: [ChiefEngineerWintercoat] - type: loadoutGroup id: ChiefEngineerShoes name: loadout-group-chief-engineer-shoes - loadouts: - - BrownShoes - - EngineeringWinterBoots - + minLimit: 1 + exclusiveWith: FEET #Goostation + loadouts: [BrownShoes, EngineeringWinterBoots] - type: loadoutGroup id: TechnicalAssistantJumpsuit name: loadout-group-technical-assistant-jumpsuit + minLimit: 1 + exclusiveWith: INNERCLOTHING # Goobstation loadouts: - - YellowJumpsuit - - YellowJumpskirt - - EngiMJ # goob - + - YellowJumpsuit + - YellowJumpskirt + - EngiMJ # goob - type: loadoutGroup id: StationEngineerHead name: loadout-group-station-engineer-head minLimit: 0 loadouts: - - StationEngineerHardhatYellow - - StationEngineerHardhatOrange - - StationEngineerHardhatRed - - SeniorEngineerBeret - + - StationEngineerHardhatYellow + - StationEngineerHardhatOrange + - StationEngineerHardhatRed + - SeniorEngineerBeret - type: loadoutGroup id: StationEngineerJumpsuit name: loadout-group-station-engineer-jumpsuit + minLimit: 1 + exclusiveWith: INNERCLOTHING # Goobstation loadouts: - - StationEngineerJumpsuit - - StationEngineerJumpskirt - - StationEngineerHazardsuit - - SeniorEngineerJumpsuit - - SeniorEngineerJumpskirt - - EngiMJ # goob - + - StationEngineerJumpsuit + - StationEngineerJumpskirt + - StationEngineerHazardsuit + - SeniorEngineerJumpsuit + - SeniorEngineerJumpskirt + - EngiMJ # goob - type: loadoutGroup id: StationEngineerBackpack name: loadout-group-station-engineer-backpack + exclusiveWith: BACK # Goobstation loadouts: - - StationEngineerBackpack - - StationEngineerSatchel - - StationEngineerDuffel - - StationEngineerMessenger # Frontier - + - StationEngineerBackpack + - StationEngineerSatchel + - StationEngineerDuffel + - StationEngineerMessenger # Frontier - type: loadoutGroup id: StationEngineerOuterClothing name: loadout-group-station-engineer-outerclothing minLimit: 0 - loadouts: - - StationEngineerOuterVest - - StationEngineerWintercoat - + loadouts: [StationEngineerOuterVest, StationEngineerWintercoat] - type: loadoutGroup id: StationEngineerShoes name: loadout-group-station-engineer-shoes - loadouts: - - WorkBoots - - EngineeringWinterBoots - + minLimit: 1 + exclusiveWith: FEET #Goostation + loadouts: [WorkBoots, EngineeringWinterBoots] - type: loadoutGroup id: StationEngineerID name: loadout-group-station-engineer-id - loadouts: - - StationEngineerPDA - - SeniorEngineerPDA - + loadouts: [StationEngineerPDA, SeniorEngineerPDA] - type: loadoutGroup id: AtmosphericTechnicianHead name: loadout-group-atmospheric-technician-head minLimit: 0 loadouts: - - SeniorEngineerBeret # Goobstation - + - SeniorEngineerBeret # Goobstation - type: loadoutGroup id: AtmosphericTechnicianJumpsuit name: loadout-group-atmospheric-technician-jumpsuit + minLimit: 1 + exclusiveWith: INNERCLOTHING # Goobstation loadouts: - - AtmosphericTechnicianJumpsuit - - AtmosphericTechnicianJumpskirt - - AtmosphericTechnicianJumpsuitCasual - - SeniorEngineerJumpskirt # Goobstation - - SeniorEngineerJumpsuit # Goobstation - - AtmosMJ # goob - + - AtmosphericTechnicianJumpsuit + - AtmosphericTechnicianJumpskirt + - AtmosphericTechnicianJumpsuitCasual + - SeniorEngineerJumpskirt # Goobstation + - SeniorEngineerJumpsuit # Goobstation + - AtmosMJ # goob - type: loadoutGroup id: AtmosphericTechnicianOuterClothing name: loadout-group-atmospheric-technician-outerclothing minLimit: 0 - loadouts: - - AtmosphericTechnicianWintercoat - + loadouts: [AtmosphericTechnicianWintercoat] - type: loadoutGroup id: AtmosphericTechnicianBackpack name: loadout-group-atmospheric-technician-backpack + exclusiveWith: BACK # Goobstation loadouts: - - AtmosphericTechnicianBackpack - - AtmosphericTechnicianSatchel - - AtmosphericTechnicianDuffel - - AtmosphericTechnicianMessenger # Frontier - + - AtmosphericTechnicianBackpack + - AtmosphericTechnicianSatchel + - AtmosphericTechnicianDuffel + - AtmosphericTechnicianMessenger # Frontier - type: loadoutGroup id: AtmosphericTechnicianShoes name: loadout-group-atmospheric-technician-shoes - loadouts: - - WhiteShoes - - EngineeringWinterBoots - + minLimit: 1 + exclusiveWith: FEET #Goostation + loadouts: [WhiteShoes, EngineeringWinterBoots] - type: loadoutGroup id: SurvivalExtended name: loadout-group-survival-extended @@ -1090,120 +1193,99 @@ id: ResearchDirectorHead name: loadout-group-research-director-head minLimit: 0 - loadouts: - - ResearchDirectorBeret - + loadouts: [ResearchDirectorBeret] - type: loadoutGroup id: ResearchDirectorNeck name: loadout-group-research-director-neck minLimit: 0 - loadouts: - - ResearchDirectorMantle - - ResearchDirectorCloak - + loadouts: [ResearchDirectorMantle, ResearchDirectorCloak] - type: loadoutGroup id: ResearchDirectorJumpsuit name: loadout-group-research-director-jumpsuit + minLimit: 1 + exclusiveWith: INNERCLOTHING # Goobstation loadouts: - - ResearchDirectorJumpsuit - - ResearchDirectorJumpskirt - - ResearchDirectorMJ # goob - + - ResearchDirectorJumpsuit + - ResearchDirectorJumpskirt + - ResearchDirectorMJ # goob - type: loadoutGroup id: ResearchDirectorOuterClothing name: loadout-group-research-director-outerclothing minLimit: 0 - loadouts: - - ResearchDirectorLabCoat - - ResearchDirectorWintercoat - + loadouts: [ResearchDirectorLabCoat, ResearchDirectorWintercoat] - type: loadoutGroup id: ResearchDirectorShoes name: loadout-group-research-director-shoes - loadouts: - - BrownShoes - - ScienceWinterBoots - + minLimit: 1 + exclusiveWith: FEET #Goostation + loadouts: [BrownShoes, ScienceWinterBoots] - type: loadoutGroup id: ScientistHead name: loadout-group-scientist-head minLimit: 0 - loadouts: - - RoboticistCap - - SkullBandana - - ScientificBeret - + loadouts: [RoboticistCap, SkullBandana, ScientificBeret] - type: loadoutGroup id: ScientistNeck name: loadout-group-scientist-neck minLimit: 0 - loadouts: - - ScientistTie - + loadouts: [ScientistTie] - type: loadoutGroup id: ScientistJumpsuit name: loadout-group-scientist-jumpsuit + minLimit: 1 + exclusiveWith: INNERCLOTHING # Goobstation loadouts: - - ScientistJumpsuit - - ScientistJumpskirt - - RoboticistJumpsuit - - RoboticistJumpskirt - - SeniorResearcherJumpsuit - - SeniorResearcherJumpskirt - - ResearchMJ # goob - + - ScientistJumpsuit + - ScientistJumpskirt + - RoboticistJumpsuit + - RoboticistJumpskirt + - SeniorResearcherJumpsuit + - SeniorResearcherJumpskirt + - ResearchMJ # goob - type: loadoutGroup id: ScientistBackpack name: loadout-group-scientist-backpack + exclusiveWith: BACK # Goobstation loadouts: - - ScientistBackpack - - ScientistSatchel - - ScientistDuffel - - ScientistMessenger # Frontier - + - ScientistBackpack + - ScientistSatchel + - ScientistDuffel + - ScientistMessenger # Frontier - type: loadoutGroup id: ScientistOuterClothing name: loadout-group-scientist-outerclothing minLimit: 0 loadouts: - - RegularLabCoat - - ScienceLabCoat - - ScienceWintercoat - - RoboticistLabCoat - - RoboticistWintercoat - - SeniorResearcherLabCoat - + - RegularLabCoat + - ScienceLabCoat + - ScienceWintercoat + - RoboticistLabCoat + - RoboticistWintercoat + - SeniorResearcherLabCoat - type: loadoutGroup id: ScientistShoes name: loadout-group-scientist-shoes - loadouts: - - WhiteShoes - - BlackShoes - - ScienceWinterBoots - + minLimit: 1 + exclusiveWith: FEET #Goostation + loadouts: [WhiteShoes, BlackShoes, ScienceWinterBoots] - type: loadoutGroup id: ScientistGloves name: loadout-group-scientist-gloves minLimit: 0 - loadouts: - - LatexGloves - - PurpleGloves - - RobohandsGloves - + loadouts: [LatexGloves, PurpleGloves, RobohandsGloves] - type: loadoutGroup id: ScientistPDA name: loadout-group-scientist-id - loadouts: - - ScientistPDA - - SeniorResearcherPDA - + loadouts: [ScientistPDA, SeniorResearcherPDA] - type: loadoutGroup id: ResearchAssistantJumpsuit name: loadout-group-research-assistant-jumpsuit + minLimit: 1 + exclusiveWith: INNERCLOTHING # Goobstation loadouts: - - WhiteJumpsuit - - WhiteJumpskirt - - ResearchMJ # goob + - WhiteJumpsuit + - WhiteJumpskirt + - ResearchMJ # goob # Security - type: loadoutGroup @@ -1211,165 +1293,149 @@ name: loadout-group-head-of-security-head minLimit: 0 loadouts: - - HeadofSecurityHead - - HeadofSecurityBeret - - HeadofSecuritySpecialBeret # Goobstation - + - HeadofSecurityHead + - HeadofSecurityBeret + - HeadofSecuritySpecialBeret # Goobstation - type: loadoutGroup id: HeadofSecurityJumpsuit name: loadout-group-head-of-security-jumpsuit + minLimit: 1 + exclusiveWith: INNERCLOTHING # Goobstation loadouts: - - HeadofSecurityJumpsuit - - HeadofSecurityJumpskirt - - HeadofSecurityTurtleneck - - HeadofSecurityTurtleneckSkirt - - HeadofSecurityFormalSuit - - HeadofSecurityFormalSkirt - + - HeadofSecurityJumpsuit + - HeadofSecurityJumpskirt + - HeadofSecurityTurtleneck + - HeadofSecurityTurtleneckSkirt + - HeadofSecurityFormalSuit + - HeadofSecurityFormalSkirt - type: loadoutGroup id: HeadofSecurityNeck name: loadout-group-head-of-security-neck minLimit: 0 loadouts: - - HeadofSecurityCloak - - HeadofSecurityMantle - - Bodycam # Goobstation - Body cameras - + - HeadofSecurityCloak + - HeadofSecurityMantle + - Bodycam # Goobstation - Body cameras - type: loadoutGroup id: HeadofSecurityOuterClothing name: loadout-group-head-of-security-outerclothing + minLimit: 0 loadouts: - - HeadofSecurityCoat - - HeadofSecurityWinterCoat - - HeadofSecurityGreatCoat # Goobstation - - HeadofSecurityVestWeb # Goobstation - + - HeadofSecurityCoat + - HeadofSecurityWinterCoat + - HeadofSecurityGreatCoat # Goobstation + - HeadofSecurityVestWeb # Goobstation - type: loadoutGroup id: WardenHead name: loadout-group-warden-head minLimit: 0 - loadouts: - - WardenHead - - WardenBeret - + loadouts: [WardenHead, WardenBeret] - type: loadoutGroup id: WardenJumpsuit name: loadout-group-warden-jumpsuit - loadouts: - - WardenJumpsuit - - WardenJumpskirt - + minLimit: 1 + exclusiveWith: INNERCLOTHING # Goobstation + loadouts: [WardenJumpsuit, WardenJumpskirt] - type: loadoutGroup id: WardenOuterClothing name: loadout-group-warden-outerclothing - loadouts: - - WardenCoat - - WardenArmoredWinterCoat - + minLimit: 0 + loadouts: [WardenCoat, WardenArmoredWinterCoat] - type: loadoutGroup id: SecurityHead name: loadout-group-security-head minLimit: 0 loadouts: - - SecurityHelmet - - SecurityHelmetAlt # Goobstation - - SecurityBeret - - SecurityHat - - TrooperHat - + - SecurityHelmet + - SecurityHelmetAlt # Goobstation + - SecurityBeret + - SecurityHat + - TrooperHat - type: loadoutGroup id: SecurityJumpsuit name: loadout-group-security-jumpsuit + minLimit: 1 + exclusiveWith: INNERCLOTHING # Goobstation loadouts: - - SecurityJumpsuit - - SecurityJumpskirt - - SecurityJumpsuitGrey - - SecurityJumpskirtGrey - - SeniorOfficerJumpsuit - - SeniorOfficerJumpskirt - - TrooperUniform - + - SecurityJumpsuit + - SecurityJumpskirt + - SecurityJumpsuitGrey + - SecurityJumpskirtGrey + - SeniorOfficerJumpsuit + - SeniorOfficerJumpskirt + - TrooperUniform + - SecuritySummerJumpsuit # Nyanotrasen - type: loadoutGroup id: SecurityBackpack name: loadout-group-security-backpack + exclusiveWith: BACK # Goobstation loadouts: - - SecurityBackpack - - SecuritySatchel - - SecurityDuffel - - SecurityMessenger # Frontier - + - SecurityBackpack + - SecuritySatchel + - SecurityDuffel + - SecurityMessenger # Frontier - type: loadoutGroup id: SecurityBelt name: loadout-group-security-belt + minLimit: 0 loadouts: - - SecurityBelt - - SecurityWebbing - - SecurityJudoBelt # Goobstation - Martial Arts - + - SecurityBelt + - SecurityWebbing + - SecurityJudoBelt # Goobstation - Martial Arts - type: loadoutGroup id: SecurityOuterClothing name: loadout-group-security-outerclothing + minLimit: 0 loadouts: - - ArmorVest - - ArmorVestSlim - - SecurityOfficerWintercoat - - WinterCoatSeniorSecArmored # Goobstation - + - ArmorVest + - ArmorVestSlim + - SecurityOfficerWintercoat + - WinterCoatSeniorSecArmored # Goobstation - type: loadoutGroup id: SecurityShoes name: loadout-group-security-shoes + minLimit: 1 loadouts: - - JackBoots - - CombatBoots # Goobstation - - SecurityWinterBoots - + - JackBoots + - CombatBoots # Goobstation + - SecurityWinterBoots - type: loadoutGroup id: SecurityPDA name: loadout-group-security-id - loadouts: - - SecurityPDA - - SeniorOfficerPDA - + loadouts: [SecurityPDA, SeniorOfficerPDA] - type: loadoutGroup id: DetectiveHead name: loadout-group-detective-head minLimit: 0 - loadouts: - - DetectiveFedora - - DetectiveFedoraGrey - + loadouts: [DetectiveFedora, DetectiveFedoraGrey] - type: loadoutGroup id: DetectiveNeck name: loadout-group-detective-neck minLimit: 0 loadouts: - - DetectiveTie - - Bodycam # Goobstation - Body cameras - + - DetectiveTie + - Bodycam # Goobstation - Body cameras - type: loadoutGroup id: DetectiveJumpsuit name: loadout-group-detective-jumpsuit + minLimit: 1 + exclusiveWith: INNERCLOTHING # Goobstation loadouts: - - DetectiveJumpsuit - - DetectiveJumpskirt - - NoirJumpsuit - - NoirJumpskirt - + - DetectiveJumpsuit + - DetectiveJumpskirt + - NoirJumpsuit + - NoirJumpskirt - type: loadoutGroup id: DetectiveOuterClothing name: loadout-group-detective-outerclothing - loadouts: - - DetectiveArmorVest - - DetectiveCoat - - DetectiveCoatGrey - + minLimit: 0 + loadouts: [DetectiveArmorVest, DetectiveCoat, DetectiveCoatGrey] - type: loadoutGroup id: SecurityCadetJumpsuit name: loadout-group-security-cadet-jumpsuit - loadouts: - - RedJumpsuit - - RedJumpskirt - + minLimit: 1 + exclusiveWith: INNERCLOTHING # Goobstation + loadouts: [RedJumpsuit, RedJumpskirt] - type: loadoutGroup id: SurvivalSecurity name: loadout-group-survival-security @@ -1387,7 +1453,7 @@ name: loadout-group-security-star minLimit: 0 loadouts: - - SecStar + - SecStar # Medical - type: loadoutGroup @@ -1395,200 +1461,181 @@ name: loadout-group-chief-medical-officer-head minLimit: 0 loadouts: - - ChiefMedicalOfficerBeret - - CMOMedicalHeadMirror - - ChemistUshanka # Goobstation - + - ChiefMedicalOfficerBeret + - CMOMedicalHeadMirror + - ChemistUshanka # Goobstation - type: loadoutGroup id: ChiefMedicalOfficerJumpsuit name: loadout-group-chief-medical-officer-jumpsuit + minLimit: 1 + exclusiveWith: INNERCLOTHING # Goobstation loadouts: - - ChiefMedicalOfficerJumpsuit - - ChiefMedicalOfficerJumpskirt - - ChiefMedicalOfficerTurtleneckJumpsuit - - ChiefMedicalOfficerTurtleneckJumpskirt - - CMOMJ # goob - + - ChiefMedicalOfficerJumpsuit + - ChiefMedicalOfficerJumpskirt + - ChiefMedicalOfficerTurtleneckJumpsuit + - ChiefMedicalOfficerTurtleneckJumpskirt + - CMOMJ # goob - type: loadoutGroup id: ChiefMedicalOfficerOuterClothing name: loadout-group-chief-medical-officer-outerclothing minLimit: 0 - loadouts: - - ChiefMedicalOfficerLabCoat - - ChiefMedicalOfficerWintercoat - + loadouts: [ChiefMedicalOfficerLabCoat, ChiefMedicalOfficerWintercoat] - type: loadoutGroup id: ChiefMedicalOfficerNeck name: loadout-group-chief-medical-officer-neck minLimit: 0 - loadouts: - - ChiefMedicalOfficerCloak - - ChiefMedicalOfficerMantle - + loadouts: [ChiefMedicalOfficerCloak, ChiefMedicalOfficerMantle] - type: loadoutGroup id: ChiefMedicalOfficerShoes name: loadout-group-chief-medical-officer-shoes - loadouts: - - BrownShoes - - MedicalWinterBoots - + minLimit: 1 + exclusiveWith: FEET #Goostation + loadouts: [BrownShoes, MedicalWinterBoots] - type: loadoutGroup id: MedicalDoctorHead name: loadout-group-medical-doctor-head minLimit: 0 loadouts: - - MedicalBeret - - SeniorPhysicianBeret - - MedicalHeadMirror - - BlueSurgeryCap - - GreenSurgeryCap - - PurpleSurgeryCap - - NurseHat - + - MedicalBeret + - SeniorPhysicianBeret + - MedicalHeadMirror + - BlueSurgeryCap + - GreenSurgeryCap + - PurpleSurgeryCap + - NurseHat - type: loadoutGroup id: MedicalDoctorJumpsuit name: loadout-group-medical-doctor-jumpsuit - loadouts: - - MedicalDoctorJumpsuit - - MedicalDoctorJumpskirt - - SeniorPhysicianJumpsuit - - SeniorPhysicianJumpskirt - - MedicalBlueScrubs - - MedicalGreenScrubs - - MedicalPurpleScrubs - - MedicMJ # goob - + minLimit: 1 + exclusiveWith: INNERCLOTHING # Goobstation + loadouts: + - MedicalDoctorJumpsuit + - MedicalDoctorJumpskirt + - SeniorPhysicianJumpsuit + - SeniorPhysicianJumpskirt + - MedicalBlueScrubs + - MedicalGreenScrubs + - MedicalPurpleScrubs + - MedicMJ # goob + - NurseOutfit # Nyanotrasen - type: loadoutGroup id: MedicalDoctorOuterClothing name: loadout-group-medical-doctor-outerclothing minLimit: 0 loadouts: - - RegularLabCoat - - MedicalDoctorWintercoat - - SeniorPhysicianLabCoat - + - RegularLabCoat + - MedicalDoctorWintercoat + - SeniorPhysicianLabCoat - type: loadoutGroup id: MedicalBackpack name: loadout-group-medical-doctor-backpack + exclusiveWith: BACK # Goobstation loadouts: - - MedicalDoctorBackpack - - MedicalDoctorSatchel - - MedicalDoctorDuffel - - MedicalDoctorMessenger # Frontier - + - MedicalDoctorBackpack + - MedicalDoctorSatchel + - MedicalDoctorDuffel + - MedicalDoctorMessenger # Frontier - type: loadoutGroup id: MedicalShoes name: loadout-group-medical-doctor-shoes - loadouts: - - WhiteShoes - - MedicalWinterBoots - + minLimit: 1 + exclusiveWith: FEET #Goostation + loadouts: [WhiteShoes, MedicalWinterBoots] - type: loadoutGroup id: MedicalDoctorPDA name: loadout-group-medical-doctor-id - loadouts: - - MedicalDoctorPDA - - SeniorPhysicianPDA - + loadouts: [MedicalDoctorPDA, SeniorPhysicianPDA] - type: loadoutGroup id: MedicalGloves name: loadout-group-medical-gloves minLimit: 0 - loadouts: - - LatexGloves - - NitrileGloves - + loadouts: [LatexGloves, NitrileGloves] - type: loadoutGroup id: MedicalMask name: loadout-group-medical-mask minLimit: 0 - loadouts: - - SterileMask - + loadouts: [SterileMask] - type: loadoutGroup id: MedicalInternJumpsuit name: loadout-group-medical-intern-jumpsuit + minLimit: 1 + exclusiveWith: INNERCLOTHING # Goobstation loadouts: - - WhiteJumpsuit - - WhiteJumpskirt - - MedicMJ # goob - + - WhiteJumpsuit + - WhiteJumpskirt + - MedicMJ # goob - type: loadoutGroup id: ChemistJumpsuit name: loadout-group-chemist-jumpsuit + minLimit: 1 + exclusiveWith: INNERCLOTHING # Goobstation loadouts: - - ChemistJumpsuit - - ChemistJumpskirt - - SeniorPhysicianJumpsuit # Goobstation - - SeniorPhysicianJumpskirt # Goobstation - - ChemistMJ # goob - + - ChemistJumpsuit + - ChemistJumpskirt + - SeniorPhysicianJumpsuit # Goobstation + - SeniorPhysicianJumpskirt # Goobstation + - ChemistMJ # goob - type: loadoutGroup id: ChemistOuterClothing name: loadout-group-chemist-outerclothing minLimit: 0 loadouts: - - RegularLabCoat - - ChemistLabCoat - - ChemistWintercoat - - SeniorPhysicianLabCoat # Goobstation - + - RegularLabCoat + - ChemistLabCoat + - ChemistWintercoat + - SeniorPhysicianLabCoat # Goobstation - type: loadoutGroup id: ChemistBackpack name: loadout-group-chemist-backpack + exclusiveWith: BACK # Goobstation loadouts: - - ChemistBackpack - - ChemistSatchel - - ChemistDuffel - - ChemistMessenger # Frontier - + - ChemistBackpack + - ChemistSatchel + - ChemistDuffel + - ChemistMessenger # Frontier - type: loadoutGroup id: ParamedicHead name: loadout-group-paramedic-head minLimit: 0 loadouts: - - ParamedicHead - - SeniorPhysicianBeret # Goobstation - + - ParamedicHead + - SeniorPhysicianBeret # Goobstation - type: loadoutGroup id: ParamedicJumpsuit name: loadout-group-paramedic-jumpsuit + minLimit: 1 + exclusiveWith: INNERCLOTHING # Goobstation loadouts: - - ParamedicJumpsuit - - ParamedicJumpskirt - - SeniorPhysicianJumpsuit # Goobstation - - SeniorPhysicianJumpskirt # Goobstation - - ParamedMJ # goob - + - ParamedicJumpsuit + - ParamedicJumpskirt + - SeniorPhysicianJumpsuit # Goobstation + - SeniorPhysicianJumpskirt # Goobstation + - ParamedMJ # goob - type: loadoutGroup id: ParamedicOuterClothing name: loadout-group-paramedic-outerclothing minLimit: 0 loadouts: - - ParamedicWindbreaker - - ParamedicWintercoat - - ParamedicDavidsJacket # Goobstation - - SeniorPhysicianLabCoat # Goobstation - + - ParamedicWindbreaker + - ParamedicWintercoat + - ParamedicDavidsJacket # Goobstation + - SeniorPhysicianLabCoat # Goobstation - type: loadoutGroup id: ParamedicShoes name: loadout-group-paramedic-shoes - loadouts: - - BlueShoes - - WhiteShoes - - MedicalWinterBoots - + minLimit: 1 + exclusiveWith: FEET #Goostation + loadouts: [BlueShoes, WhiteShoes, MedicalWinterBoots] - type: loadoutGroup id: MedicalEyewear name: loadout-group-medical-glasses minLimit: 0 loadouts: - - MedicalHud - - MedicalEyePatchHud - - Glasses - - GlassesJamjar - - GlassesJensen - + - MedicalHud + - MedicalEyePatchHud + - Glasses + - GlassesJamjar + - GlassesJensen - type: loadoutGroup id: SurvivalMedical name: loadout-group-survival-medical @@ -1605,33 +1652,33 @@ - type: loadoutGroup id: ReporterJumpsuit name: loadout-group-reporter-jumpsuit - loadouts: - - ReporterJumpsuit - - JournalistJumpsuit - - ReporterDress - + minLimit: 1 + exclusiveWith: INNERCLOTHING # Goobstation + loadouts: [ReporterJumpsuit, JournalistJumpsuit, ReporterDress] - type: loadoutGroup id: PsychologistJumpsuit name: loadout-group-psychologist-jumpsuit - loadouts: - - PsychologistJumpsuit - - PsychologistJumpskirt - + minLimit: 1 + exclusiveWith: INNERCLOTHING # Goobstation + loadouts: [PsychologistJumpsuit, PsychologistJumpskirt] - type: loadoutGroup id: BoxerJumpsuit name: loadout-group-boxer-jumpsuit + minLimit: 1 + exclusiveWith: INNERCLOTHING # Goobstation loadouts: - - BoxerShorts - - BoxerShortsWithTop - + - BoxerShorts + - BoxerShortsWithTop + - ClothingUniformMartialGiOutfit # Nyanotrasen - type: loadoutGroup id: BoxerGloves name: loadout-group-boxer-gloves + minLimit: 0 loadouts: - - RedBoxingGloves - - BlueBoxingGloves - - GreenBoxingGloves - - YellowBoxingGloves + - RedBoxingGloves + - BlueBoxingGloves + - GreenBoxingGloves + - YellowBoxingGloves # Other - type: loadoutGroup @@ -1652,23 +1699,18 @@ minLimit: 1 maxLimit: 1 hidden: true - loadouts: - - LoadoutSpeciesBreathTool - + loadouts: [LoadoutSpeciesBreathTool] - type: loadoutGroup id: GroupSpeciesBreathToolMedical name: loadout-group-breath-tool minLimit: 1 maxLimit: 1 hidden: true - loadouts: - - LoadoutSpeciesBreathToolMedical - + loadouts: [LoadoutSpeciesBreathToolMedical] - type: loadoutGroup id: GroupSpeciesBreathToolSecurity name: loadout-group-breath-tool minLimit: 1 maxLimit: 1 hidden: true - loadouts: - - LoadoutSpeciesBreathToolSecurity + loadouts: [LoadoutSpeciesBreathToolSecurity] diff --git a/Resources/Prototypes/Loadouts/role_loadouts.yml b/Resources/Prototypes/Loadouts/role_loadouts.yml index c12c922a5c61..be909b803400 100644 --- a/Resources/Prototypes/Loadouts/role_loadouts.yml +++ b/Resources/Prototypes/Loadouts/role_loadouts.yml @@ -102,12 +102,17 @@ # SPDX-FileCopyrightText: 2024 Арт <123451459+JustArt1m@users.noreply.github.com> # SPDX-FileCopyrightText: 2025 Aiden <28298836+Aidenkrz@users.noreply.github.com> # SPDX-FileCopyrightText: 2025 Aidenkrz +# SPDX-FileCopyrightText: 2025 BloodfiendishOperator <141253729+Diggy0@users.noreply.github.com> +# SPDX-FileCopyrightText: 2025 Froffy025 <78222136+Froffy025@users.noreply.github.com> +# SPDX-FileCopyrightText: 2025 Froffy025 # SPDX-FileCopyrightText: 2025 GoobBot # SPDX-FileCopyrightText: 2025 Phooooooooooooooooooooooooooooooosphate <184853112+Phooooooooooooooooooooooooooooooosphate@users.noreply.github.com> # SPDX-FileCopyrightText: 2025 Pieter-Jan Briers # SPDX-FileCopyrightText: 2025 SX_7 # SPDX-FileCopyrightText: 2025 Solstice # SPDX-FileCopyrightText: 2025 Ted Lukin <66275205+pheenty@users.noreply.github.com> +# SPDX-FileCopyrightText: 2025 gluesniffler <159397573+gluesniffler@users.noreply.github.com> +# SPDX-FileCopyrightText: 2025 grub # SPDX-FileCopyrightText: 2025 lzk <124214523+lzk228@users.noreply.github.com> # SPDX-FileCopyrightText: 2025 metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> # SPDX-FileCopyrightText: 2025 pheenty @@ -115,7 +120,8 @@ # SPDX-FileCopyrightText: 2025 slarticodefast <161409025+slarticodefast@users.noreply.github.com> # # SPDX-License-Identifier: AGPL-3.0-or-later -# Command + +# Command real - type: roleLoadout id: JobCaptain groups: @@ -165,18 +171,20 @@ nameDataset: NamesAI canCustomizeName: true -# Civilian +# Goobstation - Passenger -> Civilian - type: roleLoadout id: JobPassenger groups: - GroupTankHarness - - PassengerJumpsuit - - CommonBackpack - - PassengerNeck - - PassengerFace - - PassengerGloves - - PassengerOuterClothing - - PassengerShoes + - CivilianJumpsuitRequired + - CivilianBackpack + - CivilianHat + - CivilianNeck + - CivilianFace + - CivilianGloves + - CivilianOuterClothing + - CivilianShoesRequired + - CivilianBelt - Glasses - Survival - Trinkets @@ -193,29 +201,48 @@ - GroupTankHarness - BartenderHead - BartenderJumpsuit - - CommonBackpack + - CivilianBackpack - BartenderOuterClothing - Glasses - Survival - Trinkets - Animals - GroupSpeciesBreathTool + # Goobstation - Loadout Change + - CivilianJumpsuit + - CivilianNeck + - CivilianHat + - CivilianFace + - CivilianGloves + - CivilianOuterClothing + - CivilianShoesRequired + - CivilianBelt # Goobstation - EE Plasmeme Change. - BartenderEnvirohelm - BartenderEnvirosuit - BartenderEnvirogloves + - type: roleLoadout id: JobServiceWorker groups: - GroupTankHarness - BartenderJumpsuit - - CommonBackpack + - CivilianBackpack - Glasses - Survival - Trinkets - Animals - GroupSpeciesBreathTool + # Goobstation - Loadout Change + - CivilianJumpsuit + - CivilianNeck + - CivilianHat + - CivilianFace + - CivilianGloves + - CivilianOuterClothing + - CivilianShoesRequired + - CivilianBelt # Goobstation - EE Plasmeme Change. - ServiceWorkerEnvirohelm - ServiceWorkerEnvirosuit @@ -228,13 +255,22 @@ - ChefHead - ChefMask - ChefJumpsuit - - CommonBackpack + - CivilianBackpack - ChefOuterClothing - Glasses - Survival - Trinkets - Animals - GroupSpeciesBreathTool + # Goobstation - Loadout Change + - CivilianJumpsuit + - CivilianNeck + - CivilianHat + - CivilianFace + - CivilianGloves + - CivilianOuterClothing + - CivilianShoesRequired + - CivilianBelt # Goobstation - EE Plasmeme Change. - ChefEnvirohelm - ChefEnvirosuit @@ -245,12 +281,21 @@ groups: - GroupTankHarness - LibrarianJumpsuit - - CommonBackpack + - CivilianBackpack - Glasses - Survival - Trinkets - Animals - GroupSpeciesBreathTool + # Goobstation - Loadout Change + - CivilianJumpsuit + - CivilianNeck + - CivilianHat + - CivilianFace + - CivilianGloves + - CivilianOuterClothing + - CivilianShoesRequired + - CivilianBelt # Goobstation - EE Plasmeme Change. - LibrarianEnvirohelm - LibrarianEnvirosuit @@ -262,12 +307,21 @@ - GroupTankHarness - LawyerNeck - LawyerJumpsuit - - CommonBackpack + - CivilianBackpack - Glasses - Survival - Trinkets - Animals - GroupSpeciesBreathTool + # Goobstation - Loadout Change + - CivilianJumpsuit + - CivilianNeck + - CivilianHat + - CivilianFace + - CivilianGloves + - CivilianOuterClothing + - CivilianShoesRequired + - CivilianBelt # Goobstation - EE Plasmeme Change. - LawyerEnvirohelm - LawyerEnvirosuit @@ -281,13 +335,22 @@ - ChaplainMask - ChaplainNeck - ChaplainJumpsuit - - CommonBackpack + - CivilianBackpack - ChaplainOuterClothing - Glasses - Survival - Trinkets - Animals - GroupSpeciesBreathTool + # Goobstation - Loadout Change + - CivilianJumpsuit + - CivilianNeck + - CivilianHat + - CivilianFace + - CivilianGloves + - CivilianOuterClothing + - CivilianShoesRequired + - CivilianBelt # Goobstation - EE Plasmeme Change. - ChaplainEnvirohelm - ChaplainEnvirosuit @@ -300,7 +363,7 @@ - JanitorHead - JanitorJumpsuit - JanitorGloves - - CommonBackpack + - CivilianBackpack - JanitorOuterClothing - Glasses - Survival @@ -308,6 +371,15 @@ - JanitorPlunger - Animals - GroupSpeciesBreathTool + # Goobstation - Loadout Change + - CivilianJumpsuit + - CivilianNeck + - CivilianHat + - CivilianFace + - CivilianGloves + - CivilianOuterClothing + - CivilianShoes + - CivilianBelt # Goobstation - EE Plasmeme Change. - JanitorEnvirohelm - JanitorEnvirosuit @@ -326,11 +398,21 @@ - Trinkets - Animals - GroupSpeciesBreathTool + # Goobstation - Loadout Change + - CivilianJumpsuit + - CivilianNeck + - CivilianHat + - CivilianFace + - CivilianGloves + - CivilianOuterClothing + - CivilianShoesRequired + - CivilianBelt # Goobstation - EE Plasmeme Change. - BotanistEnvirohelm - BotanistEnvirosuit - BotanistEnvirogloves + - type: roleLoadout id: JobClown canCustomizeName: true @@ -344,12 +426,21 @@ - Glasses - SurvivalClown - Trinkets + - CivilianJumpsuit + - CivilianNeck + - CivilianHat + - CivilianFace + - CivilianGloves + - CivilianOuterClothing + - CivilianShoes + - CivilianBelt - Animals # Goobstation - EE Plasmeme Change. - ClownEnvirohelm - ClownEnvirosuit - ClownEnvirogloves + - type: roleLoadout id: JobMime canCustomizeName: true @@ -364,6 +455,14 @@ - Glasses - SurvivalMime - Trinkets + - CivilianJumpsuit + - CivilianNeck + - CivilianHat + - CivilianFace + - CivilianGloves + - CivilianOuterClothing + - CivilianShoes + - CivilianBelt - Animals # Goobstation - EE Plasmeme Change. - MimeEnvirohelm @@ -376,7 +475,7 @@ groups: - GroupTankHarness - MusicianJumpsuit - - CommonBackpack + - CivilianBackpack - MusicianOuterClothing - Glasses - Survival @@ -384,11 +483,21 @@ - Instruments - Animals - GroupSpeciesBreathTool + # Goobstation - Loadout Change + - CivilianJumpsuit + - CivilianNeck + - CivilianHat + - CivilianFace + - CivilianGloves + - CivilianOuterClothing + - CivilianShoesRequired + - CivilianBelt # Goobstation - EE Plasmeme Change. - MusicianEnvirohelm - MusicianEnvirosuit - MusicianEnvirogloves + # Cargo - type: roleLoadout id: JobQuartermaster @@ -405,11 +514,21 @@ - Trinkets - Animals - GroupSpeciesBreathTool + # Goobstation - Loadout Change + - CivilianJumpsuit + - CivilianNeck + - CivilianHat + - CivilianFace + - CivilianGloves + - CivilianOuterClothing + - CivilianShoes + - CivilianBelt # Goobstation - EE Plasmeme Change. - QuartermasterEnvirohelm - QuartermasterEnvirosuit - QuartermasterEnvirogloves + - type: roleLoadout id: JobCargoTechnician groups: @@ -424,11 +543,21 @@ - Trinkets - Animals - GroupSpeciesBreathTool + # Goobstation - Loadout Change + - CivilianJumpsuit + - CivilianNeck + - CivilianHat + - CivilianFace + - CivilianGloves + - CivilianOuterClothing + - CivilianShoes + - CivilianBelt # Goobstation - EE Plasmeme Change. - CargoTechnicianEnvirohelm - CargoTechnicianEnvirosuit - CargoTechnicianEnvirogloves + - type: roleLoadout id: JobSalvageSpecialist groups: @@ -442,11 +571,21 @@ - Trinkets - Animals - GroupSpeciesBreathTool + # Goobstation - Loadout Change + - CivilianJumpsuit + - CivilianNeck + - CivilianHat + - CivilianFace + - CivilianGloves + - CivilianOuterClothing + - CivilianShoes + - CivilianBelt # Goobstation - EE Plasmeme Change. - SalvageEnvirohelm - SalvageEnvirosuit - SalvageEnvirogloves + # Engineering - type: roleLoadout id: JobChiefEngineer @@ -462,11 +601,21 @@ - Trinkets - Animals - GroupSpeciesBreathTool + # Goobstation - Loadout Change + - CivilianJumpsuit + - CivilianNeck + - CivilianHat + - CivilianFace + - CivilianGloves + - CivilianOuterClothing + - CivilianShoes + - CivilianBelt # Goobstation - EE Plasmeme Change. - ChiefEngineerEnvirohelm - ChiefEngineerEnvirosuit - ChiefEngineerEnvirogloves + - type: roleLoadout id: JobTechnicalAssistant groups: @@ -477,11 +626,21 @@ - Trinkets - Animals - GroupSpeciesBreathTool + # Goobstation - Loadout Change + - CivilianJumpsuit + - CivilianNeck + - CivilianHat + - CivilianFace + - CivilianGloves + - CivilianOuterClothing + - CivilianShoesRequired + - CivilianBelt # Goobstation - EE Plasmeme Change. - TechnicalAssistantEnvirohelm - TechnicalAssistantEnvirosuit - TechnicalAssistantEnvirogloves + - type: roleLoadout id: JobStationEngineer groups: @@ -496,11 +655,21 @@ - Trinkets - Animals - GroupSpeciesBreathTool + # Goobstation - Loadout Change + - CivilianJumpsuit + - CivilianNeck + - CivilianHat + - CivilianFace + - CivilianGloves + - CivilianOuterClothing + - CivilianShoes + - CivilianBelt # Goobstation - EE Plasmeme Change. - StationEngineerEnvirohelm - StationEngineerEnvirosuit - StationEngineerEnvirogloves + - type: roleLoadout id: JobAtmosphericTechnician groups: @@ -514,11 +683,21 @@ - Trinkets - Animals - GroupSpeciesBreathTool + # Goobstation - Loadout Change + - CivilianJumpsuit + - CivilianNeck + - CivilianHat + - CivilianFace + - CivilianGloves + - CivilianOuterClothing + - CivilianShoes + - CivilianBelt # Goobstation - EE Plasmeme Change. - AtmosEnvirohelm - AtmosEnvirosuit - AtmosEnvirogloves + # Science - type: roleLoadout id: JobResearchDirector @@ -536,11 +715,21 @@ - Trinkets - Animals - GroupSpeciesBreathTool + # Goobstation - Loadout Change + - CivilianJumpsuit + - CivilianNeck + - CivilianHat + - CivilianFace + - CivilianGloves + - CivilianOuterClothing + - CivilianShoes + - CivilianBelt # Goobstation - EE Plasmeme Change. - ResearchDirectorEnvirosuit - ResearchDirectorEnvirohelm - ResearchDirectorEnvirogloves + - type: roleLoadout id: JobScientist groups: @@ -558,11 +747,21 @@ - Trinkets - Animals - GroupSpeciesBreathTool + # Goobstation - Loadout Change + - CivilianJumpsuit + - CivilianNeck + - CivilianHat + - CivilianFace + - CivilianGloves + - CivilianOuterClothing + - CivilianShoes + - CivilianBelt # Goobstation - EE Plasmeme Change. - ScientistEnvirohelm - ScientistEnvirosuit - ScientistEnvirogloves + - type: roleLoadout id: JobResearchAssistant groups: @@ -574,11 +773,21 @@ - Trinkets - Animals - GroupSpeciesBreathTool + # Goobstation - Loadout Change + - CivilianJumpsuit + - CivilianNeck + - CivilianHat + - CivilianFace + - CivilianGloves + - CivilianOuterClothing + - CivilianShoesRequired + - CivilianBelt # Goobstation - EE Plasmeme Change. - ResearchAssistantEnvirohelm - ResearchAssistantEnvirosuit - ResearchAssistantEnvirogloves + # Security - type: roleLoadout id: JobHeadOfSecurity @@ -682,6 +891,7 @@ - SecurityCadetEnvirosuit - SecurityCadetEnvirogloves + # Medical - type: roleLoadout id: JobChiefMedicalOfficer @@ -700,11 +910,21 @@ - Trinkets - Animals - GroupSpeciesBreathToolMedical + # Goobstation - Loadout Change + - CivilianJumpsuit + - CivilianNeck + - CivilianHat + - CivilianFace + - CivilianGloves + - CivilianOuterClothing + - CivilianShoes + - CivilianBelt # Goobstation - EE Plasmeme Change. - ChiefMedicalOfficerEnvirohelm - ChiefMedicalOfficerEnvirosuit - ChiefMedicalOfficerEnvirogloves + - type: roleLoadout id: JobMedicalDoctor groups: @@ -722,11 +942,21 @@ - Trinkets - Animals - GroupSpeciesBreathToolMedical + # Goobstation - Loadout Change + - CivilianJumpsuit + - CivilianNeck + - CivilianHat + - CivilianFace + - CivilianGloves + - CivilianOuterClothing + - CivilianShoes + - CivilianBelt # Goobstation - EE Plasmeme Change. - MedicalDoctorEnvirohelm - MedicalDoctorEnvirosuit - MedicalDoctorEnvirogloves + - type: roleLoadout id: JobMedicalIntern groups: @@ -738,11 +968,21 @@ - Trinkets - Animals - GroupSpeciesBreathToolMedical + # Goobstation - Loadout Change + - CivilianJumpsuit + - CivilianNeck + - CivilianHat + - CivilianFace + - CivilianGloves + - CivilianOuterClothing + - CivilianShoesRequired + - CivilianBelt # Goobstation - EE Plasmeme Change. - MedicalInternEnvirohelm - MedicalInternEnvirosuit - MedicalInternEnvirogloves + - type: roleLoadout id: JobChemist groups: @@ -758,11 +998,21 @@ - Trinkets - Animals - GroupSpeciesBreathToolMedical + # Goobstation - Loadout Change + - CivilianJumpsuit + - CivilianNeck + - CivilianHat + - CivilianFace + - CivilianGloves + - CivilianOuterClothing + - CivilianShoes + - CivilianBelt # Goobstation - EE Plasmeme Change. - ChemistEnvirohelm - ChemistEnvirosuit - ChemistEnvirogloves + - type: roleLoadout id: JobParamedic groups: @@ -779,11 +1029,21 @@ - Trinkets - Animals - GroupSpeciesBreathToolMedical + # Goobstation - Loadout Change + - CivilianJumpsuit + - CivilianNeck + - CivilianHat + - CivilianFace + - CivilianGloves + - CivilianOuterClothing + - CivilianShoes + - CivilianBelt # Goobstation - EE Plasmeme Change. - ParamedicEnvirohelm - ParamedicEnvirosuit - ParamedicEnvirogloves + # Wildcards - type: roleLoadout id: JobZookeeper @@ -791,34 +1051,54 @@ - ZookeeperHead - ZookeeperJumpsuit - GroupTankHarness - - CommonBackpack + - CivilianBackpack - Glasses - Survival - Trinkets - Animals - GroupSpeciesBreathTool + # Goobstation - Loadout Change + - CivilianJumpsuit + - CivilianNeck + - CivilianHat + - CivilianFace + - CivilianGloves + - CivilianOuterClothing + - CivilianShoesRequired + - CivilianBelt # Goobstation - EE Plasmeme Change. - ZookeeperEnvirohelm - ZookeeperEnvirosuit - ZookeeperEnvirogloves + - type: roleLoadout id: JobReporter groups: - GroupTankHarness - ReporterJumpsuit - ReporterOuterClothing # Goobstation - Bodycams - - CommonBackpack + - CivilianBackpack - Glasses - Survival - Trinkets - Animals - GroupSpeciesBreathTool + # Goobstation - Loadout Change + - CivilianJumpsuit + - CivilianNeck + - CivilianHat + - CivilianFace + - CivilianGloves + - CivilianOuterClothing + - CivilianShoesRequired + - CivilianBelt # Goobstation - EE Plasmeme Change. - ReporterEnvirohelm - ReporterEnvirosuit - ReporterEnvirogloves + - type: roleLoadout id: JobPsychologist groups: @@ -830,27 +1110,47 @@ - Trinkets - Animals - GroupSpeciesBreathTool + # Goobstation - Loadout Change + - CivilianJumpsuit + - CivilianBackpack + - CivilianNeck + - CivilianHat + - CivilianFace + - CivilianGloves + - CivilianOuterClothing + - CivilianBelt # Goobstation - EE Plasmeme Change. - PsychologistEnvirohelm - PsychologistEnvirosuit - PsychologistEnvirogloves + - type: roleLoadout id: JobBoxer groups: - GroupTankHarness - BoxerJumpsuit - BoxerGloves - - CommonBackpack + - CivilianBackpack - Glasses - Survival - Trinkets - Animals - GroupSpeciesBreathTool + # Goobstation - Loadout Change + - CivilianJumpsuit + - CivilianNeck + - CivilianHat + - CivilianFace + - CivilianGloves + - CivilianOuterClothing + - CivilianShoes #yeah i guess these guys can forego shoes + - CivilianBelt # Goobstation - EE Plasmeme Change. - BoxerEnvirohelm - BoxerEnvirosuit + # These loadouts are used for non-crew spawns, like off-station antags and event mobs # They will be used without player configuration, thus they will only ever apply what is forced by MinLimit diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Clothing/costumes.yml b/Resources/Prototypes/Nyanotrasen/Entities/Clothing/costumes.yml new file mode 100644 index 000000000000..6922fd94d5d8 --- /dev/null +++ b/Resources/Prototypes/Nyanotrasen/Entities/Clothing/costumes.yml @@ -0,0 +1,298 @@ +# SPDX-FileCopyrightText: 2025 BloodfiendishOperator <141253729+Diggy0@users.noreply.github.com> +# SPDX-FileCopyrightText: 2025 GoobBot +# +# SPDX-License-Identifier: AGPL-3.0-or-later + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingCostumeArcDress + name: white shirt and purple skirt + description: You feel a supernatural urge to put these on. It must be fate. + components: + - type: Sprite + sprite: Nyanotrasen/Clothing/Uniforms/Costume/arc.rsi + - type: Clothing + sprite: Nyanotrasen/Clothing/Uniforms/Costume/arc.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: UniformGeisha + name: geisha dress + description: For a good hostess. + components: + - type: Sprite + sprite: Nyanotrasen/Clothing/Uniforms/Costume/geisha.rsi + - type: Clothing + sprite: Nyanotrasen/Clothing/Uniforms/Costume/geisha.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtNurse + name: nurse skirt + description: Time to carry the medical department. + components: + - type: Sprite + sprite: Nyanotrasen/Clothing/Uniforms/Costume/nurse.rsi + - type: Clothing + sprite: Nyanotrasen/Clothing/Uniforms/Costume/nurse.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: UniformMaid + name: maid uniform + description: Authentic, from Space France! + components: + - type: Sprite + sprite: Nyanotrasen/Clothing/Uniforms/Costume/maid.rsi + - type: Clothing + sprite: Nyanotrasen/Clothing/Uniforms/Costume/maid.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingCostumeBunnySuit + name: bunny suit + description: Ready to go with stockings and a bow tie. + components: + - type: Sprite + sprite: Nyanotrasen/Clothing/Uniforms/Costume/bunny.rsi + - type: Clothing + sprite: Nyanotrasen/Clothing/Uniforms/Costume/bunny.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingCostumeMioSkirt + name: yellow skirt with rose hoodie + description: Soft and comfortable, it sports bright colors with a neat yellow bow at the neck. + components: + - type: Sprite + sprite: Nyanotrasen/Clothing/Misc/mio.rsi + - type: Clothing + sprite: Nyanotrasen/Clothing/Misc/mio.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingCostumeNaota + name: turquoise hoodie and shorts + description: A hoodie with a small kangaroo pouch. + components: + - type: Sprite + sprite: Nyanotrasen/Clothing/Uniforms/Costume/naota.rsi + - type: Clothing + sprite: Nyanotrasen/Clothing/Uniforms/Costume/naota.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformRat + name: rat king fan outfit + description: Declare your allegiance to the rodent monarch, as well as your desire to see the station burn *at the same time!* + components: + - type: Sprite + sprite: Nyanotrasen/Clothing/Uniforms/Costume/rat.rsi + - type: Clothing + sprite: Nyanotrasen/Clothing/Uniforms/Costume/rat.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformDressRed + name: red dress + description: A voluminous, fancy red dress. + components: + - type: Sprite + sprite: Nyanotrasen/Clothing/Uniforms/Costume/red_dress.rsi + - type: Clothing + sprite: Nyanotrasen/Clothing/Uniforms/Costume/red_dress.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformSwimsuitBlue + name: blue swimsuit + description: A form-fitting, hydrodynamic blue swimsuit. + components: + - type: Sprite + sprite: Nyanotrasen/Clothing/Uniforms/Costume/swimsuit.rsi + - type: Clothing + sprite: Nyanotrasen/Clothing/Uniforms/Costume/swimsuit.rsi + +## kendo + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformKendoHakama + name: hakama + description: An elegant black and blue hakama that could be worn for kendo or formal events. + components: + - type: Sprite + sprite: Nyanotrasen/Clothing/Uniforms/Costume/hakama.rsi + - type: Clothing + sprite: Nyanotrasen/Clothing/Uniforms/Costume/hakama.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformMartialGi + name: gi + description: A white top and bottom traditionally used in martial arts, often paired with a belt. + components: + - type: Sprite + sprite: Nyanotrasen/Clothing/Uniforms/Costume/gi.rsi + - type: Clothing + sprite: Nyanotrasen/Clothing/Uniforms/Costume/gi.rsi + +## kimono + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingKimonoBlue + name: blue kimono + description: I'm blue da ba dee da ba da-ee! + components: + - type: Sprite + sprite: Nyanotrasen/Clothing/Uniforms/Costume/kimono-blue.rsi + - type: Clothing + sprite: Nyanotrasen/Clothing/Uniforms/Costume/kimono-blue.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingKimonoPink + name: pink kimono + description: Pretty in pink, isn't she? + components: + - type: Sprite + sprite: Nyanotrasen/Clothing/Uniforms/Costume/kimono-pink.rsi + - type: Clothing + sprite: Nyanotrasen/Clothing/Uniforms/Costume/kimono-pink.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingKimonoPurple + name: purple kimono + description: You definitely won't look like a maroon in this. + components: + - type: Sprite + sprite: Nyanotrasen/Clothing/Uniforms/Costume/kimono-purple.rsi + - type: Clothing + sprite: Nyanotrasen/Clothing/Uniforms/Costume/kimono-purple.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingKimonoSky + name: sky blue kimono + description: Reminds you of natsu matsuri. + components: + - type: Sprite + sprite: Nyanotrasen/Clothing/Uniforms/Costume/kimono-sky.rsi + - type: Clothing + sprite: Nyanotrasen/Clothing/Uniforms/Costume/kimono-sky.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingKimonoGreen + name: sea green kimono + description: Colors and textures reminiscent of seaweed. + components: + - type: Sprite + sprite: Nyanotrasen/Clothing/Uniforms/Costume/kimono-green.rsi + - type: Clothing + sprite: Nyanotrasen/Clothing/Uniforms/Costume/kimono-green.rsi + +## Two at + +- type: entity + parent: ClothingUniformSkirtBase + id: UniformSchoolgirlDusk + name: dusk schoolgirl uniform + description: Ready for school in modern style. + components: + - type: Sprite + sprite: Nyanotrasen/Clothing/Uniforms/Costume/SchoolgirlModern/dusk.rsi + - type: Clothing + sprite: Nyanotrasen/Clothing/Uniforms/Costume/SchoolgirlModern/dusk.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: UniformSchoolgirlBlazerTan + name: tan blazer schoolgirl uniform + description: Ready for school in modern style. This set comes with a tan blazer. + components: + - type: Sprite + sprite: Nyanotrasen/Clothing/Uniforms/Costume/SchoolgirlModern/blazer-tan.rsi + - type: Clothing + sprite: Nyanotrasen/Clothing/Uniforms/Costume/SchoolgirlModern/blazer-tan.rsi + +## mnk + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformMNKOfficeSkirt + name: MNK office skirt + description: An MNK outfit within office dress code. + components: + - type: Sprite + sprite: Nyanotrasen/Clothing/Misc/office_skirt.rsi + - type: Clothing + sprite: Nyanotrasen/Clothing/Misc/office_skirt.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformMNKUnderGarment + name: MNK under garment + description: MNK ensured comfort for the important bits. + components: + - type: Sprite + sprite: Nyanotrasen/Clothing/Misc/under_garments.rsi + - type: Clothing + sprite: Nyanotrasen/Clothing/Misc/under_garments.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformMNKGymBra + name: MNK gym bra + description: Maximum performance with MNK sweat blockers. + components: + - type: Sprite + sprite: Nyanotrasen/Clothing/Misc/gym_bra.rsi + - type: Clothing + sprite: Nyanotrasen/Clothing/Misc/gym_bra.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformMNKDressBlack + name: MNK black dress + description: A sleek black dress sporting a MNK window. + components: + - type: Sprite + sprite: Nyanotrasen/Clothing/Misc/black_dress.rsi + - type: Clothing + sprite: Nyanotrasen/Clothing/Misc/black_dress.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformMNKBlackOveralls + name: MNK black overalls + description: A comfy undershirt and thick black MNK overalls. + components: + - type: Sprite + sprite: Nyanotrasen/Clothing/Misc/black_overall.rsi + - type: Clothing + sprite: Nyanotrasen/Clothing/Misc/black_overall.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformMNKBlackShoulder + name: MNK exposed shoulders + description: A MNK outfit with exposed shoulders. + components: + - type: Sprite + sprite: Nyanotrasen/Clothing/Misc/exposed_shoulder.rsi + - type: Clothing + sprite: Nyanotrasen/Clothing/Misc/exposed_shoulder.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformMNKTracksuitBlack + name: MNK black tracksuit + description: A set of light MNK athletic clothing. + components: + - type: Sprite + sprite: Nyanotrasen/Clothing/Misc/tracksuit.rsi + - type: Clothing + sprite: Nyanotrasen/Clothing/Misc/tracksuit.rsi diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Clothing/jumpsuits.yml b/Resources/Prototypes/Nyanotrasen/Entities/Clothing/jumpsuits.yml new file mode 100644 index 000000000000..4309b2e17140 --- /dev/null +++ b/Resources/Prototypes/Nyanotrasen/Entities/Clothing/jumpsuits.yml @@ -0,0 +1,59 @@ +# SPDX-FileCopyrightText: 2025 BloodfiendishOperator <141253729+Diggy0@users.noreply.github.com> +# SPDX-FileCopyrightText: 2025 GoobBot +# +# SPDX-License-Identifier: AGPL-3.0-or-later + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitTshirtJeans + name: white t-shirt and jeans + description: Even in space, this combo is still in style. + components: + - type: Sprite + sprite: Nyanotrasen/Clothing/Uniforms/Jumpsuit/tshirtjeans.rsi + - type: Clothing + sprite: Nyanotrasen/Clothing/Uniforms/Jumpsuit/tshirtjeans.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitTshirtJeansGray + name: gray t-shirt and jeans + description: Even though there are no forests in space, this combo is still practical. + components: + - type: Sprite + sprite: Nyanotrasen/Clothing/Uniforms/Jumpsuit/tshirtjeansgray.rsi + - type: Clothing + sprite: Nyanotrasen/Clothing/Uniforms/Jumpsuit/tshirtjeansgray.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitTshirtJeansPeach + name: peach t-shirt and jeans + description: Even though your favorite emo clothing store is back at home, this combo is still edgy. + components: + - type: Sprite + sprite: Nyanotrasen/Clothing/Uniforms/Jumpsuit/tshirtjeanspeach.rsi + - type: Clothing + sprite: Nyanotrasen/Clothing/Uniforms/Jumpsuit/tshirtjeanspeach.rsi + +- type: entity + parent: [ClothingUniformBase, BaseSecurityContraband] + id: ClothingUniformJumpsuitSecSummer + name: summer security uniform + description: A loose-fitting and casual variant of the standard security uniform. + components: + - type: Sprite + sprite: Nyanotrasen/Clothing/Uniforms/Jumpsuit/summer_security.rsi + - type: Clothing + sprite: Nyanotrasen/Clothing/Uniforms/Jumpsuit/summer_security.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformTShirtKhakiPants + name: drab t-shirt and khaki pants + description: Some drab but functional clothing. + components: + - type: Sprite + sprite: Nyanotrasen/Clothing/Uniforms/Jumpsuit/tshirt_khaki.rsi + - type: Clothing + sprite: Nyanotrasen/Clothing/Uniforms/Jumpsuit/tshirt_khaki.rsi diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Clothing/misc.yml b/Resources/Prototypes/Nyanotrasen/Entities/Clothing/misc.yml new file mode 100644 index 000000000000..90eba95d994b --- /dev/null +++ b/Resources/Prototypes/Nyanotrasen/Entities/Clothing/misc.yml @@ -0,0 +1,45 @@ +# SPDX-FileCopyrightText: 2025 BloodfiendishOperator <141253729+Diggy0@users.noreply.github.com> +# SPDX-FileCopyrightText: 2025 Froffy025 +# SPDX-FileCopyrightText: 2025 GoobBot +# +# SPDX-License-Identifier: AGPL-3.0-or-later + +- type: entity + parent: ClothingOuterStorageBase + id: ClothingOuterCoatMNKWhiteHoodie + name: MNK white hoodie + description: A classic MNK produced white hoodie. + components: + - type: Sprite + sprite: Nyanotrasen/Clothing/Misc/hoodie_white.rsi + - type: Clothing + sprite: Nyanotrasen/Clothing/Misc/hoodie_white.rsi + - type: TemperatureProtection + heatingCoefficient: 1.1 + coolingCoefficient: 0.1 +- type: entity + parent: ClothingOuterStorageBase + id: ClothingOuterCoatMNKBlackTopCoat + name: MNK black top coat + description: A sturdy MNK black top coat. + components: + - type: Sprite + sprite: Nyanotrasen/Clothing/Misc/black_top_coat.rsi + - type: Clothing + sprite: Nyanotrasen/Clothing/Misc/black_top_coat.rsi + - type: TemperatureProtection + heatingCoefficient: 1.1 + coolingCoefficient: 0.1 +- type: entity + parent: ClothingOuterStorageBase + id: ClothingOuterCoatMNKBlackJacket + name: MNK black jacket + description: A light MNK black jacket. + components: + - type: Sprite + sprite: Nyanotrasen/Clothing/Misc/black_jacket.rsi + - type: Clothing + sprite: Nyanotrasen/Clothing/Misc/black_jacket.rsi + - type: TemperatureProtection + heatingCoefficient: 1.1 + coolingCoefficient: 0.1 diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Clothing/wintercoats.yml b/Resources/Prototypes/Nyanotrasen/Entities/Clothing/wintercoats.yml new file mode 100644 index 000000000000..444f208e7698 --- /dev/null +++ b/Resources/Prototypes/Nyanotrasen/Entities/Clothing/wintercoats.yml @@ -0,0 +1,66 @@ +# SPDX-FileCopyrightText: 2025 BloodfiendishOperator <141253729+Diggy0@users.noreply.github.com> +# SPDX-FileCopyrightText: 2025 Froffy025 +# SPDX-FileCopyrightText: 2025 GoobBot +# +# SPDX-License-Identifier: AGPL-3.0-or-later + +- type: entity + parent: ClothingOuterWinterCoat + id: ClothingOuterCoatLettermanBlue + name: blue letterman jacket + description: It's a blue highschool jacket with a big '14' stitched onto the back. + components: + - type: Sprite + sprite: Nyanotrasen/Clothing/Misc/letterman_jacket_blue.rsi + - type: Clothing + sprite: Nyanotrasen/Clothing/Misc/letterman_jacket_blue.rsi + - type: TemperatureProtection + heatingCoefficient: 1.1 + coolingCoefficient: 0.1 + +- type: entity + parent: ClothingOuterWinterCoat + id: ClothingOuterCoatLettermanRed + name: red letterman jacket + description: It's a red highschool jacket with a big '14' stitched onto the back. + components: + - type: Sprite + sprite: Nyanotrasen/Clothing/Misc/letterman_jacket_red.rsi + - type: Clothing + sprite: Nyanotrasen/Clothing/Misc/letterman_jacket_red.rsi + +- type: entity + parent: ClothingOuterStorageBase + id: ClothingOuterCoatHyenhSweater + name: comfy sweater + description: It's comfy. + components: + - type: Sprite + sprite: Nyanotrasen/Clothing/OuterClothing/WinterCoats/hyenh.rsi + - type: Clothing + sprite: Nyanotrasen/Clothing/OuterClothing/WinterCoats/hyenh.rsi + - type: TemperatureProtection + heatingCoefficient: 1.1 + coolingCoefficient: 0.1 + +- type: entity + parent: ClothingOuterWinterCoat + id: ClothingOuterWinterCoatLong + name: long winter coat + description: Even your legs will be warm with this stylish coat. + components: + - type: Sprite + sprite: Nyanotrasen/Clothing/OuterClothing/WinterCoats/long_winter_coat.rsi + - type: Clothing + sprite: Nyanotrasen/Clothing/OuterClothing/WinterCoats/long_winter_coat.rsi + +- type: entity + parent: ClothingOuterWinterCoat + id: ClothingOuterWinterCoatPlaid + name: plaid winter coat + description: It might be made out of actual wool. + components: + - type: Sprite + sprite: Nyanotrasen/Clothing/OuterClothing/WinterCoats/plaid_winter_coat.rsi + - type: Clothing + sprite: Nyanotrasen/Clothing/OuterClothing/WinterCoats/plaid_winter_coat.rsi diff --git a/Resources/Prototypes/Nyanotrasen/Loadouts/passenger.yml b/Resources/Prototypes/Nyanotrasen/Loadouts/passenger.yml new file mode 100644 index 000000000000..e6718e9019be --- /dev/null +++ b/Resources/Prototypes/Nyanotrasen/Loadouts/passenger.yml @@ -0,0 +1,124 @@ +# SPDX-FileCopyrightText: 2025 BloodfiendishOperator <141253729+Diggy0@users.noreply.github.com> +# SPDX-FileCopyrightText: 2025 Froffy025 +# SPDX-FileCopyrightText: 2025 GoobBot +# +# SPDX-License-Identifier: AGPL-3.0-or-later + +# Random Clothing +- type: loadout + id: NekoArcCurse + equipment: + jumpsuit: ClothingCostumeArcDress +- type: loadout + id: GeishaOutfit + equipment: + jumpsuit: UniformGeisha + groupBy: "Dress" +- type: loadout + id: ClothingCostumeMioSkirtOutfit + equipment: + jumpsuit: ClothingCostumeMioSkirt +- type: loadout + id: ClothingCostumeNaotaOutfit + equipment: + jumpsuit: ClothingCostumeNaota +- type: loadout + id: ClothingUniformRatOutfit + equipment: + jumpsuit: ClothingUniformRat +- type: loadout + id: ClothingUniformDressRedOutfit + equipment: + jumpsuit: ClothingUniformDressRed + groupBy: "Dress" +- type: loadout + id: ClothingUniformKendoHakamaOutfit + equipment: + jumpsuit: ClothingUniformKendoHakama +- type: loadout + id: ClothingKimonoBlueOutfit + equipment: + jumpsuit: ClothingKimonoBlue + groupBy: "Civkimo" +- type: loadout + id: ClothingKimonoPinkOutfit + equipment: + jumpsuit: ClothingKimonoPink + groupBy: "Civkimo" +- type: loadout + id: ClothingKimonoPurpleOutfit + equipment: + jumpsuit: ClothingKimonoPurple + groupBy: "Civkimo" +- type: loadout + id: ClothingKimonoSkyOutfit + equipment: + jumpsuit: ClothingKimonoSky + groupBy: "Civkimo" +- type: loadout + id: ClothingKimonoGreenOutfit + equipment: + jumpsuit: ClothingKimonoGreen + groupBy: "Civkimo" +- type: loadout + id: UniformSchoolgirlDuskOutfit + equipment: + jumpsuit: UniformSchoolgirlDusk + groupBy: "Schoolgirl" +- type: loadout + id: UniformSchoolgirlBlazerTanOutfit + equipment: + jumpsuit: UniformSchoolgirlBlazerTan + groupBy: "Schoolgirl" +- type: loadout + id: ClothingUniformMNKOfficeSkirtOutfit + equipment: + jumpsuit: ClothingUniformMNKOfficeSkirt + groupBy: "MNK" +- type: loadout + id: ClothingUniformMNKUnderGarmentOutfit + equipment: + jumpsuit: ClothingUniformMNKUnderGarment + groupBy: "MNK" +- type: loadout + id: ClothingUniformMNKGymBraOutfit + equipment: + jumpsuit: ClothingUniformMNKGymBra + groupBy: "MNK" +- type: loadout + id: ClothingUniformMNKDressBlackOutfit + equipment: + jumpsuit: ClothingUniformMNKDressBlack + groupBy: "MNK" +- type: loadout + id: ClothingUniformMNKBlackOverallsOutfit + equipment: + jumpsuit: ClothingUniformMNKBlackOveralls + groupBy: "MNK" +- type: loadout + id: ClothingUniformMNKBlackShoulderOutfit + equipment: + jumpsuit: ClothingUniformMNKBlackShoulder + groupBy: "MNK" +- type: loadout + id: ClothingUniformMNKTracksuitBlackOutfit + equipment: + jumpsuit: ClothingUniformMNKTracksuitBlack + groupBy: "MNK" + +# Outerclothing +- type: loadout + id: MNKWhiteHoodie + equipment: + outerClothing: ClothingOuterCoatMNKWhiteHoodie + groupBy: "MNK" +- type: loadout + id: MNKBlackTopCoat + equipment: + outerClothing: ClothingOuterCoatMNKBlackTopCoat + groupBy: "MNK" +- type: loadout + id: MNKBlackJacket + equipment: + outerClothing: ClothingOuterCoatMNKBlackJacket + groupBy: "MNK" diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/bartender.yml b/Resources/Prototypes/Roles/Jobs/Civilian/bartender.yml index d611b2b4bac3..b6f3aa5c0356 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/bartender.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/bartender.yml @@ -64,6 +64,11 @@ # SPDX-FileCopyrightText: 2025 Aiden <28298836+Aidenkrz@users.noreply.github.com> # SPDX-FileCopyrightText: 2025 Aidenkrz # SPDX-FileCopyrightText: 2025 Armok <155400926+ARMOKS@users.noreply.github.com> +# SPDX-FileCopyrightText: 2025 Froffy025 +# SPDX-FileCopyrightText: 2025 GoobBot +# SPDX-FileCopyrightText: 2025 Minemoder5000 +# SPDX-FileCopyrightText: 2025 SX-7 +# SPDX-FileCopyrightText: 2025 gluesniffler <159397573+gluesniffler@users.noreply.github.com> # # SPDX-License-Identifier: AGPL-3.0-or-later @@ -90,7 +95,6 @@ - type: startingGear id: BartenderGear equipment: - shoes: ClothingShoesColorBlack id: BartenderPDA ears: ClothingHeadsetService #storage: diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/botanist.yml b/Resources/Prototypes/Roles/Jobs/Civilian/botanist.yml index 6f1eec11385a..5f6c5b517d1e 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/botanist.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/botanist.yml @@ -57,7 +57,12 @@ # SPDX-FileCopyrightText: 2025 Aiden <28298836+Aidenkrz@users.noreply.github.com> # SPDX-FileCopyrightText: 2025 Aidenkrz # SPDX-FileCopyrightText: 2025 Armok <155400926+ARMOKS@users.noreply.github.com> +# SPDX-FileCopyrightText: 2025 Froffy025 +# SPDX-FileCopyrightText: 2025 GoobBot +# SPDX-FileCopyrightText: 2025 SX-7 # SPDX-FileCopyrightText: 2025 SX_7 +# SPDX-FileCopyrightText: 2025 War Pigeon <54217755+minus1over12@users.noreply.github.com> +# SPDX-FileCopyrightText: 2025 gluesniffler <159397573+gluesniffler@users.noreply.github.com> # # SPDX-License-Identifier: AGPL-3.0-or-later @@ -85,7 +90,6 @@ - type: startingGear id: BotanistGear equipment: - shoes: ClothingShoesColorBrown id: BotanistPDA ears: ClothingHeadsetService belt: ClothingBeltPlantFilled diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/chaplain.yml b/Resources/Prototypes/Roles/Jobs/Civilian/chaplain.yml index 694dcb8c088e..9621ab0e5002 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/chaplain.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/chaplain.yml @@ -57,6 +57,7 @@ # SPDX-FileCopyrightText: 2025 Aiden <28298836+Aidenkrz@users.noreply.github.com> # SPDX-FileCopyrightText: 2025 Aidenkrz # SPDX-FileCopyrightText: 2025 Armok <155400926+ARMOKS@users.noreply.github.com> +# SPDX-FileCopyrightText: 2025 Froffy025 # SPDX-FileCopyrightText: 2025 GoobBot # SPDX-FileCopyrightText: 2025 Solstice # SPDX-FileCopyrightText: 2025 TheBorzoiMustConsume <197824988+TheBorzoiMustConsume@users.noreply.github.com> @@ -89,7 +90,6 @@ - type: startingGear id: ChaplainGear equipment: - shoes: ClothingShoesColorBlack id: ChaplainPDA ears: ClothingHeadsetService storage: diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/chef.yml b/Resources/Prototypes/Roles/Jobs/Civilian/chef.yml index 5721a58365d0..6fedaa2ef861 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/chef.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/chef.yml @@ -67,6 +67,7 @@ # SPDX-FileCopyrightText: 2025 Aiden <28298836+Aidenkrz@users.noreply.github.com> # SPDX-FileCopyrightText: 2025 Aidenkrz # SPDX-FileCopyrightText: 2025 Armok <155400926+ARMOKS@users.noreply.github.com> +# SPDX-FileCopyrightText: 2025 Froffy025 # SPDX-FileCopyrightText: 2025 GoobBot # SPDX-FileCopyrightText: 2025 ImWeax <59857479+ImWeax@users.noreply.github.com> # SPDX-FileCopyrightText: 2025 Lincoln McQueen @@ -108,7 +109,6 @@ - type: startingGear id: ChefGear equipment: - shoes: ClothingShoesColorBlack id: ChefPDA ears: ClothingHeadsetService belt: ClothingBeltChefFilled diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/lawyer.yml b/Resources/Prototypes/Roles/Jobs/Civilian/lawyer.yml index 0e7c1bf79fdb..2ef8de09ed11 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/lawyer.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/lawyer.yml @@ -58,7 +58,9 @@ # SPDX-FileCopyrightText: 2025 Aiden <28298836+Aidenkrz@users.noreply.github.com> # SPDX-FileCopyrightText: 2025 Aidenkrz # SPDX-FileCopyrightText: 2025 Armok <155400926+ARMOKS@users.noreply.github.com> +# SPDX-FileCopyrightText: 2025 Froffy025 # SPDX-FileCopyrightText: 2025 GoobBot +# SPDX-FileCopyrightText: 2025 Minemoder5000 # SPDX-FileCopyrightText: 2025 Solstice # SPDX-FileCopyrightText: 2025 SolsticeOfTheWinter # SPDX-FileCopyrightText: 2025 deltanedas <39013340+deltanedas@users.noreply.github.com> @@ -91,7 +93,6 @@ - type: startingGear id: LawyerGear equipment: - shoes: ClothingShoesBootsLaceup id: LawyerPDA ears: ClothingHeadsetSecurity inhand: diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/librarian.yml b/Resources/Prototypes/Roles/Jobs/Civilian/librarian.yml index 373d5f266bce..f65d0ce772fb 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/librarian.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/librarian.yml @@ -56,6 +56,7 @@ # SPDX-FileCopyrightText: 2025 Aiden <28298836+Aidenkrz@users.noreply.github.com> # SPDX-FileCopyrightText: 2025 Aidenkrz # SPDX-FileCopyrightText: 2025 Armok <155400926+ARMOKS@users.noreply.github.com> +# SPDX-FileCopyrightText: 2025 Froffy025 # SPDX-FileCopyrightText: 2025 GoobBot # SPDX-FileCopyrightText: 2025 Orion-416 # SPDX-FileCopyrightText: 2025 SX-7 @@ -82,7 +83,6 @@ - type: startingGear id: LibrarianGear equipment: - shoes: ClothingShoesBootsLaceup id: LibrarianPDA ears: ClothingHeadsetService pocket1: d20Dice diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/mime.yml b/Resources/Prototypes/Roles/Jobs/Civilian/mime.yml index 4a060781cefb..8e84fadfe8f9 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/mime.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/mime.yml @@ -115,8 +115,13 @@ # SPDX-FileCopyrightText: 2025 Aiden <28298836+Aidenkrz@users.noreply.github.com> # SPDX-FileCopyrightText: 2025 Aidenkrz # SPDX-FileCopyrightText: 2025 Armok <155400926+ARMOKS@users.noreply.github.com> +# SPDX-FileCopyrightText: 2025 Froffy025 <78222136+Froffy025@users.noreply.github.com> +# SPDX-FileCopyrightText: 2025 Froffy025 +# SPDX-FileCopyrightText: 2025 GoobBot +# SPDX-FileCopyrightText: 2025 SX-7 # SPDX-FileCopyrightText: 2025 Simon <63975668+Simyon264@users.noreply.github.com> # SPDX-FileCopyrightText: 2025 SpeltIncorrectyl <66873282+SpeltIncorrectyl@users.noreply.github.com> +# SPDX-FileCopyrightText: 2025 gluesniffler <159397573+gluesniffler@users.noreply.github.com> # # SPDX-License-Identifier: AGPL-3.0-or-later diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/musician.yml b/Resources/Prototypes/Roles/Jobs/Civilian/musician.yml index b5c920762606..0c16d30c6230 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/musician.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/musician.yml @@ -76,7 +76,6 @@ id: MusicianGear equipment: eyes: ClothingEyesGlassesSunglasses - shoes: ClothingShoesBootsLaceup id: MusicianPDA ears: ClothingHeadsetService #storage: diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/service_worker.yml b/Resources/Prototypes/Roles/Jobs/Civilian/service_worker.yml index 132f8ba2ca66..2512065a48d6 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/service_worker.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/service_worker.yml @@ -100,7 +100,6 @@ - type: startingGear id: ServiceWorkerGear equipment: - shoes: ClothingShoesColorBlack id: ServiceWorkerPDA ears: ClothingHeadsetService #storage: diff --git a/Resources/Prototypes/_DV/Entities/Clothing/Neck/cloaks.yml b/Resources/Prototypes/_DV/Entities/Clothing/Neck/cloaks.yml new file mode 100644 index 000000000000..efbd0d5c5f12 --- /dev/null +++ b/Resources/Prototypes/_DV/Entities/Clothing/Neck/cloaks.yml @@ -0,0 +1,26 @@ +# SPDX-FileCopyrightText: 2025 BloodfiendishOperator <141253729+Diggy0@users.noreply.github.com> +# SPDX-FileCopyrightText: 2025 GoobBot +# +# SPDX-License-Identifier: AGPL-3.0-or-later + +- type: entity + parent: [ClothingNeckBase, BaseCentcommContraband] + id: ClothingNeckCloakBoat + name: NanoTrasen boat cloak + description: A regal blue durathread boat cloak with a red felt lining and gold trim. Somehow, it's even more expensive than it looks. + components: + - type: Sprite + sprite: _DV/Clothing/Neck/Cloaks/boatcloak.rsi + - type: Clothing + sprite: _DV/Clothing/Neck/Cloaks/boatcloak.rsi + +- type: entity + parent: ClothingNeckBase + id: ClothingNeckSalvager + name: salvager's cloak + description: Worn by dangerous people who've deconstructed stations with ease. + components: + - type: Sprite + sprite: _DV/Clothing/Neck/Cloaks/salvage.rsi + - type: Clothing + sprite: _DV/Clothing/Neck/Cloaks/salvage.rsi diff --git a/Resources/Prototypes/_DV/Entities/Clothing/OuterClothing/coats.yml b/Resources/Prototypes/_DV/Entities/Clothing/OuterClothing/coats.yml new file mode 100644 index 000000000000..90f75343435d --- /dev/null +++ b/Resources/Prototypes/_DV/Entities/Clothing/OuterClothing/coats.yml @@ -0,0 +1,24 @@ +# SPDX-FileCopyrightText: 2025 BloodfiendishOperator <141253729+Diggy0@users.noreply.github.com> +# SPDX-FileCopyrightText: 2025 Froffy025 +# SPDX-FileCopyrightText: 2025 GoobBot +# +# SPDX-License-Identifier: AGPL-3.0-or-later + +- type: entity + parent: ClothingOuterStorageBase + id: ClothingOuterCoatOvercoat + name: overcoat + description: A warm, dark overcoat, suitable for formal occasions. + components: + - type: Sprite + sprite: _DV/Clothing/OuterClothing/Coats/overcoat.rsi + - type: Clothing + sprite: _DV/Clothing/OuterClothing/Coats/overcoat.rsi + - type: TemperatureProtection + heatingCoefficient: 1.1 + coolingCoefficient: 0.1 + - type: Armor + modifiers: + coefficients: + Slash: 0.9 + Heat: 0.75 diff --git a/Resources/Prototypes/_DV/Entities/Clothing/OuterClothing/wintercoats.yml b/Resources/Prototypes/_DV/Entities/Clothing/OuterClothing/wintercoats.yml new file mode 100644 index 000000000000..38cae30cb528 --- /dev/null +++ b/Resources/Prototypes/_DV/Entities/Clothing/OuterClothing/wintercoats.yml @@ -0,0 +1,15 @@ +# SPDX-FileCopyrightText: 2025 BloodfiendishOperator <141253729+Diggy0@users.noreply.github.com> +# SPDX-FileCopyrightText: 2025 GoobBot +# +# SPDX-License-Identifier: AGPL-3.0-or-later + +- type: entity + parent: ClothingOuterWinterCoat + id: ClothingOuterDenimJacket + name: Denim jacket + description: A jean jacket with a warm inner lining. + components: + - type: Sprite + sprite: _DV/Clothing/OuterClothing/WinterCoats/denim_jacket.rsi + - type: Clothing + sprite: _DV/Clothing/OuterClothing/WinterCoats/denim_jacket.rsi diff --git a/Resources/Prototypes/_EinsteinEngines/Entities/Clothing/Back/satchel.yml b/Resources/Prototypes/_EinsteinEngines/Entities/Clothing/Back/satchel.yml new file mode 100644 index 000000000000..13c9a37d4217 --- /dev/null +++ b/Resources/Prototypes/_EinsteinEngines/Entities/Clothing/Back/satchel.yml @@ -0,0 +1,28 @@ +# SPDX-FileCopyrightText: 2025 BloodfiendishOperator <141253729+Diggy0@users.noreply.github.com> +# SPDX-FileCopyrightText: 2025 Froffy025 +# SPDX-FileCopyrightText: 2025 GoobBot +# +# SPDX-License-Identifier: AGPL-3.0-or-later +- type: entity + parent: [ClothingBackpackSatchel, BaseFoldable] + id: ClothingBackpackSatchelPurse + name: purse + description: A small, fashionable bag typically worn over the shoulder. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/Back/Satchels/purse.rsi + - type: Foldable + canFoldInsideContainer: true + unfoldVerbText: fold-flip-verb + foldVerbText: fold-flip-verb + - type: FoldableClothing + foldedEquippedPrefix: flipped +- type: entity + parent: ClothingBackpackSatchelPurse + id: ClothingBackpackSatchelPurseFlipped + suffix: flipped + components: + - type: Foldable + folded: true + - type: Clothing + equippedPrefix: flipped diff --git a/Resources/Prototypes/_EinsteinEngines/Entities/Clothing/Neck/neck.yml b/Resources/Prototypes/_EinsteinEngines/Entities/Clothing/Neck/neck.yml new file mode 100644 index 000000000000..59d864145200 --- /dev/null +++ b/Resources/Prototypes/_EinsteinEngines/Entities/Clothing/Neck/neck.yml @@ -0,0 +1,17 @@ +# SPDX-FileCopyrightText: 2025 BloodfiendishOperator <141253729+Diggy0@users.noreply.github.com> +# SPDX-FileCopyrightText: 2025 GoobBot +# +# SPDX-License-Identifier: AGPL-3.0-or-later + +- type: entity + parent: ClothingNeckBase + id: ClothingNeckFurWrap + name: fur mantle + description: A synthetic fur decoration for the neck. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/Neck/fur_wrap.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/Neck/fur_wrap.rsi + + diff --git a/Resources/Prototypes/_EinsteinEngines/Entities/Clothing/OuterClothing/base_clothingouter.yml b/Resources/Prototypes/_EinsteinEngines/Entities/Clothing/OuterClothing/base_clothingouter.yml new file mode 100644 index 000000000000..09011da5be05 --- /dev/null +++ b/Resources/Prototypes/_EinsteinEngines/Entities/Clothing/OuterClothing/base_clothingouter.yml @@ -0,0 +1,46 @@ +# SPDX-FileCopyrightText: 2025 BloodfiendishOperator <141253729+Diggy0@users.noreply.github.com> +# SPDX-FileCopyrightText: 2025 GoobBot +# +# SPDX-License-Identifier: AGPL-3.0-or-later + +- type: entity + abstract: true + parent: [ClothingOuterBase, BaseFoldable] + id: ClothingOuterFoldableBase + components: + - type: Appearance + - type: Foldable + canFoldInsideContainer: true + unfoldVerbText: fold-zip-verb + foldVerbText: fold-unzip-verb + - type: FoldableClothing + foldedEquippedPrefix: open + foldedHeldPrefix: open + - type: Sprite + layers: + - state: icon + map: [ "unfoldedLayer" ] + - state: icon-open + map: ["foldedLayer"] + visible: false + +- type: entity + abstract: true + parent: ClothingOuterFoldableBase + id: ClothingOuterFoldableBaseOpened + suffix: opened + components: + - type: Foldable + folded: true + - type: Clothing + equippedPrefix: open + - type: Item + heldPrefix: open + - type: Sprite + layers: + - state: icon + map: [ "unfoldedLayer" ] + visible: false + - state: icon-open + map: ["foldedLayer"] + visible: true diff --git a/Resources/Prototypes/_EinsteinEngines/Entities/Clothing/OuterClothing/coats.yml b/Resources/Prototypes/_EinsteinEngines/Entities/Clothing/OuterClothing/coats.yml new file mode 100644 index 000000000000..b97b9bf8769d --- /dev/null +++ b/Resources/Prototypes/_EinsteinEngines/Entities/Clothing/OuterClothing/coats.yml @@ -0,0 +1,107 @@ +# SPDX-FileCopyrightText: 2025 BloodfiendishOperator <141253729+Diggy0@users.noreply.github.com> +# SPDX-FileCopyrightText: 2025 GoobBot +# +# SPDX-License-Identifier: AGPL-3.0-or-later + +- type: entity + parent: ClothingOuterStorageBase + id: ClothingOuterCoatInspector + name: slim trench coat + description: A slim minimalist trench coat best worn unbuttoned. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/OuterClothing/Coats/insp_coat.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/OuterClothing/Coats/insp_coat.rsi + +- type: entity + parent: ClothingOuterBase + id: ClothingOuterCoatModern + name: modern coat + description: A coat that has a nice finished feel. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/OuterClothing/Coats/modern_coat.rsi + - type: Clothing + sprite: Clothing/OuterClothing/Coats/modern_coat.rsi + +- type: entity + parent: ClothingOuterBase + id: ClothingOuterTailcoat + name: tailcoat + description: A fancy Victorian-style tailcoat. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/OuterClothing/Coats/tailcoat.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/OuterClothing/Coats/tailcoat.rsi + +- type: entity + parent: ClothingOuterBase + id: ClothingOuterCoatVictorian + name: black victorian coat + description: A fancy Victorian-style coat. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/OuterClothing/Coats/victorian_coat.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/OuterClothing/Coats/victorian_coat.rsi + +- type: entity + parent: ClothingOuterBase + id: ClothingOuterCoatVictorianRed + name: red victorian coat + description: A fancy Victorian-style coat in a red hue. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/OuterClothing/Coats/victorian_coat_red.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/OuterClothing/Coats/victorian_coat_red.rsi + +- type: entity + parent: ClothingOuterStorageFoldableBase + id: ClothingOuterCoatPeacoat + name: peacoat + description: A well-tailored, stylish peacoat. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/OuterClothing/Coats/peacoat.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/OuterClothing/Coats/peacoat.rsi + +- type: entity + parent: [ClothingOuterFoldableBaseOpened, ClothingOuterCoatPeacoat] + id: ClothingOuterCoatPeacoatOpened + name: peacoat + +- type: entity + parent: ClothingOuterStorageFoldableBase + id: ClothingOuterCoatAsymmetric + name: asymmetric coat + description: A solid sleeveless coat that only covers the upper body and the back of the legs. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/OuterClothing/Coats/asymmetric_coat.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/OuterClothing/Coats/asymmetric_coat.rsi + +- type: entity + parent: [ClothingOuterFoldableBaseOpened, ClothingOuterCoatAsymmetric] + id: ClothingOuterCoatAsymmetricOpened + name: asymmetric coat + +- type: entity + parent: ClothingOuterStorageFoldableBase + id: ClothingOuterCoatSubmariner + name: submariner coat + description: A leather jacket with a synthetic fur collar perfect for exploring the caves of Submarine. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/OuterClothing/Coats/submariner.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/OuterClothing/Coats/submariner.rsi + +- type: entity + parent: [ClothingOuterFoldableBaseOpened, ClothingOuterCoatSubmariner] + id: ClothingOuterCoatSubmarinerOpened + name: submariner coat diff --git a/Resources/Prototypes/_EinsteinEngines/Entities/Clothing/OuterClothing/misc.yml b/Resources/Prototypes/_EinsteinEngines/Entities/Clothing/OuterClothing/misc.yml new file mode 100644 index 000000000000..d40e472647b9 --- /dev/null +++ b/Resources/Prototypes/_EinsteinEngines/Entities/Clothing/OuterClothing/misc.yml @@ -0,0 +1,171 @@ +# SPDX-FileCopyrightText: 2025 BloodfiendishOperator <141253729+Diggy0@users.noreply.github.com> +# SPDX-FileCopyrightText: 2025 GoobBot +# +# SPDX-License-Identifier: AGPL-3.0-or-later + +- type: entity + parent: ClothingOuterStorageFoldableBase + id: ClothingOuterSuitJacket + name: suit jacket + description: A snappy dress jacket. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/OuterClothing/Misc/suit_jacket.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/OuterClothing/Misc/suit_jacket.rsi + +- type: entity + parent: [ClothingOuterStorageFoldableBaseOpened, ClothingOuterSuitJacket] + id: ClothingOuterSuitJacketOpened + name: suit jacket + +- type: entity + parent: ClothingOuterFoldableBase + id: ClothingOuterCardigan + name: cardigan + description: Only slightly worse than a blanket. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/OuterClothing/Misc/cardigan.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/OuterClothing/Misc/cardigan.rsi + +- type: entity + parent: [ClothingOuterFoldableBaseOpened, ClothingOuterCardigan] + id: ClothingOuterCardiganOpened + name: cardigan + +- type: entity + parent: ClothingOuterFoldableBase + id: ClothingOuterCardiganSweater + name: sweater cardigan + description: Half as warm as a sweater, and half as fashionable as a cardigan. Not like it matters for coffee-house dwelling beatniks like yourself. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/OuterClothing/Misc/cardigan_sweater.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/OuterClothing/Misc/cardigan_sweater.rsi + +- type: entity + parent: [ClothingOuterFoldableBaseOpened, ClothingOuterCardiganSweater] + id: ClothingOuterCardiganSweaterOpened + name: sweater cardigan + +- type: entity + parent: ClothingOuterFoldableBase + id: ClothingOuterCardiganArgyle + name: argyle cardigan + description: You'll never get dumped if you never get in a relationship in the first place. With this, you'll never have to worry again because of how horrible it is. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/OuterClothing/Misc/cardigan_argyle.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/OuterClothing/Misc/cardigan_argyle.rsi + +- type: entity + parent: [ClothingOuterFoldableBaseOpened, ClothingOuterCardiganArgyle] + id: ClothingOuterCardiganArgyleOpened + name: argyle cardigan + +- type: entity + parent: ClothingOuterFoldableBase + id: ClothingOuterCardiganSlim + name: slim cardigan + description: A cozy sleek cardigan in a classic style. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/OuterClothing/Misc/cardigan_slim.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/OuterClothing/Misc/cardigan_slim.rsi + +- type: entity + parent: [ClothingOuterFoldableBaseOpened, ClothingOuterCardiganSlim] + id: ClothingOuterCardiganSlimOpened + name: slim cardigan + +- type: entity + parent: ClothingOuterBase + id: ClothingOuterCowboyDuster + name: cowboy duster + description: A duster commonly seen on cowboys from Earth's late 1800's. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/OuterClothing/Misc/cowboy_duster.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/OuterClothing/Misc/cowboy_duster.rsi + +- type: entity + parent: ClothingOuterStorageFoldableBase + id: ClothingOuterBlazer + name: blazer + description: A charming jacket for when you want to play ball sports like an aristocrat. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/OuterClothing/Misc/blazer.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/OuterClothing/Misc/blazer.rsi + +- type: entity + parent: [ClothingOuterFoldableBaseOpened, ClothingOuterBlazer] + id: ClothingOuterBlazerOpened + name: blazer + +- type: entity + parent: ClothingOuterStorageFoldableBase + id: ClothingOuterBlazerLong + name: long blazer + description: A charming long jacket that almost substitutes for a coat. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/OuterClothing/Misc/blazer_long.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/OuterClothing/Misc/blazer_long.rsi + +- type: entity + parent: [ClothingOuterFoldableBaseOpened, ClothingOuterBlazerLong] + id: ClothingOuterBlazerLongOpened + name: long blazer + +- type: entity + parent: ClothingOuterBase + id: ClothingOuterBlazerFormal + name: formal blazer + description: A slim-fit blazer suitable for both smart casual and formal outfits. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/OuterClothing/Misc/blazer_formal.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/OuterClothing/Misc/blazer_formal.rsi + +- type: entity + parent: ClothingOuterBase + id: ClothingOuterBlazerLooseSleeve + name: loose sleeve blazer + description: One of those hippie-formal wannabe blazers. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/OuterClothing/Misc/blazer_loose_sleeve.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/OuterClothing/Misc/blazer_loose_sleeve.rsi + +- type: entity + parent: ClothingOuterBase + id: ClothingOuterBlazerFlatCollar + name: flat collar blazer + description: For those grown ups that didn't wanna. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/OuterClothing/Misc/blazer_flat_collar.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/OuterClothing/Misc/blazer_flat_collar.rsi + +- type: entity + parent: ClothingOuterBase + id: ClothingOuterBlazerPosh + name: posh blazer + description: This is a bit fancy, like the new service worker in Saltern who is trying too hard to impress the heads. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/OuterClothing/Misc/blazer_posh.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/OuterClothing/Misc/blazer_posh.rsi diff --git a/Resources/Prototypes/_EinsteinEngines/Entities/Clothing/OuterClothing/vests.yml b/Resources/Prototypes/_EinsteinEngines/Entities/Clothing/OuterClothing/vests.yml new file mode 100644 index 000000000000..eded4c638fdf --- /dev/null +++ b/Resources/Prototypes/_EinsteinEngines/Entities/Clothing/OuterClothing/vests.yml @@ -0,0 +1,15 @@ +# SPDX-FileCopyrightText: 2025 BloodfiendishOperator <141253729+Diggy0@users.noreply.github.com> +# SPDX-FileCopyrightText: 2025 GoobBot +# +# SPDX-License-Identifier: AGPL-3.0-or-later + +- type: entity + parent: ClothingOuterFoldableBase + id: ClothingOuterVestThick + name: thick vest + description: A vest made of synthetic leather. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/OuterClothing/Vests/vest_thick.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/OuterClothing/Vests/vest_thick.rsi diff --git a/Resources/Prototypes/_EinsteinEngines/Entities/Clothing/Uniforms/jumpskirts.yml b/Resources/Prototypes/_EinsteinEngines/Entities/Clothing/Uniforms/jumpskirts.yml new file mode 100644 index 000000000000..4f0b3cba83eb --- /dev/null +++ b/Resources/Prototypes/_EinsteinEngines/Entities/Clothing/Uniforms/jumpskirts.yml @@ -0,0 +1,488 @@ +# SPDX-FileCopyrightText: 2025 BloodfiendishOperator <141253729+Diggy0@users.noreply.github.com> +# SPDX-FileCopyrightText: 2025 GoobBot +# +# SPDX-License-Identifier: AGPL-3.0-or-later + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtDressAsymmetric + name: asymmetric dress + description: This dress forced the mothermatter to deyassinate in slaygineering. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/asymmetric_dress.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/asymmetric_dress.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtDressEvening + name: evening gown + description: A floor-length dress to impress. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/evening_gown.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/evening_gown.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtDressMidi + name: midi dress + description: Contrary to popular belief, you can't play music with this dress. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/midi_dress.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/midi_dress.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtDressTea + name: tea-length dress + description: Perfect for tea time! + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/tea_dress.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/tea_dress.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtDressSleeveless + name: sleeveless A-line dress + description: A simple sleeveless dress with a flared bottom. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/sleeveless_dress.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/sleeveless_dress.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtDressLongSleeve + name: long sleeve A-line dress + description: A dress with a flared bottom and sleeves that cover the arms. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/longsleeve_dress.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/longsleeve_dress.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtDressBlackAndGold + name: black and gold gown + description: Luckily it's not a white and blue gown. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/black_and_gold.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/black_and_gold.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtDressBlackTango + name: black tango dress + description: An earthen black tango dress. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/black_tango.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/black_tango.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtDressCheongsamBlue + name: blue cheongsam + description: A Chinese dress that hugs the body. This one is blue, the fabric styled with flowering tree branches. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/cheongsamblue.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/cheongsamblue.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtDressCheongsamGreen + name: green cheongsam + description: A Chinese dress that hugs the body. This one is green, patterned with overlapping jade fans. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/cheongsamgreen.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/cheongsamgreen.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtDressCheongsamPurple + name: purple cheongsam + description: A Chinese dress that hugs the body. This one is purple, embroidered with plum blossoms. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/cheongsampurple.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/cheongsampurple.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtDressCheongsamRed + name: red cheongsam + description: A Chinese dress that hugs the body. This one is red, with a golden leaf trim that climbs up the garment. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/cheongsamred.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/cheongsamred.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtDressCheongsamWhite + name: white cheongsam + description: A Chinese dress that hugs the body. This one is white, embroidered with a bright golden dragon. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/cheongsamwhite.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/cheongsamwhite.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtSuitBlueBlazer + name: blue blazer skirt + description: A bold yet conservative outfit, a red pencil skirt and a navy blazer. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/blue_blazer.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/blue_blazer.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtDressBlueSundress + name: long blue sundress + description: A long blue sun dress with white frills towards the bottom. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/blue_sundress.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/blue_sundress.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtDressClub + name: club dress + description: This well-tailored dress ate and left no crumbs. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/club_dress.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/club_dress.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtDressCoveter + name: coveter dress + description: Others will covet how your outfit slays with this dress. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/coveter.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/coveter.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtDressFlamenco + name: flamenco dress + description: A Mexican flamenco dress. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/flamenco.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/flamenco.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtDressFire + name: flame dress + description: A small black dress with a blue flames print on it. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/dress_fire.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/dress_fire.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtDressOrange + name: orange dress + description: A fancy orange gown for those who like to show leg. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/dress_orange.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/dress_orange.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtDressYellow + name: yellow dress + description: A flirty, little yellow dress. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/dress_yellow.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/dress_yellow.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtDressFlowergirl + name: flower dress + description: What did the flowers do to deserve this? + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/flowergirl.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/flowergirl.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtDressFluffy + name: fluffy dress + description: A lovely fluffed out dress with a black lacy top. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/fluffy.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/fluffy.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtDressFormalRed + name: formal red dress + description: A big formal red dress, a totally regular outfit in NanoTrasen stations. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/formalred.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/formalred.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtDressGothic + name: gothic dress + description: A black dress with a sheer mesh over it, tastefully old-school goth. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/gothic.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/gothic.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtKimonoColor + name: kimono + description: A traditional Japanese kimono. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/kimono_color.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/kimono_color.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtDressLacyGown + name: lacy gown + description: A beautiful lacy gown with laces at the bottom. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/lacy_gown.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/lacy_gown.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtDressLong + name: long dress + description: A long dress that reaches the floor. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/long_dress.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/long_dress.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtDressLongFlared + name: long flared dress + description: A long dress that flares out at the bottom. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/long_flared_dress.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/long_flared_dress.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtQipao + name: qipao + description: A traditional Solarian garment, typically made of (synthetic) silk. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/qipao.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/qipao.rsi + +- type: entity + parent: ClothingUniformJumpskirtQipao + id: ClothingUniformJumpskirtQipaoSlim + name: slim qipao + description: A traditional Solarian garment, typically made of (synthetic) silk. This one is fairly slim. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/qipao_slim.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/qipao_slim.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtDressRedSwept + name: red swept dress + description: A red dress that sweeps to the side. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/red_swept_dress.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/red_swept_dress.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtPencilSkirtGymBra + name: pencil skirt and gym bra + description: A fashion-forward pair popularized by an iconic space influencer. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/skirt_pencil_gym_bra.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/skirt_pencil_gym_bra.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtDressPuffy + name: puffy dress + description: An iconic dress with a very puffy bottom. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/puffydress.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/puffydress.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtSailor + name: sailor dress + description: Formal wear for the leader. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/sailor_dress.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/sailor_dress.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtDressShort + name: short dress + description: A short, plain dress. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/short_dress.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/short_dress.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtDressSpider + name: spider dress + description: A black dress with spider web patterns that instills fear in your arachnophobic enemies. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/spider.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/spider.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtDressStriped + name: striped dress + description: Fashion in space. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/striped_dress.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/striped_dress.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtDressSundress + name: sundress + description: Makes you want to frolic in a field of daisies. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/sundress.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/sundress.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtDressSundressWhite + name: white sundress + description: A white sundress decorated with purple lilies. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/sundress_white.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/sundress_white.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtDressVictorianBlack + name: black victorian dress + description: A black Victorian-style dress often paired with the black Victorian coat. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/victorian_black_dress.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/victorian_black_dress.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtDressVictorianRed + name: red victorian dress + description: A red Victorian-style dress often paired with the red Victorian coat. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/victorian_red_dress.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/victorian_red_dress.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtWaitress + name: waitress's outfit + description: Waitress! Waitress! More serves with that outfit please! + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/waitress.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/waitress.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtDressYellowSwoop + name: yellow swooped dress + description: A yellow dress that swoops to the side. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/yellowswoop.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpskirt/yellowswoop.rsi diff --git a/Resources/Prototypes/_EinsteinEngines/Entities/Clothing/Uniforms/jumpsuits.yml b/Resources/Prototypes/_EinsteinEngines/Entities/Clothing/Uniforms/jumpsuits.yml new file mode 100644 index 000000000000..d140628d2e57 --- /dev/null +++ b/Resources/Prototypes/_EinsteinEngines/Entities/Clothing/Uniforms/jumpsuits.yml @@ -0,0 +1,128 @@ +--- +# SPDX-FileCopyrightText: 2025 BloodfiendishOperator <141253729+Diggy0@users.noreply.github.com> +# SPDX-FileCopyrightText: 2025 GoobBot +# +# SPDX-License-Identifier: AGPL-3.0-or-later +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitFlannelJeans + name: flannel shirt and jeans + description: A red flannel shirt paired with pale blue jeans. How original. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpsuit/flannel_jeans.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpsuit/flannel_jeans.rsi +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitFlannelBlackJeans + name: black flannel shirt and jeans + description: Not just any flannel, a flannel shirt that's black! Daring today, + aren't we? + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpsuit/black_flannel_jeans.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpsuit/black_flannel_jeans.rsi +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitFlannelKhakis + name: flannel shirt and khakis + description: A red flannel shirt with tan khaki pants, a smart pairing. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpsuit/flannel_khakis.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpsuit/flannel_khakis.rsi +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitFlannelBlackKhakis + name: black flannel shirt and khakis + description: A black flannel shirt with tan khaki pants, a smart pairing. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpsuit/black_flannel_khakis.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpsuit/black_flannel_khakis.rsi +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitSuitBlueBlazer + name: blue blazer + description: A bold yet conservative outfit, red corduroys, navy blazer and a + tie. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpsuit/blue_blazer.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpsuit/blue_blazer.rsi +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitCheckered + name: checkered suit + description: The game was rigged from the start. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpsuit/checkered.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpsuit/checkered.rsi +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitOliveSweater + name: olive sweater + description: A cozy sweater that fits snugly on top of grey work pants. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpsuit/olive_sweater.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpsuit/olive_sweater.rsi +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitVictorianRedBlack + name: red and black victorian suit + description: A Victorian-style suit, fancy! + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpsuit/victorian_red_black.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpsuit/victorian_red_black.rsi +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitVictorianRedVest + name: red victorian suit + description: A Victorian-style suit, fancy! + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpsuit/victorian_red_vest.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpsuit/victorian_red_vest.rsi +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitVictorianVest + name: victorian suit + description: A Victorian-style suit, fancy! + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpsuit/victorian_vest.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpsuit/victorian_vest.rsi +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitYogaGymBra + name: yoga gym bra + description: A gym bra paired with yoga pants, perfect for working out and looking + good at the same time. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpsuit/yoga_gym_bra.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpsuit/yoga_gym_bra.rsi +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitRippedPunk + name: ripped punk jeans + description: Black ripped jeans and a fishnet top. How punk. + components: + - type: Sprite + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpsuit/rippedpunk.rsi + - type: Clothing + sprite: _EinsteinEngines/Clothing/Uniforms/Jumpsuit/rippedpunk.rsi diff --git a/Resources/Prototypes/_EinsteinEngines/Loadouts/Jobs/Civilian/passenger.yml b/Resources/Prototypes/_EinsteinEngines/Loadouts/Jobs/Civilian/passenger.yml index cc95fce2f6a5..207c41bcf274 100644 --- a/Resources/Prototypes/_EinsteinEngines/Loadouts/Jobs/Civilian/passenger.yml +++ b/Resources/Prototypes/_EinsteinEngines/Loadouts/Jobs/Civilian/passenger.yml @@ -1,9 +1,498 @@ +--- # SPDX-FileCopyrightText: 2025 BloodfiendishOperator <141253729+Diggy0@users.noreply.github.com> # SPDX-FileCopyrightText: 2025 GoobBot # # SPDX-License-Identifier: AGPL-3.0-or-later +# Head + +# Face + +# Jumpsuits + +# Random Clothing +- type: loadout + id: AssymetricDress + equipment: + jumpsuit: ClothingUniformJumpskirtDressAsymmetric + groupBy: "Dress" +- type: loadout + id: EveningDress + equipment: + jumpsuit: ClothingUniformJumpskirtDressEvening + groupBy: "Dress" +- type: loadout + id: MidiDress + equipment: + jumpsuit: ClothingUniformJumpskirtDressMidi + groupBy: "Dress" +- type: loadout + id: TeaDress + equipment: + jumpsuit: ClothingUniformJumpskirtDressTea + groupBy: "Dress" +- type: loadout + id: SlevelessDress + equipment: + jumpsuit: ClothingUniformJumpskirtDressSleeveless + groupBy: "Dress" +- type: loadout + id: LongSleeveDress + equipment: + jumpsuit: ClothingUniformJumpskirtDressLongSleeve + groupBy: "Dress" +- type: loadout + id: BlackNGoldDress + equipment: + jumpsuit: ClothingUniformJumpskirtDressBlackAndGold + groupBy: "Dress" +- type: loadout + id: TangoDress + equipment: + jumpsuit: ClothingUniformJumpskirtDressBlackTango + groupBy: "Dress" +- type: loadout + id: CheonsamGreenDress + equipment: + jumpsuit: ClothingUniformJumpskirtDressCheongsamGreen + groupBy: "Cheongsam" +- type: loadout + id: CheonsamPurpleDress + equipment: + jumpsuit: ClothingUniformJumpskirtDressCheongsamPurple + groupBy: "Cheongsam" +- type: loadout + id: CheonsamRedDress + equipment: + jumpsuit: ClothingUniformJumpskirtDressCheongsamRed + groupBy: "Cheongsam" +- type: loadout + id: CheonsamWhiteDress + equipment: + jumpsuit: ClothingUniformJumpskirtDressCheongsamWhite + groupBy: "Cheongsam" +- type: loadout + id: BlueSundress + equipment: + jumpsuit: ClothingUniformJumpskirtDressBlueSundress + groupBy: "Sundress" +- type: loadout + id: ClubDress + equipment: + jumpsuit: ClothingUniformJumpskirtDressClub + groupBy: "Dress" +- type: loadout + id: CovetDress + equipment: + jumpsuit: ClothingUniformJumpskirtDressCoveter + groupBy: "Dress" +- type: loadout + id: FlamencoDress + equipment: + jumpsuit: ClothingUniformJumpskirtDressFlamenco + groupBy: "Dress" +- type: loadout + id: FireDress + equipment: + jumpsuit: ClothingUniformJumpskirtDressFire + groupBy: "Dress" +- type: loadout + id: OrangeDress + equipment: + jumpsuit: ClothingUniformJumpskirtDressOrange + groupBy: "Dress" +- type: loadout + id: YellowDress + equipment: + jumpsuit: ClothingUniformJumpskirtDressYellow + groupBy: "Dress" +- type: loadout + id: FlowergirlDress + equipment: + jumpsuit: ClothingUniformJumpskirtDressFlowergirl + groupBy: "Dress" +- type: loadout + id: FluffyDress + equipment: + jumpsuit: ClothingUniformJumpskirtDressFluffy + groupBy: "Dress" +- type: loadout + id: FormalRedDress + equipment: + jumpsuit: ClothingUniformJumpskirtDressFormalRed + groupBy: "Dress" +- type: loadout + id: GothicDress + equipment: + jumpsuit: ClothingUniformJumpskirtDressGothic + groupBy: "Dress" +- type: loadout + id: OutfitKimono + equipment: + jumpsuit: ClothingUniformJumpskirtKimonoColor + groupBy: "Civkimo" +- type: loadout + id: LacyGownDress + equipment: + jumpsuit: ClothingUniformJumpskirtDressLacyGown + groupBy: "Dress" +- type: loadout + id: LongLongDress + equipment: + jumpsuit: ClothingUniformJumpskirtDressLong + groupBy: "Dress" +- type: loadout + id: FlaredDressOutfit + equipment: + jumpsuit: ClothingUniformJumpskirtDressLongFlared + groupBy: "Dress" +- type: loadout + id: QipaoOutfit + equipment: + jumpsuit: ClothingUniformJumpskirtQipao + groupBy: "Qiapo" +- type: loadout + id: QipaoOutfitSlim + equipment: + jumpsuit: ClothingUniformJumpskirtQipaoSlim + groupBy: "Qiapo" +- type: loadout + id: RedSweptDressOutfit + equipment: + jumpsuit: ClothingUniformJumpskirtDressRedSwept + groupBy: "Dress" +- type: loadout + id: GymBraOutfit + equipment: + jumpsuit: ClothingUniformJumpskirtPencilSkirtGymBra +- type: loadout + id: PuffyDressOutfit + equipment: + jumpsuit: ClothingUniformJumpskirtDressPuffy + groupBy: "Dress" +- type: loadout + id: SailorDress + equipment: + jumpsuit: ClothingUniformJumpskirtSailor + groupBy: "Dress" +- type: loadout + id: StripedDress + equipment: + jumpsuit: ClothingUniformJumpskirtDressStriped + groupBy: "Dress" +- type: loadout + id: SundressOutfit + equipment: + jumpsuit: ClothingUniformJumpskirtDressSundress + groupBy: "Sundress" +- type: loadout + id: SundressOutfitWhite + equipment: + jumpsuit: ClothingUniformJumpskirtDressSundressWhite + groupBy: "Sundress" +- type: loadout + id: VictorianBlackDress + equipment: + jumpsuit: ClothingUniformJumpskirtDressVictorianBlack + groupBy: "Vicdress" +- type: loadout + id: VictorianRedDress + equipment: + jumpsuit: ClothingUniformJumpskirtDressVictorianRed + groupBy: "Vicdress" +- type: loadout + id: YellowSwoopDress + equipment: + jumpsuit: ClothingUniformJumpskirtDressYellowSwoop + groupBy: "Dress" +- type: loadout + id: JumpsuitTShirtJeans + equipment: + jumpsuit: ClothingUniformJumpsuitTshirtJeans + groupBy: "Tshirt" +- type: loadout + id: JumpsuitTShirtJeansGray + equipment: + jumpsuit: ClothingUniformJumpsuitTshirtJeansGray + groupBy: "Tshirt" +- type: loadout + id: JumpsuitTShirtJeansPeach + equipment: + jumpsuit: ClothingUniformJumpsuitTshirtJeansPeach + groupBy: "Tshirt" +- type: loadout + id: JumpsuitTShirtJeansKhaki + equipment: + jumpsuit: ClothingUniformTShirtKhakiPants + groupBy: "Tshirt" +- type: loadout + id: FlannelJeansJumpsuit + equipment: + jumpsuit: ClothingUniformJumpsuitFlannelJeans + groupBy: "Flannel" +- type: loadout + id: BlackFlannelJeansJumpsuit + equipment: + jumpsuit: ClothingUniformJumpsuitFlannelBlackJeans + groupBy: "Flannel" +- type: loadout + id: KhakiFlannelJeansJumpsuit + equipment: + jumpsuit: ClothingUniformJumpsuitFlannelKhakis + groupBy: "Flannel" +- type: loadout + id: BlackKhakiFlannelJeansJumpsuit + equipment: + jumpsuit: ClothingUniformJumpsuitFlannelBlackKhakis + groupBy: "Flannel" +- type: loadout + id: BlueBlazerJumpsuit + equipment: + jumpsuit: ClothingUniformJumpsuitSuitBlueBlazer +- type: loadout + id: CheckeredSuitOutfit + equipment: + jumpsuit: ClothingUniformJumpsuitFlannelKhakis +- type: loadout + id: OliveSweaterOutfit + equipment: + jumpsuit: ClothingUniformJumpsuitOliveSweater +- type: loadout + id: VictorianBlackRedVest + equipment: + jumpsuit: ClothingUniformJumpsuitVictorianRedBlack + groupBy: "Vic" +- type: loadout + id: VictorianRedVest + equipment: + jumpsuit: ClothingUniformJumpsuitVictorianRedVest + groupBy: "Vic" +- type: loadout + id: VictorianVest + equipment: + jumpsuit: ClothingUniformJumpsuitVictorianVest + groupBy: "Vic" +- type: loadout + id: GymBra + equipment: + jumpsuit: ClothingUniformJumpsuitYogaGymBra +- type: loadout + id: RippedPunk + equipment: + jumpsuit: ClothingUniformJumpsuitRippedPunk + +# Neck +- type: loadout + id: FurWrap + equipment: + neck: ClothingNeckFurWrap - type: loadout id: OldNeckWrap equipment: neck: ClothingNeckOldClothWrap + +# Back +- type: loadout + id: ClothingPurse + equipment: + back: ClothingBackpackSatchelPurse + +# Gloves + +# Outerclothing +- type: loadout + id: PassengerWinterCoatLong + equipment: + outerClothing: ClothingOuterWinterCoatLong + groupBy: "Wintercoat" +- type: loadout + id: PassengerWinterCoatPlaid + equipment: + outerClothing: ClothingOuterWinterCoatPlaid + groupBy: "Wintercoat" +- type: loadout + id: PassengerRedVictorianCoat + equipment: + outerClothing: ClothingOuterCoatVictorianRed + groupBy: "Vic" +- type: loadout + id: PassengerBlackVictorianCoat + equipment: + outerClothing: ClothingOuterCoatVictorian + groupBy: "Vic" +- type: loadout + id: LettermanJacketBlue + equipment: + outerClothing: ClothingOuterCoatLettermanBlue + groupBy: "Letterman" +- type: loadout + id: LettermanJacketRed + equipment: + outerClothing: ClothingOuterCoatLettermanRed + groupBy: "Letterman" +- type: loadout + id: LettermanJacketBrown + equipment: + outerClothing: ClothingOuterCoatJacketLettermanBrown + groupBy: "Letterman" +- type: loadout + id: LettermanJacketMagenta + equipment: + outerClothing: ClothingOuterCoatJacketLettermanMagenta + groupBy: "Letterman" +- type: loadout + id: HoodieBlack + equipment: + outerClothing: ClothingOuterHoodieBlack + groupBy: "Hoodie" +- type: loadout + id: HoodieGrey + equipment: + outerClothing: ClothingOuterHoodieGrey + groupBy: "Hoodie" +- type: loadout + id: HyenhSweater + equipment: + outerClothing: ClothingOuterCoatHyenhSweater +- type: loadout + id: Vest + equipment: + outerClothing: ClothingOuterVest + groupBy: "Vest" +- type: loadout + id: VestThick + equipment: + outerClothing: ClothingOuterVestThick + groupBy: "Vest" +- type: loadout + id: DenimJacket + equipment: + outerClothing: ClothingOuterDenimJacket +- type: loadout + id: FlannelRed + equipment: + outerClothing: ClothingOuterFlannelRed + groupBy: "Flannel" +- type: loadout + id: FlannelGreen + equipment: + outerClothing: ClothingOuterFlannelGreen + groupBy: "Flannel" +- type: loadout + id: FlannelBlue + equipment: + outerClothing: ClothingOuterFlannelBlue + groupBy: "Flannel" +- type: loadout + id: Trench + equipment: + outerClothing: ClothingOuterCoatTrench + groupBy: "Trench" +- type: loadout + id: Jensen + equipment: + outerClothing: ClothingOuterCoatJensen + groupBy: "Blackcoat" +- type: loadout + id: Gentle + equipment: + outerClothing: ClothingOuterCoatGentle + groupBy: "Blackcoat" +- type: loadout + id: Inspector + equipment: + outerClothing: ClothingOuterCoatInspector + groupBy: "Trench" +- type: loadout + id: Overcoat + equipment: + outerClothing: ClothingOuterCoatOvercoat + groupBy: "Blackcoat" +- type: loadout + id: SuitJacket + equipment: + outerClothing: ClothingOuterSuitJacket + groupBy: "Blackcoat" +- type: loadout + id: Modern + equipment: + outerClothing: ClothingOuterCoatModern + groupBy: "Blackcoat" +- type: loadout + id: Tailcoat + equipment: + outerClothing: ClothingOuterTailcoat + groupBy: "Blackcoat" +- type: loadout + id: Cardigan + equipment: + outerClothing: ClothingOuterCardigan + groupBy: "Cardigan" +- type: loadout + id: CardiganArgyle + equipment: + outerClothing: ClothingOuterCardiganArgyle + groupBy: "Cardigan" +- type: loadout + id: CardiganSweater + equipment: + outerClothing: ClothingOuterCardiganSweater + groupBy: "Cardigan" +- type: loadout + id: CowboyDuster + equipment: + outerClothing: ClothingOuterCowboyDuster +- type: loadout + id: Blazer + equipment: + outerClothing: ClothingOuterBlazer + groupBy: "Blazer" +- type: loadout + id: BlazerLong + equipment: + outerClothing: ClothingOuterBlazerLong + groupBy: "Blazer" +- type: loadout + id: BlazerFormal + equipment: + outerClothing: ClothingOuterBlazerFormal + groupBy: "Blazer" +- type: loadout + id: BlazerLooseSleeve + equipment: + outerClothing: ClothingOuterBlazerLooseSleeve + groupBy: "Blazer" +- type: loadout + id: BlazerFlatCollar + equipment: + outerClothing: ClothingOuterBlazerFlatCollar + groupBy: "Blazer" +- type: loadout + id: BlazerPosh + equipment: + outerClothing: ClothingOuterBlazerPosh + groupBy: "Blazer" +- type: loadout + id: CoatPeacoat + equipment: + outerClothing: ClothingOuterCoatPeacoat +- type: loadout + id: CoatAsymmetric + equipment: + outerClothing: ClothingOuterCoatAsymmetric +- type: loadout + id: CoatSubmariner + equipment: + outerClothing: ClothingOuterCoatSubmariner +- type: loadout + id: CoatExpensive + equipment: + outerClothing: ClothingOuterCoatExpensive + +# Belt +- type: loadout + id: WaistLeatherBag + equipment: + belt: ClothingBeltStorageWaistbag + +# Shoes diff --git a/Resources/Prototypes/_Goobstation/Entities/Clothing/Shoes/boots.yml b/Resources/Prototypes/_Goobstation/Entities/Clothing/Shoes/boots.yml index 0ab40042b62a..d924fbfba544 100644 --- a/Resources/Prototypes/_Goobstation/Entities/Clothing/Shoes/boots.yml +++ b/Resources/Prototypes/_Goobstation/Entities/Clothing/Shoes/boots.yml @@ -284,3 +284,39 @@ Blunt: 0.95 Slash: 0.95 Piercing: 0.95 + +- type: entity + parent: ClothingShoesBaseButcherable + id: ClothingShoesBootsCombatFake + suffix: fake + name: combat boots + description: Robust combat boots for the civilian market. These aren't the real deal, but they look the part. + components: + - type: Sprite + sprite: Clothing/Shoes/Boots/combatboots.rsi + - type: Clothing + sprite: Clothing/Shoes/Boots/combatboots.rsi + +- type: entity + parent: ClothingShoesBaseButcherable + id: ClothingShoesBootsJackFake + name: jackboots + suffix: fake + description: Nanotrasen-issue Security combat boots for the civilian market. These aren't the real deal, but they look the part. + components: + - type: Sprite + sprite: Clothing/Shoes/Boots/jackboots.rsi + - type: Clothing + sprite: Clothing/Shoes/Boots/jackboots.rsi + +- type: entity + parent: ClothingShoesBaseButcherable + id: ClothingShoesBootsMercFake + suffix: fake + name: mercenary boots + description: Mercenary combat boots for the civilian market. These aren't the real deal, but they look the part. + components: + - type: Sprite + sprite: Clothing/Shoes/Boots/mercboots.rsi + - type: Clothing + sprite: Clothing/Shoes/Boots/mercboots.rsi diff --git a/Resources/Prototypes/_Goobstation/Loadouts/Jobs/Cargo/salvage.yml b/Resources/Prototypes/_Goobstation/Loadouts/Jobs/Cargo/salvage.yml index 00172d361611..56c46d9c4191 100644 --- a/Resources/Prototypes/_Goobstation/Loadouts/Jobs/Cargo/salvage.yml +++ b/Resources/Prototypes/_Goobstation/Loadouts/Jobs/Cargo/salvage.yml @@ -2,7 +2,10 @@ # SPDX-FileCopyrightText: 2024 Piras314 # SPDX-FileCopyrightText: 2024 fishbait # SPDX-FileCopyrightText: 2025 Aiden <28298836+Aidenkrz@users.noreply.github.com> +# SPDX-FileCopyrightText: 2025 BloodfiendishOperator <141253729+Diggy0@users.noreply.github.com> # SPDX-FileCopyrightText: 2025 GoobBot +# SPDX-FileCopyrightText: 2025 SX-7 +# SPDX-FileCopyrightText: 2025 Ted Lukin <66275205+pheenty@users.noreply.github.com> # SPDX-FileCopyrightText: 2025 pheenty # # SPDX-License-Identifier: AGPL-3.0-or-later @@ -25,6 +28,14 @@ equipment: neck: ClothingNeckCloakSalvagerSupreme +- type: loadout + id: SalvageCloak + effects: + - !type:GroupLoadoutEffect + proto: MasterMiner + equipment: + neck: ClothingNeckSalvager + - type: startingGear id: LostFrontierProspectorSuit equipment: diff --git a/Resources/Prototypes/_Goobstation/Loadouts/Jobs/Civilian/passenger.yml b/Resources/Prototypes/_Goobstation/Loadouts/Jobs/Civilian/passenger.yml new file mode 100644 index 000000000000..43bca6a225cd --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Loadouts/Jobs/Civilian/passenger.yml @@ -0,0 +1,134 @@ +--- +# SPDX-FileCopyrightText: 2025 BloodfiendishOperator <141253729+Diggy0@users.noreply.github.com> +# SPDX-FileCopyrightText: 2025 GoobBot +# +# SPDX-License-Identifier: AGPL-3.0-or-later + +# Shoes +- type: loadout + id: LoadoutWorkBoots + equipment: + shoes: ClothingShoesBootsWork +- type: loadout + id: LoadoutSalvageBoots + equipment: + shoes: ClothingShoesBootsSalvage +- type: loadout + id: LaceupShoes + equipment: + shoes: ClothingShoesBootsLaceup +- type: loadout + id: PerformerBoots + equipment: + shoes: ClothingShoesBootsPerformer +- type: loadout + id: JackBootsFake #The fake military boots are a different prototype without the slowdown modifier or internal storage, but the same texture. + equipment: + shoes: ClothingShoesBootsJackFake + groupBy: "combat" +- type: loadout + id: CombatBootsFake + equipment: + shoes: ClothingShoesBootsCombatFake + groupBy: "combat" +- type: loadout + id: MercBootsFake + equipment: + shoes: ClothingShoesBootsMercFake + groupBy: "combat" +- type: loadout + id: CowboyBootsBrown + equipment: + shoes: ClothingShoesBootsCowboyBrown + groupBy: "cowboy" +- type: loadout + id: CowboyBootsBlack + equipment: + shoes: ClothingShoesBootsCowboyBlack + groupBy: "cowboy" +- type: loadout + id: CowboyBootsWhite + equipment: + shoes: ClothingShoesBootsCowboyWhite + groupBy: "cowboy" +- type: loadout + id: CowboyBootsFancy + equipment: + shoes: ClothingShoesBootsCowboyFancy + groupBy: "cowboy" + +# Neck +- type: loadout + id: NeckScarfRed + equipment: + neck: ClothingNeckScarfStripedRed + groupBy: "scarf" +- type: loadout + id: NeckScarfBlue + equipment: + neck: ClothingNeckScarfStripedBlue + groupBy: "scarf" +- type: loadout + id: NeckScarfGreen + equipment: + neck: ClothingNeckScarfStripedGreen + groupBy: "scarf" +- type: loadout + id: NeckScarfBlack + equipment: + neck: ClothingNeckScarfStripedBlack + groupBy: "scarf" +- type: loadout + id: NeckScarfOrange + equipment: + neck: ClothingNeckScarfStripedOrange + groupBy: "scarf" +- type: loadout + id: NeckScarfPurple + equipment: + neck: ClothingNeckScarfStripedPurple + groupBy: "scarf" +- type: loadout + id: NeckTieRed + equipment: + neck: ClothingNeckTieRed + +# Gloves +- type: loadout + id: BlackGloves + equipment: + gloves: ClothingHandsGlovesColorBlack +- type: loadout + id: RedGloves + equipment: + gloves: ClothingHandsGlovesColorRed +- type: loadout + id: BlueGloves + equipment: + gloves: ClothingHandsGlovesColorBlue +- type: loadout + id: TealGloves + equipment: + gloves: ClothingHandsGlovesColorTeal +- type: loadout + id: BrownGloves + equipment: + gloves: ClothingHandsGlovesColorBrown +- type: loadout + id: GrayGloves + equipment: + gloves: ClothingHandsGlovesColorGray +- type: loadout + id: GreenGloves + equipment: + gloves: ClothingHandsGlovesColorGreen +- type: loadout + id: LightBrownGloves + equipment: + gloves: ClothingHandsGlovesColorLightBrown + +# Masks +- type: loadout + id: ClothingMaskSterile + equipment: + mask: ClothingMaskSterile diff --git a/Resources/Prototypes/_Goobstation/Loadouts/Jobs/Dignitary/nanotrasen_representative.yml b/Resources/Prototypes/_Goobstation/Loadouts/Jobs/Dignitary/nanotrasen_representative.yml index 049392b0d9b0..28872a2f2ec2 100644 --- a/Resources/Prototypes/_Goobstation/Loadouts/Jobs/Dignitary/nanotrasen_representative.yml +++ b/Resources/Prototypes/_Goobstation/Loadouts/Jobs/Dignitary/nanotrasen_representative.yml @@ -73,8 +73,10 @@ # SPDX-FileCopyrightText: 2024 to4no_fix <156101927+chavonadelal@users.noreply.github.com> # SPDX-FileCopyrightText: 2024 voidnull000 <18663194+voidnull000@users.noreply.github.com> # SPDX-FileCopyrightText: 2025 Aiden <28298836+Aidenkrz@users.noreply.github.com> +# SPDX-FileCopyrightText: 2025 BloodfiendishOperator <141253729+Diggy0@users.noreply.github.com> # SPDX-FileCopyrightText: 2025 GoobBot # SPDX-FileCopyrightText: 2025 Solstice +# SPDX-FileCopyrightText: 2025 Ted Lukin <66275205+pheenty@users.noreply.github.com> # SPDX-FileCopyrightText: 2025 grub # SPDX-FileCopyrightText: 2025 pheenty # SPDX-FileCopyrightText: 2025 shityaml @@ -133,6 +135,11 @@ equipment: neck: ClothingNeckScarfStripedCentcom +- type: loadout + id: ClothingCloakBoatNT + equipment: + neck: ClothingNeckCloakBoat + # Backpacks - type: loadout id: NanotrasenRepresentativeBackpack @@ -182,11 +189,6 @@ equipment: belt: BoxFolderCentComClipboard -- type: loadout - id: NanotrasenRepresentativeWaistbag - equipment: - belt: ClothingBeltStorageWaistbag - # Shoes - type: loadout id: NanotrasenRepresentativeBoots diff --git a/Resources/Prototypes/_Goobstation/Loadouts/Jobs/Wildcards/boxer.yml b/Resources/Prototypes/_Goobstation/Loadouts/Jobs/Wildcards/boxer.yml new file mode 100644 index 000000000000..cb35a674572a --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Loadouts/Jobs/Wildcards/boxer.yml @@ -0,0 +1,7 @@ + +# Jumpsuit +- type: loadout + id: ClothingUniformMartialGiOutfit + equipment: + jumpsuit: ClothingUniformMartialGi + diff --git a/Resources/Prototypes/_Goobstation/Loadouts/loadout_groups.yml b/Resources/Prototypes/_Goobstation/Loadouts/loadout_groups.yml index f130f673f7bc..3fb0e63a7d2f 100644 --- a/Resources/Prototypes/_Goobstation/Loadouts/loadout_groups.yml +++ b/Resources/Prototypes/_Goobstation/Loadouts/loadout_groups.yml @@ -906,10 +906,12 @@ minLimit: 0 loadouts: - ClothingNeckScarfStripedCentcom + - ClothingCloakBoatNT - type: loadoutGroup id: NanotrasenRepresentativeBackpack name: loadout-group-ntr-backpack + exclusiveWith: BACK loadouts: - NanotrasenRepresentativeBackpack - NanotrasenRepresentativeSatchel @@ -919,6 +921,7 @@ - type: loadoutGroup id: NanotrasenRepresentativeJumpsuit name: loadout-group-ntr-jumpsuit + exclusiveWith: INNERCLOTHING loadouts: - NanotrasenRepresentativeJumpsuit - NanotrasenRepresentativeJumpskirt @@ -929,11 +932,11 @@ minLimit: 0 loadouts: - NanotrasenRepresentativeClipboard - - NanotrasenRepresentativeWaistbag - type: loadoutGroup id: NanotrasenRepresentativeShoes name: loadout-group-ntr-shoes + minLimit: 1 loadouts: - NanotrasenRepresentativeBoots - NanotrasenRepresentativeShoes @@ -983,6 +986,7 @@ - type: loadoutGroup id: BlueshieldOfficerBackpack name: loadout-group-bso-backpack + exclusiveWith: BACK loadouts: - BlueshieldOfficerBackpack - BlueshieldOfficerSatchel @@ -992,14 +996,14 @@ - type: loadoutGroup id: BlueshieldOfficerJumpsuit name: loadout-group-bso-jumpsuit + exclusiveWith: INNERCLOTHING loadouts: - - BlueshieldOfficerInnerBlueshieldSuit - BlueshieldOfficerInnerBlueshieldSkirt - - BlueshieldOfficerInnerBlueshieldShirt - type: loadoutGroup id: BlueshieldOfficerOuter name: loadout-group-bso-outer + minLimit: 0 loadouts: - BlueshieldOfficerOuterBlueshieldArmorVest - BlueshieldOfficerOuterBlueshieldArmoredJacket @@ -1023,6 +1027,7 @@ - type: loadoutGroup id: BlueshieldOfficerShoes name: loadout-group-bso-shoes + minLimit: 1 loadouts: - JackBoots - BlackCowboyBoots @@ -1073,6 +1078,7 @@ - type: loadoutGroup id: NanotrasenTrainerBackpack name: loadout-group-nct-backpack + exclusiveWith: BACK loadouts: - NanotrasenTrainerSatchel - NanotrasenTrainerBackpack @@ -1081,6 +1087,7 @@ - type: loadoutGroup id: NanotrasenTrainerJumpsuit name: loadout-group-nct-jumpsuit + exclusiveWith: INNERCLOTHING loadouts: - NanotrasenTrainerJumpsuit - NanotrasenTrainerJumpskirt @@ -1238,6 +1245,7 @@ minLimit: 0 loadouts: - MinerCloak + - SalvageCloak # Chemist @@ -1321,6 +1329,7 @@ - type: loadoutGroup id: BrigmedicJumpsuit name: loadout-group-brigmedic-jumpsuit + exclusiveWith: INNERCLOTHING loadouts: - BrigmedicJumpsuit - BrigmedicJumpskirt @@ -1348,6 +1357,7 @@ - type: loadoutGroup id: BrigmedicBackpack name: loadout-group-brigmedic-backpack + exclusiveWith: BACK loadouts: - BrigmedicBackpack - BrigmedicSatchel diff --git a/Resources/Prototypes/_NF/Entities/Clothing/Head/headwear_punks.yml b/Resources/Prototypes/_NF/Entities/Clothing/Head/headwear_punks.yml new file mode 100644 index 000000000000..9bade6e0f17b --- /dev/null +++ b/Resources/Prototypes/_NF/Entities/Clothing/Head/headwear_punks.yml @@ -0,0 +1,59 @@ +# Acid raincoat hoods +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatHoodAcidRaincoat + categories: [ HideSpawnMenu ] + name: acid raincoat hood + description: Mostly transparent raincoat hood made out of acid resistant polymers. + components: + - type: Sprite + sprite: _NF/Clothing/Head/Hoods/Coat/acid_raincoat.rsi + - type: Clothing + sprite: _NF/Clothing/Head/Hoods/Coat/acid_raincoat.rsi + - type: Armor + modifiers: + coefficients: + Caustic: 0.9 + - type: HideLayerClothing + slots: + - Hair + +- type: entity + parent: ClothingHeadHatHoodAcidRaincoat + id: ClothingHeadHatHoodAcidRaincoatBlue + categories: [ HideSpawnMenu ] + components: + - type: Sprite + sprite: _NF/Clothing/Head/Hoods/Coat/acid_raincoat_blue.rsi + - type: Clothing + sprite: _NF/Clothing/Head/Hoods/Coat/acid_raincoat_blue.rsi + +- type: entity + parent: ClothingHeadHatHoodAcidRaincoat + id: ClothingHeadHatHoodAcidRaincoatGreen + categories: [ HideSpawnMenu ] + components: + - type: Sprite + sprite: _NF/Clothing/Head/Hoods/Coat/acid_raincoat_green.rsi + - type: Clothing + sprite: _NF/Clothing/Head/Hoods/Coat/acid_raincoat_green.rsi + +- type: entity + parent: ClothingHeadHatHoodAcidRaincoat + id: ClothingHeadHatHoodAcidRaincoatMagenta + categories: [ HideSpawnMenu ] + components: + - type: Sprite + sprite: _NF/Clothing/Head/Hoods/Coat/acid_raincoat_magenta.rsi + - type: Clothing + sprite: _NF/Clothing/Head/Hoods/Coat/acid_raincoat_magenta.rsi + +- type: entity + parent: ClothingHeadHatHoodAcidRaincoat + id: ClothingHeadHatHoodAcidRaincoatYellow + categories: [ HideSpawnMenu ] + components: + - type: Sprite + sprite: _NF/Clothing/Head/Hoods/Coat/acid_raincoat_yellow.rsi + - type: Clothing + sprite: _NF/Clothing/Head/Hoods/Coat/acid_raincoat_yellow.rsi diff --git a/Resources/Prototypes/_NF/Entities/Clothing/OuterClothing/coats_punk.yml b/Resources/Prototypes/_NF/Entities/Clothing/OuterClothing/coats_punk.yml new file mode 100644 index 000000000000..66f5e99d96b5 --- /dev/null +++ b/Resources/Prototypes/_NF/Entities/Clothing/OuterClothing/coats_punk.yml @@ -0,0 +1,155 @@ + +# Acid raincoat +- type: entity + parent: ClothingOuterStorageToggleableBase + id: ClothingOuterCoatAcidRaincoat + name: acid raincoat + description: Mostly transparent raincoat made out of acid resistant polymers. Please, for the love of Space God, do wear undergarments. + components: + - type: Sprite + sprite: _NF/Clothing/OuterClothing/Coats/acid_raincoat.rsi + - type: Clothing + sprite: _NF/Clothing/OuterClothing/Coats/acid_raincoat.rsi + - type: Armor + modifiers: + coefficients: + Caustic: 0.4 + - type: ToggleableClothing + clothingPrototype: ClothingHeadHatHoodAcidRaincoat + +- type: entity + parent: ClothingOuterCoatAcidRaincoat + id: ClothingOuterCoatAcidRaincoatBlue + name: blue acid raincoat + components: + - type: Sprite + sprite: _NF/Clothing/OuterClothing/Coats/acid_raincoat_blue.rsi + - type: Clothing + sprite: _NF/Clothing/OuterClothing/Coats/acid_raincoat_blue.rsi + - type: ToggleableClothing + clothingPrototype: ClothingHeadHatHoodAcidRaincoatBlue + +- type: entity + parent: ClothingOuterCoatAcidRaincoat + id: ClothingOuterCoatAcidRaincoatGreen + name: green acid raincoat + components: + - type: Sprite + sprite: _NF/Clothing/OuterClothing/Coats/acid_raincoat_green.rsi + - type: Clothing + sprite: _NF/Clothing/OuterClothing/Coats/acid_raincoat_green.rsi + - type: ToggleableClothing + clothingPrototype: ClothingHeadHatHoodAcidRaincoatGreen + +- type: entity + parent: ClothingOuterCoatAcidRaincoat + id: ClothingOuterCoatAcidRaincoatMagenta + name: magenta acid raincoat + components: + - type: Sprite + sprite: _NF/Clothing/OuterClothing/Coats/acid_raincoat_magenta.rsi + - type: Clothing + sprite: _NF/Clothing/OuterClothing/Coats/acid_raincoat_magenta.rsi + - type: ToggleableClothing + clothingPrototype: ClothingHeadHatHoodAcidRaincoatMagenta + +- type: entity + parent: ClothingOuterCoatAcidRaincoat + id: ClothingOuterCoatAcidRaincoatYellow + name: yellow acid raincoat + components: + - type: Sprite + sprite: _NF/Clothing/OuterClothing/Coats/acid_raincoat_yellow.rsi + - type: Clothing + sprite: _NF/Clothing/OuterClothing/Coats/acid_raincoat_yellow.rsi + - type: ToggleableClothing + clothingPrototype: ClothingHeadHatHoodAcidRaincoatGreen + +# Jackets +- type: entity + parent: ClothingOuterStorageBase + id: ClothingOuterCoatBomberPunkRed + name: red punk bomber + description: Ya gotta 'ave style on dem streets. + components: + - type: Sprite + sprite: _NF/Clothing/OuterClothing/Coats/bomber_punk_red.rsi + - type: Clothing + sprite: _NF/Clothing/OuterClothing/Coats/bomber_punk_red.rsi + +- type: entity + parent: ClothingOuterStorageBase + id: ClothingOuterCoatJacketLeather + name: leather jacket + description: Rock'n'roll, babe! + components: + - type: Sprite + sprite: _NF/Clothing/OuterClothing/Coats/jacket_leather.rsi + - type: Clothing + sprite: _NF/Clothing/OuterClothing/Coats/jacket_leather.rsi + +- type: entity + parent: ClothingOuterStorageBase + id: ClothingOuterCoatJacketBiker + name: biker jacket + description: Made out of toughest synthleather for toughest badasses. + components: + - type: Sprite + sprite: _NF/Clothing/OuterClothing/Coats/jacket_biker.rsi + - type: Clothing + sprite: _NF/Clothing/OuterClothing/Coats/jacket_biker.rsi + +- type: entity + parent: ClothingOuterStorageBase + id: ClothingOuterCoatJacketJamrock + name: jamrock blazer + description: Welcome to jamrock. + components: + - type: Sprite + sprite: _NF/Clothing/OuterClothing/Coats/blazer_jamrock.rsi + - type: Clothing + sprite: _NF/Clothing/OuterClothing/Coats/blazer_jamrock.rsi + +- type: entity + parent: ClothingOuterStorageBase + id: ClothingOuterCoatBomberAerostatic + name: aerostatic bomber + description: When you wear it, you can always hear the sickest guitar solo in your mind. + components: + - type: Sprite + sprite: _NF/Clothing/OuterClothing/Coats/bomber_aerostatic.rsi + - type: Clothing + sprite: _NF/Clothing/OuterClothing/Coats/bomber_aerostatic.rsi + +- type: entity + parent: ClothingOuterStorageBase + id: ClothingOuterCoatJacketLettermanBrown + name: brown letterman jacket + description: Where is your lacrosse stick? + components: + - type: Sprite + sprite: _NF/Clothing/OuterClothing/Coats/jacket_letterman_brown.rsi + - type: Clothing + sprite: _NF/Clothing/OuterClothing/Coats/jacket_letterman_brown.rsi + +- type: entity + parent: ClothingOuterStorageBase + id: ClothingOuterCoatJacketLettermanMagenta + name: magenta letterman jacket + description: Where is your holocrosse joystick? + components: + - type: Sprite + sprite: _NF/Clothing/OuterClothing/Coats/jacket_letterman_magenta.rsi + - type: Clothing + sprite: _NF/Clothing/OuterClothing/Coats/jacket_letterman_magenta.rsi + +- type: entity + parent: ClothingOuterStorageBase + id: ClothingOuterCoatBomberPinkSleeves + name: bomber jacket + description: Oi! Whatcha lookin' at? + components: + - type: Sprite + sprite: _NF/Clothing/OuterClothing/Coats/bomber_pinksleeves.rsi + - type: Clothing + sprite: _NF/Clothing/OuterClothing/Coats/bomber_pinksleeves.rsi diff --git a/Resources/Prototypes/_NF/Loadouts/passenger.yml b/Resources/Prototypes/_NF/Loadouts/passenger.yml new file mode 100644 index 000000000000..a60ae0363e4a --- /dev/null +++ b/Resources/Prototypes/_NF/Loadouts/passenger.yml @@ -0,0 +1,55 @@ +--- +- type: loadout + id: AcidRaincoat + equipment: + outerClothing: ClothingOuterCoatAcidRaincoat + groupBy: "Acid" +- type: loadout + id: AcidRaincoatBlue + equipment: + outerClothing: ClothingOuterCoatAcidRaincoatBlue + groupBy: "Acid" +- type: loadout + id: AcidRaincoatGreen + equipment: + outerClothing: ClothingOuterCoatAcidRaincoatGreen + groupBy: "Acid" +- type: loadout + id: AcidRaincoatMagenta + equipment: + outerClothing: ClothingOuterCoatAcidRaincoatMagenta + groupBy: "Acid" +- type: loadout + id: AcidRaincoatYellow + equipment: + outerClothing: ClothingOuterCoatAcidRaincoatYellow + groupBy: "Acid" +- type: loadout + id: JacketLeather + equipment: + outerClothing: ClothingOuterCoatJacketLeather + groupBy: "Blackcoat" +- type: loadout + id: JacketBiker + equipment: + outerClothing: ClothingOuterCoatJacketBiker + groupBy: "Blackcoat" +- type: loadout + id: JacketJamrock + equipment: + outerClothing: ClothingOuterCoatJacketJamrock +- type: loadout + id: BomberAerostatic + equipment: + outerClothing: ClothingOuterCoatBomberAerostatic + groupBy: "Bomber" +- type: loadout + id: BomberPunkRed + equipment: + outerClothing: ClothingOuterCoatBomberPunkRed + groupBy: "Bomber" +- type: loadout + id: BomberPinkSleeves + equipment: + outerClothing: ClothingOuterCoatBomberPinkSleeves + groupBy: "Bomber" diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/black_dress.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Nyanotrasen/Clothing/Misc/black_dress.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..604d990c86ae Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Misc/black_dress.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/black_dress.rsi/icon.png b/Resources/Textures/Nyanotrasen/Clothing/Misc/black_dress.rsi/icon.png new file mode 100644 index 000000000000..47fb818b1375 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Misc/black_dress.rsi/icon.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/black_dress.rsi/inhand-left.png b/Resources/Textures/Nyanotrasen/Clothing/Misc/black_dress.rsi/inhand-left.png new file mode 100644 index 000000000000..d4a03435e34f Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Misc/black_dress.rsi/inhand-left.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/black_dress.rsi/inhand-right.png b/Resources/Textures/Nyanotrasen/Clothing/Misc/black_dress.rsi/inhand-right.png new file mode 100644 index 000000000000..33a020ee4675 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Misc/black_dress.rsi/inhand-right.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/black_dress.rsi/meta.json b/Resources/Textures/Nyanotrasen/Clothing/Misc/black_dress.rsi/meta.json new file mode 100644 index 000000000000..380a3f0c1360 --- /dev/null +++ b/Resources/Textures/Nyanotrasen/Clothing/Misc/black_dress.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Hyenh#6078 (313846233099927552)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/black_jacket.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Nyanotrasen/Clothing/Misc/black_jacket.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 000000000000..53e24a878ea3 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Misc/black_jacket.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/black_jacket.rsi/icon.png b/Resources/Textures/Nyanotrasen/Clothing/Misc/black_jacket.rsi/icon.png new file mode 100644 index 000000000000..eaf5d46e0abc Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Misc/black_jacket.rsi/icon.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/black_jacket.rsi/inhand-left.png b/Resources/Textures/Nyanotrasen/Clothing/Misc/black_jacket.rsi/inhand-left.png new file mode 100644 index 000000000000..a687d29d17f4 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Misc/black_jacket.rsi/inhand-left.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/black_jacket.rsi/inhand-right.png b/Resources/Textures/Nyanotrasen/Clothing/Misc/black_jacket.rsi/inhand-right.png new file mode 100644 index 000000000000..c08a0258546a Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Misc/black_jacket.rsi/inhand-right.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/black_jacket.rsi/meta.json b/Resources/Textures/Nyanotrasen/Clothing/Misc/black_jacket.rsi/meta.json new file mode 100644 index 000000000000..aae3ac4338c4 --- /dev/null +++ b/Resources/Textures/Nyanotrasen/Clothing/Misc/black_jacket.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Hyenh#6078 (313846233099927552)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/black_overall.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Nyanotrasen/Clothing/Misc/black_overall.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..2bd2cb286db3 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Misc/black_overall.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/black_overall.rsi/icon.png b/Resources/Textures/Nyanotrasen/Clothing/Misc/black_overall.rsi/icon.png new file mode 100644 index 000000000000..9e52164548b0 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Misc/black_overall.rsi/icon.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/black_overall.rsi/inhand-left.png b/Resources/Textures/Nyanotrasen/Clothing/Misc/black_overall.rsi/inhand-left.png new file mode 100644 index 000000000000..ab0a97c360b9 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Misc/black_overall.rsi/inhand-left.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/black_overall.rsi/inhand-right.png b/Resources/Textures/Nyanotrasen/Clothing/Misc/black_overall.rsi/inhand-right.png new file mode 100644 index 000000000000..44e99f37583c Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Misc/black_overall.rsi/inhand-right.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/black_overall.rsi/meta.json b/Resources/Textures/Nyanotrasen/Clothing/Misc/black_overall.rsi/meta.json new file mode 100644 index 000000000000..380a3f0c1360 --- /dev/null +++ b/Resources/Textures/Nyanotrasen/Clothing/Misc/black_overall.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Hyenh#6078 (313846233099927552)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/black_top_coat.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Nyanotrasen/Clothing/Misc/black_top_coat.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 000000000000..f557b69b59ec Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Misc/black_top_coat.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/black_top_coat.rsi/icon.png b/Resources/Textures/Nyanotrasen/Clothing/Misc/black_top_coat.rsi/icon.png new file mode 100644 index 000000000000..2d9f80552b29 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Misc/black_top_coat.rsi/icon.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/black_top_coat.rsi/inhand-left.png b/Resources/Textures/Nyanotrasen/Clothing/Misc/black_top_coat.rsi/inhand-left.png new file mode 100644 index 000000000000..bd3ef58fb0e7 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Misc/black_top_coat.rsi/inhand-left.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/black_top_coat.rsi/inhand-right.png b/Resources/Textures/Nyanotrasen/Clothing/Misc/black_top_coat.rsi/inhand-right.png new file mode 100644 index 000000000000..83988b011ec9 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Misc/black_top_coat.rsi/inhand-right.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/black_top_coat.rsi/meta.json b/Resources/Textures/Nyanotrasen/Clothing/Misc/black_top_coat.rsi/meta.json new file mode 100644 index 000000000000..aae3ac4338c4 --- /dev/null +++ b/Resources/Textures/Nyanotrasen/Clothing/Misc/black_top_coat.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Hyenh#6078 (313846233099927552)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/exposed_shoulder.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Nyanotrasen/Clothing/Misc/exposed_shoulder.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..70dab59c2e28 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Misc/exposed_shoulder.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/exposed_shoulder.rsi/icon.png b/Resources/Textures/Nyanotrasen/Clothing/Misc/exposed_shoulder.rsi/icon.png new file mode 100644 index 000000000000..61583c60555d Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Misc/exposed_shoulder.rsi/icon.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/exposed_shoulder.rsi/inhand-left.png b/Resources/Textures/Nyanotrasen/Clothing/Misc/exposed_shoulder.rsi/inhand-left.png new file mode 100644 index 000000000000..909e371c1f62 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Misc/exposed_shoulder.rsi/inhand-left.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/exposed_shoulder.rsi/inhand-right.png b/Resources/Textures/Nyanotrasen/Clothing/Misc/exposed_shoulder.rsi/inhand-right.png new file mode 100644 index 000000000000..ad7c1149c996 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Misc/exposed_shoulder.rsi/inhand-right.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/exposed_shoulder.rsi/meta.json b/Resources/Textures/Nyanotrasen/Clothing/Misc/exposed_shoulder.rsi/meta.json new file mode 100644 index 000000000000..380a3f0c1360 --- /dev/null +++ b/Resources/Textures/Nyanotrasen/Clothing/Misc/exposed_shoulder.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Hyenh#6078 (313846233099927552)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/gym_bra.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Nyanotrasen/Clothing/Misc/gym_bra.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..14459ecd681f Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Misc/gym_bra.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/gym_bra.rsi/icon.png b/Resources/Textures/Nyanotrasen/Clothing/Misc/gym_bra.rsi/icon.png new file mode 100644 index 000000000000..8609ddd7a98a Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Misc/gym_bra.rsi/icon.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/gym_bra.rsi/inhand-left.png b/Resources/Textures/Nyanotrasen/Clothing/Misc/gym_bra.rsi/inhand-left.png new file mode 100644 index 000000000000..124fa8d38292 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Misc/gym_bra.rsi/inhand-left.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/gym_bra.rsi/inhand-right.png b/Resources/Textures/Nyanotrasen/Clothing/Misc/gym_bra.rsi/inhand-right.png new file mode 100644 index 000000000000..fe4842b7658e Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Misc/gym_bra.rsi/inhand-right.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/gym_bra.rsi/meta.json b/Resources/Textures/Nyanotrasen/Clothing/Misc/gym_bra.rsi/meta.json new file mode 100644 index 000000000000..380a3f0c1360 --- /dev/null +++ b/Resources/Textures/Nyanotrasen/Clothing/Misc/gym_bra.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Hyenh#6078 (313846233099927552)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/hoodie_black.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Nyanotrasen/Clothing/Misc/hoodie_black.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 000000000000..f65c2a3f5c26 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Misc/hoodie_black.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/hoodie_black.rsi/icon.png b/Resources/Textures/Nyanotrasen/Clothing/Misc/hoodie_black.rsi/icon.png new file mode 100644 index 000000000000..8963b9b88d40 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Misc/hoodie_black.rsi/icon.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/hoodie_black.rsi/inhand-left.png b/Resources/Textures/Nyanotrasen/Clothing/Misc/hoodie_black.rsi/inhand-left.png new file mode 100644 index 000000000000..3c8cf9fdcd0c Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Misc/hoodie_black.rsi/inhand-left.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/hoodie_black.rsi/inhand-right.png b/Resources/Textures/Nyanotrasen/Clothing/Misc/hoodie_black.rsi/inhand-right.png new file mode 100644 index 000000000000..158709331d06 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Misc/hoodie_black.rsi/inhand-right.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/hoodie_black.rsi/meta.json b/Resources/Textures/Nyanotrasen/Clothing/Misc/hoodie_black.rsi/meta.json new file mode 100644 index 000000000000..aae3ac4338c4 --- /dev/null +++ b/Resources/Textures/Nyanotrasen/Clothing/Misc/hoodie_black.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Hyenh#6078 (313846233099927552)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/hoodie_white.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Nyanotrasen/Clothing/Misc/hoodie_white.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 000000000000..8a53c03c36cd Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Misc/hoodie_white.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/hoodie_white.rsi/icon.png b/Resources/Textures/Nyanotrasen/Clothing/Misc/hoodie_white.rsi/icon.png new file mode 100644 index 000000000000..2446ed99faca Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Misc/hoodie_white.rsi/icon.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/hoodie_white.rsi/inhand-left.png b/Resources/Textures/Nyanotrasen/Clothing/Misc/hoodie_white.rsi/inhand-left.png new file mode 100644 index 000000000000..9b322e643beb Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Misc/hoodie_white.rsi/inhand-left.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/hoodie_white.rsi/inhand-right.png b/Resources/Textures/Nyanotrasen/Clothing/Misc/hoodie_white.rsi/inhand-right.png new file mode 100644 index 000000000000..35f6847c7c4e Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Misc/hoodie_white.rsi/inhand-right.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/hoodie_white.rsi/meta.json b/Resources/Textures/Nyanotrasen/Clothing/Misc/hoodie_white.rsi/meta.json new file mode 100644 index 000000000000..aae3ac4338c4 --- /dev/null +++ b/Resources/Textures/Nyanotrasen/Clothing/Misc/hoodie_white.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Hyenh#6078 (313846233099927552)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/letterman_jacket_blue.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Nyanotrasen/Clothing/Misc/letterman_jacket_blue.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 000000000000..32ca4bb66eeb Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Misc/letterman_jacket_blue.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/letterman_jacket_blue.rsi/icon.png b/Resources/Textures/Nyanotrasen/Clothing/Misc/letterman_jacket_blue.rsi/icon.png new file mode 100644 index 000000000000..845d7af19501 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Misc/letterman_jacket_blue.rsi/icon.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/letterman_jacket_blue.rsi/inhand-left.png b/Resources/Textures/Nyanotrasen/Clothing/Misc/letterman_jacket_blue.rsi/inhand-left.png new file mode 100644 index 000000000000..36712bed8890 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Misc/letterman_jacket_blue.rsi/inhand-left.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/letterman_jacket_blue.rsi/inhand-right.png b/Resources/Textures/Nyanotrasen/Clothing/Misc/letterman_jacket_blue.rsi/inhand-right.png new file mode 100644 index 000000000000..8a7d7c6824a4 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Misc/letterman_jacket_blue.rsi/inhand-right.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/letterman_jacket_blue.rsi/meta.json b/Resources/Textures/Nyanotrasen/Clothing/Misc/letterman_jacket_blue.rsi/meta.json new file mode 100644 index 000000000000..aae3ac4338c4 --- /dev/null +++ b/Resources/Textures/Nyanotrasen/Clothing/Misc/letterman_jacket_blue.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Hyenh#6078 (313846233099927552)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/letterman_jacket_red.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Nyanotrasen/Clothing/Misc/letterman_jacket_red.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 000000000000..1b8cdf423e3c Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Misc/letterman_jacket_red.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/letterman_jacket_red.rsi/icon.png b/Resources/Textures/Nyanotrasen/Clothing/Misc/letterman_jacket_red.rsi/icon.png new file mode 100644 index 000000000000..869e2097b4d3 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Misc/letterman_jacket_red.rsi/icon.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/letterman_jacket_red.rsi/inhand-left.png b/Resources/Textures/Nyanotrasen/Clothing/Misc/letterman_jacket_red.rsi/inhand-left.png new file mode 100644 index 000000000000..e9036dfba86c Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Misc/letterman_jacket_red.rsi/inhand-left.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/letterman_jacket_red.rsi/inhand-right.png b/Resources/Textures/Nyanotrasen/Clothing/Misc/letterman_jacket_red.rsi/inhand-right.png new file mode 100644 index 000000000000..652d71e743f2 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Misc/letterman_jacket_red.rsi/inhand-right.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/letterman_jacket_red.rsi/meta.json b/Resources/Textures/Nyanotrasen/Clothing/Misc/letterman_jacket_red.rsi/meta.json new file mode 100644 index 000000000000..aae3ac4338c4 --- /dev/null +++ b/Resources/Textures/Nyanotrasen/Clothing/Misc/letterman_jacket_red.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Hyenh#6078 (313846233099927552)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/mio.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Nyanotrasen/Clothing/Misc/mio.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..92101f503e17 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Misc/mio.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/mio.rsi/icon.png b/Resources/Textures/Nyanotrasen/Clothing/Misc/mio.rsi/icon.png new file mode 100644 index 000000000000..5170631a10fd Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Misc/mio.rsi/icon.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/mio.rsi/inhand-left.png b/Resources/Textures/Nyanotrasen/Clothing/Misc/mio.rsi/inhand-left.png new file mode 100644 index 000000000000..3bcd696e34e7 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Misc/mio.rsi/inhand-left.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/mio.rsi/inhand-right.png b/Resources/Textures/Nyanotrasen/Clothing/Misc/mio.rsi/inhand-right.png new file mode 100644 index 000000000000..ebe025866c20 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Misc/mio.rsi/inhand-right.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/mio.rsi/meta.json b/Resources/Textures/Nyanotrasen/Clothing/Misc/mio.rsi/meta.json new file mode 100644 index 000000000000..380a3f0c1360 --- /dev/null +++ b/Resources/Textures/Nyanotrasen/Clothing/Misc/mio.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Hyenh#6078 (313846233099927552)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/office_skirt.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Nyanotrasen/Clothing/Misc/office_skirt.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..29a9c07b1ecb Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Misc/office_skirt.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/office_skirt.rsi/icon.png b/Resources/Textures/Nyanotrasen/Clothing/Misc/office_skirt.rsi/icon.png new file mode 100644 index 000000000000..a1edcdafd48c Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Misc/office_skirt.rsi/icon.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/office_skirt.rsi/inhand-left.png b/Resources/Textures/Nyanotrasen/Clothing/Misc/office_skirt.rsi/inhand-left.png new file mode 100644 index 000000000000..edfac7c1ae03 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Misc/office_skirt.rsi/inhand-left.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/office_skirt.rsi/inhand-right.png b/Resources/Textures/Nyanotrasen/Clothing/Misc/office_skirt.rsi/inhand-right.png new file mode 100644 index 000000000000..ed9c3920a9ff Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Misc/office_skirt.rsi/inhand-right.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/office_skirt.rsi/meta.json b/Resources/Textures/Nyanotrasen/Clothing/Misc/office_skirt.rsi/meta.json new file mode 100644 index 000000000000..380a3f0c1360 --- /dev/null +++ b/Resources/Textures/Nyanotrasen/Clothing/Misc/office_skirt.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Hyenh#6078 (313846233099927552)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/tracksuit.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Nyanotrasen/Clothing/Misc/tracksuit.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..a61e897df743 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Misc/tracksuit.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/tracksuit.rsi/icon.png b/Resources/Textures/Nyanotrasen/Clothing/Misc/tracksuit.rsi/icon.png new file mode 100644 index 000000000000..2ec227d271d7 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Misc/tracksuit.rsi/icon.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/tracksuit.rsi/inhand-left.png b/Resources/Textures/Nyanotrasen/Clothing/Misc/tracksuit.rsi/inhand-left.png new file mode 100644 index 000000000000..c5f8ceb7c303 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Misc/tracksuit.rsi/inhand-left.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/tracksuit.rsi/inhand-right.png b/Resources/Textures/Nyanotrasen/Clothing/Misc/tracksuit.rsi/inhand-right.png new file mode 100644 index 000000000000..a736bf52bc93 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Misc/tracksuit.rsi/inhand-right.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/tracksuit.rsi/meta.json b/Resources/Textures/Nyanotrasen/Clothing/Misc/tracksuit.rsi/meta.json new file mode 100644 index 000000000000..380a3f0c1360 --- /dev/null +++ b/Resources/Textures/Nyanotrasen/Clothing/Misc/tracksuit.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Hyenh#6078 (313846233099927552)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/under_garments.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Nyanotrasen/Clothing/Misc/under_garments.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..80c6f3b783f6 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Misc/under_garments.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/under_garments.rsi/icon.png b/Resources/Textures/Nyanotrasen/Clothing/Misc/under_garments.rsi/icon.png new file mode 100644 index 000000000000..05b47706ae4f Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Misc/under_garments.rsi/icon.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/under_garments.rsi/inhand-left.png b/Resources/Textures/Nyanotrasen/Clothing/Misc/under_garments.rsi/inhand-left.png new file mode 100644 index 000000000000..e613eed526c0 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Misc/under_garments.rsi/inhand-left.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/under_garments.rsi/inhand-right.png b/Resources/Textures/Nyanotrasen/Clothing/Misc/under_garments.rsi/inhand-right.png new file mode 100644 index 000000000000..9bda4233a909 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Misc/under_garments.rsi/inhand-right.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Misc/under_garments.rsi/meta.json b/Resources/Textures/Nyanotrasen/Clothing/Misc/under_garments.rsi/meta.json new file mode 100644 index 000000000000..380a3f0c1360 --- /dev/null +++ b/Resources/Textures/Nyanotrasen/Clothing/Misc/under_garments.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Hyenh#6078 (313846233099927552)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Nyanotrasen/Clothing/OuterClothing/WinterCoats/hyenh.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Nyanotrasen/Clothing/OuterClothing/WinterCoats/hyenh.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 000000000000..7e7a2102a79b Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/OuterClothing/WinterCoats/hyenh.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/OuterClothing/WinterCoats/hyenh.rsi/icon.png b/Resources/Textures/Nyanotrasen/Clothing/OuterClothing/WinterCoats/hyenh.rsi/icon.png new file mode 100644 index 000000000000..b4c12d99aa39 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/OuterClothing/WinterCoats/hyenh.rsi/icon.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/OuterClothing/WinterCoats/hyenh.rsi/meta.json b/Resources/Textures/Nyanotrasen/Clothing/OuterClothing/WinterCoats/hyenh.rsi/meta.json new file mode 100644 index 000000000000..a9989ff5b784 --- /dev/null +++ b/Resources/Textures/Nyanotrasen/Clothing/OuterClothing/WinterCoats/hyenh.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by Hyenh#6078 (313846233099927552)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Nyanotrasen/Clothing/OuterClothing/WinterCoats/long_winter_coat.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Nyanotrasen/Clothing/OuterClothing/WinterCoats/long_winter_coat.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 000000000000..e84db53c3f16 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/OuterClothing/WinterCoats/long_winter_coat.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/OuterClothing/WinterCoats/long_winter_coat.rsi/icon.png b/Resources/Textures/Nyanotrasen/Clothing/OuterClothing/WinterCoats/long_winter_coat.rsi/icon.png new file mode 100644 index 000000000000..3bb6a9e38fa9 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/OuterClothing/WinterCoats/long_winter_coat.rsi/icon.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/OuterClothing/WinterCoats/long_winter_coat.rsi/inhand-left.png b/Resources/Textures/Nyanotrasen/Clothing/OuterClothing/WinterCoats/long_winter_coat.rsi/inhand-left.png new file mode 100644 index 000000000000..02218a3bc92a Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/OuterClothing/WinterCoats/long_winter_coat.rsi/inhand-left.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/OuterClothing/WinterCoats/long_winter_coat.rsi/inhand-right.png b/Resources/Textures/Nyanotrasen/Clothing/OuterClothing/WinterCoats/long_winter_coat.rsi/inhand-right.png new file mode 100644 index 000000000000..35772e7d019f Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/OuterClothing/WinterCoats/long_winter_coat.rsi/inhand-right.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/OuterClothing/WinterCoats/long_winter_coat.rsi/meta.json b/Resources/Textures/Nyanotrasen/Clothing/OuterClothing/WinterCoats/long_winter_coat.rsi/meta.json new file mode 100644 index 000000000000..b0a1b5035d94 --- /dev/null +++ b/Resources/Textures/Nyanotrasen/Clothing/OuterClothing/WinterCoats/long_winter_coat.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by Hyenh#6078 (313846233099927552)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Nyanotrasen/Clothing/OuterClothing/WinterCoats/plaid_winter_coat.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Nyanotrasen/Clothing/OuterClothing/WinterCoats/plaid_winter_coat.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 000000000000..53f079e3a201 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/OuterClothing/WinterCoats/plaid_winter_coat.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/OuterClothing/WinterCoats/plaid_winter_coat.rsi/icon.png b/Resources/Textures/Nyanotrasen/Clothing/OuterClothing/WinterCoats/plaid_winter_coat.rsi/icon.png new file mode 100644 index 000000000000..6fb072700c37 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/OuterClothing/WinterCoats/plaid_winter_coat.rsi/icon.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/OuterClothing/WinterCoats/plaid_winter_coat.rsi/inhand-left.png b/Resources/Textures/Nyanotrasen/Clothing/OuterClothing/WinterCoats/plaid_winter_coat.rsi/inhand-left.png new file mode 100644 index 000000000000..8ba03f13df00 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/OuterClothing/WinterCoats/plaid_winter_coat.rsi/inhand-left.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/OuterClothing/WinterCoats/plaid_winter_coat.rsi/inhand-right.png b/Resources/Textures/Nyanotrasen/Clothing/OuterClothing/WinterCoats/plaid_winter_coat.rsi/inhand-right.png new file mode 100644 index 000000000000..38094c576613 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/OuterClothing/WinterCoats/plaid_winter_coat.rsi/inhand-right.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/OuterClothing/WinterCoats/plaid_winter_coat.rsi/meta.json b/Resources/Textures/Nyanotrasen/Clothing/OuterClothing/WinterCoats/plaid_winter_coat.rsi/meta.json new file mode 100644 index 000000000000..b0a1b5035d94 --- /dev/null +++ b/Resources/Textures/Nyanotrasen/Clothing/OuterClothing/WinterCoats/plaid_winter_coat.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by Hyenh#6078 (313846233099927552)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/SchoolgirlModern/blazer-tan.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/SchoolgirlModern/blazer-tan.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..0c7d3bfa393b Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/SchoolgirlModern/blazer-tan.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/SchoolgirlModern/blazer-tan.rsi/icon.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/SchoolgirlModern/blazer-tan.rsi/icon.png new file mode 100644 index 000000000000..cb47cfcf350d Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/SchoolgirlModern/blazer-tan.rsi/icon.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/SchoolgirlModern/blazer-tan.rsi/inhand-left.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/SchoolgirlModern/blazer-tan.rsi/inhand-left.png new file mode 100644 index 000000000000..33548c94461a Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/SchoolgirlModern/blazer-tan.rsi/inhand-left.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/SchoolgirlModern/blazer-tan.rsi/inhand-right.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/SchoolgirlModern/blazer-tan.rsi/inhand-right.png new file mode 100644 index 000000000000..3bee7ec4028a Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/SchoolgirlModern/blazer-tan.rsi/inhand-right.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/SchoolgirlModern/blazer-tan.rsi/meta.json b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/SchoolgirlModern/blazer-tan.rsi/meta.json new file mode 100644 index 000000000000..380a3f0c1360 --- /dev/null +++ b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/SchoolgirlModern/blazer-tan.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Hyenh#6078 (313846233099927552)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/SchoolgirlModern/dusk.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/SchoolgirlModern/dusk.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..11182a6bae15 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/SchoolgirlModern/dusk.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/SchoolgirlModern/dusk.rsi/icon.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/SchoolgirlModern/dusk.rsi/icon.png new file mode 100644 index 000000000000..7e5faab7cac9 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/SchoolgirlModern/dusk.rsi/icon.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/SchoolgirlModern/dusk.rsi/inhand-left.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/SchoolgirlModern/dusk.rsi/inhand-left.png new file mode 100644 index 000000000000..12a2d777ea0e Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/SchoolgirlModern/dusk.rsi/inhand-left.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/SchoolgirlModern/dusk.rsi/inhand-right.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/SchoolgirlModern/dusk.rsi/inhand-right.png new file mode 100644 index 000000000000..1a05ff84df72 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/SchoolgirlModern/dusk.rsi/inhand-right.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/SchoolgirlModern/dusk.rsi/meta.json b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/SchoolgirlModern/dusk.rsi/meta.json new file mode 100644 index 000000000000..380a3f0c1360 --- /dev/null +++ b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/SchoolgirlModern/dusk.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Hyenh#6078 (313846233099927552)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/arc.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/arc.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..79d33e04000a Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/arc.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/arc.rsi/icon.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/arc.rsi/icon.png new file mode 100644 index 000000000000..c27a3c890bce Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/arc.rsi/icon.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/arc.rsi/inhand-left.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/arc.rsi/inhand-left.png new file mode 100644 index 000000000000..6c29e3f93f79 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/arc.rsi/inhand-left.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/arc.rsi/inhand-right.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/arc.rsi/inhand-right.png new file mode 100644 index 000000000000..d45a6e56d4c5 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/arc.rsi/inhand-right.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/arc.rsi/meta.json b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/arc.rsi/meta.json new file mode 100644 index 000000000000..380a3f0c1360 --- /dev/null +++ b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/arc.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Hyenh#6078 (313846233099927552)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/bunny.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/bunny.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..0d1203da0c1e Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/bunny.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/bunny.rsi/icon.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/bunny.rsi/icon.png new file mode 100644 index 000000000000..b19a4c1db101 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/bunny.rsi/icon.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/bunny.rsi/inhand-left.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/bunny.rsi/inhand-left.png new file mode 100644 index 000000000000..cd154253505a Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/bunny.rsi/inhand-left.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/bunny.rsi/inhand-right.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/bunny.rsi/inhand-right.png new file mode 100644 index 000000000000..250d745d515e Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/bunny.rsi/inhand-right.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/bunny.rsi/meta.json b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/bunny.rsi/meta.json new file mode 100644 index 000000000000..380a3f0c1360 --- /dev/null +++ b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/bunny.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Hyenh#6078 (313846233099927552)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/geisha.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/geisha.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..609c100ca90e Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/geisha.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/geisha.rsi/icon.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/geisha.rsi/icon.png new file mode 100644 index 000000000000..26a087eef52d Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/geisha.rsi/icon.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/geisha.rsi/meta.json b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/geisha.rsi/meta.json new file mode 100644 index 000000000000..df00f2381bee --- /dev/null +++ b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/geisha.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "https://github.com/tgstation/tgstation/commit/beaea876ea426c0e215cee64619862dc19bd9cd8", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/gi.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/gi.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..70b662f76136 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/gi.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/gi.rsi/icon.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/gi.rsi/icon.png new file mode 100644 index 000000000000..659aaa54fcd5 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/gi.rsi/icon.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/gi.rsi/inhand-left.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/gi.rsi/inhand-left.png new file mode 100644 index 000000000000..21e8c4126fb8 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/gi.rsi/inhand-left.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/gi.rsi/inhand-right.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/gi.rsi/inhand-right.png new file mode 100644 index 000000000000..fc67c7388a75 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/gi.rsi/inhand-right.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/gi.rsi/meta.json b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/gi.rsi/meta.json new file mode 100644 index 000000000000..4639680b5970 --- /dev/null +++ b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/gi.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Hyenh#6078", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/hakama.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/hakama.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..54639e05fc42 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/hakama.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/hakama.rsi/icon.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/hakama.rsi/icon.png new file mode 100644 index 000000000000..6a8ef0428a5d Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/hakama.rsi/icon.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/hakama.rsi/inhand-left.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/hakama.rsi/inhand-left.png new file mode 100644 index 000000000000..bf1477e5d807 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/hakama.rsi/inhand-left.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/hakama.rsi/inhand-right.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/hakama.rsi/inhand-right.png new file mode 100644 index 000000000000..c6f485bc4426 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/hakama.rsi/inhand-right.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/hakama.rsi/meta.json b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/hakama.rsi/meta.json new file mode 100644 index 000000000000..4639680b5970 --- /dev/null +++ b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/hakama.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Hyenh#6078", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-blue.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-blue.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..534073959f1a Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-blue.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-blue.rsi/icon.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-blue.rsi/icon.png new file mode 100644 index 000000000000..4bce3d558703 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-blue.rsi/icon.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-blue.rsi/inhand-left.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-blue.rsi/inhand-left.png new file mode 100644 index 000000000000..6fc1c5116762 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-blue.rsi/inhand-left.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-blue.rsi/inhand-right.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-blue.rsi/inhand-right.png new file mode 100644 index 000000000000..c473ec2be436 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-blue.rsi/inhand-right.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-blue.rsi/meta.json b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-blue.rsi/meta.json new file mode 100644 index 000000000000..4639680b5970 --- /dev/null +++ b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-blue.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Hyenh#6078", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-green.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-green.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..e182467c5e90 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-green.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-green.rsi/icon.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-green.rsi/icon.png new file mode 100644 index 000000000000..dbe3b076f8f1 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-green.rsi/icon.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-green.rsi/inhand-left.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-green.rsi/inhand-left.png new file mode 100644 index 000000000000..942ebafd3706 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-green.rsi/inhand-left.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-green.rsi/inhand-right.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-green.rsi/inhand-right.png new file mode 100644 index 000000000000..38ca5d61efda Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-green.rsi/inhand-right.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-green.rsi/meta.json b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-green.rsi/meta.json new file mode 100644 index 000000000000..380a3f0c1360 --- /dev/null +++ b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-green.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Hyenh#6078 (313846233099927552)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-pink.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-pink.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..7a8da8c57d27 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-pink.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-pink.rsi/icon.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-pink.rsi/icon.png new file mode 100644 index 000000000000..301ac714e494 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-pink.rsi/icon.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-pink.rsi/inhand-left.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-pink.rsi/inhand-left.png new file mode 100644 index 000000000000..4b2a78ebcefe Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-pink.rsi/inhand-left.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-pink.rsi/inhand-right.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-pink.rsi/inhand-right.png new file mode 100644 index 000000000000..5c9c211adfbd Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-pink.rsi/inhand-right.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-pink.rsi/meta.json b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-pink.rsi/meta.json new file mode 100644 index 000000000000..4639680b5970 --- /dev/null +++ b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-pink.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Hyenh#6078", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-purple.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-purple.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..1f007c202377 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-purple.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-purple.rsi/icon.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-purple.rsi/icon.png new file mode 100644 index 000000000000..1d37b122f95d Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-purple.rsi/icon.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-purple.rsi/inhand-left.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-purple.rsi/inhand-left.png new file mode 100644 index 000000000000..c6f5cbbd2778 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-purple.rsi/inhand-left.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-purple.rsi/inhand-right.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-purple.rsi/inhand-right.png new file mode 100644 index 000000000000..49f5175521a6 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-purple.rsi/inhand-right.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-purple.rsi/meta.json b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-purple.rsi/meta.json new file mode 100644 index 000000000000..4639680b5970 --- /dev/null +++ b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-purple.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Hyenh#6078", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-sky.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-sky.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..ec42d117f91b Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-sky.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-sky.rsi/icon.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-sky.rsi/icon.png new file mode 100644 index 000000000000..9432151e70ef Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-sky.rsi/icon.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-sky.rsi/inhand-left.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-sky.rsi/inhand-left.png new file mode 100644 index 000000000000..ea546ad4afa9 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-sky.rsi/inhand-left.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-sky.rsi/inhand-right.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-sky.rsi/inhand-right.png new file mode 100644 index 000000000000..9818b0de53ba Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-sky.rsi/inhand-right.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-sky.rsi/meta.json b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-sky.rsi/meta.json new file mode 100644 index 000000000000..4639680b5970 --- /dev/null +++ b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/kimono-sky.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Hyenh#6078", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/maid.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/maid.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..bfd0b7638f63 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/maid.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/maid.rsi/icon.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/maid.rsi/icon.png new file mode 100644 index 000000000000..399f152f44a3 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/maid.rsi/icon.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/maid.rsi/meta.json b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/maid.rsi/meta.json new file mode 100644 index 000000000000..df00f2381bee --- /dev/null +++ b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/maid.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "https://github.com/tgstation/tgstation/commit/beaea876ea426c0e215cee64619862dc19bd9cd8", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/naota.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/naota.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..de31ab5fe548 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/naota.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/naota.rsi/icon.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/naota.rsi/icon.png new file mode 100644 index 000000000000..4caca0310480 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/naota.rsi/icon.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/naota.rsi/inhand-left.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/naota.rsi/inhand-left.png new file mode 100644 index 000000000000..487dcc9bd769 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/naota.rsi/inhand-left.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/naota.rsi/inhand-right.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/naota.rsi/inhand-right.png new file mode 100644 index 000000000000..883bb5b76cda Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/naota.rsi/inhand-right.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/naota.rsi/meta.json b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/naota.rsi/meta.json new file mode 100644 index 000000000000..380a3f0c1360 --- /dev/null +++ b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/naota.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Hyenh#6078 (313846233099927552)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/nurse.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/nurse.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..6765553402de Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/nurse.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/nurse.rsi/icon.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/nurse.rsi/icon.png new file mode 100644 index 000000000000..497df98297f2 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/nurse.rsi/icon.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/nurse.rsi/inhand-left.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/nurse.rsi/inhand-left.png new file mode 100644 index 000000000000..c93e72b536d9 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/nurse.rsi/inhand-left.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/nurse.rsi/inhand-right.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/nurse.rsi/inhand-right.png new file mode 100644 index 000000000000..11f68c56f321 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/nurse.rsi/inhand-right.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/nurse.rsi/meta.json b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/nurse.rsi/meta.json new file mode 100644 index 000000000000..c6c5e7183738 --- /dev/null +++ b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/nurse.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TGstation github https://github.com/tgstation/tgstation/commit/988f795be2dee02a8252d3e584fbb94d43d4a965", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/rat.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/rat.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..d47696557b2f Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/rat.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/rat.rsi/icon.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/rat.rsi/icon.png new file mode 100644 index 000000000000..74ab5282def7 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/rat.rsi/icon.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/rat.rsi/inhand-left.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/rat.rsi/inhand-left.png new file mode 100644 index 000000000000..f873621c4356 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/rat.rsi/inhand-left.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/rat.rsi/inhand-right.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/rat.rsi/inhand-right.png new file mode 100644 index 000000000000..572598189053 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/rat.rsi/inhand-right.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/rat.rsi/meta.json b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/rat.rsi/meta.json new file mode 100644 index 000000000000..380a3f0c1360 --- /dev/null +++ b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/rat.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Hyenh#6078 (313846233099927552)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/red_dress.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/red_dress.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..fc0963978bf5 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/red_dress.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/red_dress.rsi/icon.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/red_dress.rsi/icon.png new file mode 100644 index 000000000000..9af825061382 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/red_dress.rsi/icon.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/red_dress.rsi/inhand-left.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/red_dress.rsi/inhand-left.png new file mode 100644 index 000000000000..1dc6a4e3e7d7 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/red_dress.rsi/inhand-left.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/red_dress.rsi/inhand-right.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/red_dress.rsi/inhand-right.png new file mode 100644 index 000000000000..859006311047 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/red_dress.rsi/inhand-right.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/red_dress.rsi/meta.json b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/red_dress.rsi/meta.json new file mode 100644 index 000000000000..380a3f0c1360 --- /dev/null +++ b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/red_dress.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Hyenh#6078 (313846233099927552)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/swimsuit.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/swimsuit.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..ed868e33a991 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/swimsuit.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/swimsuit.rsi/icon.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/swimsuit.rsi/icon.png new file mode 100644 index 000000000000..b13d1b4f881f Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/swimsuit.rsi/icon.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/swimsuit.rsi/inhand-left.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/swimsuit.rsi/inhand-left.png new file mode 100644 index 000000000000..48bfa568b8b3 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/swimsuit.rsi/inhand-left.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/swimsuit.rsi/inhand-right.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/swimsuit.rsi/inhand-right.png new file mode 100644 index 000000000000..f713ba7c05f4 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/swimsuit.rsi/inhand-right.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/swimsuit.rsi/meta.json b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/swimsuit.rsi/meta.json new file mode 100644 index 000000000000..380a3f0c1360 --- /dev/null +++ b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Costume/swimsuit.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Hyenh#6078 (313846233099927552)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Jumpsuit/summer_security.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Jumpsuit/summer_security.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..71aaaaafebe5 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Jumpsuit/summer_security.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Jumpsuit/summer_security.rsi/icon.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Jumpsuit/summer_security.rsi/icon.png new file mode 100644 index 000000000000..d839b2be810a Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Jumpsuit/summer_security.rsi/icon.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Jumpsuit/summer_security.rsi/inhand-left.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Jumpsuit/summer_security.rsi/inhand-left.png new file mode 100644 index 000000000000..8da054b1efb7 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Jumpsuit/summer_security.rsi/inhand-left.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Jumpsuit/summer_security.rsi/inhand-right.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Jumpsuit/summer_security.rsi/inhand-right.png new file mode 100644 index 000000000000..d515a0982d41 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Jumpsuit/summer_security.rsi/inhand-right.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Jumpsuit/summer_security.rsi/meta.json b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Jumpsuit/summer_security.rsi/meta.json new file mode 100644 index 000000000000..380a3f0c1360 --- /dev/null +++ b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Jumpsuit/summer_security.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Hyenh#6078 (313846233099927552)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Jumpsuit/tshirt_khaki.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Jumpsuit/tshirt_khaki.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..584776e79195 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Jumpsuit/tshirt_khaki.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Jumpsuit/tshirt_khaki.rsi/icon.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Jumpsuit/tshirt_khaki.rsi/icon.png new file mode 100644 index 000000000000..6025574a8961 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Jumpsuit/tshirt_khaki.rsi/icon.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Jumpsuit/tshirt_khaki.rsi/inhand-left.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Jumpsuit/tshirt_khaki.rsi/inhand-left.png new file mode 100644 index 000000000000..7ca48465e5aa Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Jumpsuit/tshirt_khaki.rsi/inhand-left.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Jumpsuit/tshirt_khaki.rsi/inhand-right.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Jumpsuit/tshirt_khaki.rsi/inhand-right.png new file mode 100644 index 000000000000..38fb46665416 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Jumpsuit/tshirt_khaki.rsi/inhand-right.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Jumpsuit/tshirt_khaki.rsi/meta.json b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Jumpsuit/tshirt_khaki.rsi/meta.json new file mode 100644 index 000000000000..cbadd9a9ce03 --- /dev/null +++ b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Jumpsuit/tshirt_khaki.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "@Vordenburg", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Jumpsuit/tshirtjeans.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Jumpsuit/tshirtjeans.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..cb1c4ee1195f Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Jumpsuit/tshirtjeans.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Jumpsuit/tshirtjeans.rsi/icon.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Jumpsuit/tshirtjeans.rsi/icon.png new file mode 100644 index 000000000000..dab82489974a Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Jumpsuit/tshirtjeans.rsi/icon.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Jumpsuit/tshirtjeans.rsi/meta.json b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Jumpsuit/tshirtjeans.rsi/meta.json new file mode 100644 index 000000000000..3789afb4277d --- /dev/null +++ b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Jumpsuit/tshirtjeans.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by Colin_Tel. I don't care what you do with this.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Jumpsuit/tshirtjeansgray.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Jumpsuit/tshirtjeansgray.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..91435218d3db Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Jumpsuit/tshirtjeansgray.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Jumpsuit/tshirtjeansgray.rsi/icon.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Jumpsuit/tshirtjeansgray.rsi/icon.png new file mode 100644 index 000000000000..8b7840ae04b4 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Jumpsuit/tshirtjeansgray.rsi/icon.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Jumpsuit/tshirtjeansgray.rsi/meta.json b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Jumpsuit/tshirtjeansgray.rsi/meta.json new file mode 100644 index 000000000000..3789afb4277d --- /dev/null +++ b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Jumpsuit/tshirtjeansgray.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by Colin_Tel. I don't care what you do with this.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Jumpsuit/tshirtjeanspeach.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Jumpsuit/tshirtjeanspeach.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..46965922bd23 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Jumpsuit/tshirtjeanspeach.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Jumpsuit/tshirtjeanspeach.rsi/icon.png b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Jumpsuit/tshirtjeanspeach.rsi/icon.png new file mode 100644 index 000000000000..c3132ae1b973 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Jumpsuit/tshirtjeanspeach.rsi/icon.png differ diff --git a/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Jumpsuit/tshirtjeanspeach.rsi/meta.json b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Jumpsuit/tshirtjeanspeach.rsi/meta.json new file mode 100644 index 000000000000..3789afb4277d --- /dev/null +++ b/Resources/Textures/Nyanotrasen/Clothing/Uniforms/Jumpsuit/tshirtjeanspeach.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by Colin_Tel. I don't care what you do with this.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_DV/Clothing/Neck/Cloaks/boatcloak.rsi/equipped-NECK.png b/Resources/Textures/_DV/Clothing/Neck/Cloaks/boatcloak.rsi/equipped-NECK.png new file mode 100644 index 000000000000..3a79a72667cf Binary files /dev/null and b/Resources/Textures/_DV/Clothing/Neck/Cloaks/boatcloak.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/_DV/Clothing/Neck/Cloaks/boatcloak.rsi/icon.png b/Resources/Textures/_DV/Clothing/Neck/Cloaks/boatcloak.rsi/icon.png new file mode 100644 index 000000000000..085cb9083475 Binary files /dev/null and b/Resources/Textures/_DV/Clothing/Neck/Cloaks/boatcloak.rsi/icon.png differ diff --git a/Resources/Textures/_DV/Clothing/Neck/Cloaks/boatcloak.rsi/meta.json b/Resources/Textures/_DV/Clothing/Neck/Cloaks/boatcloak.rsi/meta.json new file mode 100644 index 000000000000..f636e08b401d --- /dev/null +++ b/Resources/Textures/_DV/Clothing/Neck/Cloaks/boatcloak.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Original work by TJohnson.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-NECK", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_DV/Clothing/Neck/Cloaks/salvage.rsi/equipped-NECK.png b/Resources/Textures/_DV/Clothing/Neck/Cloaks/salvage.rsi/equipped-NECK.png new file mode 100644 index 000000000000..7ed258232562 Binary files /dev/null and b/Resources/Textures/_DV/Clothing/Neck/Cloaks/salvage.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/_DV/Clothing/Neck/Cloaks/salvage.rsi/icon.png b/Resources/Textures/_DV/Clothing/Neck/Cloaks/salvage.rsi/icon.png new file mode 100644 index 000000000000..bce6839ceb97 Binary files /dev/null and b/Resources/Textures/_DV/Clothing/Neck/Cloaks/salvage.rsi/icon.png differ diff --git a/Resources/Textures/_DV/Clothing/Neck/Cloaks/salvage.rsi/meta.json b/Resources/Textures/_DV/Clothing/Neck/Cloaks/salvage.rsi/meta.json new file mode 100644 index 000000000000..7ae66b1e4630 --- /dev/null +++ b/Resources/Textures/_DV/Clothing/Neck/Cloaks/salvage.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "by Lleft The Dragon/Lakilazur/lleft", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-NECK", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_DV/Clothing/OuterClothing/Coats/overcoat.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_DV/Clothing/OuterClothing/Coats/overcoat.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 000000000000..f6879279c1c1 Binary files /dev/null and b/Resources/Textures/_DV/Clothing/OuterClothing/Coats/overcoat.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_DV/Clothing/OuterClothing/Coats/overcoat.rsi/icon.png b/Resources/Textures/_DV/Clothing/OuterClothing/Coats/overcoat.rsi/icon.png new file mode 100644 index 000000000000..14d3be2ebd82 Binary files /dev/null and b/Resources/Textures/_DV/Clothing/OuterClothing/Coats/overcoat.rsi/icon.png differ diff --git a/Resources/Textures/_DV/Clothing/OuterClothing/Coats/overcoat.rsi/inhand-left.png b/Resources/Textures/_DV/Clothing/OuterClothing/Coats/overcoat.rsi/inhand-left.png new file mode 100644 index 000000000000..8e0d7796cbfd Binary files /dev/null and b/Resources/Textures/_DV/Clothing/OuterClothing/Coats/overcoat.rsi/inhand-left.png differ diff --git a/Resources/Textures/_DV/Clothing/OuterClothing/Coats/overcoat.rsi/inhand-right.png b/Resources/Textures/_DV/Clothing/OuterClothing/Coats/overcoat.rsi/inhand-right.png new file mode 100644 index 000000000000..6bb2d8545a78 Binary files /dev/null and b/Resources/Textures/_DV/Clothing/OuterClothing/Coats/overcoat.rsi/inhand-right.png differ diff --git a/Resources/Textures/_DV/Clothing/OuterClothing/Coats/overcoat.rsi/meta.json b/Resources/Textures/_DV/Clothing/OuterClothing/Coats/overcoat.rsi/meta.json new file mode 100644 index 000000000000..1253f8b4e637 --- /dev/null +++ b/Resources/Textures/_DV/Clothing/OuterClothing/Coats/overcoat.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Original work by TJohnson.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_DV/Clothing/OuterClothing/WinterCoats/denim_jacket.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_DV/Clothing/OuterClothing/WinterCoats/denim_jacket.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 000000000000..7486c9b1795c Binary files /dev/null and b/Resources/Textures/_DV/Clothing/OuterClothing/WinterCoats/denim_jacket.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_DV/Clothing/OuterClothing/WinterCoats/denim_jacket.rsi/icon.png b/Resources/Textures/_DV/Clothing/OuterClothing/WinterCoats/denim_jacket.rsi/icon.png new file mode 100644 index 000000000000..18e511b9a93e Binary files /dev/null and b/Resources/Textures/_DV/Clothing/OuterClothing/WinterCoats/denim_jacket.rsi/icon.png differ diff --git a/Resources/Textures/_DV/Clothing/OuterClothing/WinterCoats/denim_jacket.rsi/meta.json b/Resources/Textures/_DV/Clothing/OuterClothing/WinterCoats/denim_jacket.rsi/meta.json new file mode 100644 index 000000000000..aee6874fc6f9 --- /dev/null +++ b/Resources/Textures/_DV/Clothing/OuterClothing/WinterCoats/denim_jacket.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Leonardo DaBepis#4869 on discord / @leonardo-dabepis on Tumblr", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Back/Satchels/purse.rsi/equipped-BACKPACK.png b/Resources/Textures/_EinsteinEngines/Clothing/Back/Satchels/purse.rsi/equipped-BACKPACK.png new file mode 100644 index 000000000000..babff2afbdf1 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Back/Satchels/purse.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Back/Satchels/purse.rsi/flipped-equipped-BACKPACK.png b/Resources/Textures/_EinsteinEngines/Clothing/Back/Satchels/purse.rsi/flipped-equipped-BACKPACK.png new file mode 100644 index 000000000000..dca9d08e1bc1 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Back/Satchels/purse.rsi/flipped-equipped-BACKPACK.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Back/Satchels/purse.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/Back/Satchels/purse.rsi/icon.png new file mode 100644 index 000000000000..166076ce6a01 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Back/Satchels/purse.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Back/Satchels/purse.rsi/inhand-left.png b/Resources/Textures/_EinsteinEngines/Clothing/Back/Satchels/purse.rsi/inhand-left.png new file mode 100644 index 000000000000..c468f47c011b Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Back/Satchels/purse.rsi/inhand-left.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Back/Satchels/purse.rsi/inhand-right.png b/Resources/Textures/_EinsteinEngines/Clothing/Back/Satchels/purse.rsi/inhand-right.png new file mode 100644 index 000000000000..3a06f65fb6e8 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Back/Satchels/purse.rsi/inhand-right.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Back/Satchels/purse.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/Back/Satchels/purse.rsi/meta.json new file mode 100644 index 000000000000..4619e364d1f1 --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/Back/Satchels/purse.rsi/meta.json @@ -0,0 +1,30 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from World Server at commit https://github.com/GeneriedJenelle/The-World-Server-Redux/commit/0b700fbc6ee14c5a2b171e0739fea5a8aaaf5f4f, modified by Skubman (github: angelofallars)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "flipped-equipped-BACKPACK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Neck/fur_wrap.rsi/equipped-NECK.png b/Resources/Textures/_EinsteinEngines/Clothing/Neck/fur_wrap.rsi/equipped-NECK.png new file mode 100644 index 000000000000..2c4570fcce80 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Neck/fur_wrap.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Neck/fur_wrap.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/Neck/fur_wrap.rsi/icon.png new file mode 100644 index 000000000000..47e71500f7ea Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Neck/fur_wrap.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Neck/fur_wrap.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/Neck/fur_wrap.rsi/meta.json new file mode 100644 index 000000000000..7c9b5f07ed0d --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/Neck/fur_wrap.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Aurora.3 at https://github.com/Aurorastation/Aurora.3/commit/988b9b29bcb40a6108d1f68c788dc81893750f0c", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-NECK", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/asymmetric_coat.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/asymmetric_coat.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 000000000000..d6a2d04e809d Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/asymmetric_coat.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/asymmetric_coat.rsi/icon-open.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/asymmetric_coat.rsi/icon-open.png new file mode 100644 index 000000000000..cd4f025b4d0c Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/asymmetric_coat.rsi/icon-open.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/asymmetric_coat.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/asymmetric_coat.rsi/icon.png new file mode 100644 index 000000000000..a0a58fc73f07 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/asymmetric_coat.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/asymmetric_coat.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/asymmetric_coat.rsi/meta.json new file mode 100644 index 000000000000..44eb96a3a319 --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/asymmetric_coat.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Aurorastation at commit https://github.com/Aurorastation/Aurora.3/commit/eafcc13b50f7fe1e22bc7c52a116ac883e0648cd", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-open" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "open-equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/asymmetric_coat.rsi/open-equipped-OUTERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/asymmetric_coat.rsi/open-equipped-OUTERCLOTHING.png new file mode 100644 index 000000000000..5baa831fe253 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/asymmetric_coat.rsi/open-equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/insp_coat.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/insp_coat.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 000000000000..6790bf5e94e9 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/insp_coat.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/insp_coat.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/insp_coat.rsi/icon.png new file mode 100644 index 000000000000..61ad9f95171c Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/insp_coat.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/insp_coat.rsi/inhand-left.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/insp_coat.rsi/inhand-left.png new file mode 100644 index 000000000000..72db4712bb5a Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/insp_coat.rsi/inhand-left.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/insp_coat.rsi/inhand-right.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/insp_coat.rsi/inhand-right.png new file mode 100644 index 000000000000..e50751b374b7 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/insp_coat.rsi/inhand-right.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/insp_coat.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/insp_coat.rsi/meta.json new file mode 100644 index 000000000000..e482264df5f8 --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/insp_coat.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/modern_coat.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/modern_coat.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 000000000000..4d9f72c09ecd Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/modern_coat.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/modern_coat.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/modern_coat.rsi/icon.png new file mode 100644 index 000000000000..796e397e728c Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/modern_coat.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/modern_coat.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/modern_coat.rsi/meta.json new file mode 100644 index 000000000000..693e5d48e6c0 --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/modern_coat.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from World Server at commit https://github.com/GeneriedJenelle/The-World-Server-Redux/commit/8f59da5859624db9078322a5b214381c09d1b953", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/peacoat.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/peacoat.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 000000000000..b26107767602 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/peacoat.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/peacoat.rsi/icon-open.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/peacoat.rsi/icon-open.png new file mode 100644 index 000000000000..4e5f55e55d38 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/peacoat.rsi/icon-open.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/peacoat.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/peacoat.rsi/icon.png new file mode 100644 index 000000000000..e2610b30b2f9 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/peacoat.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/peacoat.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/peacoat.rsi/meta.json new file mode 100644 index 000000000000..44eb96a3a319 --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/peacoat.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Aurorastation at commit https://github.com/Aurorastation/Aurora.3/commit/eafcc13b50f7fe1e22bc7c52a116ac883e0648cd", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-open" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "open-equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/peacoat.rsi/open-equipped-OUTERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/peacoat.rsi/open-equipped-OUTERCLOTHING.png new file mode 100644 index 000000000000..b06263abd1df Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/peacoat.rsi/open-equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/submariner.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/submariner.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 000000000000..cc800731982c Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/submariner.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/submariner.rsi/icon-open.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/submariner.rsi/icon-open.png new file mode 100644 index 000000000000..9fe5b6b13436 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/submariner.rsi/icon-open.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/submariner.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/submariner.rsi/icon.png new file mode 100644 index 000000000000..d1f7034cc90f Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/submariner.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/submariner.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/submariner.rsi/meta.json new file mode 100644 index 000000000000..d51fef978923 --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/submariner.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Aurorastation at commit https://github.com/Aurorastation/Aurora.3/commit/eafcc13b50f7fe1e22bc7c52a116ac883e0648cd, modified by Skubman.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-open" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "open-equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/submariner.rsi/open-equipped-OUTERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/submariner.rsi/open-equipped-OUTERCLOTHING.png new file mode 100644 index 000000000000..9bfad9b8f256 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/submariner.rsi/open-equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/tailcoat.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/tailcoat.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 000000000000..1a0b54938330 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/tailcoat.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/tailcoat.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/tailcoat.rsi/icon.png new file mode 100644 index 000000000000..632999fdaf8f Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/tailcoat.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/tailcoat.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/tailcoat.rsi/meta.json new file mode 100644 index 000000000000..693e5d48e6c0 --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/tailcoat.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from World Server at commit https://github.com/GeneriedJenelle/The-World-Server-Redux/commit/8f59da5859624db9078322a5b214381c09d1b953", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/victorian_coat.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/victorian_coat.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 000000000000..4ab674a3ac26 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/victorian_coat.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/victorian_coat.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/victorian_coat.rsi/icon.png new file mode 100644 index 000000000000..6a3b52bdd0b9 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/victorian_coat.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/victorian_coat.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/victorian_coat.rsi/meta.json new file mode 100644 index 000000000000..693e5d48e6c0 --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/victorian_coat.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from World Server at commit https://github.com/GeneriedJenelle/The-World-Server-Redux/commit/8f59da5859624db9078322a5b214381c09d1b953", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/victorian_coat_red.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/victorian_coat_red.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 000000000000..f79c0f2bd023 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/victorian_coat_red.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/victorian_coat_red.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/victorian_coat_red.rsi/icon.png new file mode 100644 index 000000000000..be64195ff24e Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/victorian_coat_red.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/victorian_coat_red.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/victorian_coat_red.rsi/meta.json new file mode 100644 index 000000000000..693e5d48e6c0 --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Coats/victorian_coat_red.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from World Server at commit https://github.com/GeneriedJenelle/The-World-Server-Redux/commit/8f59da5859624db9078322a5b214381c09d1b953", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/blazer.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/blazer.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 000000000000..f875f19e1d10 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/blazer.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/blazer.rsi/icon-open.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/blazer.rsi/icon-open.png new file mode 100644 index 000000000000..c5d1c3742321 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/blazer.rsi/icon-open.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/blazer.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/blazer.rsi/icon.png new file mode 100644 index 000000000000..3d1be3ea7120 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/blazer.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/blazer.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/blazer.rsi/meta.json new file mode 100644 index 000000000000..4e392ed03ca8 --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/blazer.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Aurorastation at commit https://github.com/Aurorastation/Aurora.3/commit/6cc60e0443c3d5f0111f63d57c6d32151d90e4fc, modified by Skubman.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-open" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "open-equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/blazer.rsi/open-equipped-OUTERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/blazer.rsi/open-equipped-OUTERCLOTHING.png new file mode 100644 index 000000000000..e1c9b5aa9616 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/blazer.rsi/open-equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/blazer_flat_collar.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/blazer_flat_collar.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 000000000000..983be5909394 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/blazer_flat_collar.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/blazer_flat_collar.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/blazer_flat_collar.rsi/icon.png new file mode 100644 index 000000000000..52871d955b3d Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/blazer_flat_collar.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/blazer_flat_collar.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/blazer_flat_collar.rsi/meta.json new file mode 100644 index 000000000000..693e5d48e6c0 --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/blazer_flat_collar.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from World Server at commit https://github.com/GeneriedJenelle/The-World-Server-Redux/commit/8f59da5859624db9078322a5b214381c09d1b953", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/blazer_formal.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/blazer_formal.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 000000000000..1e4c19b89bef Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/blazer_formal.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/blazer_formal.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/blazer_formal.rsi/icon.png new file mode 100644 index 000000000000..4d1b45d40649 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/blazer_formal.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/blazer_formal.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/blazer_formal.rsi/meta.json new file mode 100644 index 000000000000..693e5d48e6c0 --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/blazer_formal.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from World Server at commit https://github.com/GeneriedJenelle/The-World-Server-Redux/commit/8f59da5859624db9078322a5b214381c09d1b953", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/blazer_long.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/blazer_long.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 000000000000..c159ee37abb7 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/blazer_long.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/blazer_long.rsi/icon-open.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/blazer_long.rsi/icon-open.png new file mode 100644 index 000000000000..186d966c096c Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/blazer_long.rsi/icon-open.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/blazer_long.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/blazer_long.rsi/icon.png new file mode 100644 index 000000000000..f80b093c25d9 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/blazer_long.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/blazer_long.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/blazer_long.rsi/meta.json new file mode 100644 index 000000000000..4e392ed03ca8 --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/blazer_long.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Aurorastation at commit https://github.com/Aurorastation/Aurora.3/commit/6cc60e0443c3d5f0111f63d57c6d32151d90e4fc, modified by Skubman.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-open" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "open-equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/blazer_long.rsi/open-equipped-OUTERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/blazer_long.rsi/open-equipped-OUTERCLOTHING.png new file mode 100644 index 000000000000..b48c89fd3c79 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/blazer_long.rsi/open-equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/blazer_loose_sleeve.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/blazer_loose_sleeve.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 000000000000..e77d7c8286d2 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/blazer_loose_sleeve.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/blazer_loose_sleeve.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/blazer_loose_sleeve.rsi/icon.png new file mode 100644 index 000000000000..d10fa7d9b6e7 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/blazer_loose_sleeve.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/blazer_loose_sleeve.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/blazer_loose_sleeve.rsi/meta.json new file mode 100644 index 000000000000..693e5d48e6c0 --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/blazer_loose_sleeve.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from World Server at commit https://github.com/GeneriedJenelle/The-World-Server-Redux/commit/8f59da5859624db9078322a5b214381c09d1b953", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/blazer_posh.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/blazer_posh.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 000000000000..8cccc39af330 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/blazer_posh.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/blazer_posh.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/blazer_posh.rsi/icon.png new file mode 100644 index 000000000000..3daa6c00517b Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/blazer_posh.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/blazer_posh.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/blazer_posh.rsi/meta.json new file mode 100644 index 000000000000..693e5d48e6c0 --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/blazer_posh.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from World Server at commit https://github.com/GeneriedJenelle/The-World-Server-Redux/commit/8f59da5859624db9078322a5b214381c09d1b953", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cardigan.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cardigan.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 000000000000..fdd6422e2071 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cardigan.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cardigan.rsi/icon-open.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cardigan.rsi/icon-open.png new file mode 100644 index 000000000000..5800d2f756ef Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cardigan.rsi/icon-open.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cardigan.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cardigan.rsi/icon.png new file mode 100644 index 000000000000..ce626a4dbc71 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cardigan.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cardigan.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cardigan.rsi/meta.json new file mode 100644 index 000000000000..44eb96a3a319 --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cardigan.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Aurorastation at commit https://github.com/Aurorastation/Aurora.3/commit/eafcc13b50f7fe1e22bc7c52a116ac883e0648cd", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-open" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "open-equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cardigan.rsi/open-equipped-OUTERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cardigan.rsi/open-equipped-OUTERCLOTHING.png new file mode 100644 index 000000000000..366dfe1b5383 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cardigan.rsi/open-equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cardigan_argyle.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cardigan_argyle.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 000000000000..f41f53ff7b5d Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cardigan_argyle.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cardigan_argyle.rsi/icon-open.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cardigan_argyle.rsi/icon-open.png new file mode 100644 index 000000000000..0e90c2a2c3a9 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cardigan_argyle.rsi/icon-open.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cardigan_argyle.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cardigan_argyle.rsi/icon.png new file mode 100644 index 000000000000..378136809ea5 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cardigan_argyle.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cardigan_argyle.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cardigan_argyle.rsi/meta.json new file mode 100644 index 000000000000..44eb96a3a319 --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cardigan_argyle.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Aurorastation at commit https://github.com/Aurorastation/Aurora.3/commit/eafcc13b50f7fe1e22bc7c52a116ac883e0648cd", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-open" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "open-equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cardigan_argyle.rsi/open-equipped-OUTERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cardigan_argyle.rsi/open-equipped-OUTERCLOTHING.png new file mode 100644 index 000000000000..68ba62a02e95 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cardigan_argyle.rsi/open-equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cardigan_slim.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cardigan_slim.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 000000000000..5ca306018cd4 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cardigan_slim.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cardigan_slim.rsi/icon-open.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cardigan_slim.rsi/icon-open.png new file mode 100644 index 000000000000..12b893f8c2cb Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cardigan_slim.rsi/icon-open.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cardigan_slim.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cardigan_slim.rsi/icon.png new file mode 100644 index 000000000000..1944635a2f2b Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cardigan_slim.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cardigan_slim.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cardigan_slim.rsi/meta.json new file mode 100644 index 000000000000..750fb29dc755 --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cardigan_slim.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from World Server at commit https://github.com/GeneriedJenelle/The-World-Server-Redux/commit/8f59da5859624db9078322a5b214381c09d1b953, modified by Skubman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-open" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "open-equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cardigan_slim.rsi/open-equipped-OUTERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cardigan_slim.rsi/open-equipped-OUTERCLOTHING.png new file mode 100644 index 000000000000..5f36c0a3fdcb Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cardigan_slim.rsi/open-equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cardigan_sweater.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cardigan_sweater.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 000000000000..1cbc6b3a6b58 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cardigan_sweater.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cardigan_sweater.rsi/icon-open.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cardigan_sweater.rsi/icon-open.png new file mode 100644 index 000000000000..790520d887f7 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cardigan_sweater.rsi/icon-open.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cardigan_sweater.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cardigan_sweater.rsi/icon.png new file mode 100644 index 000000000000..cc32217d1967 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cardigan_sweater.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cardigan_sweater.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cardigan_sweater.rsi/meta.json new file mode 100644 index 000000000000..44eb96a3a319 --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cardigan_sweater.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Aurorastation at commit https://github.com/Aurorastation/Aurora.3/commit/eafcc13b50f7fe1e22bc7c52a116ac883e0648cd", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-open" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "open-equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cardigan_sweater.rsi/open-equipped-OUTERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cardigan_sweater.rsi/open-equipped-OUTERCLOTHING.png new file mode 100644 index 000000000000..9a91dd2b5964 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cardigan_sweater.rsi/open-equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cowboy_duster.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cowboy_duster.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 000000000000..ff14515d5913 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cowboy_duster.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cowboy_duster.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cowboy_duster.rsi/icon.png new file mode 100644 index 000000000000..c7ddc901a4ad Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cowboy_duster.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cowboy_duster.rsi/inhand-left.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cowboy_duster.rsi/inhand-left.png new file mode 100644 index 000000000000..422c7f2dc019 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cowboy_duster.rsi/inhand-left.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cowboy_duster.rsi/inhand-right.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cowboy_duster.rsi/inhand-right.png new file mode 100644 index 000000000000..0b4a4db25950 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cowboy_duster.rsi/inhand-right.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cowboy_duster.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cowboy_duster.rsi/meta.json new file mode 100644 index 000000000000..69293f93ca50 --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/cowboy_duster.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from World Server at commit https://github.com/GeneriedJenelle/The-World-Server-Redux/commit/8f59da5859624db9078322a5b214381c09d1b953", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/suit_jacket.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/suit_jacket.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 000000000000..2de9e6859c5e Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/suit_jacket.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/suit_jacket.rsi/icon-open.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/suit_jacket.rsi/icon-open.png new file mode 100644 index 000000000000..d6bbd94b0053 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/suit_jacket.rsi/icon-open.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/suit_jacket.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/suit_jacket.rsi/icon.png new file mode 100644 index 000000000000..217a7711d077 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/suit_jacket.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/suit_jacket.rsi/inhand-left.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/suit_jacket.rsi/inhand-left.png new file mode 100644 index 000000000000..49566b12d1ca Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/suit_jacket.rsi/inhand-left.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/suit_jacket.rsi/inhand-right.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/suit_jacket.rsi/inhand-right.png new file mode 100644 index 000000000000..8e0ebecdc78e Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/suit_jacket.rsi/inhand-right.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/suit_jacket.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/suit_jacket.rsi/meta.json new file mode 100644 index 000000000000..500f38b7d1d9 --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/suit_jacket.rsi/meta.json @@ -0,0 +1,41 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Aurorastation at commit https://github.com/Aurorastation/Aurora.3/commit/6cc60e0443c3d5f0111f63d57c6d32151d90e4fc, modified by Skubman. inhand sprites from World Server at commit https://github.com/GeneriedJenelle/The-World-Server-Redux/commit/8f59da5859624db9078322a5b214381c09d1b953", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-open" + }, + { + "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/_EinsteinEngines/Clothing/OuterClothing/Misc/suit_jacket.rsi/open-equipped-OUTERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/suit_jacket.rsi/open-equipped-OUTERCLOTHING.png new file mode 100644 index 000000000000..2be876d685a4 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/suit_jacket.rsi/open-equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/suit_jacket.rsi/open-inhand-left.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/suit_jacket.rsi/open-inhand-left.png new file mode 100644 index 000000000000..49566b12d1ca Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/suit_jacket.rsi/open-inhand-left.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/suit_jacket.rsi/open-inhand-right.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/suit_jacket.rsi/open-inhand-right.png new file mode 100644 index 000000000000..8e0ebecdc78e Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Misc/suit_jacket.rsi/open-inhand-right.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Vests/vest_thick.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Vests/vest_thick.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 000000000000..9190868cbefd Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Vests/vest_thick.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Vests/vest_thick.rsi/icon-open.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Vests/vest_thick.rsi/icon-open.png new file mode 100644 index 000000000000..36845eff37da Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Vests/vest_thick.rsi/icon-open.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Vests/vest_thick.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Vests/vest_thick.rsi/icon.png new file mode 100644 index 000000000000..cfcf0ca0c3c7 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Vests/vest_thick.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Vests/vest_thick.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Vests/vest_thick.rsi/meta.json new file mode 100644 index 000000000000..44eb96a3a319 --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Vests/vest_thick.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Aurorastation at commit https://github.com/Aurorastation/Aurora.3/commit/eafcc13b50f7fe1e22bc7c52a116ac883e0648cd", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-open" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "open-equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Vests/vest_thick.rsi/open-equipped-OUTERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Vests/vest_thick.rsi/open-equipped-OUTERCLOTHING.png new file mode 100644 index 000000000000..16b5fe6e640b Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/OuterClothing/Vests/vest_thick.rsi/open-equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/asymmetric_dress.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/asymmetric_dress.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..7b6d87af3382 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/asymmetric_dress.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/asymmetric_dress.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/asymmetric_dress.rsi/icon.png new file mode 100644 index 000000000000..0e90e48e64fa Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/asymmetric_dress.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/asymmetric_dress.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/asymmetric_dress.rsi/meta.json new file mode 100644 index 000000000000..9d77e1c3f12f --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/asymmetric_dress.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Aurorastation at commit https://github.com/Aurorastation/Aurora.3/commit/17daf9f2e02d96c7c5b18fb8d8760882577ffbc0", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/black_and_gold.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/black_and_gold.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..810b1f0e02c4 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/black_and_gold.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/black_and_gold.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/black_and_gold.rsi/icon.png new file mode 100644 index 000000000000..4ce73204b2fc Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/black_and_gold.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/black_and_gold.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/black_and_gold.rsi/meta.json new file mode 100644 index 000000000000..2dc0faca889a --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/black_and_gold.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from World Server at commit https://github.com/GeneriedJenelle/The-World-Server-Redux/commit/53179e9bfdd2fbd028849aa9eddd2a2fbbf332e7", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/black_tango.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/black_tango.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..0b978fedf304 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/black_tango.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/black_tango.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/black_tango.rsi/icon.png new file mode 100644 index 000000000000..01d34e177c14 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/black_tango.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/black_tango.rsi/inhand-left.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/black_tango.rsi/inhand-left.png new file mode 100644 index 000000000000..322db6656b27 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/black_tango.rsi/inhand-left.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/black_tango.rsi/inhand-right.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/black_tango.rsi/inhand-right.png new file mode 100644 index 000000000000..65c3f9e8972e Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/black_tango.rsi/inhand-right.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/black_tango.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/black_tango.rsi/meta.json new file mode 100644 index 000000000000..ac2f89fef0bf --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/black_tango.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Aurorastation at commit https://github.com/Aurorastation/Aurora.3/commit/fb63881dc01c99717ae1bf9e5463840f5b59e00a, inhand sprites taken from World Server at commit https://github.com/GeneriedJenelle/The-World-Server-Redux/commit/9a170500c0bacad060882307e7f525b445affdec", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/blue_blazer.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/blue_blazer.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..5cfefaab69fb Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/blue_blazer.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/blue_blazer.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/blue_blazer.rsi/icon.png new file mode 100644 index 000000000000..5801415e06de Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/blue_blazer.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/blue_blazer.rsi/inhand-left.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/blue_blazer.rsi/inhand-left.png new file mode 100644 index 000000000000..f0df5d4f4958 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/blue_blazer.rsi/inhand-left.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/blue_blazer.rsi/inhand-right.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/blue_blazer.rsi/inhand-right.png new file mode 100644 index 000000000000..a4bebfe85aef Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/blue_blazer.rsi/inhand-right.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/blue_blazer.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/blue_blazer.rsi/meta.json new file mode 100644 index 000000000000..ae0780848677 --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/blue_blazer.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from World Server at commit https://github.com/GeneriedJenelle/The-World-Server-Redux/commit/af40bc8515d560aeff3d397a5f33f556accbb890", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/blue_sundress.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/blue_sundress.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..59029dd6f83a Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/blue_sundress.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/blue_sundress.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/blue_sundress.rsi/icon.png new file mode 100644 index 000000000000..cf9c03f55afc Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/blue_sundress.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/blue_sundress.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/blue_sundress.rsi/meta.json new file mode 100644 index 000000000000..2dc0faca889a --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/blue_sundress.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from World Server at commit https://github.com/GeneriedJenelle/The-World-Server-Redux/commit/53179e9bfdd2fbd028849aa9eddd2a2fbbf332e7", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/cheongsamblue.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/cheongsamblue.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..3b383d0c61de Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/cheongsamblue.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/cheongsamblue.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/cheongsamblue.rsi/icon.png new file mode 100644 index 000000000000..57e330055ca3 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/cheongsamblue.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/cheongsamblue.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/cheongsamblue.rsi/meta.json new file mode 100644 index 000000000000..c11bafd63a41 --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/cheongsamblue.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Aurorastation at commit https://github.com/Aurorastation/Aurora.3/commit/462115b50143c4e1d2722c08c1df66ad8f0ae087", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/cheongsamgreen.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/cheongsamgreen.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..9b12afcc9240 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/cheongsamgreen.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/cheongsamgreen.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/cheongsamgreen.rsi/icon.png new file mode 100644 index 000000000000..1e9cb7bf4462 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/cheongsamgreen.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/cheongsamgreen.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/cheongsamgreen.rsi/meta.json new file mode 100644 index 000000000000..c11bafd63a41 --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/cheongsamgreen.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Aurorastation at commit https://github.com/Aurorastation/Aurora.3/commit/462115b50143c4e1d2722c08c1df66ad8f0ae087", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/cheongsampurple.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/cheongsampurple.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..0117c663a834 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/cheongsampurple.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/cheongsampurple.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/cheongsampurple.rsi/icon.png new file mode 100644 index 000000000000..26842eaa026a Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/cheongsampurple.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/cheongsampurple.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/cheongsampurple.rsi/meta.json new file mode 100644 index 000000000000..c11bafd63a41 --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/cheongsampurple.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Aurorastation at commit https://github.com/Aurorastation/Aurora.3/commit/462115b50143c4e1d2722c08c1df66ad8f0ae087", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/cheongsamred.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/cheongsamred.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..0fb4f21660ca Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/cheongsamred.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/cheongsamred.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/cheongsamred.rsi/icon.png new file mode 100644 index 000000000000..e4913d4f11eb Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/cheongsamred.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/cheongsamred.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/cheongsamred.rsi/meta.json new file mode 100644 index 000000000000..c11bafd63a41 --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/cheongsamred.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Aurorastation at commit https://github.com/Aurorastation/Aurora.3/commit/462115b50143c4e1d2722c08c1df66ad8f0ae087", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/cheongsamwhite.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/cheongsamwhite.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..9908c0c975ec Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/cheongsamwhite.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/cheongsamwhite.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/cheongsamwhite.rsi/icon.png new file mode 100644 index 000000000000..70a60e5efbae Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/cheongsamwhite.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/cheongsamwhite.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/cheongsamwhite.rsi/meta.json new file mode 100644 index 000000000000..c11bafd63a41 --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/cheongsamwhite.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Aurorastation at commit https://github.com/Aurorastation/Aurora.3/commit/462115b50143c4e1d2722c08c1df66ad8f0ae087", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/club_dress.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/club_dress.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..300b4508c77b Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/club_dress.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/club_dress.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/club_dress.rsi/icon.png new file mode 100644 index 000000000000..7ea0b70e6b63 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/club_dress.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/club_dress.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/club_dress.rsi/meta.json new file mode 100644 index 000000000000..095c561c3c92 --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/club_dress.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from World Server at commit https://github.com/GeneriedJenelle/The-World-Server-Redux/commit/af40bc8515d560aeff3d397a5f33f556accbb890, modified by Skubman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/coveter.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/coveter.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..a8dd087c5315 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/coveter.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/coveter.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/coveter.rsi/icon.png new file mode 100644 index 000000000000..0e4300475169 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/coveter.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/coveter.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/coveter.rsi/meta.json new file mode 100644 index 000000000000..2dc0faca889a --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/coveter.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from World Server at commit https://github.com/GeneriedJenelle/The-World-Server-Redux/commit/53179e9bfdd2fbd028849aa9eddd2a2fbbf332e7", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/dress_fire.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/dress_fire.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..22bd0f32324c Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/dress_fire.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/dress_fire.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/dress_fire.rsi/icon.png new file mode 100644 index 000000000000..e635c5d5e3c4 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/dress_fire.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/dress_fire.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/dress_fire.rsi/meta.json new file mode 100644 index 000000000000..27235e41f03b --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/dress_fire.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Aurorastation at commit https://github.com/Aurorastation/Aurora.3/commit/fb63881dc01c99717ae1bf9e5463840f5b59e00a", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/dress_orange.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/dress_orange.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..f3c2e1dd15fd Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/dress_orange.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/dress_orange.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/dress_orange.rsi/icon.png new file mode 100644 index 000000000000..10f2c0b18e61 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/dress_orange.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/dress_orange.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/dress_orange.rsi/meta.json new file mode 100644 index 000000000000..27235e41f03b --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/dress_orange.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Aurorastation at commit https://github.com/Aurorastation/Aurora.3/commit/fb63881dc01c99717ae1bf9e5463840f5b59e00a", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/dress_yellow.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/dress_yellow.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..2c589322142e Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/dress_yellow.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/dress_yellow.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/dress_yellow.rsi/icon.png new file mode 100644 index 000000000000..cfe553ff1838 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/dress_yellow.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/dress_yellow.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/dress_yellow.rsi/meta.json new file mode 100644 index 000000000000..27235e41f03b --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/dress_yellow.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Aurorastation at commit https://github.com/Aurorastation/Aurora.3/commit/fb63881dc01c99717ae1bf9e5463840f5b59e00a", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/evening_gown.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/evening_gown.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..4a3e6588e618 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/evening_gown.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/evening_gown.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/evening_gown.rsi/icon.png new file mode 100644 index 000000000000..34b43413e2a0 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/evening_gown.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/evening_gown.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/evening_gown.rsi/meta.json new file mode 100644 index 000000000000..9d77e1c3f12f --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/evening_gown.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Aurorastation at commit https://github.com/Aurorastation/Aurora.3/commit/17daf9f2e02d96c7c5b18fb8d8760882577ffbc0", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/flamenco.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/flamenco.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..d119ec220fb3 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/flamenco.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/flamenco.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/flamenco.rsi/icon.png new file mode 100644 index 000000000000..17d92f25e71b Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/flamenco.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/flamenco.rsi/inhand-left.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/flamenco.rsi/inhand-left.png new file mode 100644 index 000000000000..27013832fdd7 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/flamenco.rsi/inhand-left.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/flamenco.rsi/inhand-right.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/flamenco.rsi/inhand-right.png new file mode 100644 index 000000000000..c07e87632111 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/flamenco.rsi/inhand-right.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/flamenco.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/flamenco.rsi/meta.json new file mode 100644 index 000000000000..ae0780848677 --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/flamenco.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from World Server at commit https://github.com/GeneriedJenelle/The-World-Server-Redux/commit/af40bc8515d560aeff3d397a5f33f556accbb890", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/flowergirl.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/flowergirl.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..d9e8c1c92192 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/flowergirl.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/flowergirl.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/flowergirl.rsi/icon.png new file mode 100644 index 000000000000..eedd43e11e64 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/flowergirl.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/flowergirl.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/flowergirl.rsi/meta.json new file mode 100644 index 000000000000..2dc0faca889a --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/flowergirl.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from World Server at commit https://github.com/GeneriedJenelle/The-World-Server-Redux/commit/53179e9bfdd2fbd028849aa9eddd2a2fbbf332e7", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/fluffy.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/fluffy.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..dc175685303f Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/fluffy.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/fluffy.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/fluffy.rsi/icon.png new file mode 100644 index 000000000000..7551560d20a0 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/fluffy.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/fluffy.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/fluffy.rsi/meta.json new file mode 100644 index 000000000000..2dc0faca889a --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/fluffy.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from World Server at commit https://github.com/GeneriedJenelle/The-World-Server-Redux/commit/53179e9bfdd2fbd028849aa9eddd2a2fbbf332e7", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/formalred.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/formalred.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..4b345efe9482 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/formalred.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/formalred.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/formalred.rsi/icon.png new file mode 100644 index 000000000000..13fbd32eeafc Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/formalred.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/formalred.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/formalred.rsi/meta.json new file mode 100644 index 000000000000..2dc0faca889a --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/formalred.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from World Server at commit https://github.com/GeneriedJenelle/The-World-Server-Redux/commit/53179e9bfdd2fbd028849aa9eddd2a2fbbf332e7", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/gothic.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/gothic.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..8dc0a23425b9 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/gothic.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/gothic.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/gothic.rsi/icon.png new file mode 100644 index 000000000000..235bf739f946 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/gothic.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/gothic.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/gothic.rsi/meta.json new file mode 100644 index 000000000000..2dc0faca889a --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/gothic.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from World Server at commit https://github.com/GeneriedJenelle/The-World-Server-Redux/commit/53179e9bfdd2fbd028849aa9eddd2a2fbbf332e7", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/kimono_color.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/kimono_color.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..7a85082b3320 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/kimono_color.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/kimono_color.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/kimono_color.rsi/icon.png new file mode 100644 index 000000000000..006f56936d44 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/kimono_color.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/kimono_color.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/kimono_color.rsi/meta.json new file mode 100644 index 000000000000..354a9b47073a --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/kimono_color.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Aurorastation at commit https://github.com/Aurorastation/Aurora.3/commit/01befcbc8f10fa4160342645f9ac46e7943d524b", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/lacy_gown.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/lacy_gown.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..8c28a6d4c75e Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/lacy_gown.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/lacy_gown.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/lacy_gown.rsi/icon.png new file mode 100644 index 000000000000..5b03cfe4ae8e Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/lacy_gown.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/lacy_gown.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/lacy_gown.rsi/meta.json new file mode 100644 index 000000000000..6eba7ec16392 --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/lacy_gown.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from World Server at commit https://github.com/GeneriedJenelle/The-World-Server-Redux/commit/af40bc8515d560aeff3d397a5f33f556accbb890", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/long_dress.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/long_dress.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..17f0d54dee81 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/long_dress.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/long_dress.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/long_dress.rsi/icon.png new file mode 100644 index 000000000000..a199c85d795f Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/long_dress.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/long_dress.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/long_dress.rsi/meta.json new file mode 100644 index 000000000000..6eba7ec16392 --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/long_dress.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from World Server at commit https://github.com/GeneriedJenelle/The-World-Server-Redux/commit/af40bc8515d560aeff3d397a5f33f556accbb890", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/long_flared_dress.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/long_flared_dress.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..d463a3d845e2 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/long_flared_dress.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/long_flared_dress.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/long_flared_dress.rsi/icon.png new file mode 100644 index 000000000000..86d7296c84cf Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/long_flared_dress.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/long_flared_dress.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/long_flared_dress.rsi/meta.json new file mode 100644 index 000000000000..6eba7ec16392 --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/long_flared_dress.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from World Server at commit https://github.com/GeneriedJenelle/The-World-Server-Redux/commit/af40bc8515d560aeff3d397a5f33f556accbb890", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/longsleeve_dress.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/longsleeve_dress.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..ffcb91c9807f Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/longsleeve_dress.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/longsleeve_dress.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/longsleeve_dress.rsi/icon.png new file mode 100644 index 000000000000..73a210e70a09 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/longsleeve_dress.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/longsleeve_dress.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/longsleeve_dress.rsi/meta.json new file mode 100644 index 000000000000..9d77e1c3f12f --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/longsleeve_dress.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Aurorastation at commit https://github.com/Aurorastation/Aurora.3/commit/17daf9f2e02d96c7c5b18fb8d8760882577ffbc0", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/midi_dress.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/midi_dress.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..97a2c01ac939 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/midi_dress.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/midi_dress.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/midi_dress.rsi/icon.png new file mode 100644 index 000000000000..245fd0713e4c Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/midi_dress.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/midi_dress.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/midi_dress.rsi/meta.json new file mode 100644 index 000000000000..9d77e1c3f12f --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/midi_dress.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Aurorastation at commit https://github.com/Aurorastation/Aurora.3/commit/17daf9f2e02d96c7c5b18fb8d8760882577ffbc0", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/openshoulder_dress.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/openshoulder_dress.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..74ec17b58c3f Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/openshoulder_dress.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/openshoulder_dress.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/openshoulder_dress.rsi/icon.png new file mode 100644 index 000000000000..a5f9126c010e Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/openshoulder_dress.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/openshoulder_dress.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/openshoulder_dress.rsi/meta.json new file mode 100644 index 000000000000..9d77e1c3f12f --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/openshoulder_dress.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Aurorastation at commit https://github.com/Aurorastation/Aurora.3/commit/17daf9f2e02d96c7c5b18fb8d8760882577ffbc0", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/puffydress.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/puffydress.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..9580bf064959 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/puffydress.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/puffydress.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/puffydress.rsi/icon.png new file mode 100644 index 000000000000..58dce30ed074 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/puffydress.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/puffydress.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/puffydress.rsi/meta.json new file mode 100644 index 000000000000..27235e41f03b --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/puffydress.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Aurorastation at commit https://github.com/Aurorastation/Aurora.3/commit/fb63881dc01c99717ae1bf9e5463840f5b59e00a", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/qipao.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/qipao.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..2f703ad7e82e Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/qipao.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/qipao.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/qipao.rsi/icon.png new file mode 100644 index 000000000000..66f1c963ea87 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/qipao.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/qipao.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/qipao.rsi/meta.json new file mode 100644 index 000000000000..27235e41f03b --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/qipao.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Aurorastation at commit https://github.com/Aurorastation/Aurora.3/commit/fb63881dc01c99717ae1bf9e5463840f5b59e00a", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/qipao_slim.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/qipao_slim.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..3d0c6a2f27e9 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/qipao_slim.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/qipao_slim.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/qipao_slim.rsi/icon.png new file mode 100644 index 000000000000..ef734d390eb7 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/qipao_slim.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/qipao_slim.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/qipao_slim.rsi/meta.json new file mode 100644 index 000000000000..27235e41f03b --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/qipao_slim.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Aurorastation at commit https://github.com/Aurorastation/Aurora.3/commit/fb63881dc01c99717ae1bf9e5463840f5b59e00a", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/red_swept_dress.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/red_swept_dress.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..0f32531ed1d3 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/red_swept_dress.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/red_swept_dress.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/red_swept_dress.rsi/icon.png new file mode 100644 index 000000000000..e0767c19adff Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/red_swept_dress.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/red_swept_dress.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/red_swept_dress.rsi/meta.json new file mode 100644 index 000000000000..27235e41f03b --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/red_swept_dress.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Aurorastation at commit https://github.com/Aurorastation/Aurora.3/commit/fb63881dc01c99717ae1bf9e5463840f5b59e00a", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/sailor_dress.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/sailor_dress.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..aaa78447e8ef Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/sailor_dress.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/sailor_dress.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/sailor_dress.rsi/icon.png new file mode 100644 index 000000000000..2afcd4829714 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/sailor_dress.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/sailor_dress.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/sailor_dress.rsi/meta.json new file mode 100644 index 000000000000..6eba7ec16392 --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/sailor_dress.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from World Server at commit https://github.com/GeneriedJenelle/The-World-Server-Redux/commit/af40bc8515d560aeff3d397a5f33f556accbb890", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/short_dress.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/short_dress.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..ac6eb1c72358 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/short_dress.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/short_dress.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/short_dress.rsi/icon.png new file mode 100644 index 000000000000..4dd94a541c77 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/short_dress.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/short_dress.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/short_dress.rsi/meta.json new file mode 100644 index 000000000000..6eba7ec16392 --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/short_dress.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from World Server at commit https://github.com/GeneriedJenelle/The-World-Server-Redux/commit/af40bc8515d560aeff3d397a5f33f556accbb890", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/skirt_pencil_gym_bra.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/skirt_pencil_gym_bra.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..0d28f73eb91c Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/skirt_pencil_gym_bra.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/skirt_pencil_gym_bra.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/skirt_pencil_gym_bra.rsi/icon.png new file mode 100644 index 000000000000..0c74712972d3 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/skirt_pencil_gym_bra.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/skirt_pencil_gym_bra.rsi/inhand-left.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/skirt_pencil_gym_bra.rsi/inhand-left.png new file mode 100644 index 000000000000..669c90f79350 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/skirt_pencil_gym_bra.rsi/inhand-left.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/skirt_pencil_gym_bra.rsi/inhand-right.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/skirt_pencil_gym_bra.rsi/inhand-right.png new file mode 100644 index 000000000000..90504a05d2f9 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/skirt_pencil_gym_bra.rsi/inhand-right.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/skirt_pencil_gym_bra.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/skirt_pencil_gym_bra.rsi/meta.json new file mode 100644 index 000000000000..71e133c4871a --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/skirt_pencil_gym_bra.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Aurorastation at commit https://github.com/Aurorastation/Aurora.3/commit/17df1ff2b48ed3c5108497e20c888898611af5ee, modified by Skubman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/sleeveless_dress.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/sleeveless_dress.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..08a4d711c63c Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/sleeveless_dress.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/sleeveless_dress.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/sleeveless_dress.rsi/icon.png new file mode 100644 index 000000000000..ca3daff18f50 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/sleeveless_dress.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/sleeveless_dress.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/sleeveless_dress.rsi/meta.json new file mode 100644 index 000000000000..9d77e1c3f12f --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/sleeveless_dress.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Aurorastation at commit https://github.com/Aurorastation/Aurora.3/commit/17daf9f2e02d96c7c5b18fb8d8760882577ffbc0", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/spider.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/spider.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..3a927280b11b Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/spider.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/spider.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/spider.rsi/icon.png new file mode 100644 index 000000000000..ac96bcc62230 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/spider.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/spider.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/spider.rsi/meta.json new file mode 100644 index 000000000000..2dc0faca889a --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/spider.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from World Server at commit https://github.com/GeneriedJenelle/The-World-Server-Redux/commit/53179e9bfdd2fbd028849aa9eddd2a2fbbf332e7", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/striped_dress.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/striped_dress.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..a7f008ae25a2 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/striped_dress.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/striped_dress.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/striped_dress.rsi/icon.png new file mode 100644 index 000000000000..606fe0b83d7e Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/striped_dress.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/striped_dress.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/striped_dress.rsi/meta.json new file mode 100644 index 000000000000..6eba7ec16392 --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/striped_dress.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from World Server at commit https://github.com/GeneriedJenelle/The-World-Server-Redux/commit/af40bc8515d560aeff3d397a5f33f556accbb890", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/sundress.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/sundress.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..1c1a70b7caf8 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/sundress.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/sundress.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/sundress.rsi/icon.png new file mode 100644 index 000000000000..a082c7014afe Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/sundress.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/sundress.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/sundress.rsi/meta.json new file mode 100644 index 000000000000..27235e41f03b --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/sundress.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Aurorastation at commit https://github.com/Aurorastation/Aurora.3/commit/fb63881dc01c99717ae1bf9e5463840f5b59e00a", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/sundress_white.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/sundress_white.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..14c11610d7da Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/sundress_white.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/sundress_white.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/sundress_white.rsi/icon.png new file mode 100644 index 000000000000..8455b5bd1919 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/sundress_white.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/sundress_white.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/sundress_white.rsi/meta.json new file mode 100644 index 000000000000..27235e41f03b --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/sundress_white.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Aurorastation at commit https://github.com/Aurorastation/Aurora.3/commit/fb63881dc01c99717ae1bf9e5463840f5b59e00a", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/tea_dress.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/tea_dress.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..fda1949d35d3 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/tea_dress.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/tea_dress.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/tea_dress.rsi/icon.png new file mode 100644 index 000000000000..44640995811c Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/tea_dress.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/tea_dress.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/tea_dress.rsi/meta.json new file mode 100644 index 000000000000..9d77e1c3f12f --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/tea_dress.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Aurorastation at commit https://github.com/Aurorastation/Aurora.3/commit/17daf9f2e02d96c7c5b18fb8d8760882577ffbc0", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/victorian_black_dress.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/victorian_black_dress.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..b1d186c085e7 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/victorian_black_dress.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/victorian_black_dress.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/victorian_black_dress.rsi/icon.png new file mode 100644 index 000000000000..30d8f48eb3a1 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/victorian_black_dress.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/victorian_black_dress.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/victorian_black_dress.rsi/meta.json new file mode 100644 index 000000000000..2dc0faca889a --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/victorian_black_dress.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from World Server at commit https://github.com/GeneriedJenelle/The-World-Server-Redux/commit/53179e9bfdd2fbd028849aa9eddd2a2fbbf332e7", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/victorian_red_dress.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/victorian_red_dress.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..732506c6d5cd Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/victorian_red_dress.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/victorian_red_dress.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/victorian_red_dress.rsi/icon.png new file mode 100644 index 000000000000..0f58df68d36f Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/victorian_red_dress.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/victorian_red_dress.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/victorian_red_dress.rsi/meta.json new file mode 100644 index 000000000000..2dc0faca889a --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/victorian_red_dress.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from World Server at commit https://github.com/GeneriedJenelle/The-World-Server-Redux/commit/53179e9bfdd2fbd028849aa9eddd2a2fbbf332e7", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/waitress.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/waitress.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..0208af198573 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/waitress.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/waitress.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/waitress.rsi/icon.png new file mode 100644 index 000000000000..c9e567814317 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/waitress.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/waitress.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/waitress.rsi/meta.json new file mode 100644 index 000000000000..19721ae28c74 --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/waitress.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from World Server at commit https://github.com/GeneriedJenelle/The-World-Server-Redux/commit/af40bc8515d560aeff3d397a5f33f556accbb890, icon by Skubman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/yellowswoop.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/yellowswoop.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..2ab6777576eb Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/yellowswoop.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/yellowswoop.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/yellowswoop.rsi/icon.png new file mode 100644 index 000000000000..fb6f811b72c9 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/yellowswoop.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/yellowswoop.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/yellowswoop.rsi/meta.json new file mode 100644 index 000000000000..2dc0faca889a --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpskirt/yellowswoop.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from World Server at commit https://github.com/GeneriedJenelle/The-World-Server-Redux/commit/53179e9bfdd2fbd028849aa9eddd2a2fbbf332e7", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/black_flannel_jeans.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/black_flannel_jeans.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..978ac83ecc2b Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/black_flannel_jeans.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/black_flannel_jeans.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/black_flannel_jeans.rsi/icon.png new file mode 100644 index 000000000000..a74305892b60 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/black_flannel_jeans.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/black_flannel_jeans.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/black_flannel_jeans.rsi/meta.json new file mode 100644 index 000000000000..02d998ebd105 --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/black_flannel_jeans.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-3.0", + "copyright": "taken from BigIron github | modified by Skubman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/black_flannel_khakis.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/black_flannel_khakis.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..f228eaa30bfe Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/black_flannel_khakis.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/black_flannel_khakis.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/black_flannel_khakis.rsi/icon.png new file mode 100644 index 000000000000..1060d96b8297 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/black_flannel_khakis.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/black_flannel_khakis.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/black_flannel_khakis.rsi/meta.json new file mode 100644 index 000000000000..6fe5d59eced0 --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/black_flannel_khakis.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-3.0", + "copyright": "Taken from BigIron github | modified by Skubman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/blue_blazer.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/blue_blazer.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..ae65a7865d74 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/blue_blazer.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/blue_blazer.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/blue_blazer.rsi/icon.png new file mode 100644 index 000000000000..11cd643c3ad4 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/blue_blazer.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/blue_blazer.rsi/inhand-left.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/blue_blazer.rsi/inhand-left.png new file mode 100644 index 000000000000..f0df5d4f4958 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/blue_blazer.rsi/inhand-left.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/blue_blazer.rsi/inhand-right.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/blue_blazer.rsi/inhand-right.png new file mode 100644 index 000000000000..a4bebfe85aef Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/blue_blazer.rsi/inhand-right.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/blue_blazer.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/blue_blazer.rsi/meta.json new file mode 100644 index 000000000000..ae0780848677 --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/blue_blazer.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from World Server at commit https://github.com/GeneriedJenelle/The-World-Server-Redux/commit/af40bc8515d560aeff3d397a5f33f556accbb890", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/checkered.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/checkered.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..785d31b6cf77 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/checkered.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/checkered.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/checkered.rsi/icon.png new file mode 100644 index 000000000000..96eb9761a7d4 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/checkered.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/checkered.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/checkered.rsi/meta.json new file mode 100644 index 000000000000..f96d1c0590cf --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/checkered.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-3.0", + "copyright": "Taken from DesertRose https://github.com/DesertRose2/desertrose/commit/704aa5e9e3b86d6e1dbf64a29ba976f7ef53a4ab | modified by Skubman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/disheveled.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/disheveled.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..db32f0601f35 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/disheveled.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/disheveled.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/disheveled.rsi/icon.png new file mode 100644 index 000000000000..e3d573f5be1d Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/disheveled.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/disheveled.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/disheveled.rsi/meta.json new file mode 100644 index 000000000000..eb398cdb1ddf --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/disheveled.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from World Server at commit https://github.com/GeneriedJenelle/The-World-Server-Redux/commit/53179e9bfdd2fbd028849aa9eddd2a2fbbf332e7 | modified by Skubman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/flannel.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/flannel.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..80a966b0ce70 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/flannel.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/flannel.rsi/folded-equipped-INNERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/flannel.rsi/folded-equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..e72ec8b50122 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/flannel.rsi/folded-equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/flannel.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/flannel.rsi/icon.png new file mode 100644 index 000000000000..38eb1021c4a0 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/flannel.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/flannel.rsi/inhand-left.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/flannel.rsi/inhand-left.png new file mode 100644 index 000000000000..7850e6a67638 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/flannel.rsi/inhand-left.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/flannel.rsi/inhand-right.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/flannel.rsi/inhand-right.png new file mode 100644 index 000000000000..8cbbfad26bc9 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/flannel.rsi/inhand-right.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/flannel.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/flannel.rsi/meta.json new file mode 100644 index 000000000000..4579415d8e55 --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/flannel.rsi/meta.json @@ -0,0 +1,30 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Sprited by MrGreen06#0618 (discord), folded version by Pinkbat5 (github)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "folded-equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/flannel_jeans.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/flannel_jeans.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..d6e9c2326535 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/flannel_jeans.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/flannel_jeans.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/flannel_jeans.rsi/icon.png new file mode 100644 index 000000000000..da697fd0a3a8 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/flannel_jeans.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/flannel_jeans.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/flannel_jeans.rsi/meta.json new file mode 100644 index 000000000000..6fe5d59eced0 --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/flannel_jeans.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-3.0", + "copyright": "Taken from BigIron github | modified by Skubman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/flannel_khakis.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/flannel_khakis.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..8f58dd618824 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/flannel_khakis.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/flannel_khakis.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/flannel_khakis.rsi/icon.png new file mode 100644 index 000000000000..910ee3ef013a Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/flannel_khakis.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/flannel_khakis.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/flannel_khakis.rsi/meta.json new file mode 100644 index 000000000000..02d998ebd105 --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/flannel_khakis.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-3.0", + "copyright": "taken from BigIron github | modified by Skubman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/olive_sweater.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/olive_sweater.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..e45895973597 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/olive_sweater.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/olive_sweater.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/olive_sweater.rsi/icon.png new file mode 100644 index 000000000000..d9818ae992b4 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/olive_sweater.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/olive_sweater.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/olive_sweater.rsi/meta.json new file mode 100644 index 000000000000..e1c7a190dc4d --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/olive_sweater.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-3.0", + "copyright": "Taken from BigIron github, modified by Skubman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/rippedpunk.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/rippedpunk.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..e3fab3358f08 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/rippedpunk.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/rippedpunk.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/rippedpunk.rsi/icon.png new file mode 100644 index 000000000000..e4db7339fd3d Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/rippedpunk.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/rippedpunk.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/rippedpunk.rsi/meta.json new file mode 100644 index 000000000000..2dc0faca889a --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/rippedpunk.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from World Server at commit https://github.com/GeneriedJenelle/The-World-Server-Redux/commit/53179e9bfdd2fbd028849aa9eddd2a2fbbf332e7", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/trackpants.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/trackpants.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..0b73b5c16162 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/trackpants.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/trackpants.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/trackpants.rsi/icon.png new file mode 100644 index 000000000000..109d030367c7 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/trackpants.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/trackpants.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/trackpants.rsi/meta.json new file mode 100644 index 000000000000..19721ae28c74 --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/trackpants.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from World Server at commit https://github.com/GeneriedJenelle/The-World-Server-Redux/commit/af40bc8515d560aeff3d397a5f33f556accbb890, icon by Skubman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/turtleneck_grey.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/turtleneck_grey.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..90239856cd2e Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/turtleneck_grey.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/turtleneck_grey.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/turtleneck_grey.rsi/icon.png new file mode 100644 index 000000000000..dcf8962b2616 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/turtleneck_grey.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/turtleneck_grey.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/turtleneck_grey.rsi/meta.json new file mode 100644 index 000000000000..6eba7ec16392 --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/turtleneck_grey.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from World Server at commit https://github.com/GeneriedJenelle/The-World-Server-Redux/commit/af40bc8515d560aeff3d397a5f33f556accbb890", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/victorian_red_black.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/victorian_red_black.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..f94edce4171a Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/victorian_red_black.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/victorian_red_black.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/victorian_red_black.rsi/icon.png new file mode 100644 index 000000000000..7863f55196a0 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/victorian_red_black.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/victorian_red_black.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/victorian_red_black.rsi/meta.json new file mode 100644 index 000000000000..2dc0faca889a --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/victorian_red_black.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from World Server at commit https://github.com/GeneriedJenelle/The-World-Server-Redux/commit/53179e9bfdd2fbd028849aa9eddd2a2fbbf332e7", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/victorian_red_vest.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/victorian_red_vest.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..7f2f6e2a2d8e Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/victorian_red_vest.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/victorian_red_vest.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/victorian_red_vest.rsi/icon.png new file mode 100644 index 000000000000..d3ef39453050 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/victorian_red_vest.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/victorian_red_vest.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/victorian_red_vest.rsi/meta.json new file mode 100644 index 000000000000..2dc0faca889a --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/victorian_red_vest.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from World Server at commit https://github.com/GeneriedJenelle/The-World-Server-Redux/commit/53179e9bfdd2fbd028849aa9eddd2a2fbbf332e7", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/victorian_vest.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/victorian_vest.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..983247bc544f Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/victorian_vest.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/victorian_vest.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/victorian_vest.rsi/icon.png new file mode 100644 index 000000000000..6026e3641c5e Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/victorian_vest.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/victorian_vest.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/victorian_vest.rsi/meta.json new file mode 100644 index 000000000000..2dc0faca889a --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/victorian_vest.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from World Server at commit https://github.com/GeneriedJenelle/The-World-Server-Redux/commit/53179e9bfdd2fbd028849aa9eddd2a2fbbf332e7", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/yoga_gym_bra.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/yoga_gym_bra.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 000000000000..89cf9508020b Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/yoga_gym_bra.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/yoga_gym_bra.rsi/icon.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/yoga_gym_bra.rsi/icon.png new file mode 100644 index 000000000000..28e98972ff12 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/yoga_gym_bra.rsi/icon.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/yoga_gym_bra.rsi/inhand-left.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/yoga_gym_bra.rsi/inhand-left.png new file mode 100644 index 000000000000..94da48486685 Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/yoga_gym_bra.rsi/inhand-left.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/yoga_gym_bra.rsi/inhand-right.png b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/yoga_gym_bra.rsi/inhand-right.png new file mode 100644 index 000000000000..91127bba74ed Binary files /dev/null and b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/yoga_gym_bra.rsi/inhand-right.png differ diff --git a/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/yoga_gym_bra.rsi/meta.json b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/yoga_gym_bra.rsi/meta.json new file mode 100644 index 000000000000..f4b631210b42 --- /dev/null +++ b/Resources/Textures/_EinsteinEngines/Clothing/Uniforms/Jumpsuit/yoga_gym_bra.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Yoga pants bottom from World Server at commit https://github.com/GeneriedJenelle/The-World-Server-Redux/commit/af40bc8515d560aeff3d397a5f33f556accbb890, sports bra top taken from Aurorastation at commit https://github.com/Aurorastation/Aurora.3/commit/dcc7a7923de9b9f58832f0f73bc20d9b1fdd84b7, modified by Skubman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Head/Hoods/Coat/acid_raincoat.rsi/equipped-HELMET.png b/Resources/Textures/_NF/Clothing/Head/Hoods/Coat/acid_raincoat.rsi/equipped-HELMET.png new file mode 100644 index 000000000000..0121cea426a2 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hoods/Coat/acid_raincoat.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hoods/Coat/acid_raincoat.rsi/icon.png b/Resources/Textures/_NF/Clothing/Head/Hoods/Coat/acid_raincoat.rsi/icon.png new file mode 100644 index 000000000000..d446c0a966a5 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hoods/Coat/acid_raincoat.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hoods/Coat/acid_raincoat.rsi/meta.json b/Resources/Textures/_NF/Clothing/Head/Hoods/Coat/acid_raincoat.rsi/meta.json new file mode 100644 index 000000000000..e10341e615b2 --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Head/Hoods/Coat/acid_raincoat.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e | resprited for acid raincoat hood by erhardsteinhauer", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Head/Hoods/Coat/acid_raincoat_blue.rsi/equipped-HELMET.png b/Resources/Textures/_NF/Clothing/Head/Hoods/Coat/acid_raincoat_blue.rsi/equipped-HELMET.png new file mode 100644 index 000000000000..5f4740a3c85a Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hoods/Coat/acid_raincoat_blue.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hoods/Coat/acid_raincoat_blue.rsi/icon.png b/Resources/Textures/_NF/Clothing/Head/Hoods/Coat/acid_raincoat_blue.rsi/icon.png new file mode 100644 index 000000000000..608c9c767972 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hoods/Coat/acid_raincoat_blue.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hoods/Coat/acid_raincoat_blue.rsi/meta.json b/Resources/Textures/_NF/Clothing/Head/Hoods/Coat/acid_raincoat_blue.rsi/meta.json new file mode 100644 index 000000000000..e10341e615b2 --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Head/Hoods/Coat/acid_raincoat_blue.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e | resprited for acid raincoat hood by erhardsteinhauer", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Head/Hoods/Coat/acid_raincoat_green.rsi/equipped-HELMET.png b/Resources/Textures/_NF/Clothing/Head/Hoods/Coat/acid_raincoat_green.rsi/equipped-HELMET.png new file mode 100644 index 000000000000..dbaa85d347f8 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hoods/Coat/acid_raincoat_green.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hoods/Coat/acid_raincoat_green.rsi/icon.png b/Resources/Textures/_NF/Clothing/Head/Hoods/Coat/acid_raincoat_green.rsi/icon.png new file mode 100644 index 000000000000..39e6e7a67820 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hoods/Coat/acid_raincoat_green.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hoods/Coat/acid_raincoat_green.rsi/meta.json b/Resources/Textures/_NF/Clothing/Head/Hoods/Coat/acid_raincoat_green.rsi/meta.json new file mode 100644 index 000000000000..e10341e615b2 --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Head/Hoods/Coat/acid_raincoat_green.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e | resprited for acid raincoat hood by erhardsteinhauer", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Head/Hoods/Coat/acid_raincoat_magenta.rsi/equipped-HELMET.png b/Resources/Textures/_NF/Clothing/Head/Hoods/Coat/acid_raincoat_magenta.rsi/equipped-HELMET.png new file mode 100644 index 000000000000..75ef2facdcd2 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hoods/Coat/acid_raincoat_magenta.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hoods/Coat/acid_raincoat_magenta.rsi/icon.png b/Resources/Textures/_NF/Clothing/Head/Hoods/Coat/acid_raincoat_magenta.rsi/icon.png new file mode 100644 index 000000000000..3ef3eb524a61 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hoods/Coat/acid_raincoat_magenta.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hoods/Coat/acid_raincoat_magenta.rsi/meta.json b/Resources/Textures/_NF/Clothing/Head/Hoods/Coat/acid_raincoat_magenta.rsi/meta.json new file mode 100644 index 000000000000..e10341e615b2 --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Head/Hoods/Coat/acid_raincoat_magenta.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e | resprited for acid raincoat hood by erhardsteinhauer", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Head/Hoods/Coat/acid_raincoat_yellow.rsi/equipped-HELMET.png b/Resources/Textures/_NF/Clothing/Head/Hoods/Coat/acid_raincoat_yellow.rsi/equipped-HELMET.png new file mode 100644 index 000000000000..a4fc86787016 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hoods/Coat/acid_raincoat_yellow.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hoods/Coat/acid_raincoat_yellow.rsi/icon.png b/Resources/Textures/_NF/Clothing/Head/Hoods/Coat/acid_raincoat_yellow.rsi/icon.png new file mode 100644 index 000000000000..b0db10ab4488 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hoods/Coat/acid_raincoat_yellow.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hoods/Coat/acid_raincoat_yellow.rsi/meta.json b/Resources/Textures/_NF/Clothing/Head/Hoods/Coat/acid_raincoat_yellow.rsi/meta.json new file mode 100644 index 000000000000..e10341e615b2 --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Head/Hoods/Coat/acid_raincoat_yellow.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e | resprited for acid raincoat hood by erhardsteinhauer", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 000000000000..351a43bcaa64 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat.rsi/icon.png b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat.rsi/icon.png new file mode 100644 index 000000000000..deb62dd58ba3 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat.rsi/inhand-left.png new file mode 100644 index 000000000000..e1ff9db3a686 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat.rsi/inhand-right.png new file mode 100644 index 000000000000..d5698440f11c Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat.rsi/meta.json b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat.rsi/meta.json new file mode 100644 index 000000000000..2834ac8f8d9a --- /dev/null +++ b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Made by Github user Psychpsyo for Space Station 14 | resprited for acid raincoat by erhardsteinhauer", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat_blue.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat_blue.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 000000000000..21d83215cec1 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat_blue.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat_blue.rsi/icon.png b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat_blue.rsi/icon.png new file mode 100644 index 000000000000..d2a8d51e372c Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat_blue.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat_blue.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat_blue.rsi/inhand-left.png new file mode 100644 index 000000000000..3dc2a157bda2 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat_blue.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat_blue.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat_blue.rsi/inhand-right.png new file mode 100644 index 000000000000..de3eec56b6d9 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat_blue.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat_blue.rsi/meta.json b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat_blue.rsi/meta.json new file mode 100644 index 000000000000..2834ac8f8d9a --- /dev/null +++ b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat_blue.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Made by Github user Psychpsyo for Space Station 14 | resprited for acid raincoat by erhardsteinhauer", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat_green.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat_green.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 000000000000..a9f8c8deeb8b Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat_green.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat_green.rsi/icon.png b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat_green.rsi/icon.png new file mode 100644 index 000000000000..8f95774529bf Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat_green.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat_green.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat_green.rsi/inhand-left.png new file mode 100644 index 000000000000..8e1f2b43ba70 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat_green.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat_green.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat_green.rsi/inhand-right.png new file mode 100644 index 000000000000..1462b1368dcc Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat_green.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat_green.rsi/meta.json b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat_green.rsi/meta.json new file mode 100644 index 000000000000..2834ac8f8d9a --- /dev/null +++ b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat_green.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Made by Github user Psychpsyo for Space Station 14 | resprited for acid raincoat by erhardsteinhauer", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat_magenta.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat_magenta.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 000000000000..20e7dc4c226e Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat_magenta.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat_magenta.rsi/icon.png b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat_magenta.rsi/icon.png new file mode 100644 index 000000000000..1c2c5068f8f1 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat_magenta.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat_magenta.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat_magenta.rsi/inhand-left.png new file mode 100644 index 000000000000..ee8d69881937 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat_magenta.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat_magenta.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat_magenta.rsi/inhand-right.png new file mode 100644 index 000000000000..61f0b3dd0e5b Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat_magenta.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat_magenta.rsi/meta.json b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat_magenta.rsi/meta.json new file mode 100644 index 000000000000..2834ac8f8d9a --- /dev/null +++ b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat_magenta.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Made by Github user Psychpsyo for Space Station 14 | resprited for acid raincoat by erhardsteinhauer", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat_yellow.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat_yellow.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 000000000000..364d583fc799 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat_yellow.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat_yellow.rsi/icon.png b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat_yellow.rsi/icon.png new file mode 100644 index 000000000000..51f84e3acba2 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat_yellow.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat_yellow.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat_yellow.rsi/inhand-left.png new file mode 100644 index 000000000000..26aaafe4bf25 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat_yellow.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat_yellow.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat_yellow.rsi/inhand-right.png new file mode 100644 index 000000000000..f0a7d87d709a Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat_yellow.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat_yellow.rsi/meta.json b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat_yellow.rsi/meta.json new file mode 100644 index 000000000000..2834ac8f8d9a --- /dev/null +++ b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/acid_raincoat_yellow.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Made by Github user Psychpsyo for Space Station 14 | resprited for acid raincoat by erhardsteinhauer", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Coats/blazer_jamrock.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/blazer_jamrock.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 000000000000..caf1ec43a346 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/blazer_jamrock.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Coats/blazer_jamrock.rsi/icon.png b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/blazer_jamrock.rsi/icon.png new file mode 100644 index 000000000000..17dbccfc249f Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/blazer_jamrock.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Coats/blazer_jamrock.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/blazer_jamrock.rsi/inhand-left.png new file mode 100644 index 000000000000..c4de9d7dc1bb Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/blazer_jamrock.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Coats/blazer_jamrock.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/blazer_jamrock.rsi/inhand-right.png new file mode 100644 index 000000000000..1f0251b25bdf Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/blazer_jamrock.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Coats/blazer_jamrock.rsi/meta.json b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/blazer_jamrock.rsi/meta.json new file mode 100644 index 000000000000..6bcb85e3c07f --- /dev/null +++ b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/blazer_jamrock.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Taken from tgstation https://github.com/tgstation/tgstation/blob/master/icons/mob/clothing/suits/jacket.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Coats/bomber_aerostatic.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/bomber_aerostatic.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 000000000000..ec5da9fb1aa8 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/bomber_aerostatic.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Coats/bomber_aerostatic.rsi/icon.png b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/bomber_aerostatic.rsi/icon.png new file mode 100644 index 000000000000..527e2b3a64ef Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/bomber_aerostatic.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Coats/bomber_aerostatic.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/bomber_aerostatic.rsi/inhand-left.png new file mode 100644 index 000000000000..8fc053229659 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/bomber_aerostatic.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Coats/bomber_aerostatic.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/bomber_aerostatic.rsi/inhand-right.png new file mode 100644 index 000000000000..9d21bdf0a974 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/bomber_aerostatic.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Coats/bomber_aerostatic.rsi/meta.json b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/bomber_aerostatic.rsi/meta.json new file mode 100644 index 000000000000..6bcb85e3c07f --- /dev/null +++ b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/bomber_aerostatic.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Taken from tgstation https://github.com/tgstation/tgstation/blob/master/icons/mob/clothing/suits/jacket.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Coats/bomber_pinksleeves.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/bomber_pinksleeves.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 000000000000..ca1cb167bd54 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/bomber_pinksleeves.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Coats/bomber_pinksleeves.rsi/icon.png b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/bomber_pinksleeves.rsi/icon.png new file mode 100644 index 000000000000..33a5d34b0dbf Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/bomber_pinksleeves.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Coats/bomber_pinksleeves.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/bomber_pinksleeves.rsi/inhand-left.png new file mode 100644 index 000000000000..cfd4c4936ecb Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/bomber_pinksleeves.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Coats/bomber_pinksleeves.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/bomber_pinksleeves.rsi/inhand-right.png new file mode 100644 index 000000000000..a86a559f136c Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/bomber_pinksleeves.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Coats/bomber_pinksleeves.rsi/meta.json b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/bomber_pinksleeves.rsi/meta.json new file mode 100644 index 000000000000..87418987f55c --- /dev/null +++ b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/bomber_pinksleeves.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Taken from tgstation https://github.com/tgstation/tgstation/blob/master/icons/mob/clothing/suits/jacket.dmi | recolored by erhardsteinhauer for New Frontier with https://www.pixilart.com/palettes/cyberpunk-v1-24161", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Coats/bomber_punk_red.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/bomber_punk_red.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 000000000000..6efe85b61a35 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/bomber_punk_red.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Coats/bomber_punk_red.rsi/icon.png b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/bomber_punk_red.rsi/icon.png new file mode 100644 index 000000000000..e4e8c52af6b8 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/bomber_punk_red.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Coats/bomber_punk_red.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/bomber_punk_red.rsi/inhand-left.png new file mode 100644 index 000000000000..a513a6d92656 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/bomber_punk_red.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Coats/bomber_punk_red.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/bomber_punk_red.rsi/inhand-right.png new file mode 100644 index 000000000000..4865e0012063 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/bomber_punk_red.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Coats/bomber_punk_red.rsi/meta.json b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/bomber_punk_red.rsi/meta.json new file mode 100644 index 000000000000..4fcaa76c240b --- /dev/null +++ b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/bomber_punk_red.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Based on bomber taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e | resprited by erhardsteinhauer", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Coats/jacket_biker.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/jacket_biker.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 000000000000..00ad4fe345b3 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/jacket_biker.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Coats/jacket_biker.rsi/icon.png b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/jacket_biker.rsi/icon.png new file mode 100644 index 000000000000..acfd6e4ac5c1 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/jacket_biker.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Coats/jacket_biker.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/jacket_biker.rsi/inhand-left.png new file mode 100644 index 000000000000..342dc4032ace Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/jacket_biker.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Coats/jacket_biker.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/jacket_biker.rsi/inhand-right.png new file mode 100644 index 000000000000..8f0c61efb629 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/jacket_biker.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Coats/jacket_biker.rsi/meta.json b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/jacket_biker.rsi/meta.json new file mode 100644 index 000000000000..6bcb85e3c07f --- /dev/null +++ b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/jacket_biker.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Taken from tgstation https://github.com/tgstation/tgstation/blob/master/icons/mob/clothing/suits/jacket.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Coats/jacket_leather.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/jacket_leather.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 000000000000..57d31a48d90d Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/jacket_leather.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Coats/jacket_leather.rsi/icon.png b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/jacket_leather.rsi/icon.png new file mode 100644 index 000000000000..31e0353bf9b4 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/jacket_leather.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Coats/jacket_leather.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/jacket_leather.rsi/inhand-left.png new file mode 100644 index 000000000000..342dc4032ace Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/jacket_leather.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Coats/jacket_leather.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/jacket_leather.rsi/inhand-right.png new file mode 100644 index 000000000000..8f0c61efb629 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/jacket_leather.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Coats/jacket_leather.rsi/meta.json b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/jacket_leather.rsi/meta.json new file mode 100644 index 000000000000..6bcb85e3c07f --- /dev/null +++ b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/jacket_leather.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Taken from tgstation https://github.com/tgstation/tgstation/blob/master/icons/mob/clothing/suits/jacket.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Coats/jacket_letterman_brown.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/jacket_letterman_brown.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 000000000000..fd27a5435629 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/jacket_letterman_brown.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Coats/jacket_letterman_brown.rsi/icon.png b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/jacket_letterman_brown.rsi/icon.png new file mode 100644 index 000000000000..41b648628085 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/jacket_letterman_brown.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Coats/jacket_letterman_brown.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/jacket_letterman_brown.rsi/inhand-left.png new file mode 100644 index 000000000000..45968148146c Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/jacket_letterman_brown.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Coats/jacket_letterman_brown.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/jacket_letterman_brown.rsi/inhand-right.png new file mode 100644 index 000000000000..91cbe1d4d612 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/jacket_letterman_brown.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Coats/jacket_letterman_brown.rsi/meta.json b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/jacket_letterman_brown.rsi/meta.json new file mode 100644 index 000000000000..6bcb85e3c07f --- /dev/null +++ b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/jacket_letterman_brown.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Taken from tgstation https://github.com/tgstation/tgstation/blob/master/icons/mob/clothing/suits/jacket.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Coats/jacket_letterman_magenta.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/jacket_letterman_magenta.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 000000000000..91893a9ae41c Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/jacket_letterman_magenta.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Coats/jacket_letterman_magenta.rsi/icon.png b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/jacket_letterman_magenta.rsi/icon.png new file mode 100644 index 000000000000..4ec6fb39c2d0 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/jacket_letterman_magenta.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Coats/jacket_letterman_magenta.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/jacket_letterman_magenta.rsi/inhand-left.png new file mode 100644 index 000000000000..21df3e25500c Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/jacket_letterman_magenta.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Coats/jacket_letterman_magenta.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/jacket_letterman_magenta.rsi/inhand-right.png new file mode 100644 index 000000000000..a0eaac85ce46 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/jacket_letterman_magenta.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Coats/jacket_letterman_magenta.rsi/meta.json b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/jacket_letterman_magenta.rsi/meta.json new file mode 100644 index 000000000000..87418987f55c --- /dev/null +++ b/Resources/Textures/_NF/Clothing/OuterClothing/Coats/jacket_letterman_magenta.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Taken from tgstation https://github.com/tgstation/tgstation/blob/master/icons/mob/clothing/suits/jacket.dmi | recolored by erhardsteinhauer for New Frontier with https://www.pixilart.com/palettes/cyberpunk-v1-24161", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +}