diff --git a/Content.Client/Clothing/ClientClothingSystem.cs b/Content.Client/Clothing/ClientClothingSystem.cs index 5c9b7e64ef3..cfed1cb0994 100644 --- a/Content.Client/Clothing/ClientClothingSystem.cs +++ b/Content.Client/Clothing/ClientClothingSystem.cs @@ -264,10 +264,14 @@ private void RenderEquipment(EntityUid equipee, EntityUid equipment, string slot return; } + var displacementData = inventory.Displacements.GetValueOrDefault(slot); + + if (clothingComponent.RenderLayer != null) + slot = clothingComponent.RenderLayer; + // temporary, until layer draw depths get added. Basically: a layer with the key "slot" is being used as a // bookmark to determine where in the list of layers we should insert the clothing layers. bool slotLayerExists = sprite.LayerMapTryGet(slot, out var index); - var displacementData = inventory.Displacements.GetValueOrDefault(slot); // add the new layers foreach (var (key, layerData) in ev.Layers) diff --git a/Content.Client/Lobby/UI/HumanoidProfileEditor.xaml.cs b/Content.Client/Lobby/UI/HumanoidProfileEditor.xaml.cs index 98d31ac6b59..21c422198b0 100644 --- a/Content.Client/Lobby/UI/HumanoidProfileEditor.xaml.cs +++ b/Content.Client/Lobby/UI/HumanoidProfileEditor.xaml.cs @@ -671,7 +671,15 @@ private void ReloadProfilePreview() if (Profile == null || !_entManager.EntityExists(PreviewDummy)) return; - _entManager.System().LoadProfile(PreviewDummy, Profile); + if (_entManager.TryGetComponent(PreviewDummy, out var humanoid)) + { + var hiddenLayers = humanoid.HiddenLayers; + var appearanceSystem = _entManager.System(); + appearanceSystem.LoadProfile(PreviewDummy, Profile, humanoid); + // Reapply the hidden layers set from clothing + appearanceSystem.SetLayersVisibility(PreviewDummy, hiddenLayers, false, humanoid: humanoid); + } + SetPreviewRotation(_previewRotation); TraitsTabs.UpdateTabMerging(); LoadoutsTabs.UpdateTabMerging(); diff --git a/Content.Shared/Clothing/Components/ClothingComponent.cs b/Content.Shared/Clothing/Components/ClothingComponent.cs index fc63beaaed6..81c6c0e1da1 100644 --- a/Content.Shared/Clothing/Components/ClothingComponent.cs +++ b/Content.Shared/Clothing/Components/ClothingComponent.cs @@ -27,6 +27,13 @@ public sealed partial class ClothingComponent : Component [Access(typeof(ClothingSystem), typeof(InventorySystem), Other = AccessPermissions.ReadExecute)] public SlotFlags Slots = SlotFlags.NONE; + /// + /// The actual sprite layer to render this entity's equipped sprite to, overriding the layer determined by the slot. + /// + [DataField] + [Access(typeof(ClothingSystem))] + public string? RenderLayer; + [DataField] public SoundSpecifier? EquipSound; diff --git a/Content.Shared/Clothing/Components/HideLayerClothingComponent.cs b/Content.Shared/Clothing/Components/HideLayerClothingComponent.cs index ac3d9b97896..c76214f1318 100644 --- a/Content.Shared/Clothing/Components/HideLayerClothingComponent.cs +++ b/Content.Shared/Clothing/Components/HideLayerClothingComponent.cs @@ -21,4 +21,11 @@ public sealed partial class HideLayerClothingComponent : Component /// [DataField] public bool HideOnToggle = false; + + /// + /// If true, the layer will always be hidden even if the layer + /// is not present in the equipee's HumanoidAppearanceComponent.HideLayerOnEquip field. + /// + [DataField] + public bool Force = false; } diff --git a/Content.Shared/Clothing/EntitySystems/ClothingSystem.cs b/Content.Shared/Clothing/EntitySystems/ClothingSystem.cs index 708eb9f1f62..60892503ea6 100644 --- a/Content.Shared/Clothing/EntitySystems/ClothingSystem.cs +++ b/Content.Shared/Clothing/EntitySystems/ClothingSystem.cs @@ -1,3 +1,5 @@ +using Content.Shared.Body.Part; +using Content.Shared.Body.Systems; using Content.Shared.Clothing.Components; using Content.Shared.Hands.Components; using Content.Shared.Hands.EntitySystems; @@ -30,6 +32,7 @@ public override void Initialize() SubscribeLocalEvent(OnGotUnequipped); SubscribeLocalEvent(OnMaskToggled); SubscribeLocalEvent(OnPickedUp); + SubscribeLocalEvent(OnPartAttachedToBody, after: [typeof(SharedBodySystem)]); SubscribeLocalEvent(OnEquipDoAfter); SubscribeLocalEvent(OnUnequipDoAfter); @@ -88,11 +91,11 @@ private void QuickEquip( } } - private void ToggleVisualLayers(EntityUid equipee, HashSet layers, HashSet appearanceLayers) + private void ToggleVisualLayers(EntityUid equipee, HashSet layers, HashSet appearanceLayers, bool force = false) { foreach (HumanoidVisualLayers layer in layers) { - if (!appearanceLayers.Contains(layer)) + if (!force && !appearanceLayers.Contains(layer)) break; InventorySystem.InventorySlotEnumerator enumerator = _invSystem.GetSlotEnumerator(equipee); @@ -191,6 +194,20 @@ private void OnPickedUp(Entity ent, ref GettingPickedUpAttemp args.Cancel(); } + // Yes, this is exclusive C# just so that high heels selected from loadouts still hide the feet layers + // after Shitmed (SharedBodySystem.PartAppearance) initializes the feet parts setting their layer visibility to true. + private void OnPartAttachedToBody(Entity ent, ref BodyPartAddedEvent args) + { + var enumerator = _invSystem.GetSlotEnumerator(ent.Owner); + while (enumerator.NextItem(out var item)) + { + if (!TryComp(item, out var comp)) + continue; + + CheckEquipmentForLayerHide(item, ent.Owner); + } + } + private void OnEquipDoAfter(Entity ent, ref ClothingEquipDoAfterEvent args) { if (args.Handled || args.Cancelled || args.Target is not { } target) @@ -210,7 +227,7 @@ private void OnUnequipDoAfter(Entity ent, ref ClothingUnequip private void CheckEquipmentForLayerHide(EntityUid equipment, EntityUid equipee) { if (TryComp(equipment, out HideLayerClothingComponent? clothesComp) && TryComp(equipee, out HumanoidAppearanceComponent? appearanceComp)) - ToggleVisualLayers(equipee, clothesComp.Slots, appearanceComp.HideLayersOnEquip); + ToggleVisualLayers(equipee, clothesComp.Slots, appearanceComp.HideLayersOnEquip, clothesComp.Force); } #region Public API diff --git a/Resources/Audio/Effects/Footsteps/attributions.yml b/Resources/Audio/Effects/Footsteps/attributions.yml index 7a56beec38c..603a379ab3d 100644 --- a/Resources/Audio/Effects/Footsteps/attributions.yml +++ b/Resources/Audio/Effects/Footsteps/attributions.yml @@ -12,7 +12,7 @@ license: "CC-BY-SA-4.0" copyright: "Made by JustInvoke freesound.org" source: "https://freesound.org/people/JustInvoke/sounds/446100/" - + - files: - jesterstep1.ogg - jesterstep2.ogg @@ -63,7 +63,7 @@ license: "CC-BY-SA-3.0" copyright: "Taken from https://github.com/tgstation/tgstation" source: "https://github.com/tgstation/tgstation/blob/34d5ab2e46e3fb4dd9d7475f587d33441df9651c/sound/effects" - + - files: - spurs1.ogg - spurs2.ogg @@ -78,3 +78,13 @@ license: "CC-BY-SA-4.0" copyright: "Taken from IENBA freesound.org and modified by https://github.com/MilenVolf. borgwalk2 clipped my metalgearsloth." source: "https://freesound.org/people/IENBA/sounds/697379/" + +- files: + - highheels1.ogg + - highheels2.ogg + - highheels3.ogg + - highheels4.ogg + - highheels5.ogg + license: "CC0-1.0" + copyright: "Made by philRacoIndie freesound.org, modified by Skubman" + source: "https://freesound.org/people/nhaudio/sounds/179203/" diff --git a/Resources/Audio/Effects/Footsteps/highheels1.ogg b/Resources/Audio/Effects/Footsteps/highheels1.ogg new file mode 100644 index 00000000000..9cb96242628 Binary files /dev/null and b/Resources/Audio/Effects/Footsteps/highheels1.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/highheels2.ogg b/Resources/Audio/Effects/Footsteps/highheels2.ogg new file mode 100644 index 00000000000..2a6866c9cb5 Binary files /dev/null and b/Resources/Audio/Effects/Footsteps/highheels2.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/highheels3.ogg b/Resources/Audio/Effects/Footsteps/highheels3.ogg new file mode 100644 index 00000000000..106463d1351 Binary files /dev/null and b/Resources/Audio/Effects/Footsteps/highheels3.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/highheels4.ogg b/Resources/Audio/Effects/Footsteps/highheels4.ogg new file mode 100644 index 00000000000..8fd691bd387 Binary files /dev/null and b/Resources/Audio/Effects/Footsteps/highheels4.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/highheels5.ogg b/Resources/Audio/Effects/Footsteps/highheels5.ogg new file mode 100644 index 00000000000..14a755493c8 Binary files /dev/null and b/Resources/Audio/Effects/Footsteps/highheels5.ogg differ diff --git a/Resources/Locale/en-US/loadouts/categories.ftl b/Resources/Locale/en-US/loadouts/categories.ftl index 7ed9fa320da..0e4cf112521 100644 --- a/Resources/Locale/en-US/loadouts/categories.ftl +++ b/Resources/Locale/en-US/loadouts/categories.ftl @@ -88,6 +88,7 @@ loadout-category-JobsServiceReporter = Reporter loadout-category-Mask = Mask loadout-category-Neck = Neck loadout-category-Outer = Outer +loadout-category-Belt = Belt loadout-category-Shoes = Shoes loadout-category-Species = Species loadout-category-Uniform = Uniform diff --git a/Resources/Locale/en-US/loadouts/generic/back.ftl b/Resources/Locale/en-US/loadouts/generic/back.ftl index 2925981849e..f673dbdebe9 100644 --- a/Resources/Locale/en-US/loadouts/generic/back.ftl +++ b/Resources/Locale/en-US/loadouts/generic/back.ftl @@ -1,3 +1,5 @@ loadout-name-LoadoutBackpack = grey backpack (colorable) loadout-name-LoadoutBackpackDuffel = grey duffelbag (colorable) loadout-name-LoadoutBackpackSatchel = grey satchel (colorable) +loadout-name-LoadoutBackpackSatchelPurse = purse (colorable) +loadout-name-LoadoutBackpackSatchelPurseFlipped = purse, flipped (colorable) diff --git a/Resources/Locale/en-US/loadouts/generic/belt.ftl b/Resources/Locale/en-US/loadouts/generic/belt.ftl new file mode 100644 index 00000000000..1472c2265b4 --- /dev/null +++ b/Resources/Locale/en-US/loadouts/generic/belt.ftl @@ -0,0 +1,6 @@ +loadout-name-LoadoutBeltGeneric = belt (colorable) +loadout-name-LoadoutBeltGenericThin = thin belt (colorable) +loadout-name-LoadoutBeltGenericThick = thick belt (colorable) +loadout-name-LoadoutBeltWaist = waist belt (colorable) +loadout-name-LoadoutBeltWaistThin = thin waist belt (colorable) +loadout-name-LoadoutBeltWaistbagColor = waistbag (colorable) diff --git a/Resources/Locale/en-US/loadouts/generic/eyes.ftl b/Resources/Locale/en-US/loadouts/generic/eyes.ftl index 4d345190474..d0e3ff3df84 100644 --- a/Resources/Locale/en-US/loadouts/generic/eyes.ftl +++ b/Resources/Locale/en-US/loadouts/generic/eyes.ftl @@ -1,7 +1,19 @@ loadout-description-LoadoutEyesEyepatch = Eyewear, for the fashionista without an eye. +loadout-name-LoadoutEyesEyepatchColor = eyepatch (colorable) +loadout-name-LoadoutEyesEyepatchColorFlipped = eyepatch, flipped (colorable) +loadout-name-LoadoutEyesGlassesHipster = hipster glasses (colorable) +loadout-name-LoadoutEyesGlassesMonocle = monocle (colorable) +loadout-name-LoadoutEyesGlassesPanto = panto glasses (colorable) loadout-description-LoadoutEyesBlindfold = Why would you want this? +loadout-name-LoadoutEyesBlindfoldColor = blindfold (colorable) +loadout-description-LoadoutEyesBlindfoldColor = Why would you want this? At least it comes in a wide assortment of colors. + +loadout-name-LoadoutEyesGlassesCheapSunglassesAviator = cheap aviators (colorable) +loadout-name-LoadoutEyesGlassesSunglassesAviator = aviators (colorable) loadout-name-LoadoutItemBlindfoldFake = "blind"fold loadout-description-LoadoutItemBlindfoldFake = This product may not work as advertised. +loadout-name-LoadoutEyesBlindfoldFakeColor = "blind"fold (colorable) +loadout-description-LoadoutEyesBlindfoldFakeColor = This product may not work as advertised. loadout-name-LoadoutEyesGlasses = glasses (colorable) diff --git a/Resources/Locale/en-US/loadouts/generic/hands.ftl b/Resources/Locale/en-US/loadouts/generic/hands.ftl index 3ceed69d176..409691f5776 100644 --- a/Resources/Locale/en-US/loadouts/generic/hands.ftl +++ b/Resources/Locale/en-US/loadouts/generic/hands.ftl @@ -1,2 +1,3 @@ loadout-name-LoadoutHandsColorWhite = gloves (colorable) -loadout-name-LoadoutHandsGlovesFingerlessWhite = fingerless gloves (colorable) \ No newline at end of file +loadout-name-LoadoutHandsGlovesFingerlessWhite = fingerless gloves (colorable) +loadout-name-LoadoutHandsGlovesEvening = evening gloves (colorable) diff --git a/Resources/Locale/en-US/loadouts/generic/head.ftl b/Resources/Locale/en-US/loadouts/generic/head.ftl index d2a6d511284..9ee931bcbe1 100644 --- a/Resources/Locale/en-US/loadouts/generic/head.ftl +++ b/Resources/Locale/en-US/loadouts/generic/head.ftl @@ -5,6 +5,14 @@ loadout-name-LoadoutHeadFedoraWhite = fedora (colorable) loadout-name-LoadoutHeadHatCowboyWhite = cowboy hat (colorable) loadout-name-LoadoutHeadHatMimesoft = baseball cap (colorable) loadout-name-LoadoutHeadHatMimesoftFlipped = baseball cap (colorable, flipped) +loadout-name-LoadoutHeadBeretArtist = artist beret (colorable) +loadout-name-LoadoutHeadBeretPeaked = peaked beret (colorable) +loadout-name-LoadoutHeadBeanie = beanie (colorable) +loadout-name-LoadoutHeadBeanieWinter = winter beanie (colorable) +loadout-name-LoadoutHeadBeanieSubmariner = submariner beanie (colorable) +loadout-name-LoadoutHeadBeanieTight = tight beanie (colorable) +loadout-name-LoadoutHeadSlouch = slouch hat (colorable) +loadout-name-LoadoutHeadSunVisor = sun visor (colorable) loadout-name-LoadoutHeadHijabColorable = hijab (colorable) loadout-name-LoadoutHeadTurbanColorable = turban (colorable) loadout-name-LoadoutHeadKippahColorable = kippah (colorable) @@ -12,4 +20,12 @@ loadout-name-LoadoutHeadTinfoil = tinfoil hat (colorable) loadout-name-LoadoutHeadHatCowboyBountyHunter = bounty hunter hat (colorable) loadout-name-LoadoutHeadBandWhite = headband (colorable) loadout-name-LoadoutHeadBeretWhite = beret (colorable) -loadout-name-LoadoutHeadPoppyWhite = hair flower (colorable) \ No newline at end of file +loadout-name-LoadoutHeadPoppyWhite = hair flower (colorable) +loadout-name-LoadoutHeadHeadBandBasic = basic headband (colorable) +loadout-name-LoadoutHeadPin = hair pin (colorable) +loadout-name-LoadoutHeadPinClover = clover pin (colorable) +loadout-name-LoadoutHeadPinButterfly = butterfly pin (colorable) +loadout-name-LoadoutHeadPinMagnetic = magnetic pin (colorable) +loadout-name-LoadoutHeadRibbon = hair ribbon (colorable) +loadout-name-LoadoutHeadBow = hair bow (colorable) +loadout-name-LoadoutHeadBowSmall = small hair bow (colorable) diff --git a/Resources/Locale/en-US/loadouts/generic/items.ftl b/Resources/Locale/en-US/loadouts/generic/items.ftl index 37ca4f91fe3..f1078234476 100644 --- a/Resources/Locale/en-US/loadouts/generic/items.ftl +++ b/Resources/Locale/en-US/loadouts/generic/items.ftl @@ -43,7 +43,7 @@ loadout-name-LoadoutItemDrinkShinyFlask = shiny flask (colorable) loadout-name-LoadoutItemDrinkLithiumFlask = lithium flask (colorable) loadout-name-LoadoutItemDrinkVacuumFlask = vacuum flask (colorable) -loadout-name-LoadoutItemPetMouse = pet mouse -loadout-name-LoadoutItemPetHamster = pet hamster -loadout-name-LoadoutItemPetMothroach = pet mothroach -loadout-name-LoadoutItemPetCockroach = pet cockroach +loadout-name-LoadoutItemPetMouse = pet mouse (colorable) +loadout-name-LoadoutItemPetHamster = pet hamster (colorable) +loadout-name-LoadoutItemPetMothroach = pet mothroach (colorable) +loadout-name-LoadoutItemPetCockroach = pet cockroach (colorable) diff --git a/Resources/Locale/en-US/loadouts/generic/neck.ftl b/Resources/Locale/en-US/loadouts/generic/neck.ftl index 93e4a4e0207..631de36f245 100644 --- a/Resources/Locale/en-US/loadouts/generic/neck.ftl +++ b/Resources/Locale/en-US/loadouts/generic/neck.ftl @@ -1,7 +1,16 @@ loadout-name-LoadoutNeckOldMantle = old mantle (colorable) loadout-name-LoadoutNeckUnathiMantle = unathi mantle (colorable) loadout-name-LoadoutNeckTieWhite = suit tie (colorable) +loadout-name-LoadoutNeckTieShort = short tie (colorable) +loadout-name-LoadoutNeckTieBow = neck bow (colorable) +loadout-name-LoadoutNeckTieBowTie = bow tie (colorable) +loadout-name-LoadoutNeckTieRibbon = neck ribbon (colorable) loadout-name-LoadoutNeckCrucifixColor = crucifix (colorable) loadout-name-LoadoutNeckCrucifixColorSaintPeter = Saint Peter crucifix (colorable) loadout-name-LoadoutNeckTallit = tallit (colorable) loadout-name-LoadoutNeckBedsheetWhite = bedsheet (colorable) +loadout-name-LoadoutNeckDogtags = dogtags (colorable) +loadout-name-LoadoutNeckNecklaceStandard = necklace (colorable) +loadout-name-LoadoutNeckNecklaceLow = low-hanging necklace (colorable) +loadout-name-LoadoutNeckNecklaceRound = round necklace (colorable) +loadout-name-LoadoutNeckNecklaceSmall = small necklace (colorable) diff --git a/Resources/Locale/en-US/loadouts/generic/outerClothing.ftl b/Resources/Locale/en-US/loadouts/generic/outerClothing.ftl index e312968b8e9..b2b02a55fcd 100644 --- a/Resources/Locale/en-US/loadouts/generic/outerClothing.ftl +++ b/Resources/Locale/en-US/loadouts/generic/outerClothing.ftl @@ -9,3 +9,32 @@ loadout-name-LoadoutOuterCoatWinterCoat = winter coat (colorable) loadout-name-LoadoutOuterCoatHyenhSweater = sweater (colorable) loadout-name-LoadoutOuterWinterCoatLong = long winter coat (colorable) loadout-name-LoadoutOuterCoatMNKWhiteHoodie = MNK hoodie (colorable) + +loadout-name-LoadoutOuterSuitJacket = suit jacket (colorable) +loadout-name-LoadoutOuterSuitJacketOpened = suit jacket, opened (colorable) +loadout-name-LoadoutOuterCoatModern = modern coat (colorable) +loadout-name-LoadoutOuterTailcoat = tailcoat (colorable) +loadout-name-LoadoutOuterCardiganBasic = cardigan (colorable) +loadout-name-LoadoutOuterCardiganBasicOpened = cardigan, opened (colorable) +loadout-name-LoadoutOuterCardiganArgyle = argyle cardigan (colorable) +loadout-name-LoadoutOuterCardiganArgyleOpened = argyle cardigan, opened (colorable) +loadout-name-LoadoutOuterCardiganSweater = sweater cardigan (colorable) +loadout-name-LoadoutOuterCardiganSweaterOpened = sweater cardigan, opened (colorable) +loadout-name-LoadoutOuterCardiganSlim = slim cardigan (colorable) +loadout-name-LoadoutOuterCardiganSlimOpened = slim cardigan, opened (colorable) +loadout-name-LoadoutOuterCowboyDuster = cowboy duster (colorable) +loadout-name-LoadoutOuterBlazerBasic = blazer (colorable) +loadout-name-LoadoutOuterBlazerBasicOpened = blazer, opened (colorable) +loadout-name-LoadoutOuterBlazerLong = long blazer (colorable) +loadout-name-LoadoutOuterBlazerLongOpened = long blazer, opened (colorable) +loadout-name-LoadoutOuterBlazerFormal = formal blazer (colorable) +loadout-name-LoadoutOuterBlazerLooseSleeve = loose sleeve blazer (colorable) +loadout-name-LoadoutOuterBlazerFlatCollar = flat collar blazer (colorable) +loadout-name-LoadoutOuterCoatPeacoat = peacoat (colorable) +loadout-name-LoadoutOuterCoatPeacoatOpened = peacoat, opened (colorable) +loadout-name-LoadoutOuterCoatAsymmetric = asymmetric coat (colorable) +loadout-name-LoadoutOuterCoatAsymmetricOpened = asymmetric coat, opened (colorable) +loadout-name-LoadoutOuterCoatSubmariner = submariner coat (colorable) +loadout-name-LoadoutOuterCoatSubmarinerOpened = submariner coat, opened (colorable) +loadout-name-LoadoutOuterVestColorable = vest (colorable) +loadout-name-LoadoutOuterVestThick = thick vest (colorable) diff --git a/Resources/Locale/en-US/loadouts/generic/shoes.ftl b/Resources/Locale/en-US/loadouts/generic/shoes.ftl index 15631952f76..2abacdbdc3d 100644 --- a/Resources/Locale/en-US/loadouts/generic/shoes.ftl +++ b/Resources/Locale/en-US/loadouts/generic/shoes.ftl @@ -11,6 +11,20 @@ loadout-description-LoadoutShoesSlippersDuck = Quack up your downtime with these loadout-name-LoadoutShoesWhite = shoes (colorable) loadout-name-LoadoutShoesBootsCowboyWhite = cowboy boots (colorable) +loadout-name-LoadoutShoesBootsWorkColor = workboots (colorable) +loadout-name-LoadoutShoesBootsJackColor = fashion jackboots (colorable) loadout-name-LoadoutShoesBootsCowboyFancy = fancy cowboy boots (colorable) +loadout-name-LoadoutShoesBootsAnkle = ankle boots (colorable) +loadout-name-LoadoutShoesBootsFull = full-length boots (colorable) +loadout-name-LoadoutShoesBootsMud = mudboots (colorable) +loadout-name-LoadoutShoesBootsMudThigh = thigh-high mudboots (colorable) +loadout-name-LoadoutShoesBootsThigh = thigh-high boots (colorable) loadout-name-LoadoutShoesMiscWhite = misc shoes (colorable) loadout-name-LoadoutShoesClothWrap = cloth foot wraps (colorable) +loadout-name-LoadoutShoesHighHeels = high heels (colorable) +loadout-name-LoadoutShoesHighHeelsLong = long high heels (colorable) +loadout-name-LoadoutShoesSkater = skater shoes (colorable) +loadout-name-LoadoutShoesFlats = flats (colorable) +loadout-name-LoadoutShoesSandals = sandals (colorable) +loadout-name-LoadoutShoesSandalsFlipFlops = flip flops (colorable) +loadout-name-LoadoutShoesSandalsFlipFlopsAlt = flip flops, alternative (colorable) diff --git a/Resources/Locale/en-US/loadouts/generic/uniform.ftl b/Resources/Locale/en-US/loadouts/generic/uniform.ftl index fa4eccbdb17..b05a9269357 100644 --- a/Resources/Locale/en-US/loadouts/generic/uniform.ftl +++ b/Resources/Locale/en-US/loadouts/generic/uniform.ftl @@ -7,6 +7,39 @@ loadout-name-LoadoutClothingJumpsuitKimono = kimono (colorable) loadout-name-LoadoutClothingMNKOfficeSkirt = MNK office skirt (colorable) loadout-name-LoadoutClothingMNKUnderGarment = MNK under garment (colorable) loadout-name-LoadoutClothingMNKGymBra = MNK gym bra (colorable) +loadout-name-LoadoutClothingJumpsuitSuitBlack = black suit (colorable) loadout-name-LoadoutClothingJumpsuitSuitWhite = business suit (colorable) loadout-name-LoadoutClothingJumpsuitSuitWhiteAlt = business suit (alt, colorable) loadout-name-LoadoutClothingJumpsuitSuitWhiteMob = mob suit (colorable) +loadout-name-LoadoutUniformJumpsuitBartender = bartender's jumpsuit uniform (colorable) +loadout-name-LoadoutUniformJumpskirtBartender = bartender's jumpskirt uniform (colorable) +loadout-name-LoadoutUniformJumpskirtDressAsymmetric = asymmetric dress (colorable) +loadout-name-LoadoutUniformJumpskirtDressEvening = evening gown (colorable) +loadout-name-LoadoutUniformJumpskirtDressMidi = midi dress (colorable) +loadout-name-LoadoutUniformJumpskirtDressOpenShoulder = open-shoulder dress (colorable) +loadout-name-LoadoutUniformJumpskirtDressTea = tea-length dress (colorable) +loadout-name-LoadoutUniformJumpskirtDressSleeveless = sleeveless A-line dress (colorable) +loadout-name-LoadoutUniformJumpskirtDressLongSleeve = long-sleeve A-line dress (colorable) +loadout-name-LoadoutUniformJumpskirtDressBlackTangoAlt = black tango dress, alternative +loadout-name-LoadoutUniformJumpskirtDressCheongsamWhite = white cheongsam (colorable) +loadout-name-LoadoutUniformJumpskirtDressClub = club dress (colorable) +loadout-name-LoadoutUniformJumpskirtDressCoveter = coveter dress (colorable) +loadout-name-LoadoutUniformJumpskirtDressFlowergirl = flower dress (colorable) +loadout-name-LoadoutUniformJumpskirtDressFluffy = fluffy dress (colorable) +loadout-name-LoadoutUniformJumpskirtKimonoColor = kimono, alternative (colorable) +loadout-name-LoadoutUniformJumpskirtDressLacyGown = lacy gown (colorable) +loadout-name-LoadoutUniformJumpskirtDressLong = long dress (colorable) +loadout-name-LoadoutUniformJumpskirtDressLongFlared = long flared dress (colorable) +loadout-name-LoadoutUniformJumpskirtQipao = qipao (colorable) +loadout-name-LoadoutUniformJumpskirtQipaoSlim = slim qipao (colorable) +loadout-name-LoadoutUniformJumpskirtPencilSkirtGymBra = pencil skirt and gym bra (colorable) +loadout-name-LoadoutUniformJumpskirtDressPuffy = puffy dress (colorable) +loadout-name-LoadoutUniformJumpskirtDressShort = short dress (colorable) +loadout-name-LoadoutUniformJumpskirtDressSundressWhite = white sundress (colorable) +loadout-name-LoadoutUniformJumpsuitSuitAmish = amish suit (colorable) +loadout-name-LoadoutUniformJumpsuitAscetic = plain ascetic garb (colorable) +loadout-name-LoadoutUniformJumpsuitDisheveled = disheveled suit (colorable) +loadout-name-LoadoutUniformJumpsuitSailor = sailor suit (colorable) +loadout-name-LoadoutUniformJumpsuitTrackpants = track pants (colorable) +loadout-name-LoadoutUniformJumpsuitTurtleneckGrey = grey turtleneck (colorable) +loadout-name-LoadoutUniformJumpsuitYogaGymBra = yoga gym bra (colorable) diff --git a/Resources/Locale/en-US/loadouts/itemgroups.ftl b/Resources/Locale/en-US/loadouts/itemgroups.ftl index 8af87679c45..4c42edc72c0 100644 --- a/Resources/Locale/en-US/loadouts/itemgroups.ftl +++ b/Resources/Locale/en-US/loadouts/itemgroups.ftl @@ -7,6 +7,7 @@ character-item-group-LoadoutHead = Civilian Headgear character-item-group-LoadoutMasks = Civilian Masks character-item-group-LoadoutNeck = Civilian Neckwear character-item-group-LoadoutOuter = Civilian Outerwear +character-item-group-LoadoutBelt = Civilian Belts character-item-group-LoadoutShoes = Civilian Shoes character-item-group-LoadoutUniformsCivilian = Civilian Uniforms diff --git a/Resources/Prototypes/CharacterItemGroups/Generic/backpackGroups.yml b/Resources/Prototypes/CharacterItemGroups/Generic/backpackGroups.yml index b2c5443a350..c015da17a3d 100644 --- a/Resources/Prototypes/CharacterItemGroups/Generic/backpackGroups.yml +++ b/Resources/Prototypes/CharacterItemGroups/Generic/backpackGroups.yml @@ -11,3 +11,9 @@ id: LoadoutItemBackpackSatchelLeather - type: loadout id: LoadoutBackpackMerc + - type: loadout + id: LoadoutBackpackSatchelHydroponics + - type: loadout + id: LoadoutBackpackSatchelPurse + - type: loadout + id: LoadoutBackpackSatchelPurseFlipped diff --git a/Resources/Prototypes/CharacterItemGroups/Generic/beltGroup.yml b/Resources/Prototypes/CharacterItemGroups/Generic/beltGroup.yml new file mode 100644 index 00000000000..c69b35a3a4e --- /dev/null +++ b/Resources/Prototypes/CharacterItemGroups/Generic/beltGroup.yml @@ -0,0 +1,17 @@ +- type: characterItemGroup + id: LoadoutBelt + items: + - type: loadout + id: LoadoutBeltGeneric + - type: loadout + id: LoadoutBeltGenericThin + - type: loadout + id: LoadoutBeltGenericThick + - type: loadout + id: LoadoutBeltWaist + - type: loadout + id: LoadoutBeltWaistThin + - type: loadout + id: LoadoutItemWaistbag + - type: loadout + id: LoadoutBeltWaistbagColor diff --git a/Resources/Prototypes/CharacterItemGroups/Generic/eyesGroup.yml b/Resources/Prototypes/CharacterItemGroups/Generic/eyesGroup.yml index 1f5a2420a90..591374c7085 100644 --- a/Resources/Prototypes/CharacterItemGroups/Generic/eyesGroup.yml +++ b/Resources/Prototypes/CharacterItemGroups/Generic/eyesGroup.yml @@ -3,17 +3,45 @@ items: - type: loadout id: LoadoutEyesEyepatch + - type: loadout + id: LoadoutEyesEyepatchColor + - type: loadout + id: LoadoutEyesEyepatchColorFlipped - type: loadout id: LoadoutEyesGlasses - type: loadout id: LoadoutEyesGlassesJamjar - type: loadout id: LoadoutEyesGlassesJensen + - type: loadout + id: LoadoutEyesGlasses3D + - type: loadout + id: LoadoutEyesGlassesHipster + - type: loadout + id: LoadoutEyesGlassesMonocle + - type: loadout + id: LoadoutEyesGlassesPanto - type: loadout id: LoadoutEyesBlindfold + - type: loadout + id: LoadoutEyesBlindfoldColor - type: loadout id: LoadoutItemCheapSunglasses + - type: loadout + id: LoadoutEyesGlassesCheapSunglassesAviator + - type: loadout + id: LoadoutEyesGlassesCheapSunglassesBig + - type: loadout + id: LoadoutEyesGlassesCheapSunglassesVisor - type: loadout id: LoadoutItemSunglasses + - type: loadout + id: LoadoutEyesGlassesSunglassesAviator + - type: loadout + id: LoadoutEyesGlassesSunglassesBig + - type: loadout + id: LoadoutEyesGlassesSunglassesVisor - type: loadout id: LoadoutItemBlindfoldFake + - type: loadout + id: LoadoutEyesBlindfoldFakeColor diff --git a/Resources/Prototypes/CharacterItemGroups/Generic/gloveGroup.yml b/Resources/Prototypes/CharacterItemGroups/Generic/gloveGroup.yml index f712e18e24d..134d4605402 100644 --- a/Resources/Prototypes/CharacterItemGroups/Generic/gloveGroup.yml +++ b/Resources/Prototypes/CharacterItemGroups/Generic/gloveGroup.yml @@ -12,4 +12,6 @@ - type: loadout id: LoadoutHandsGlovesRobohands - type: loadout - id: LoadoutHandsGlovesFingerless + id: LoadoutHandsGlovesFingerlessWhite + - type: loadout + id: LoadoutHandsGlovesEvening diff --git a/Resources/Prototypes/CharacterItemGroups/Generic/headGroup.yml b/Resources/Prototypes/CharacterItemGroups/Generic/headGroup.yml index 26f93d6531d..611a27b60ca 100644 --- a/Resources/Prototypes/CharacterItemGroups/Generic/headGroup.yml +++ b/Resources/Prototypes/CharacterItemGroups/Generic/headGroup.yml @@ -51,9 +51,45 @@ id: LoadoutHeadBrownFlatcap - type: loadout id: LoadoutHeadBeretWhite + - type: loadout + id: LoadoutHeadBeretArtist + - type: loadout + id: LoadoutHeadBeretPeaked + - type: loadout + id: LoadoutHeadBeanie + - type: loadout + id: LoadoutHeadBeanieWinter + - type: loadout + id: LoadoutHeadBeanieSubmariner + - type: loadout + id: LoadoutHeadBeanieTight + - type: loadout + id: LoadoutHeadSlouch + - type: loadout + id: LoadoutHeadSunVisor - type: loadout id: LoadoutHeadHijabColorable - type: loadout id: LoadoutHeadTurbanColorable - type: loadout id: LoadoutHeadKippahColorable + - type: loadout + id: LoadoutHeadHeadBandBasic + - type: loadout + id: LoadoutHeadPin + - type: loadout + id: LoadoutHeadPinClover + - type: loadout + id: LoadoutHeadPinButterfly + - type: loadout + id: LoadoutHeadPinMagnetic + - type: loadout + id: LoadoutHeadRibbon + - type: loadout + id: LoadoutHeadBow + - type: loadout + id: LoadoutHeadBowSmall + - type: loadout + id: LoadoutHeadHatBeanieGreen + - type: loadout + id: LoadoutHeadHatMountie diff --git a/Resources/Prototypes/CharacterItemGroups/Generic/itemGroups.yml b/Resources/Prototypes/CharacterItemGroups/Generic/itemGroups.yml index dcf9bbec8aa..16d145a041c 100644 --- a/Resources/Prototypes/CharacterItemGroups/Generic/itemGroups.yml +++ b/Resources/Prototypes/CharacterItemGroups/Generic/itemGroups.yml @@ -13,6 +13,8 @@ id: LoadoutUniformJumpskirtColorWhite - type: loadout id: LoadoutUniformJumpsuitFlannel + - type: loadout + id: LoadoutUniformJumpsuitCasualBlue - type: loadout id: LoadoutUniformJumpskirtCasualBlue - type: loadout @@ -29,6 +31,8 @@ id: LoadoutUniformJumpsuitTshirtJeansGray - type: loadout id: LoadoutUniformJumpsuitTshirtJeansPeach + - type: loadout + id: LoadoutUniformJumpsuitTShirtKhakiPants - type: loadout id: LoadoutUniformJumpsuitJeansGreen - type: loadout @@ -135,3 +139,169 @@ id: LoadoutClothingJumpsuitSuitWhiteAlt - type: loadout id: LoadoutClothingJumpsuitSuitWhiteMob + - type: loadout + id: LoadoutUniformJumpskirtDressAsymmetric + - type: loadout + id: LoadoutUniformJumpskirtDressEvening + - type: loadout + id: LoadoutUniformJumpskirtDressMidi + - type: loadout + id: LoadoutUniformJumpskirtDressOpenShoulder + - type: loadout + id: LoadoutUniformJumpskirtDressTea + - type: loadout + id: LoadoutUniformJumpskirtDressSleeveless + - type: loadout + id: LoadoutUniformJumpskirtDressLongSleeve + - type: loadout + id: LoadoutUniformJumpskirtDressBlackAndGold + - type: loadout + id: LoadoutUniformJumpskirtDressBlackTango + - type: loadout + id: LoadoutUniformJumpskirtDressBlackTangoAlt + - type: loadout + id: LoadoutUniformJumpskirtSuitBlueBlazer + - type: loadout + id: LoadoutUniformJumpskirtDressBlueSundress + - type: loadout + id: LoadoutUniformJumpskirtDressCheongsamBlue + - type: loadout + id: LoadoutUniformJumpskirtDressCheongsamGreen + - type: loadout + id: LoadoutUniformJumpskirtDressCheongsamPurple + - type: loadout + id: LoadoutUniformJumpskirtDressCheongsamRed + - type: loadout + id: LoadoutUniformJumpskirtDressCheongsamWhite + - type: loadout + id: LoadoutUniformJumpskirtDressClub + - type: loadout + id: LoadoutUniformJumpskirtDressCoveter + - type: loadout + id: LoadoutUniformJumpskirtDressFlamenco + - type: loadout + id: LoadoutUniformJumpskirtDressFire + - type: loadout + id: LoadoutUniformJumpskirtDressOrange + - type: loadout + id: LoadoutUniformJumpskirtDressYellow + - type: loadout + id: LoadoutUniformJumpskirtDressFlowergirl + - type: loadout + id: LoadoutUniformJumpskirtDressFluffy + - type: loadout + id: LoadoutUniformJumpskirtDressFormalRed + - type: loadout + id: LoadoutUniformJumpskirtDressGothic + - type: loadout + id: LoadoutUniformJumpskirtKimonoColor + - type: loadout + id: LoadoutUniformJumpskirtDressLacyGown + - type: loadout + id: LoadoutUniformJumpskirtDressLong + - type: loadout + id: LoadoutUniformJumpskirtDressLongFlared + - type: loadout + id: LoadoutUniformJumpskirtQipao + - type: loadout + id: LoadoutUniformJumpskirtQipaoSlim + - type: loadout + id: LoadoutUniformJumpskirtDressRedSwept + - type: loadout + id: LoadoutUniformJumpskirtPencilSkirtGymBra + - type: loadout + id: LoadoutUniformJumpskirtDressPuffy + - type: loadout + id: LoadoutUniformJumpskirtSailor + - type: loadout + id: LoadoutUniformJumpskirtDressSariGreen + - type: loadout + id: LoadoutUniformJumpskirtDressSariRed + - type: loadout + id: LoadoutUniformJumpskirtDressShort + - type: loadout + id: LoadoutUniformJumpskirtDressSpider + - type: loadout + id: LoadoutUniformJumpskirtDressStriped + - type: loadout + id: LoadoutUniformJumpskirtDressSundress + - type: loadout + id: LoadoutUniformJumpskirtDressSundressWhite + - type: loadout + id: LoadoutUniformJumpskirtDressVictorianBlack + - type: loadout + id: LoadoutUniformJumpskirtDressVictorianRed + - type: loadout + id: LoadoutUniformJumpskirtWaitress + - type: loadout + id: LoadoutUniformJumpskirtDressYellowSwoop + - type: loadout + id: LoadoutUniformJumpsuitSuitAmish + - type: loadout + id: LoadoutUniformJumpsuitSuitAristocratic + - type: loadout + id: LoadoutUniformJumpsuitSuitAristocraticTuxedo + - type: loadout + id: LoadoutUniformJumpsuitAscetic + - type: loadout + id: LoadoutUniformJumpsuitBarber + - type: loadout + id: LoadoutUniformJumpsuitSuitBlueBlazer + - type: loadout + id: LoadoutUniformJumpsuitDisheveled + - type: loadout + id: LoadoutUniformJumpsuitSuitRegal + - type: loadout + id: LoadoutUniformJumpsuitSuitRegalTuxedo + - type: loadout + id: LoadoutUniformJumpsuitRippedPunk + - type: loadout + id: LoadoutUniformJumpsuitSailor + - type: loadout + id: LoadoutUniformJumpsuitSuitStriped + - type: loadout + id: LoadoutUniformJumpsuitTrackpants + - type: loadout + id: LoadoutUniformJumpsuitTurtleneckGrey + - type: loadout + id: LoadoutUniformJumpsuitSuitVictorianRedBlack + - type: loadout + id: LoadoutUniformJumpsuitSuitVictorianRedVest + - type: loadout + id: LoadoutUniformJumpsuitSuitVictorianVest + - type: loadout + id: LoadoutUniformJumpsuitWaiter + - type: loadout + id: LoadoutUniformJumpsuitYogaGymBra + - type: loadout + id: LoadoutUniformJumpsuitSuitRolledSleeves + - type: loadout + id: LoadoutUniformJumpsuitBartenderGrey + - type: loadout + id: LoadoutUniformJumpsuitCheckered + - type: loadout + id: LoadoutUniformJumpsuitFlannelOveralls + - type: loadout + id: LoadoutUniformJumpsuitCowboyBrown + - type: loadout + id: LoadoutUniformJumpsuitCowboyGrey + - type: loadout + id: LoadoutUniformJumpsuitCamouflageShirt + - type: loadout + id: LoadoutUniformJumpsuitOliveSweater + - type: loadout + id: LoadoutUniformJumpsuitDesertUniform + - type: loadout + id: LoadoutUniformJumpsuitLumberjack + - type: loadout + id: LoadoutUniformJumpsuitLightBlueShirt + - type: loadout + id: LoadoutUniformJumpsuitGreyShirt + - type: loadout + id: LoadoutUniformJumpsuitFlannelJeans + - type: loadout + id: LoadoutUniformJumpsuitFlannelBlackJeans + - type: loadout + id: LoadoutUniformJumpsuitFlannelKhakis + - type: loadout + id: LoadoutUniformJumpsuitFlannelBlackKhakis diff --git a/Resources/Prototypes/CharacterItemGroups/Generic/neckGroup.yml b/Resources/Prototypes/CharacterItemGroups/Generic/neckGroup.yml index ef3f40891a7..4fd0c832049 100644 --- a/Resources/Prototypes/CharacterItemGroups/Generic/neckGroup.yml +++ b/Resources/Prototypes/CharacterItemGroups/Generic/neckGroup.yml @@ -9,6 +9,8 @@ id: LoadoutNeckOldMantle - type: loadout id: LoadoutNeckUnathiMantle + - type: loadout + id: LoadoutNeckDogtags - type: loadout id: LoadoutNeckScarfStripedRed - type: loadout @@ -27,6 +29,14 @@ id: LoadoutNeckScarfStripedZebra - type: loadout id: LoadoutNeckTieWhite + - type: loadout + id: LoadoutNeckTieShort + - type: loadout + id: LoadoutNeckTieBow + - type: loadout + id: LoadoutNeckTieBowTie + - type: loadout + id: LoadoutNeckTieRibbon - type: loadout id: LoadoutItemsPrideLGBTPin - type: loadout @@ -35,6 +45,8 @@ id: LoadoutItemsPrideAsexualPin - type: loadout id: LoadoutItemsPrideBisexualPin + - type: loadout + id: LoadoutItemsPrideGayPin - type: loadout id: LoadoutItemsPrideIntersexPin - type: loadout @@ -45,6 +57,22 @@ id: LoadoutItemsPridePansexualPin - type: loadout id: LoadoutItemsPrideTransPin + - type: loadout + id: LoadoutNeckCrucifixColor + - type: loadout + id: LoadoutNeckCrucifixColorSaintPeter + - type: loadout + id: LoadoutNeckCrucifixGold + - type: loadout + id: LoadoutNeckCrucifixGoldSaintPeter + - type: loadout + id: LoadoutNeckCrucifixSilver + - type: loadout + id: LoadoutNeckCrucifixSilverSaintPeter + - type: loadout + id: LoadoutNeckScapular + - type: loadout + id: LoadoutNeckTallit - type: loadout id: LoadoutNeckBedsheetCosmos - type: loadout @@ -53,3 +81,27 @@ id: LoadoutNeckBedsheetWhite - type: loadout id: LoadoutNeckBedsheetNT + - type: loadout + id: LoadoutNeckNecklaceStandard + - type: loadout + id: LoadoutNeckNecklaceLow + - type: loadout + id: LoadoutNeckNecklaceRound + - type: loadout + id: LoadoutNeckNecklaceSmall + - type: loadout + id: LoadoutNeckNecklaceGold + - type: loadout + id: LoadoutNeckNecklaceSilver + - type: loadout + id: LoadoutNeckNecklaceChainGold + - type: loadout + id: LoadoutNeckNecklaceChainSilver + - type: loadout + id: LoadoutNeckNecklacePendantGold + - type: loadout + id: LoadoutNeckNecklacePendantGoldLarge + - type: loadout + id: LoadoutNeckNecklacePendantSilver + - type: loadout + id: LoadoutNeckNecklacePendantSilverLarge diff --git a/Resources/Prototypes/CharacterItemGroups/Generic/outerwearGroup.yml b/Resources/Prototypes/CharacterItemGroups/Generic/outerwearGroup.yml index 033a52c6bdb..52feffaa8a9 100644 --- a/Resources/Prototypes/CharacterItemGroups/Generic/outerwearGroup.yml +++ b/Resources/Prototypes/CharacterItemGroups/Generic/outerwearGroup.yml @@ -75,6 +75,8 @@ id: LoadoutOuterBomberPunkRed - type: loadout id: LoadingOuterCoatJacketLeather + - type: loadout + id: LoadoutOuterJacketLeather - type: loadout id: LoadoutOuterJacketBiker - type: loadout @@ -87,6 +89,8 @@ id: LoadoutOuterJacketLettermanMagenta - type: loadout id: LoadoutOuterJacketLettermanRed + - type: loadout + id: LoadoutOuterBomberPinkSleeves - type: loadout id: LoadoutOuterCoatAcidRaincoat - type: loadout @@ -97,3 +101,65 @@ id: LoadoutOuterCoatAcidRaincoatMagenta - type: loadout id: LoadoutOuterCoatAcidRaincoatYellow + - type: loadout + id: LoadoutOuterSuitJacket + - type: loadout + id: LoadoutOuterSuitJacketOpened + - type: loadout + id: LoadoutOuterCoatModern + - type: loadout + id: LoadoutOuterTailcoat + - type: loadout + id: LoadoutOuterCoatVictorian + - type: loadout + id: LoadoutOuterCoatVictorianRed + - type: loadout + id: LoadoutOuterCardiganBasic + - type: loadout + id: LoadoutOuterCardiganBasicOpened + - type: loadout + id: LoadoutOuterCardiganArgyle + - type: loadout + id: LoadoutOuterCardiganArgyleOpened + - type: loadout + id: LoadoutOuterCardiganSweater + - type: loadout + id: LoadoutOuterCardiganSweaterOpened + - type: loadout + id: LoadoutOuterCardiganSlim + - type: loadout + id: LoadoutOuterCardiganSlimOpened + - type: loadout + id: LoadoutOuterCowboyDuster + - type: loadout + id: LoadoutOuterBlazerBasic + - type: loadout + id: LoadoutOuterBlazerBasicOpened + - type: loadout + id: LoadoutOuterBlazerLong + - type: loadout + id: LoadoutOuterBlazerLongOpened + - type: loadout + id: LoadoutOuterBlazerFormal + - type: loadout + id: LoadoutOuterBlazerLooseSleeve + - type: loadout + id: LoadoutOuterBlazerFlatCollar + - type: loadout + id: LoadoutOuterBlazerPosh + - type: loadout + id: LoadoutOuterCoatPeacoat + - type: loadout + id: LoadoutOuterCoatPeacoatOpened + - type: loadout + id: LoadoutOuterCoatAsymmetric + - type: loadout + id: LoadoutOuterCoatAsymmetricOpened + - type: loadout + id: LoadoutOuterCoatSubmariner + - type: loadout + id: LoadoutOuterCoatSubmarinerOpened + - type: loadout + id: LoadoutOuterVestColorable + - type: loadout + id: LoadoutOuterVestThick diff --git a/Resources/Prototypes/CharacterItemGroups/Generic/shoeGroup.yml b/Resources/Prototypes/CharacterItemGroups/Generic/shoeGroup.yml index ea56881c555..075c4daaa0c 100644 --- a/Resources/Prototypes/CharacterItemGroups/Generic/shoeGroup.yml +++ b/Resources/Prototypes/CharacterItemGroups/Generic/shoeGroup.yml @@ -9,6 +9,12 @@ id: LoadoutShoesTourist - type: loadout id: LoadoutShoesBootsWork + - type: loadout + id: LoadoutShoesBootsWorkColor + - type: loadout + id: LoadoutShoesBootsJackFake + - type: loadout + id: LoadoutShoesBootsJackColor - type: loadout id: LoadoutShoesBootsLaceup - type: loadout @@ -19,6 +25,16 @@ id: LoadoutShoesBootsCowboyFancy - type: loadout id: LoadoutShoesBootsFishing + - type: loadout + id: LoadoutShoesBootsAnkle + - type: loadout + id: LoadoutShoesBootsFull + - type: loadout + id: LoadoutShoesBootsMud + - type: loadout + id: LoadoutShoesBootsMudThigh + - type: loadout + id: LoadoutShoesBootsThigh - type: loadout id: LoadoutShoesSlippersDuck - type: loadout @@ -33,3 +49,17 @@ id: LoadoutShoesUnderSocksBee - type: loadout id: LoadoutShoesClothWrap + - type: loadout + id: LoadoutShoesHighHeels + - type: loadout + id: LoadoutShoesHighHeelsLong + - type: loadout + id: LoadoutShoesFlats + - type: loadout + id: LoadoutShoesSkater + - type: loadout + id: LoadoutShoesSandals + - type: loadout + id: LoadoutShoesSandalsFlipFlops + - type: loadout + id: LoadoutShoesSandalsFlipFlopsAlt diff --git a/Resources/Prototypes/CharacterItemGroups/Jobs/Security/uncategorized.yml b/Resources/Prototypes/CharacterItemGroups/Jobs/Security/uncategorized.yml index 166d548e127..c3445f675fe 100644 --- a/Resources/Prototypes/CharacterItemGroups/Jobs/Security/uncategorized.yml +++ b/Resources/Prototypes/CharacterItemGroups/Jobs/Security/uncategorized.yml @@ -142,6 +142,12 @@ id: LoadoutSecurityEyesHudSecurityPrescription - type: loadout id: LoadoutClothingEyesGlassesSecurity + - type: loadout + id: LoadoutClothingEyesGlassesSecurityAviator + - type: loadout + id: LoadoutClothingEyesGlassesSecurityBig + - type: loadout + id: LoadoutClothingEyesGlassesSecurityVisor #- type: characterItemGroup # id: LoadoutSecurityGloves diff --git a/Resources/Prototypes/DeltaV/Entities/Clothing/Neck/ties.yml b/Resources/Prototypes/DeltaV/Entities/Clothing/Neck/ties.yml index 2b421e96752..b3fc0d508be 100644 --- a/Resources/Prototypes/DeltaV/Entities/Clothing/Neck/ties.yml +++ b/Resources/Prototypes/DeltaV/Entities/Clothing/Neck/ties.yml @@ -8,6 +8,7 @@ sprite: DeltaV/Clothing/Neck/Ties/whitetie.rsi - type: Clothing sprite: DeltaV/Clothing/Neck/Ties/whitetie.rsi + renderLayer: innerNeck - type: entity parent: ClothingNeckBase diff --git a/Resources/Prototypes/DeltaV/Entities/Mobs/Species/lamia.yml b/Resources/Prototypes/DeltaV/Entities/Mobs/Species/lamia.yml index 71bb59b04e7..8f031b05f8c 100644 --- a/Resources/Prototypes/DeltaV/Entities/Mobs/Species/lamia.yml +++ b/Resources/Prototypes/DeltaV/Entities/Mobs/Species/lamia.yml @@ -101,6 +101,8 @@ - map: [ "id" ] - map: [ "gloves" ] - map: [ "ears" ] + - map: [ "innerBelt" ] + - map: [ "innerNeck" ] - map: [ "outerClothing" ] - map: [ "eyes" ] - map: [ "belt" ] @@ -279,6 +281,8 @@ - map: [ "id" ] - map: [ "gloves" ] - map: [ "ears" ] + - map: [ "innerBelt" ] + - map: [ "innerNeck" ] - map: [ "outerClothing" ] - map: [ "eyes" ] - map: [ "belt" ] diff --git a/Resources/Prototypes/DeltaV/Entities/Mobs/Species/vulpkanin.yml b/Resources/Prototypes/DeltaV/Entities/Mobs/Species/vulpkanin.yml index 040d4bee130..b051c9285be 100644 --- a/Resources/Prototypes/DeltaV/Entities/Mobs/Species/vulpkanin.yml +++ b/Resources/Prototypes/DeltaV/Entities/Mobs/Species/vulpkanin.yml @@ -60,6 +60,8 @@ - map: [ "gloves" ] - map: [ "shoes" ] - map: [ "ears" ] + - map: [ "innerBelt" ] + - map: [ "innerNeck" ] - map: [ "outerClothing" ] - map: [ "eyes" ] - map: [ "belt" ] diff --git a/Resources/Prototypes/Entities/Clothing/Back/satchel.yml b/Resources/Prototypes/Entities/Clothing/Back/satchel.yml index 0aa6fc5730b..33daadcbe90 100644 --- a/Resources/Prototypes/Entities/Clothing/Back/satchel.yml +++ b/Resources/Prototypes/Entities/Clothing/Back/satchel.yml @@ -187,3 +187,28 @@ maxItemSize: Huge grid: - 0,0,19,9 + +- type: entity + parent: [ClothingBackpackSatchel, BaseFoldable] + id: ClothingBackpackSatchelPurse + name: purse + description: A small, fashionable bag typically worn over the shoulder. + components: + - type: Sprite + sprite: 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/Entities/Clothing/Back/specific.yml b/Resources/Prototypes/Entities/Clothing/Back/specific.yml index e2932537e90..7d39d2208ea 100644 --- a/Resources/Prototypes/Entities/Clothing/Back/specific.yml +++ b/Resources/Prototypes/Entities/Clothing/Back/specific.yml @@ -1,4 +1,4 @@ -- type: entity +- type: entity parent: ClothingBackpack id: ClothingBackpackChameleon name: backpack diff --git a/Resources/Prototypes/Entities/Clothing/Belt/base_clothingbelt.yml b/Resources/Prototypes/Entities/Clothing/Belt/base_clothingbelt.yml index 1d26d71660c..e599b071f10 100644 --- a/Resources/Prototypes/Entities/Clothing/Belt/base_clothingbelt.yml +++ b/Resources/Prototypes/Entities/Clothing/Belt/base_clothingbelt.yml @@ -12,9 +12,6 @@ quickEquip: false equipSound: path: /Audio/SimpleStation14/Items/Equip/toolbelt_equip.ogg - clothingVisuals: - belt2: #there should be a cleaner way to do this tbh - - state: equipped-BELT - type: PhysicalComposition materialComposition: Cloth: 50 diff --git a/Resources/Prototypes/Entities/Clothing/Belt/belts.yml b/Resources/Prototypes/Entities/Clothing/Belt/belts.yml index f7a33fd0938..9962e95bfce 100644 --- a/Resources/Prototypes/Entities/Clothing/Belt/belts.yml +++ b/Resources/Prototypes/Entities/Clothing/Belt/belts.yml @@ -714,3 +714,68 @@ whitelist: tags: - WizardWand + +- type: entity + parent: ClothingBeltBase + id: ClothingBeltGeneric + name: belt + description: A plain belt made of leather. + components: + - type: Sprite + sprite: Clothing/Belt/generic.rsi + state: icon + - type: Clothing + sprite: Clothing/Belt/generic.rsi + renderLayer: innerBelt + +- type: entity + parent: ClothingBeltBase + id: ClothingBeltGenericThin + name: thin belt + description: This is thinner than your usual belt. + components: + - type: Sprite + sprite: Clothing/Belt/generic_thin.rsi + state: icon + - type: Clothing + sprite: Clothing/Belt/generic_thin.rsi + renderLayer: innerBelt + +- type: entity + parent: ClothingBeltBase + id: ClothingBeltGenericThick + name: thick belt + description: A bold fashion statement. + components: + - type: Sprite + sprite: Clothing/Belt/generic_thick.rsi + state: icon + - type: Clothing + sprite: Clothing/Belt/generic_thick.rsi + renderLayer: innerBelt + +- type: entity + parent: ClothingBeltBase + id: ClothingBeltWaist + name: waist belt + description: A belt worn around the waist, giving outfits a more fitted silhouette. + components: + - type: Sprite + sprite: Clothing/Belt/waist.rsi + state: icon + - type: Clothing + sprite: Clothing/Belt/waist.rsi + renderLayer: innerBelt + +- type: entity + parent: ClothingBeltBase + id: ClothingBeltWaistThin + name: thin waist belt + description: For highlighting that snatched waist. + components: + - type: Sprite + sprite: Clothing/Belt/waist_thin.rsi + state: icon + - type: Clothing + sprite: Clothing/Belt/waist_thin.rsi + renderLayer: innerBelt diff --git a/Resources/Prototypes/Entities/Clothing/Belt/waist_bags.yml b/Resources/Prototypes/Entities/Clothing/Belt/waist_bags.yml index 81fddf379b6..6f7509ce3ec 100644 --- a/Resources/Prototypes/Entities/Clothing/Belt/waist_bags.yml +++ b/Resources/Prototypes/Entities/Clothing/Belt/waist_bags.yml @@ -12,6 +12,17 @@ grid: - 0,0,3,1 +- type: entity + parent: ClothingBeltStorageWaistbag + id: ClothingBeltStorageWaistbagColor + name: waist bag + description: A waist bag meant for carrying small items. + components: + - type: Sprite + sprite: Clothing/Belt/waistbag_color.rsi + - type: Clothing + sprite: Clothing/Belt/waistbag_color.rsi + #Colorization on worn items doesn't work. If this ever gets fixed, you can duplicate this entry and change the color on the sprite to add color variants. #- type: entity # parent: ClothingBeltStorageWaistbag diff --git a/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml b/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml index 59817932c79..cc1442e4e81 100644 --- a/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml +++ b/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml @@ -83,6 +83,59 @@ - HamsterWearable - WhitelistChameleon +- type: entity + parent: ClothingEyesBase + id: ClothingEyesGlasses3D + name: 3D glasses + description: twiin armageddon2 + components: + - type: Sprite + sprite: Clothing/Eyes/Glasses/3d.rsi + - type: Clothing + sprite: Clothing/Eyes/Glasses/3d.rsi + +- type: entity + parent: ClothingEyesGlasses + id: ClothingEyesGlassesHipster + name: hipster glasses + description: Made by Uncool. Co. + components: + - type: Sprite + sprite: Clothing/Eyes/Glasses/hipster.rsi + - type: Clothing + sprite: Clothing/Eyes/Glasses/hipster.rsi + - type: Tag + tags: + - WhitelistChameleon + +- type: entity + parent: ClothingEyesGlasses + id: ClothingEyesGlassesMonocle + name: monocle + description: Such a dapper eyepiece! + components: + - type: Sprite + sprite: Clothing/Eyes/Glasses/monocle.rsi + - type: Clothing + sprite: Clothing/Eyes/Glasses/monocle.rsi + - type: Tag + tags: + - WhitelistChameleon + +- type: entity + parent: ClothingEyesGlasses + id: ClothingEyesGlassesPanto + name: panto glasses + description: So iconic. So generic. The monobloc chair of the glasses world. + components: + - type: Sprite + sprite: Clothing/Eyes/Glasses/panto.rsi + - type: Clothing + sprite: Clothing/Eyes/Glasses/panto.rsi + - type: Tag + tags: + - WhitelistChameleon + - type: entity parent: ClothingEyesBase id: ClothingEyesGlassesJensen @@ -178,6 +231,132 @@ - type: IdentityBlocker coverage: EYES +- type: entity + parent: ClothingEyesGlassesCheapSunglasses + id: ClothingEyesGlassesCheapSunglassesAviator + name: cheap aviators + description: A pair of replica sunglasses. Doesn't block light well, more of an accessory than something useful. + components: + - type: Sprite + sprite: Clothing/Eyes/Glasses/aviators.rsi + - type: Clothing + sprite: Clothing/Eyes/Glasses/aviators.rsi + - type: Tag + tags: + - WhitelistChameleon + +- type: entity + parent: ClothingEyesGlassesSunglasses + id: ClothingEyesGlassesSunglassesAviator + name: aviators + description: A pair of designer sunglasses. + components: + - type: Sprite + sprite: Clothing/Eyes/Glasses/aviators.rsi + - type: Clothing + sprite: Clothing/Eyes/Glasses/aviators.rsi + - type: Tag + tags: + - WhitelistChameleon + +- type: entity + parent: ClothingEyesGlassesSecurity + id: ClothingEyesGlassesSecurityAviator + name: security aviators + description: Upgraded aviators that provide flash immunity and a security HUD. + components: + - type: Sprite + sprite: Clothing/Eyes/Glasses/secglasses_aviators.rsi + - type: Clothing + sprite: Clothing/Eyes/Glasses/secglasses_aviators.rsi + - type: Tag + tags: + - WhitelistChameleon + +- type: entity + parent: ClothingEyesGlassesCheapSunglasses + id: ClothingEyesGlassesCheapSunglassesBig + name: cheap big sunglasses + description: A pair of black sunglasses with big lenses. Doesn't block light well, more of an accessory than something useful. + components: + - type: Sprite + sprite: Clothing/Eyes/Glasses/sunglasses_big.rsi + - type: Clothing + sprite: Clothing/Eyes/Glasses/sunglasses_big.rsi + - type: Tag + tags: + - WhitelistChameleon + +- type: entity + parent: ClothingEyesGlassesSunglasses + id: ClothingEyesGlassesSunglassesBig + name: big sunglasses + description: A pair of black sunglasses with big lenses. + components: + - type: Sprite + sprite: Clothing/Eyes/Glasses/sunglasses_big.rsi + - type: Clothing + sprite: Clothing/Eyes/Glasses/sunglasses_big.rsi + - type: Tag + tags: + - WhitelistChameleon + +- type: entity + parent: ClothingEyesGlassesCheapSunglasses + id: ClothingEyesGlassesSecurityBig + name: big security glasses + description: Upgraded big sunglasses that provide flash immunity and a security HUD. + components: + - type: Sprite + sprite: Clothing/Eyes/Glasses/secglasses_big.rsi + - type: Clothing + sprite: Clothing/Eyes/Glasses/secglasses_big.rsi + - type: Tag + tags: + - WhitelistChameleon + +- type: entity + parent: ClothingEyesGlassesCheapSunglasses + id: ClothingEyesGlassesCheapSunglassesVisor + name: cheap visor sunglasses + description: A pair of replica visor sunglasses. Doesn't block light well, more of an accessory than something useful. + components: + - type: Sprite + sprite: Clothing/Eyes/Glasses/sunglasses_visor.rsi + - type: Clothing + sprite: Clothing/Eyes/Glasses/sunglasses_visor.rsi + - type: Tag + tags: + - WhitelistChameleon + +- type: entity + parent: ClothingEyesGlassesSunglasses + id: ClothingEyesGlassesSunglassesVisor + name: visor sunglasses + description: A pair of visor sunglasses. + components: + - type: Sprite + sprite: Clothing/Eyes/Glasses/sunglasses_visor.rsi + - type: Clothing + sprite: Clothing/Eyes/Glasses/sunglasses_visor.rsi + - type: Tag + tags: + - WhitelistChameleon + +- type: entity + parent: ClothingEyesGlassesSecurity + id: ClothingEyesGlassesSecurityVisor + name: security visor glasses + description: Upgraded visor sunglasses that provide flash immunity and a security HUD. + components: + - type: Sprite + sprite: Clothing/Eyes/Glasses/secglasses_visor.rsi + - type: Clothing + sprite: Clothing/Eyes/Glasses/secglasses_visor.rsi + - type: Tag + tags: + - WhitelistChameleon + - type: entity parent: ClothingEyesBase id: ClothingEyesGlassesMercenary @@ -277,4 +456,4 @@ sprite: Clothing/Eyes/Glasses/etherealgoogles.rsi - type: Clothing sprite: Clothing/Eyes/Glasses/etherealgoogles.rsi - - type: ShowEthereal \ No newline at end of file + - type: ShowEthereal diff --git a/Resources/Prototypes/Entities/Clothing/Eyes/misc.yml b/Resources/Prototypes/Entities/Clothing/Eyes/misc.yml index 431459f792e..41b79075876 100644 --- a/Resources/Prototypes/Entities/Clothing/Eyes/misc.yml +++ b/Resources/Prototypes/Entities/Clothing/Eyes/misc.yml @@ -11,6 +11,35 @@ - type: EyeProtection protectionTime: 5 +- type: entity + parent: [ClothingEyesEyepatch, BaseFoldable] + id: ClothingEyesEyepatchColor + name: eyepatch + description: Yarr. + components: + - type: Sprite + sprite: Clothing/Eyes/Misc/eyepatch_color.rsi + - type: Clothing + sprite: Clothing/Eyes/Misc/eyepatch_color.rsi + - type: EyeProtection + protectionTime: 5 + - type: Foldable + canFoldInsideContainer: true + unfoldVerbText: fold-flip-verb + foldVerbText: fold-flip-verb + - type: FoldableClothing + foldedEquippedPrefix: flipped + +- type: entity + parent: ClothingEyesEyepatchColor + id: ClothingEyesEyepatchColorFlipped + suffix: flipped + components: + - type: Foldable + folded: true + - type: Clothing + equippedPrefix: flipped + - type: entity parent: ClothingEyesBase id: ClothingEyesBlindfold @@ -27,13 +56,35 @@ node: blindfold - type: FlashImmunity +- type: entity + parent: ClothingEyesBlindfold + id: ClothingEyesBlindfoldColor + suffix: colorable + components: + - type: Sprite + sprite: Clothing/Eyes/Misc/blindfold_color.rsi + - type: Clothing + sprite: Clothing/Eyes/Misc/blindfold_color.rsi + - type: entity parent: ClothingEyesBase id: ClothingEyesBlindfoldFake name: blindfold description: The bind leading the blind. + suffix: fake components: - type: Sprite sprite: Clothing/Eyes/Misc/blindfold.rsi - type: Clothing - sprite: Clothing/Eyes/Misc/blindfold.rsi \ No newline at end of file + sprite: Clothing/Eyes/Misc/blindfold.rsi + +- type: entity + parent: ClothingEyesBlindfoldFake + id: ClothingEyesBlindfoldFakeColor + suffix: colorable, fake + components: + - type: Sprite + sprite: Clothing/Eyes/Misc/blindfold_color.rsi + - type: Clothing + sprite: Clothing/Eyes/Misc/blindfold_color.rsi + diff --git a/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml b/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml index afe189748c5..ac099972879 100644 --- a/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml +++ b/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml @@ -456,3 +456,14 @@ fiberMaterial: fibers-rubber fiberColor: fibers-yellow - type: FingerprintMask + +- type: entity + parent: ClothingHandsGlovesSyntheticBase + id: ClothingHandsGlovesEvening + name: evening gloves + description: Gloves that reach past the elbow. Serving elegance and serving looks! + components: + - type: Sprite + sprite: Clothing/Hands/Gloves/evening_gloves.rsi + - type: Clothing + sprite: Clothing/Hands/Gloves/evening_gloves.rsi diff --git a/Resources/Prototypes/Entities/Clothing/Head/accessories.yml b/Resources/Prototypes/Entities/Clothing/Head/accessories.yml new file mode 100644 index 00000000000..5c947513453 --- /dev/null +++ b/Resources/Prototypes/Entities/Clothing/Head/accessories.yml @@ -0,0 +1,96 @@ +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatPin + name: hair pin + description: A nice hair pin. + components: + - type: Sprite + sprite: Clothing/Head/Accessories/pin.rsi + - type: Clothing + sprite: Clothing/Head/Accessories/pin.rsi + equipDelay: 0 + unequipDelay: 0 + - type: Item + size: Tiny + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatPinClover + name: clover pin + description: A hair pin in the shape of a clover leaf. Smells of mischief. + components: + - type: Sprite + sprite: Clothing/Head/Accessories/pin_clover.rsi + - type: Clothing + sprite: Clothing/Head/Accessories/pin_clover.rsi + equipDelay: 0 + unequipDelay: 0 + - type: Item + size: Tiny + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatPinButterfly + name: butterfly pin + description: A hair pin in the shape of a butterfly. + components: + - type: Sprite + sprite: Clothing/Head/Accessories/pin_butterfly.rsi + - type: Clothing + sprite: Clothing/Head/Accessories/pin_butterfly.rsi + equipDelay: 0 + unequipDelay: 0 + - type: Item + size: Tiny + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatPinMagnetic + name: magnetic pin + description: A pair of magnetic pins that stick to your head with magnetism. + components: + - type: Sprite + sprite: Clothing/Head/Accessories/pin_magnetic.rsi + - type: Clothing + sprite: Clothing/Head/Accessories/pin_magnetic.rsi + equipDelay: 0 + unequipDelay: 0 + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatRibbon + name: hair ribbon + description: A length of ribbon acting as a headband. + components: + - type: Sprite + sprite: Clothing/Head/Accessories/ribbon.rsi + - type: Clothing + sprite: Clothing/Head/Accessories/ribbon.rsi + equipDelay: 0.2 + unequipDelay: 0.2 + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatBow + name: hair bow + description: A hair bow with a small removable clip on the back. + components: + - type: Sprite + sprite: Clothing/Head/Accessories/bow.rsi + - type: Clothing + sprite: Clothing/Head/Accessories/bow.rsi + equipDelay: 0.2 + unequipDelay: 0.2 + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatBowSmall + name: small hair bow + description: A ribbon tied into a small bow with a clip on the back to attach to hair. + components: + - type: Sprite + sprite: Clothing/Head/Accessories/bow_small.rsi + - type: Clothing + sprite: Clothing/Head/Accessories/bow_small.rsi + equipDelay: 0.2 + unequipDelay: 0.2 diff --git a/Resources/Prototypes/Entities/Clothing/Head/hats.yml b/Resources/Prototypes/Entities/Clothing/Head/hats.yml index dace96ff561..20fce6d7399 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/hats.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/hats.yml @@ -69,6 +69,34 @@ - HamsterWearable - WhitelistChameleon +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatBeretArtist + name: artist beret + description: A beret fit for an artist. + components: + - type: Sprite + sprite: Clothing/Head/Hats/beret_artist.rsi + - type: Clothing + sprite: Clothing/Head/Hats/beret_artist.rsi + - type: Tag + tags: + - ClothMade + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatBeretPeaked + name: peaked beret + description: A peaked beret. + components: + - type: Sprite + sprite: Clothing/Head/Hats/beret_peaked.rsi + - type: Clothing + sprite: Clothing/Head/Hats/beret_peaked.rsi + - type: Tag + tags: + - ClothMade + - type: entity parent: ClothingHeadBase id: ClothingHeadHatCasa @@ -1204,4 +1232,104 @@ - type: Sprite sprite: Clothing/Head/Hats/flatcap_orion.rsi - type: Clothing - sprite: Clothing/Head/Hats/flatcap_orion.rsi \ No newline at end of file + sprite: Clothing/Head/Hats/flatcap_orion.rsi + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatBeanie + name: beanie + description: A head-hugging brimless winter cap. This one is tight. + components: + - type: Sprite + sprite: Clothing/Head/Hats/beanie.rsi + - type: Clothing + sprite: Clothing/Head/Hats/beanie.rsi + - type: TemperatureProtection + coefficient: 0.5 + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatBeanieWinter + name: winter beanie + description: A head-hugging brimless winter cap. This one has flaps that cover the ears. + components: + - type: Sprite + sprite: Clothing/Head/Hats/beanie_winter.rsi + - type: Clothing + sprite: Clothing/Head/Hats/beanie_winter.rsi + - type: TemperatureProtection + coefficient: 0.5 + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatBeanieSubmariner + name: submariner beanie + description: A design of tightly fitting beanie popular among Submarine station workers. + components: + - type: Sprite + sprite: Clothing/Head/Hats/beanie_submariner.rsi + - type: Clothing + sprite: Clothing/Head/Hats/beanie_submariner.rsi + - type: TemperatureProtection + coefficient: 0.5 + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatBeanieTight + name: tight beanie + description: A rather tight beanie that hides your hair. + components: + - type: Sprite + sprite: Clothing/Head/Hats/beanie_tight.rsi + - type: Clothing + sprite: Clothing/Head/Hats/beanie_tight.rsi + - type: TemperatureProtection + coefficient: 0.5 + - type: HideLayerClothing + slots: + - Hair + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatSlouch + name: slouch hat + description: A wide brimmed hat folded to form a slouch. + components: + - type: Sprite + sprite: Clothing/Head/Hats/slouch.rsi + - type: Clothing + sprite: Clothing/Head/Hats/slouch.rsi + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatSunVisor + name: sun visor + description: A stylish visor intended for blocking out harsh sunlight. + components: + - type: Sprite + sprite: Clothing/Head/Hats/sun_visor.rsi + - type: Clothing + sprite: Clothing/Head/Hats/sun_visor.rsi + +# Nuclear 14 hats +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatBeanieGreen + name: green beanie + description: A dark green beanie. + components: + - type: Sprite + sprite: _Nuclear14/Clothing/Head/FalloutHats/beanie.rsi + - type: Clothing + sprite: _Nuclear14/Clothing/Head/FalloutHats/beanie.rsi + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatMountie + name: mountie hat + description: A flat hat made 100% of fur felt. + components: + - type: Sprite + sprite: _Nuclear14/Clothing/Head/FalloutHats/mountiehat.rsi + - type: Clothing + sprite: _Nuclear14/Clothing/Head/FalloutHats/mountiehat.rsi diff --git a/Resources/Prototypes/Entities/Clothing/Head/misc.yml b/Resources/Prototypes/Entities/Clothing/Head/misc.yml index 0138d8aee47..55831f40cbf 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/misc.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/misc.yml @@ -308,3 +308,14 @@ - WhitelistChameleon - type: StaticPrice price: 1 + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatHeadBandBasic + name: basic headband + description: Perfect for martial artists, sweaty rogue operators, and tunnel gangsters. + components: + - type: Sprite + sprite: Clothing/Head/Misc/headband.rsi + - type: Clothing + sprite: Clothing/Head/Misc/headband.rsi diff --git a/Resources/Prototypes/Entities/Clothing/Neck/misc.yml b/Resources/Prototypes/Entities/Clothing/Neck/misc.yml index a39c2e69159..3508808b8d9 100644 --- a/Resources/Prototypes/Entities/Clothing/Neck/misc.yml +++ b/Resources/Prototypes/Entities/Clothing/Neck/misc.yml @@ -93,3 +93,14 @@ - type: EmitsSoundOnMove soundCollection: collection: FootstepJester + +- type: entity + parent: ClothingNeckBase + id: ClothingNeckDogtags + name: dogtags + description: A pair of engraved metal identification tags. + components: + - type: Sprite + sprite: Clothing/Neck/Misc/dogtags.rsi + - type: Clothing + sprite: Clothing/Neck/Misc/dogtags.rsi diff --git a/Resources/Prototypes/Entities/Clothing/Neck/necklaces.yml b/Resources/Prototypes/Entities/Clothing/Neck/necklaces.yml new file mode 100644 index 00000000000..ab78f463bb7 --- /dev/null +++ b/Resources/Prototypes/Entities/Clothing/Neck/necklaces.yml @@ -0,0 +1,159 @@ +- type: entity + parent: ClothingNeckBase + id: ClothingNeckNecklaceStandard + name: necklace + description: A piece of jewelry that goes around your neck. + components: + - type: Sprite + sprite: Clothing/Neck/Necklaces/standard.rsi + - type: Clothing + sprite: Clothing/Neck/Necklaces/standard.rsi + +- type: entity + parent: ClothingNeckBase + id: ClothingNeckNecklaceLow + name: low-hanging necklace + description: A long piece of jewelry that hangs quite low from the neck of its wearer. + components: + - type: Sprite + sprite: Clothing/Neck/Necklaces/low.rsi + - type: Clothing + sprite: Clothing/Neck/Necklaces/low.rsi + +- type: entity + parent: ClothingNeckBase + id: ClothingNeckNecklaceRound + name: round necklace + description: A piece of jewelry that goes around your neck. + components: + - type: Sprite + sprite: Clothing/Neck/Necklaces/round.rsi + - type: Clothing + sprite: Clothing/Neck/Necklaces/round.rsi + +- type: entity + parent: ClothingNeckBase + id: ClothingNeckNecklaceSmall + name: small necklace + description: A diminutive necklace. + components: + - type: Sprite + sprite: Clothing/Neck/Necklaces/small.rsi + - type: Clothing + sprite: Clothing/Neck/Necklaces/small.rsi + +- type: entity + parent: ClothingNeckBase + id: ClothingNeckNecklaceGold + name: gold necklace + description: A piece of golden jewelry that goes around your neck. + components: + - type: Sprite + sprite: Clothing/Neck/Necklaces/gold.rsi + - type: Clothing + sprite: Clothing/Neck/Necklaces/gold.rsi + +- type: entity + parent: ClothingNeckBase + id: ClothingNeckNecklaceSilver + name: silver necklace + description: A piece of silver jewelry that goes around your neck. + components: + - type: Sprite + sprite: Clothing/Neck/Necklaces/silver.rsi + - type: Clothing + sprite: Clothing/Neck/Necklaces/silver.rsi + +- type: entity + parent: ClothingNeckBase + id: ClothingNeckNecklaceChainGold + name: gold chain necklace + description: A winding chain of golden links, fashioned into an exquisite necklace. + components: + - type: Sprite + sprite: Clothing/Neck/Necklaces/chain_gold.rsi + - type: Clothing + sprite: Clothing/Neck/Necklaces/chain_gold.rsi + +- type: entity + parent: ClothingNeckBase + id: ClothingNeckNecklaceChainSilver + name: silver chain necklace + description: A winding chain of silver links, fashioned into an exquisite necklace. + components: + - type: Sprite + sprite: Clothing/Neck/Necklaces/chain_silver.rsi + - type: Clothing + sprite: Clothing/Neck/Necklaces/chain_silver.rsi + +- type: entity + parent: ClothingNeckBase + id: ClothingNeckNecklacePendantGold + name: gold pendant necklace + description: A heavy gemstone tethered to a golden necklace by a chain. + components: + - type: Sprite + sprite: Clothing/Neck/Necklaces/pendant_gold.rsi + layers: + - state: icon + - state: pendant-icon + - type: Clothing + sprite: Clothing/Neck/Necklaces/pendant_gold.rsi + clothingVisuals: + neck: + - state: equipped-NECK + - state: pendant-equipped-NECK + +- type: entity + parent: ClothingNeckBase + id: ClothingNeckNecklacePendantGoldLarge + name: large gold pendant necklace + description: A large gemstone tethered to a golden necklace by a chain. + components: + - type: Sprite + sprite: Clothing/Neck/Necklaces/pendant_gold_large.rsi + layers: + - state: icon + - state: pendant-icon + - type: Clothing + sprite: Clothing/Neck/Necklaces/pendant_gold_large.rsi + clothingVisuals: + neck: + - state: equipped-NECK + - state: pendant-equipped-NECK + +- type: entity + parent: ClothingNeckBase + id: ClothingNeckNecklacePendantSilver + name: silver pendant necklace + description: A heavy gemstone tethered to a silver necklace by a chain. + components: + - type: Sprite + sprite: Clothing/Neck/Necklaces/pendant_silver.rsi + layers: + - state: icon + - state: pendant-icon + - type: Clothing + sprite: Clothing/Neck/Necklaces/pendant_silver.rsi + clothingVisuals: + neck: + - state: equipped-NECK + - state: pendant-equipped-NECK + +- type: entity + parent: ClothingNeckBase + id: ClothingNeckNecklacePendantSilverLarge + name: large silver pendant necklace + description: A large gemstone tethered to a silver necklace by a chain. + components: + - type: Sprite + sprite: Clothing/Neck/Necklaces/pendant_silver_large.rsi + layers: + - state: icon + - state: pendant-icon + - type: Clothing + sprite: Clothing/Neck/Necklaces/pendant_silver_large.rsi + clothingVisuals: + neck: + - state: equipped-NECK + - state: pendant-equipped-NECK diff --git a/Resources/Prototypes/Entities/Clothing/Neck/ties.yml b/Resources/Prototypes/Entities/Clothing/Neck/ties.yml index 9e361d59192..e7364cc98ab 100644 --- a/Resources/Prototypes/Entities/Clothing/Neck/ties.yml +++ b/Resources/Prototypes/Entities/Clothing/Neck/ties.yml @@ -24,7 +24,7 @@ sprite: Clothing/Neck/Ties/dettie.rsi - type: Clothing sprite: Clothing/Neck/Ties/dettie.rsi - + - type: entity parent: ClothingNeckBase id: ClothingNeckTieSci @@ -40,3 +40,63 @@ - ClothMade - HamsterWearable - WhitelistChameleon + +- type: entity + parent: ClothingNeckBase + id: ClothingNeckTieColor + name: tie + description: A neosilk clip-on tie. + components: + - type: Sprite + sprite: Clothing/Neck/Ties/color.rsi + - type: Clothing + sprite: Clothing/Neck/Ties/color.rsi + renderLayer: innerNeck + - type: Tag + tags: + - WhitelistChameleon + - ClothMade + +- type: entity + parent: ClothingNeckBase + id: ClothingNeckTieShort + name: short tie + description: A short tie, perfect for vests. + components: + - type: Sprite + sprite: Clothing/Neck/Ties/shorttie.rsi + - type: Clothing + sprite: Clothing/Neck/Ties/shorttie.rsi + +- type: entity + parent: ClothingNeckBase + id: ClothingNeckTieBow + name: neck bow + description: A bow for adorning the neck. + components: + - type: Sprite + sprite: Clothing/Neck/Ties/bow.rsi + - type: Clothing + sprite: Clothing/Neck/Ties/bow.rsi + +- type: entity + parent: ClothingNeckBase + id: ClothingNeckTieBowTie + name: bow tie + description: A bow tie. Snazzy! + components: + - type: Sprite + sprite: Clothing/Neck/Ties/bowtie.rsi + - type: Clothing + sprite: Clothing/Neck/Ties/bowtie.rsi + +- type: entity + parent: ClothingNeckBase + id: ClothingNeckTieRibbon + name: neck ribbon + description: A ribbon for adorning the neck. + components: + - type: Sprite + sprite: Clothing/Neck/Ties/ribbon.rsi + - type: Clothing + sprite: Clothing/Neck/Ties/ribbon.rsi diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/base_clothingouter.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/base_clothingouter.yml index ae42cf55c05..1d938911a1a 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/base_clothingouter.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/base_clothingouter.yml @@ -59,8 +59,8 @@ - type: entity abstract: true - parent: [ClothingOuterStorageBase, BaseFoldable] - id: ClothingOuterStorageFoldableBase + parent: [ClothingOuterBase, BaseFoldable] + id: ClothingOuterFoldableBase components: - type: Appearance - type: Foldable @@ -80,8 +80,8 @@ - type: entity abstract: true - parent: ClothingOuterStorageFoldableBase - id: ClothingOuterStorageFoldableBaseOpened + parent: ClothingOuterFoldableBase + id: ClothingOuterFoldableBaseOpened suffix: opened components: - type: Foldable @@ -99,6 +99,17 @@ map: ["foldedLayer"] visible: true +- type: entity + abstract: true + parent: [ClothingOuterStorageBase, ClothingOuterFoldableBase] + id: ClothingOuterStorageFoldableBase + +- type: entity + abstract: true + parent: [ClothingOuterStorageFoldableBase, ClothingOuterFoldableBaseOpened] + id: ClothingOuterStorageFoldableBaseOpened + suffix: opened + - type: entity abstract: true parent: ClothingOuterStorageBase diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml index 07fe385478a..c6088c7656d 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml @@ -481,3 +481,95 @@ sprite: Clothing/OuterClothing/Coats/expensive_coat.rsi - type: Clothing sprite: Clothing/OuterClothing/Coats/expensive_coat.rsi + +- type: entity + parent: ClothingOuterBase + id: ClothingOuterCoatModern + name: modern coat + description: A coat that has a nice finished feel. + components: + - type: Sprite + sprite: 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: Clothing/OuterClothing/Coats/tailcoat.rsi + - type: Clothing + sprite: 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: Clothing/OuterClothing/Coats/victorian_coat.rsi + - type: Clothing + sprite: 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: Clothing/OuterClothing/Coats/victorian_coat_red.rsi + - type: Clothing + sprite: 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: Clothing/OuterClothing/Coats/peacoat.rsi + - type: Clothing + sprite: 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: Clothing/OuterClothing/Coats/asymmetric_coat.rsi + - type: Clothing + sprite: 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: Clothing/OuterClothing/Coats/submariner.rsi + - type: Clothing + sprite: Clothing/OuterClothing/Coats/submariner.rsi + +- type: entity + parent: [ClothingOuterFoldableBaseOpened, ClothingOuterCoatSubmariner] + id: ClothingOuterCoatSubmarinerOpened + name: submariner coat diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/misc.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/misc.yml index ed764485727..ae954a293bd 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/misc.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/misc.yml @@ -444,3 +444,170 @@ # - type: GuideHelp # guides: # - Shadowkin + +- type: entity + parent: ClothingOuterStorageFoldableBase + id: ClothingOuterSuitJacket + name: suit jacket + description: A snappy dress jacket. + components: + - type: Sprite + sprite: Clothing/OuterClothing/Misc/suit_jacket.rsi + - type: Clothing + sprite: 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: Clothing/OuterClothing/Misc/cardigan.rsi + - type: Clothing + sprite: 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: Clothing/OuterClothing/Misc/cardigan_sweater.rsi + - type: Clothing + sprite: 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. + components: + - type: Sprite + sprite: Clothing/OuterClothing/Misc/cardigan_argyle.rsi + - type: Clothing + sprite: 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: Clothing/OuterClothing/Misc/cardigan_slim.rsi + - type: Clothing + sprite: 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: Clothing/OuterClothing/Misc/cowboy_duster.rsi + - type: Clothing + sprite: 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: Clothing/OuterClothing/Misc/blazer.rsi + - type: Clothing + sprite: 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: Clothing/OuterClothing/Misc/blazer_long.rsi + - type: Clothing + sprite: 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: Clothing/OuterClothing/Misc/blazer_formal.rsi + - type: Clothing + sprite: 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: Clothing/OuterClothing/Misc/blazer_loose_sleeve.rsi + - type: Clothing + sprite: 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: Clothing/OuterClothing/Misc/blazer_flat_collar.rsi + - type: Clothing + sprite: 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: Clothing/OuterClothing/Misc/blazer_posh.rsi + - type: Clothing + sprite: Clothing/OuterClothing/Misc/blazer_posh.rsi diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/vests.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/vests.yml index 9359bb0ce3e..55bab2487e5 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/vests.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/vests.yml @@ -119,4 +119,26 @@ - type: Sprite sprite: Clothing/OuterClothing/Vests/vest_orion.rsi - type: Clothing - sprite: Clothing/OuterClothing/Vests/vest_orion.rsi \ No newline at end of file + sprite: Clothing/OuterClothing/Vests/vest_orion.rsi + +- type: entity + parent: ClothingOuterBase + id: ClothingOuterVestColorable + name: vest + description: You have a vested interest in looking good, and this vest is the vest choice to achieve that! + components: + - type: Sprite + sprite: Clothing/OuterClothing/Vests/vest_colorable.rsi + - type: Clothing + sprite: Clothing/OuterClothing/Vests/vest_colorable.rsi + +- type: entity + parent: ClothingOuterFoldableBase + id: ClothingOuterVestThick + name: thick vest + description: A vest made of synthetic leather. + components: + - type: Sprite + sprite: Clothing/OuterClothing/Vests/vest_thick.rsi + - type: Clothing + sprite: Clothing/OuterClothing/Vests/vest_thick.rsi diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/boots.yml b/Resources/Prototypes/Entities/Clothing/Shoes/boots.yml index 01576a1f932..78adf7cadba 100644 --- a/Resources/Prototypes/Entities/Clothing/Shoes/boots.yml +++ b/Resources/Prototypes/Entities/Clothing/Shoes/boots.yml @@ -10,6 +10,17 @@ sprite: Clothing/Shoes/Boots/workboots.rsi - type: Matchbox +- type: entity + parent: ClothingShoesBaseButcherable + id: ClothingShoesBootsWorkColor + name: workboots + description: Lace-up work boots for the especially blue-collar. In a variety of colors! + components: + - type: Sprite + sprite: Clothing/Shoes/Boots/workboots_color.rsi + - type: Clothing + sprite: Clothing/Shoes/Boots/workboots_color.rsi + - type: entity parent: ClothingShoesMilitaryBase id: ClothingShoesBootsJack @@ -34,6 +45,17 @@ - type: Clothing sprite: Clothing/Shoes/Boots/jackboots.rsi +- type: entity + parent: ClothingShoesMilitaryBase + id: ClothingShoesBootsJackColor + name: fashion jackboots + description: Civilian-grade replica of Nanotrasen Security combat boots, impractical but fashionable. + components: + - type: Sprite + sprite: Clothing/Shoes/Boots/jackboots_color.rsi + - type: Clothing + sprite: Clothing/Shoes/Boots/jackboots_color.rsi + - type: entity parent: ClothingShoesBaseButcherable id: ClothingShoesBootsSalvage @@ -84,6 +106,14 @@ sprite: Clothing/Shoes/Boots/highheelboots.rsi - type: Clothing sprite: Clothing/Shoes/Boots/highheelboots.rsi + - type: HideLayerClothing + force: true + slots: + - LFoot + - RFoot + - type: FootstepModifier + footstepSoundCollection: + collection: FootstepHighHeels - type: entity parent: ClothingShoesMilitaryBase @@ -249,3 +279,58 @@ sprite: Clothing/Shoes/Boots/cowboybootsfancy.rsi - type: Clothing sprite: Clothing/Shoes/Boots/cowboybootsfancy.rsi + +- type: entity + parent: ClothingShoesBaseButcherable + id: ClothingShoesBootsAnkle + name: ankle boots + description: A pair of low-heeled boots, if you need inclosed shoes. + components: + - type: Sprite + sprite: Clothing/Shoes/Boots/ankleboots.rsi + - type: Clothing + sprite: Clothing/Shoes/Boots/ankleboots.rsi + +- type: entity + parent: ClothingShoesBaseButcherable + id: ClothingShoesBootsFull + name: full-length boots + description: A pair of boots that cover the entire leg. + components: + - type: Sprite + sprite: Clothing/Shoes/Boots/fullboots.rsi + - type: Clothing + sprite: Clothing/Shoes/Boots/fullboots.rsi + +- type: entity + parent: ClothingShoesBaseButcherable + id: ClothingShoesBootsMud + name: mudboots + description: A nice pair of weatherproof mudboots to keep your feet dry. + components: + - type: Sprite + sprite: Clothing/Shoes/Boots/mudboots.rsi + - type: Clothing + sprite: Clothing/Shoes/Boots/mudboots.rsi + +- type: entity + parent: ClothingShoesBaseButcherable + id: ClothingShoesBootsMudThigh + name: thigh-high mudboots + description: A nice pair of weatherproof mudboots to keep your legs dry. + components: + - type: Sprite + sprite: Clothing/Shoes/Boots/thighmudboots.rsi + - type: Clothing + sprite: Clothing/Shoes/Boots/thighmudboots.rsi + +- type: entity + parent: ClothingShoesBaseButcherable + id: ClothingShoesBootsThigh + name: thigh-high boots + description: A pair of casual boots that reach up to the thighs. + components: + - type: Sprite + sprite: Clothing/Shoes/Boots/thighboots.rsi + - type: Clothing + sprite: Clothing/Shoes/Boots/thighboots.rsi diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/misc.yml b/Resources/Prototypes/Entities/Clothing/Shoes/misc.yml index fae87172238..cda7fe5e419 100644 --- a/Resources/Prototypes/Entities/Clothing/Shoes/misc.yml +++ b/Resources/Prototypes/Entities/Clothing/Shoes/misc.yml @@ -149,3 +149,98 @@ price: 75 - type: Tag tags: [ ] + +- type: entity + parent: ClothingShoesBaseButcherable + id: ClothingShoesHighHeels + name: high heels + description: These heels help you sashay into the station like it's a catwalk. + components: + - type: Sprite + sprite: Clothing/Shoes/Misc/high_heels.rsi + - type: Clothing + sprite: Clothing/Shoes/Misc/high_heels.rsi + - type: HideLayerClothing + force: true + slots: + - LFoot + - RFoot + - type: FootstepModifier + footstepSoundCollection: + collection: FootstepHighHeels + +- type: entity + parent: ClothingShoesBaseButcherable + id: ClothingShoesHighHeelsLong + name: long high heels + description: Slay the house down boots! + components: + - type: Sprite + sprite: Clothing/Shoes/Misc/long_high_heels.rsi + - type: Clothing + sprite: Clothing/Shoes/Misc/long_high_heels.rsi + - type: HideLayerClothing + force: true + slots: + - LFoot + - RFoot + - type: FootstepModifier + footstepSoundCollection: + collection: FootstepHighHeels + +- type: entity + parent: ClothingShoesBaseButcherable + id: ClothingShoesFlats + name: flats + description: Fashionable and comfortable flats. + components: + - type: Sprite + sprite: Clothing/Shoes/Misc/flats.rsi + - type: Clothing + sprite: Clothing/Shoes/Misc/flats.rsi + - type: FootstepModifier + footstepSoundCollection: + collection: FootstepHighHeels + +- type: entity + parent: ClothingShoesBaseButcherable + id: ClothingShoesSkater + name: skater shoes + description: A pair of wide shoes with thick soles. Designed for skating. + components: + - type: Sprite + sprite: Clothing/Shoes/Misc/skater.rsi + - type: Clothing + sprite: Clothing/Shoes/Misc/skater.rsi + +- type: entity + parent: ClothingShoesBaseButcherable + id: ClothingShoesSandals + name: sandals + description: A pair of simple but stylish sandals. + components: + - type: Sprite + sprite: Clothing/Shoes/Sandals/sandals.rsi + - type: Clothing + sprite: Clothing/Shoes/Sandals/sandals.rsi + +- type: entity + parent: ClothingShoesBaseButcherable + id: ClothingShoesSandalsFlipFlops + name: flip flops + description: A pair of flip flops. For those not afraid to show a little ankle. + components: + - type: Sprite + sprite: Clothing/Shoes/Sandals/flipflops.rsi + - type: Clothing + sprite: Clothing/Shoes/Sandals/flipflops.rsi + +- type: entity + parent: ClothingShoesSandalsFlipFlops + id: ClothingShoesSandalsFlipFlopsAlt + description: A pair of flip flops. The strap colors are lighter than the usual flip flops. + components: + - type: Sprite + sprite: Clothing/Shoes/Sandals/flipflops_alt.rsi + - type: Clothing + sprite: Clothing/Shoes/Sandals/flipflops_alt.rsi diff --git a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpskirts.yml b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpskirts.yml index 7f6d59c9a49..0ee80b4b369 100644 --- a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpskirts.yml +++ b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpskirts.yml @@ -850,3 +850,530 @@ sprite: Clothing/Uniforms/Jumpskirt/olddress.rsi - type: Clothing sprite: Clothing/Uniforms/Jumpskirt/olddress.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtDressAsymmetric + name: asymmetric dress + description: This dress forced the mothermatter to deyassinate in slaygineering. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/asymmetric_dress.rsi + - type: Clothing + sprite: 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: Clothing/Uniforms/Jumpskirt/evening_gown.rsi + - type: Clothing + sprite: 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: Clothing/Uniforms/Jumpskirt/midi_dress.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/midi_dress.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtDressOpenShoulder + name: open-shoulder dress + description: No sleeves in this dress, only style fierce enough to snatch wigs. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/openshoulder_dress.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/openshoulder_dress.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtDressTea + name: tea-length dress + description: Perfect for tea time! + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/tea_dress.rsi + - type: Clothing + sprite: 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: Clothing/Uniforms/Jumpskirt/sleeveless_dress.rsi + - type: Clothing + sprite: 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: Clothing/Uniforms/Jumpskirt/longsleeve_dress.rsi + - type: Clothing + sprite: 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: Clothing/Uniforms/Jumpskirt/black_and_gold.rsi + - type: Clothing + sprite: 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: Clothing/Uniforms/Jumpskirt/black_tango.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/black_tango.rsi + +- type: entity + parent: ClothingUniformJumpskirtDressBlackTango + id: ClothingUniformJumpskirtDressBlackTangoAlt + suffix: alternative + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/black_tango_alt.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/black_tango_alt.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: Clothing/Uniforms/Jumpskirt/cheongsamblue.rsi + - type: Clothing + sprite: 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: Clothing/Uniforms/Jumpskirt/cheongsamgreen.rsi + - type: Clothing + sprite: 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: Clothing/Uniforms/Jumpskirt/cheongsampurple.rsi + - type: Clothing + sprite: 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: Clothing/Uniforms/Jumpskirt/cheongsamred.rsi + - type: Clothing + sprite: 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: Clothing/Uniforms/Jumpskirt/cheongsamwhite.rsi + - type: Clothing + sprite: 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: Clothing/Uniforms/Jumpskirt/blue_blazer.rsi + - type: Clothing + sprite: 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: Clothing/Uniforms/Jumpskirt/blue_sundress.rsi + - type: Clothing + sprite: 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: Clothing/Uniforms/Jumpskirt/club_dress.rsi + - type: Clothing + sprite: 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: Clothing/Uniforms/Jumpskirt/coveter.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/coveter.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtDressFlamenco + name: flamenco dress + description: A Mexican flamenco dress. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/flamenco.rsi + - type: Clothing + sprite: 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: Clothing/Uniforms/Jumpskirt/dress_fire.rsi + - type: Clothing + sprite: 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: Clothing/Uniforms/Jumpskirt/dress_orange.rsi + - type: Clothing + sprite: 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: Clothing/Uniforms/Jumpskirt/dress_yellow.rsi + - type: Clothing + sprite: 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: Clothing/Uniforms/Jumpskirt/flowergirl.rsi + - type: Clothing + sprite: 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: Clothing/Uniforms/Jumpskirt/fluffy.rsi + - type: Clothing + sprite: 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: Clothing/Uniforms/Jumpskirt/formalred.rsi + - type: Clothing + sprite: 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: Clothing/Uniforms/Jumpskirt/gothic.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/gothic.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtKimonoColor + name: kimono + description: A traditional Japanese kimono. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/kimono_color.rsi + - type: Clothing + sprite: 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: Clothing/Uniforms/Jumpskirt/lacy_gown.rsi + - type: Clothing + sprite: 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: Clothing/Uniforms/Jumpskirt/long_dress.rsi + - type: Clothing + sprite: 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: Clothing/Uniforms/Jumpskirt/long_flared_dress.rsi + - type: Clothing + sprite: 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: Clothing/Uniforms/Jumpskirt/qipao.rsi + - type: Clothing + sprite: 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: Clothing/Uniforms/Jumpskirt/qipao_slim.rsi + - type: Clothing + sprite: 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: Clothing/Uniforms/Jumpskirt/red_swept_dress.rsi + - type: Clothing + sprite: 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: Clothing/Uniforms/Jumpskirt/skirt_pencil_gym_bra.rsi + - type: Clothing + sprite: 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: Clothing/Uniforms/Jumpskirt/puffydress.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/puffydress.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtSailor + name: sailor dress + description: Formal wear for the leader. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/sailor_dress.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/sailor_dress.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtDressSariGreen + name: green sari + description: A colorful red traditional dress originating from India. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/sari_green.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/sari_green.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtDressSariRed + name: red sari + description: A colorful red traditional dress originating from India. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/sari_red.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/sari_red.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtDressShort + name: short dress + description: A short, plain dress. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/short_dress.rsi + - type: Clothing + sprite: 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: Clothing/Uniforms/Jumpskirt/spider.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/spider.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtDressStriped + name: striped dress + description: Fashion in space. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/striped_dress.rsi + - type: Clothing + sprite: 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: Clothing/Uniforms/Jumpskirt/sundress.rsi + - type: Clothing + sprite: 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: Clothing/Uniforms/Jumpskirt/sundress_white.rsi + - type: Clothing + sprite: 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: Clothing/Uniforms/Jumpskirt/victorian_black_dress.rsi + - type: Clothing + sprite: 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: Clothing/Uniforms/Jumpskirt/victorian_red_dress.rsi + - type: Clothing + sprite: 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: Clothing/Uniforms/Jumpskirt/waitress.rsi + - type: Clothing + sprite: 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: Clothing/Uniforms/Jumpskirt/yellowswoop.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/yellowswoop.rsi diff --git a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml index 3ada362ce0b..3a2be51e6d7 100644 --- a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml +++ b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml @@ -1565,3 +1565,389 @@ sprite: Clothing/Uniforms/Jumpsuit/familiar_garbs.rsi - type: Clothing sprite: Clothing/Uniforms/Jumpsuit/familiar_garbs.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitSuitAmish + name: amish suit + description: It's a very Amish-looking suit. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/amish_suit.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/amish_suit.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitSuitAristocratic + name: aristocratic suit + description: A dapper-looking suit with blue accents that make you feel like an aristocrat. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/aristocratic_suit.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/aristocratic_suit.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitSuitAristocraticTuxedo + name: aristocratic tuxedo + description: You can almost smell the spesos this was sewn from. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/aristocratic_tuxedo.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/aristocratic_tuxedo.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitAscetic + name: plain ascetic garb + description: A rather plain-looking uniform. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/ascetic.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/ascetic.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitBarber + name: barber jumpsuit + description: Makes you want to cut hair. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/barber.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/barber.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: Clothing/Uniforms/Jumpsuit/blue_blazer.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/blue_blazer.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitDisheveled + name: disheveled suit + description: What might pass as well-maintained formal attire, if you're blind. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/disheveled.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/disheveled.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitSuitRegal + name: regal suit + description: An elegant red suit with yellow accents. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/regal_suit.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/regal_suit.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitSuitRegalTuxedo + name: regal tuxedo + description: An elegant dapper suit with a red coat. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/regal_tuxedo.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/regal_tuxedo.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: Clothing/Uniforms/Jumpsuit/rippedpunk.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/rippedpunk.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitSailor + name: sailor suit + description: Popular in the Submarine station. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/sailor.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/sailor.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitSuitStriped + name: striped suit + description: A red and white striped ensemble with dark suspenders. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/striped_suit.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/striped_suit.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitTrackpants + name: track pants + description: A plain t-shirt and track pants. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/trackpants.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/trackpants.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitTurtleneckGrey + name: grey turtleneck + description: A warm looking sweater and a pair of dark blue slacks. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/turtleneck_grey.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/turtleneck_grey.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitSuitVictorianRedBlack + name: red and black victorian suit + description: A Victorian-style suit, fancy! + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/victorian_red_black.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/victorian_red_black.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitSuitVictorianRedVest + name: red victorian suit + description: A Victorian-style suit, fancy! + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/victorian_red_vest.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/victorian_red_vest.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitSuitVictorianVest + name: victorian suit + description: A Victorian-style suit, fancy! + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/victorian_vest.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/victorian_vest.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitWaiter + name: waiter's outfit + description: Waiter! Waiter! More serves with that outfit please! + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/waiter.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/waiter.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: Clothing/Uniforms/Jumpsuit/yoga_gym_bra.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/yoga_gym_bra.rsi + +# Nuclear 14 outfits +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitSuitRolledSleeves + name: rolled sleeves suit + description: A dapper suit with a vest and a red tie, sleeves rolled up to show your forearms. + components: + - type: Sprite + sprite: _Nuclear14/Clothing/Uniforms/FalloutSuits/detectivealt.rsi + - type: Clothing + sprite: _Nuclear14/Clothing/Uniforms/FalloutSuits/detectivealt.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitBartenderGrey + name: grey bartender's uniform + description: A nice and tidy grey uniform. Shame about the bar, though. + components: + - type: Sprite + sprite: _Nuclear14/Clothing/Uniforms/FalloutSuits/bartenderalt.rsi + - type: Clothing + sprite: _Nuclear14/Clothing/Uniforms/FalloutSuits/bartenderalt.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitCheckered + name: checkered suit + description: The game was rigged from the start. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/checkered.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/checkered.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitFlannelOveralls + name: flannel overalls + description: Oh, I'm goin' down this road feelin' bad... Lord, I'm goin' down this road feelin' bad... + components: + - type: Sprite + sprite: _Nuclear14/Clothing/Uniforms/FalloutSuits/caravaneer.rsi + - type: Clothing + sprite: _Nuclear14/Clothing/Uniforms/FalloutSuits/caravaneer.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitCowboyBrown + name: brown cowboy outfit + description: Yeehaw, partner! + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/cowboybrown.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/cowboybrown.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitCowboyGrey + name: grey cowboy outfit + description: Yeehaw, partner! + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/cowboygrey.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/cowboygrey.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitCamouflageShirt + name: camouflage shirt + description: A long-sleeve camouflage shirt paired with a classic pair of jeans. + components: + - type: Sprite + sprite: _Nuclear14/Clothing/Uniforms/FalloutSuits/fudd.rsi + - type: Clothing + sprite: _Nuclear14/Clothing/Uniforms/FalloutSuits/fudd.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: Clothing/Uniforms/Jumpsuit/olive_sweater.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/olive_sweater.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitDesertUniform + name: desert uniform + description: A replica of vintage Solarian combat uniforms, for LARPing purposes. + components: + - type: Sprite + sprite: _Nuclear14/Clothing/Uniforms/FalloutSuits/desertbdu.rsi + - type: Clothing + sprite: _Nuclear14/Clothing/Uniforms/FalloutSuits/desertbdu.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitLumberjack + name: lumberjack overalls + description: Overalls that make you look like a lumberjack. + components: + - type: Sprite + sprite: _Nuclear14/Clothing/Uniforms/FalloutSuits/lumberjack.rsi + - type: Clothing + sprite: _Nuclear14/Clothing/Uniforms/FalloutSuits/lumberjack.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitLightBlueShirt + name: light blue shirt + description: A light blue shirt with pale khakis, lightweight and comfy. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/lightblue_shirt.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/lightblue_shirt.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitGreyShirt + name: grey shirt and olive pants + description: Sometimes all you need is a tried but true combo, grey and olive. + components: + - type: Sprite + sprite: _Nuclear14/Clothing/Uniforms/FalloutSuits/rangerv3.rsi + - type: Clothing + sprite: _Nuclear14/Clothing/Uniforms/FalloutSuits/rangerv3.rsi + +- 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: Clothing/Uniforms/Jumpsuit/flannel_jeans.rsi + - type: Clothing + sprite: 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: Clothing/Uniforms/Jumpsuit/black_flannel_jeans.rsi + - type: Clothing + sprite: 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: Clothing/Uniforms/Jumpsuit/flannel_khakis.rsi + - type: Clothing + sprite: 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: Clothing/Uniforms/Jumpsuit/black_flannel_khakis.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/black_flannel_khakis.rsi diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml index 042a74c32df..bbf0c7bea53 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml @@ -1329,6 +1329,8 @@ - map: [ "gloves" ] - map: [ "shoes" ] - map: [ "ears" ] + - map: [ "innerBelt" ] # Einstein Engines + - map: [ "innerNeck" ] # Einstein Engines - map: [ "outerClothing" ] - map: [ "eyes" ] - map: [ "belt" ] diff --git a/Resources/Prototypes/Entities/Mobs/Player/silicon_base.yml b/Resources/Prototypes/Entities/Mobs/Player/silicon_base.yml index b8de17a55fb..532c28b0116 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/silicon_base.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/silicon_base.yml @@ -121,6 +121,8 @@ - map: ["gloves"] - map: ["shoes"] - map: ["ears"] + - map: ["innerBelt"] + - map: ["innerNeck"] - map: ["outerClothing"] - map: ["eyes"] - map: ["belt"] diff --git a/Resources/Prototypes/Entities/Mobs/Species/arachne.yml b/Resources/Prototypes/Entities/Mobs/Species/arachne.yml index 2aa1a381bfc..60ccad417d8 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/arachne.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/arachne.yml @@ -62,6 +62,8 @@ - map: [ "gloves" ] - map: [ "shoes" ] - map: [ "ears" ] + - map: [ "innerBelt" ] + - map: [ "innerNeck" ] - map: [ "outerClothing" ] - map: [ "eyes" ] - map: [ "belt" ] @@ -208,6 +210,8 @@ - map: [ "gloves" ] - map: [ "shoes" ] - map: [ "ears" ] + - map: [ "innerBelt" ] + - map: [ "innerNeck" ] - map: [ "outerClothing" ] - map: [ "eyes" ] - map: [ "belt" ] diff --git a/Resources/Prototypes/Entities/Mobs/Species/arachnid.yml b/Resources/Prototypes/Entities/Mobs/Species/arachnid.yml index 3a4e1791fbd..7c779ad57ce 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/arachnid.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/arachnid.yml @@ -104,6 +104,8 @@ - map: [ "gloves" ] - map: [ "shoes" ] - map: [ "ears" ] + - map: [ "innerBelt" ] + - map: [ "innerNeck" ] - map: [ "outerClothing" ] - map: [ "eyes" ] - map: [ "belt" ] diff --git a/Resources/Prototypes/Entities/Mobs/Species/base.yml b/Resources/Prototypes/Entities/Mobs/Species/base.yml index 7bb0e162769..38e5763ecd1 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/base.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/base.yml @@ -37,6 +37,8 @@ - map: [ "gloves" ] - map: [ "shoes" ] - map: [ "ears" ] + - map: [ "innerBelt" ] + - map: [ "innerNeck" ] - map: [ "outerClothing" ] - map: [ "eyes" ] - map: [ "belt" ] @@ -376,6 +378,8 @@ - map: [ "gloves" ] - map: [ "shoes" ] - map: [ "ears" ] + - map: [ "innerBelt" ] + - map: [ "innerNeck" ] - map: [ "outerClothing" ] - map: [ "eyes" ] - map: [ "belt" ] diff --git a/Resources/Prototypes/Entities/Mobs/Species/harpy.yml b/Resources/Prototypes/Entities/Mobs/Species/harpy.yml index f48fb560e10..42d94b2b782 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/harpy.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/harpy.yml @@ -34,6 +34,8 @@ - map: [ "id" ] - map: [ "gloves" ] - map: [ "ears" ] + - map: [ "innerBelt" ] + - map: [ "innerNeck" ] - map: [ "outerClothing" ] - map: [ "eyes" ] - map: [ "belt" ] @@ -163,6 +165,8 @@ - map: [ "id" ] - map: [ "gloves" ] - map: [ "ears" ] + - map: [ "innerBelt" ] + - map: [ "innerNeck" ] - map: [ "outerClothing" ] - map: [ "eyes" ] - map: [ "belt" ] diff --git a/Resources/Prototypes/Entities/Mobs/Species/moth.yml b/Resources/Prototypes/Entities/Mobs/Species/moth.yml index 6d0c1182e9b..721724460cb 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/moth.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/moth.yml @@ -104,6 +104,8 @@ - map: [ "gloves" ] - map: [ "shoes" ] - map: [ "ears" ] + - map: [ "innerBelt" ] + - map: [ "innerNeck" ] - map: [ "outerClothing" ] - map: [ "eyes" ] - map: [ "belt" ] diff --git a/Resources/Prototypes/Entities/Mobs/Species/shadowkin.yml b/Resources/Prototypes/Entities/Mobs/Species/shadowkin.yml index 70b745816c9..b76e29d8e35 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/shadowkin.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/shadowkin.yml @@ -184,6 +184,8 @@ - map: ["gloves"] - map: ["shoes"] - map: ["ears"] + - map: ["innerBelt"] + - map: ["innerNeck"] - map: ["outerClothing"] - map: ["eyes"] - map: ["belt"] @@ -296,6 +298,8 @@ - map: ["gloves"] - map: ["shoes"] - map: ["ears"] + - map: ["innerBelt"] + - map: ["innerNeck"] - map: ["outerClothing"] - map: ["eyes"] - map: ["belt"] diff --git a/Resources/Prototypes/Entities/Mobs/Species/vox.yml b/Resources/Prototypes/Entities/Mobs/Species/vox.yml index a26cf9f0616..30ac9dd4886 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/vox.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/vox.yml @@ -78,6 +78,8 @@ - map: [ "gloves" ] - map: [ "shoes" ] - map: [ "ears" ] + - map: [ "innerBelt" ] + - map: [ "innerNeck" ] - map: [ "outerClothing" ] - map: [ "eyes" ] - map: [ "belt" ] diff --git a/Resources/Prototypes/Loadouts/Categories/categories.yml b/Resources/Prototypes/Loadouts/Categories/categories.yml index 4b0f33b17ff..d9a9dc56b57 100644 --- a/Resources/Prototypes/Loadouts/Categories/categories.yml +++ b/Resources/Prototypes/Loadouts/Categories/categories.yml @@ -301,6 +301,10 @@ id: Outer root: true +- type: loadoutCategory + id: Belt + root: true + - type: loadoutCategory id: Shoes root: true diff --git a/Resources/Prototypes/Loadouts/Generic/belt.yml b/Resources/Prototypes/Loadouts/Generic/belt.yml new file mode 100644 index 00000000000..09401b6774d --- /dev/null +++ b/Resources/Prototypes/Loadouts/Generic/belt.yml @@ -0,0 +1,83 @@ +- type: loadout + id: LoadoutBeltGeneric + category: Belt + cost: 0 + customColorTint: true + items: + - ClothingBeltGeneric + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBelt + +- type: loadout + id: LoadoutBeltGenericThin + category: Belt + cost: 0 + customColorTint: true + items: + - ClothingBeltGenericThin + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBelt + +- type: loadout + id: LoadoutBeltGenericThick + category: Belt + cost: 0 + customColorTint: true + items: + - ClothingBeltGenericThick + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBelt + +- type: loadout + id: LoadoutBeltWaist + category: Belt + cost: 0 + customColorTint: true + items: + - ClothingBeltWaist + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBelt + +- type: loadout + id: LoadoutBeltWaistThin + category: Belt + cost: 0 + customColorTint: true + items: + - ClothingBeltWaistThin + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBelt + +- type: loadout + id: LoadoutItemWaistbag + category: Belt + cost: 2 + items: + - ClothingBeltStorageWaistbag + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBelt + - !type:CharacterJobRequirement + inverted: true + jobs: + - Prisoner + +- type: loadout + id: LoadoutBeltWaistbagColor + category: Belt + cost: 2 + customColorTint: true + items: + - ClothingBeltStorageWaistbagColor + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBelt + - !type:CharacterJobRequirement + inverted: true + jobs: + - Prisoner diff --git a/Resources/Prototypes/Loadouts/Generic/eyes.yml b/Resources/Prototypes/Loadouts/Generic/eyes.yml index b48f825528e..245e0c82895 100644 --- a/Resources/Prototypes/Loadouts/Generic/eyes.yml +++ b/Resources/Prototypes/Loadouts/Generic/eyes.yml @@ -9,6 +9,30 @@ - !type:CharacterItemGroupRequirement group: LoadoutEyes +- type: loadout + id: LoadoutEyesEyepatchColor + category: Eyes + cost: 0 + canBeHeirloom: true + customColorTint: true + items: + - ClothingEyesEyepatchColor + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutEyes + +- type: loadout + id: LoadoutEyesEyepatchColorFlipped + category: Eyes + cost: 0 + canBeHeirloom: true + customColorTint: true + items: + - ClothingEyesEyepatchColorFlipped + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutEyes + - type: loadout id: LoadoutEyesGlasses category: Eyes @@ -32,6 +56,53 @@ - !type:CharacterItemGroupRequirement group: LoadoutEyes +- type: loadout + id: LoadoutEyesGlasses3D + category: Eyes + cost: 1 + exclusive: true + items: + - ClothingEyesGlasses3D + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutEyes + +- type: loadout + id: LoadoutEyesGlassesHipster + category: Eyes + cost: 0 + exclusive: true + customColorTint: true + items: + - ClothingEyesGlassesHipster + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutEyes + +- type: loadout + id: LoadoutEyesGlassesMonocle + category: Eyes + cost: 1 + exclusive: true + customColorTint: true + items: + - ClothingEyesGlassesMonocle + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutEyes + +- type: loadout + id: LoadoutEyesGlassesPanto + category: Eyes + cost: 0 + exclusive: true + customColorTint: true + items: + - ClothingEyesGlassesPanto + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutEyes + - type: loadout id: LoadoutEyesGlassesJensen category: Eyes @@ -53,6 +124,17 @@ - !type:CharacterItemGroupRequirement group: LoadoutEyes +- type: loadout + id: LoadoutEyesBlindfoldColor + category: Eyes + cost: 0 + customColorTint: true + items: + - ClothingEyesBlindfoldColor + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutEyes + - type: loadout id: LoadoutItemCheapSunglasses category: Eyes @@ -64,6 +146,40 @@ - !type:CharacterItemGroupRequirement group: LoadoutEyes +- type: loadout + id: LoadoutEyesGlassesCheapSunglassesAviator + category: Eyes + cost: 1 + exclusive: true + customColorTint: true + items: + - ClothingEyesGlassesCheapSunglassesAviator + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutEyes + +- type: loadout + id: LoadoutEyesGlassesCheapSunglassesBig + category: Eyes + cost: 1 + exclusive: true + items: + - ClothingEyesGlassesCheapSunglassesBig + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutEyes + +- type: loadout + id: LoadoutEyesGlassesCheapSunglassesVisor + category: Eyes + cost: 1 + exclusive: true + items: + - ClothingEyesGlassesCheapSunglassesVisor + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutEyes + - type: loadout id: LoadoutItemSunglasses category: Eyes @@ -75,6 +191,40 @@ - !type:CharacterItemGroupRequirement group: LoadoutEyes +- type: loadout + id: LoadoutEyesGlassesSunglassesAviator + category: Eyes + cost: 3 + exclusive: true + customColorTint: true + items: + - ClothingEyesGlassesSunglassesAviator + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutEyes + +- type: loadout + id: LoadoutEyesGlassesSunglassesBig + category: Eyes + cost: 3 + exclusive: true + items: + - ClothingEyesGlassesSunglassesBig + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutEyes + +- type: loadout + id: LoadoutEyesGlassesSunglassesVisor + category: Eyes + cost: 3 + exclusive: true + items: + - ClothingEyesGlassesSunglassesVisor + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutEyes + - type: loadout id: LoadoutItemBlindfoldFake category: Eyes @@ -85,3 +235,14 @@ requirements: - !type:CharacterItemGroupRequirement group: LoadoutEyes + +- type: loadout + id: LoadoutEyesBlindfoldFakeColor + category: Eyes + cost: 0 + customColorTint: true + items: + - ClothingEyesBlindfoldFakeColor + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutEyes diff --git a/Resources/Prototypes/Loadouts/Generic/hands.yml b/Resources/Prototypes/Loadouts/Generic/hands.yml index 2a35910a17c..af5559ee3b8 100644 --- a/Resources/Prototypes/Loadouts/Generic/hands.yml +++ b/Resources/Prototypes/Loadouts/Generic/hands.yml @@ -71,3 +71,15 @@ requirements: - !type:CharacterItemGroupRequirement group: LoadoutGloves + +- type: loadout + id: LoadoutHandsGlovesEvening + category: Hands + cost: 0 + exclusive: true + customColorTint: true + items: + - ClothingHandsGlovesEvening + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutGloves diff --git a/Resources/Prototypes/Loadouts/Generic/head.yml b/Resources/Prototypes/Loadouts/Generic/head.yml index 3efef2fac4a..1e1f2fb4c8f 100644 --- a/Resources/Prototypes/Loadouts/Generic/head.yml +++ b/Resources/Prototypes/Loadouts/Generic/head.yml @@ -298,6 +298,103 @@ - !type:CharacterItemGroupRequirement group: LoadoutHead +- type: loadout + id: LoadoutHeadBeretArtist + category: Head + cost: 1 + exclusive: true + customColorTint: true + items: + - ClothingHeadHatBeretArtist + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutHead + +- type: loadout + id: LoadoutHeadBeretPeaked + category: Head + cost: 1 + exclusive: true + customColorTint: true + items: + - ClothingHeadHatBeretPeaked + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutHead + +# Beanies +- type: loadout + id: LoadoutHeadBeanie + category: Head + cost: 1 + exclusive: true + customColorTint: true + items: + - ClothingHeadHatBeanie + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutHead + +- type: loadout + id: LoadoutHeadBeanieWinter + category: Head + cost: 1 + exclusive: true + customColorTint: true + items: + - ClothingHeadHatBeanieWinter + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutHead + +- type: loadout + id: LoadoutHeadBeanieSubmariner + category: Head + cost: 1 + exclusive: true + customColorTint: true + items: + - ClothingHeadHatBeanieSubmariner + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutHead + +- type: loadout + id: LoadoutHeadBeanieTight + category: Head + cost: 1 + exclusive: true + customColorTint: true + items: + - ClothingHeadHatBeanieTight + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutHead + +- type: loadout + id: LoadoutHeadSlouch + category: Head + cost: 1 + exclusive: true + customColorTint: true + items: + - ClothingHeadHatSlouch + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutHead + +- type: loadout + id: LoadoutHeadSunVisor + category: Head + cost: 1 + exclusive: true + customColorTint: true + items: + - ClothingHeadHatSunVisor + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutHead + - type: loadout id: LoadoutHeadHijabColorable category: Head @@ -333,3 +430,122 @@ requirements: - !type:CharacterItemGroupRequirement group: LoadoutHead + +- type: loadout + id: LoadoutHeadHeadBandBasic + category: Head + cost: 0 + exclusive: true + customColorTint: true + items: + - ClothingHeadHatHeadBandBasic + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutHead + +# Hair Accessories +- type: loadout + id: LoadoutHeadPin + category: Head + cost: 0 + exclusive: true + customColorTint: true + items: + - ClothingHeadHatPin + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutHead + +- type: loadout + id: LoadoutHeadPinClover + category: Head + cost: 0 + exclusive: true + customColorTint: true + items: + - ClothingHeadHatPinClover + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutHead + +- type: loadout + id: LoadoutHeadPinButterfly + category: Head + cost: 0 + exclusive: true + customColorTint: true + items: + - ClothingHeadHatPinButterfly + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutHead + +- type: loadout + id: LoadoutHeadPinMagnetic + category: Head + cost: 0 + exclusive: true + customColorTint: true + items: + - ClothingHeadHatPinMagnetic + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutHead + +- type: loadout + id: LoadoutHeadRibbon + category: Head + cost: 0 + exclusive: true + customColorTint: true + items: + - ClothingHeadHatRibbon + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutHead + +- type: loadout + id: LoadoutHeadBow + category: Head + cost: 0 + exclusive: true + customColorTint: true + items: + - ClothingHeadHatBow + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutHead + +- type: loadout + id: LoadoutHeadBowSmall + category: Head + cost: 0 + exclusive: true + customColorTint: true + items: + - ClothingHeadHatBowSmall + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutHead + +- type: loadout + id: LoadoutHeadHatBeanieGreen + category: Head + cost: 0 + exclusive: true + items: + - ClothingHeadHatBeanieGreen + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutHead + +- type: loadout + id: LoadoutHeadHatMountie + category: Head + cost: 0 + exclusive: true + items: + - ClothingHeadHatMountie + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutHead diff --git a/Resources/Prototypes/Loadouts/Generic/items.yml b/Resources/Prototypes/Loadouts/Generic/items.yml index 7bf737e2bc1..24d343c2395 100644 --- a/Resources/Prototypes/Loadouts/Generic/items.yml +++ b/Resources/Prototypes/Loadouts/Generic/items.yml @@ -688,18 +688,6 @@ items: - PersonalAI -- type: loadout - id: LoadoutItemWaistbag - category: Items - cost: 2 - items: - - ClothingBeltStorageWaistbag - requirements: - - !type:CharacterJobRequirement - inverted: true - jobs: - - Prisoner - - type: loadout id: LoadoutItemCrayonBox category: Items @@ -780,6 +768,7 @@ category: Items cost: 2 canBeHeirloom: true + customColorTint: true # Unethical hair dyes! items: - MobMousePet requirements: @@ -793,6 +782,7 @@ category: Items cost: 2 canBeHeirloom: true + customColorTint: true items: - MobHamsterPet requirements: @@ -806,6 +796,7 @@ category: Items cost: 2 canBeHeirloom: true + customColorTint: true items: - MobMothroachPet requirements: @@ -819,6 +810,7 @@ category: Items cost: 2 canBeHeirloom: true + customColorTint: true items: - MobCockroachPet requirements: diff --git a/Resources/Prototypes/Loadouts/Generic/neck.yml b/Resources/Prototypes/Loadouts/Generic/neck.yml index ca495208a67..9e0d34ebf5e 100644 --- a/Resources/Prototypes/Loadouts/Generic/neck.yml +++ b/Resources/Prototypes/Loadouts/Generic/neck.yml @@ -46,6 +46,19 @@ - !type:CharacterItemGroupRequirement group: LoadoutNeck +- type: loadout + id: LoadoutNeckDogtags + category: Neck + cost: 0 + exclusive: true + customColorTint: true + canBeHeirloom: true + items: + - ClothingNeckDogtags + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutNeck + # Scarves - type: loadout id: LoadoutNeckScarfStripedRed @@ -155,7 +168,59 @@ customColorTint: true canBeHeirloom: true items: - - ClothingNeckTieWhite + - ClothingNeckTieColor + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutNeck + +- type: loadout + id: LoadoutNeckTieShort + category: Neck + cost: 0 + exclusive: true + customColorTint: true + canBeHeirloom: true + items: + - ClothingNeckTieShort + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutNeck + +- type: loadout + id: LoadoutNeckTieBow + category: Neck + cost: 0 + exclusive: true + customColorTint: true + canBeHeirloom: true + items: + - ClothingNeckTieBow + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutNeck + +- type: loadout + id: LoadoutNeckTieBowTie + category: Neck + cost: 0 + exclusive: true + customColorTint: true + canBeHeirloom: true + items: + - ClothingNeckTieBowTie + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutNeck + +- type: loadout + id: LoadoutNeckTieRibbon + category: Neck + cost: 0 + exclusive: true + customColorTint: true + canBeHeirloom: true + items: + - ClothingNeckTieRibbon requirements: - !type:CharacterItemGroupRequirement group: LoadoutNeck @@ -166,6 +231,7 @@ category: Neck cost: 0 exclusive: true + canBeHeirloom: true items: - ClothingNeckLGBTPin requirements: @@ -177,6 +243,7 @@ category: Neck cost: 0 exclusive: true + canBeHeirloom: true items: - ClothingNeckAromanticPin requirements: @@ -188,6 +255,7 @@ category: Neck cost: 0 exclusive: true + canBeHeirloom: true items: - ClothingNeckAsexualPin requirements: @@ -199,6 +267,7 @@ category: Neck cost: 0 exclusive: true + canBeHeirloom: true items: - ClothingNeckBisexualPin requirements: @@ -210,6 +279,7 @@ category: Neck cost: 0 exclusive: true + canBeHeirloom: true items: - ClothingNeckGayPin requirements: @@ -221,6 +291,7 @@ category: Neck cost: 0 exclusive: true + canBeHeirloom: true items: - ClothingNeckIntersexPin requirements: @@ -232,6 +303,7 @@ category: Neck cost: 0 exclusive: true + canBeHeirloom: true items: - ClothingNeckLesbianPin requirements: @@ -243,6 +315,7 @@ category: Neck cost: 0 exclusive: true + canBeHeirloom: true items: - ClothingNeckNonBinaryPin requirements: @@ -254,6 +327,7 @@ category: Neck cost: 0 exclusive: true + canBeHeirloom: true items: - ClothingNeckPansexualPin requirements: @@ -265,6 +339,7 @@ category: Neck cost: 0 exclusive: true + canBeHeirloom: true items: - ClothingNeckTransPin requirements: @@ -437,3 +512,152 @@ inverted: true departments: - Command + +# Necklaces +- type: loadout + id: LoadoutNeckNecklaceStandard + category: Neck + cost: 0 + exclusive: true + customColorTint: true + canBeHeirloom: true + items: + - ClothingNeckNecklaceStandard + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutNeck + +- type: loadout + id: LoadoutNeckNecklaceLow + category: Neck + cost: 0 + exclusive: true + customColorTint: true + canBeHeirloom: true + items: + - ClothingNeckNecklaceLow + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutNeck + +- type: loadout + id: LoadoutNeckNecklaceRound + category: Neck + cost: 0 + exclusive: true + customColorTint: true + canBeHeirloom: true + items: + - ClothingNeckNecklaceRound + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutNeck + +- type: loadout + id: LoadoutNeckNecklaceSmall + category: Neck + cost: 0 + exclusive: true + customColorTint: true + canBeHeirloom: true + items: + - ClothingNeckNecklaceSmall + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutNeck + +- type: loadout + id: LoadoutNeckNecklaceGold + category: Neck + cost: 1 + exclusive: true + canBeHeirloom: true + items: + - ClothingNeckNecklaceGold + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutNeck + +- type: loadout + id: LoadoutNeckNecklaceSilver + category: Neck + cost: 1 + exclusive: true + canBeHeirloom: true + items: + - ClothingNeckNecklaceSilver + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutNeck + +- type: loadout + id: LoadoutNeckNecklaceChainGold + category: Neck + cost: 3 + exclusive: true + canBeHeirloom: true + items: + - ClothingNeckNecklaceChainGold + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutNeck + +- type: loadout + id: LoadoutNeckNecklaceChainSilver + category: Neck + cost: 3 + exclusive: true + canBeHeirloom: true + items: + - ClothingNeckNecklaceChainSilver + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutNeck + +- type: loadout + id: LoadoutNeckNecklacePendantGold + category: Neck + cost: 1 + exclusive: true + canBeHeirloom: true + items: + - ClothingNeckNecklacePendantGold + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutNeck + +- type: loadout + id: LoadoutNeckNecklacePendantGoldLarge + category: Neck + cost: 2 + exclusive: true + canBeHeirloom: true + items: + - ClothingNeckNecklacePendantGoldLarge + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutNeck + +- type: loadout + id: LoadoutNeckNecklacePendantSilver + category: Neck + cost: 1 + exclusive: true + canBeHeirloom: true + items: + - ClothingNeckNecklacePendantSilver + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutNeck + +- type: loadout + id: LoadoutNeckNecklacePendantSilverLarge + category: Neck + cost: 2 + exclusive: true + canBeHeirloom: true + items: + - ClothingNeckNecklacePendantSilverLarge + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutNeck diff --git a/Resources/Prototypes/Loadouts/Generic/outerClothing.yml b/Resources/Prototypes/Loadouts/Generic/outerClothing.yml index 029c90c8e32..049a8541b25 100644 --- a/Resources/Prototypes/Loadouts/Generic/outerClothing.yml +++ b/Resources/Prototypes/Loadouts/Generic/outerClothing.yml @@ -501,3 +501,341 @@ requirements: - !type:CharacterItemGroupRequirement group: LoadoutOuter + +- type: loadout + id: LoadoutOuterSuitJacket + category: Outer + cost: 0 + customColorTint: true + items: + - ClothingOuterSuitJacket + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutOuter + +- type: loadout + id: LoadoutOuterSuitJacketOpened + category: Outer + cost: 0 + customColorTint: true + items: + - ClothingOuterSuitJacketOpened + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutOuter + +- type: loadout + id: LoadoutOuterCoatModern + category: Outer + cost: 0 + customColorTint: true + items: + - ClothingOuterCoatModern + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutOuter + +- type: loadout + id: LoadoutOuterTailcoat + category: Outer + cost: 1 + customColorTint: true + items: + - ClothingOuterTailcoat + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutOuter + +- type: loadout + id: LoadoutOuterCoatVictorian + category: Outer + cost: 1 + items: + - ClothingOuterCoatVictorian + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutOuter + +- type: loadout + id: LoadoutOuterCoatVictorianRed + category: Outer + cost: 1 + items: + - ClothingOuterCoatVictorianRed + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutOuter + +- type: loadout + id: LoadoutOuterCardiganBasic + category: Outer + cost: 0 + customColorTint: true + items: + - ClothingOuterCardigan + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutOuter + +- type: loadout + id: LoadoutOuterCardiganBasicOpened + category: Outer + cost: 0 + customColorTint: true + items: + - ClothingOuterCardiganOpened + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutOuter + +- type: loadout + id: LoadoutOuterCardiganArgyle + category: Outer + cost: 0 + customColorTint: true + items: + - ClothingOuterCardiganArgyle + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutOuter + +- type: loadout + id: LoadoutOuterCardiganArgyleOpened + category: Outer + cost: 0 + customColorTint: true + items: + - ClothingOuterCardiganArgyleOpened + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutOuter + +- type: loadout + id: LoadoutOuterCardiganSweater + category: Outer + cost: 0 + customColorTint: true + items: + - ClothingOuterCardiganSweater + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutOuter + +- type: loadout + id: LoadoutOuterCardiganSweaterOpened + category: Outer + cost: 0 + customColorTint: true + items: + - ClothingOuterCardiganSweaterOpened + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutOuter + +- type: loadout + id: LoadoutOuterCardiganSlim + category: Outer + cost: 0 + customColorTint: true + items: + - ClothingOuterCardiganSlim + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutOuter + +- type: loadout + id: LoadoutOuterCardiganSlimOpened + category: Outer + cost: 0 + customColorTint: true + items: + - ClothingOuterCardiganSlimOpened + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutOuter + +- type: loadout + id: LoadoutOuterCowboyDuster + category: Outer + cost: 0 + customColorTint: true + items: + - ClothingOuterCowboyDuster + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutOuter + +- type: loadout + id: LoadoutOuterBlazerBasic + category: Outer + cost: 1 + customColorTint: true + items: + - ClothingOuterBlazer + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutOuter + +- type: loadout + id: LoadoutOuterBlazerBasicOpened + category: Outer + cost: 1 + customColorTint: true + items: + - ClothingOuterBlazerOpened + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutOuter + +- type: loadout + id: LoadoutOuterBlazerLong + category: Outer + cost: 1 + customColorTint: true + items: + - ClothingOuterBlazerLong + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutOuter + +- type: loadout + id: LoadoutOuterBlazerLongOpened + category: Outer + cost: 1 + customColorTint: true + items: + - ClothingOuterBlazerLongOpened + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutOuter + +- type: loadout + id: LoadoutOuterBlazerFormal + category: Outer + cost: 0 + customColorTint: true + items: + - ClothingOuterBlazerFormal + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutOuter + +- type: loadout + id: LoadoutOuterBlazerLooseSleeve + category: Outer + cost: 0 + customColorTint: true + items: + - ClothingOuterBlazerLooseSleeve + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutOuter + +- type: loadout + id: LoadoutOuterBlazerFlatCollar + category: Outer + cost: 0 + customColorTint: true + items: + - ClothingOuterBlazerFlatCollar + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutOuter + +- type: loadout + id: LoadoutOuterBlazerPosh + category: Outer + cost: 1 + items: + - ClothingOuterBlazerPosh + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutOuter + +- type: loadout + id: LoadoutOuterCoatPeacoat + category: Outer + cost: 1 + customColorTint: true + items: + - ClothingOuterCoatPeacoat + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutOuter + +- type: loadout + id: LoadoutOuterCoatPeacoatOpened + category: Outer + cost: 1 + customColorTint: true + items: + - ClothingOuterCoatPeacoatOpened + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutOuter + +- type: loadout + id: LoadoutOuterCoatAsymmetric + category: Outer + cost: 1 + customColorTint: true + items: + - ClothingOuterCoatAsymmetric + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutOuter + +- type: loadout + id: LoadoutOuterCoatAsymmetricOpened + category: Outer + cost: 1 + customColorTint: true + items: + - ClothingOuterCoatAsymmetricOpened + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutOuter + +- type: loadout + id: LoadoutOuterCoatSubmariner + category: Outer + cost: 0 + customColorTint: true + items: + - ClothingOuterCoatSubmariner + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutOuter + +- type: loadout + id: LoadoutOuterCoatSubmarinerOpened + category: Outer + cost: 0 + customColorTint: true + items: + - ClothingOuterCoatSubmarinerOpened + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutOuter + +- type: loadout + id: LoadoutOuterVestColorable + category: Outer + cost: 1 + customColorTint: true + items: + - ClothingOuterVestColorable + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutOuter + +- type: loadout + id: LoadoutOuterVestThick + category: Outer + cost: 1 + customColorTint: true + items: + - ClothingOuterVestThick + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutOuter diff --git a/Resources/Prototypes/Loadouts/Generic/satchels.yml b/Resources/Prototypes/Loadouts/Generic/satchels.yml index d3bcb7abd3f..c44d1a7b233 100644 --- a/Resources/Prototypes/Loadouts/Generic/satchels.yml +++ b/Resources/Prototypes/Loadouts/Generic/satchels.yml @@ -18,6 +18,8 @@ items: - ClothingBackpackSatchelLeather requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBackpacks - !type:CharacterJobRequirement inverted: true jobs: @@ -36,3 +38,35 @@ - !type:CharacterDepartmentRequirement departments: - Civilian + +- type: loadout + id: LoadoutBackpackSatchelPurse + category: Backpacks + cost: 0 + exclusive: true + customColorTint: true + items: + - ClothingBackpackSatchelPurse + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBackpacks + - !type:CharacterJobRequirement + inverted: true + jobs: + - Prisoner + +- type: loadout + id: LoadoutBackpackSatchelPurseFlipped + category: Backpacks + cost: 0 + exclusive: true + customColorTint: true + items: + - ClothingBackpackSatchelPurseFlipped + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBackpacks + - !type:CharacterJobRequirement + inverted: true + jobs: + - Prisoner diff --git a/Resources/Prototypes/Loadouts/Generic/shoes.yml b/Resources/Prototypes/Loadouts/Generic/shoes.yml index fb8487981bd..cf3cbfb074a 100644 --- a/Resources/Prototypes/Loadouts/Generic/shoes.yml +++ b/Resources/Prototypes/Loadouts/Generic/shoes.yml @@ -45,6 +45,18 @@ items: - ClothingShoesBootsWork +- type: loadout + id: LoadoutShoesBootsWorkColor + category: Shoes + cost: 1 + exclusive: true + customColorTint: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutShoes + items: + - ClothingShoesBootsWorkColor + - type: loadout id: LoadoutShoesBootsJackFake category: Shoes @@ -56,6 +68,18 @@ items: - ClothingShoesBootsJackFake +- type: loadout + id: LoadoutShoesBootsJackColor + category: Shoes + cost: 1 + exclusive: true + customColorTint: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutShoes + items: + - ClothingShoesBootsJackColor + - type: loadout id: LoadoutShoesBootsLaceup category: Shoes @@ -115,6 +139,67 @@ items: - ClothingShoesBootsFishing +- type: loadout + id: LoadoutShoesBootsAnkle + category: Shoes + cost: 1 + exclusive: true + customColorTint: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutShoes + items: + - ClothingShoesBootsAnkle + +- type: loadout + id: LoadoutShoesBootsFull + category: Shoes + cost: 1 + exclusive: true + customColorTint: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutShoes + items: + - ClothingShoesBootsFull + +- type: loadout + id: LoadoutShoesBootsMud + category: Shoes + cost: 1 + exclusive: true + customColorTint: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutShoes + items: + - ClothingShoesBootsMud + +- type: loadout + id: LoadoutShoesBootsMudThigh + category: Shoes + cost: 1 + exclusive: true + customColorTint: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutShoes + items: + - ClothingShoesBootsMudThigh + +- type: loadout + id: LoadoutShoesBootsThigh + category: Shoes + cost: 1 + exclusive: true + customColorTint: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutShoes + items: + - ClothingShoesBootsThigh + + # Miscellaneous - type: loadout id: LoadoutShoesSlippersDuck @@ -159,12 +244,12 @@ category: Shoes cost: 1 exclusive: true + canBeHeirloom: true requirements: - !type:CharacterItemGroupRequirement group: LoadoutShoes items: - ClothingShoesHighheelBoots - # Socks - type: loadout id: LoadoutShoesUnderSocksCoder @@ -199,3 +284,90 @@ group: LoadoutShoes items: - ClothingClothWrap + +- type: loadout + id: LoadoutShoesHighHeels + category: Shoes + cost: 0 + exclusive: true + customColorTint: true + canBeHeirloom: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutShoes + items: + - ClothingShoesHighHeels + +- type: loadout + id: LoadoutShoesHighHeelsLong + category: Shoes + cost: 0 + exclusive: true + customColorTint: true + canBeHeirloom: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutShoes + items: + - ClothingShoesHighHeelsLong + +- type: loadout + id: LoadoutShoesFlats + category: Shoes + cost: 0 + exclusive: true + customColorTint: true + canBeHeirloom: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutShoes + items: + - ClothingShoesFlats + +- type: loadout + id: LoadoutShoesSkater + category: Shoes + cost: 0 + exclusive: true + customColorTint: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutShoes + items: + - ClothingShoesSkater + +- type: loadout + id: LoadoutShoesSandals + category: Shoes + cost: 0 + exclusive: true + customColorTint: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutShoes + items: + - ClothingShoesSandals + +- type: loadout + id: LoadoutShoesSandalsFlipFlops + category: Shoes + cost: 0 + exclusive: true + customColorTint: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutShoes + items: + - ClothingShoesSandalsFlipFlops + +- type: loadout + id: LoadoutShoesSandalsFlipFlopsAlt + category: Shoes + cost: 0 + exclusive: true + customColorTint: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutShoes + items: + - ClothingShoesSandalsFlipFlopsAlt diff --git a/Resources/Prototypes/Loadouts/Generic/uniform.yml b/Resources/Prototypes/Loadouts/Generic/uniform.yml index 960f70b54c0..3af5f79d8fd 100644 --- a/Resources/Prototypes/Loadouts/Generic/uniform.yml +++ b/Resources/Prototypes/Loadouts/Generic/uniform.yml @@ -73,6 +73,22 @@ departments: - Command +- type: loadout + id: LoadoutUniformJumpsuitCasualBlue + category: Uniform + cost: 0 + exclusive: true + items: + - ClothingUniformJumpsuitCasualBlue + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Security + - Command + - type: loadout id: LoadoutUniformJumpskirtCasualBlue category: Uniform @@ -197,6 +213,22 @@ departments: - Command +- type: loadout + id: LoadoutUniformJumpsuitTShirtKhakiPants + category: Uniform + cost: 0 + exclusive: true + items: + - ClothingUniformTShirtKhakiPants + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + - Security + - type: loadout id: LoadoutUniformJumpsuitJeansGreen category: Uniform @@ -454,6 +486,7 @@ category: Uniform cost: 0 exclusive: true + customColorTint: true items: - ClothingUniformJumpsuitBartender requirements: @@ -470,6 +503,7 @@ category: Uniform cost: 0 exclusive: true + customColorTint: true items: - ClothingUniformJumpskirtBartender requirements: @@ -911,6 +945,7 @@ category: Uniform cost: 1 exclusive: true + customColorTint: true items: - ClothingUniformJumpsuitSuitBlack requirements: @@ -1045,3 +1080,1310 @@ inverted: true departments: - Command + +# Colorable dresses +- type: loadout + id: LoadoutUniformJumpskirtDressAsymmetric + category: Uniform + cost: 1 + exclusive: true + customColorTint: true + items: + - ClothingUniformJumpskirtDressAsymmetric + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + +- type: loadout + id: LoadoutUniformJumpskirtDressEvening + category: Uniform + cost: 1 + exclusive: true + customColorTint: true + items: + - ClothingUniformJumpskirtDressEvening + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + +- type: loadout + id: LoadoutUniformJumpskirtDressMidi + category: Uniform + cost: 1 + exclusive: true + customColorTint: true + items: + - ClothingUniformJumpskirtDressMidi + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + +- type: loadout + id: LoadoutUniformJumpskirtDressOpenShoulder + category: Uniform + cost: 1 + exclusive: true + customColorTint: true + items: + - ClothingUniformJumpskirtDressOpenShoulder + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + +- type: loadout + id: LoadoutUniformJumpskirtDressTea + category: Uniform + cost: 1 + exclusive: true + customColorTint: true + items: + - ClothingUniformJumpskirtDressTea + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + +- type: loadout + id: LoadoutUniformJumpskirtDressSleeveless + category: Uniform + cost: 1 + exclusive: true + customColorTint: true + items: + - ClothingUniformJumpskirtDressSleeveless + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + +- type: loadout + id: LoadoutUniformJumpskirtDressLongSleeve + category: Uniform + cost: 1 + exclusive: true + customColorTint: true + items: + - ClothingUniformJumpskirtDressLongSleeve + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + +- type: loadout + id: LoadoutUniformJumpskirtDressBlackAndGold + category: Uniform + cost: 2 + exclusive: true + canBeHeirloom: true + items: + - ClothingUniformJumpskirtDressBlackAndGold + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + +- type: loadout + id: LoadoutUniformJumpskirtDressBlackTango + category: Uniform + cost: 2 + exclusive: true + items: + - ClothingUniformJumpskirtDressBlackTango + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + +- type: loadout + id: LoadoutUniformJumpskirtDressBlackTangoAlt + category: Uniform + cost: 2 + exclusive: true + items: + - ClothingUniformJumpskirtDressBlackTangoAlt + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + +- type: loadout + id: LoadoutUniformJumpskirtSuitBlueBlazer + category: Uniform + cost: 1 + exclusive: true + items: + - ClothingUniformJumpskirtSuitBlueBlazer + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + - Security + +- type: loadout + id: LoadoutUniformJumpskirtDressBlueSundress + category: Uniform + cost: 1 + exclusive: true + items: + - ClothingUniformJumpskirtDressBlueSundress + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + - Security + +- type: loadout + id: LoadoutUniformJumpskirtDressCheongsamBlue + category: Uniform + cost: 2 + exclusive: true + canBeHeirloom: true + items: + - ClothingUniformJumpskirtDressCheongsamBlue + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + - Security + +- type: loadout + id: LoadoutUniformJumpskirtDressCheongsamGreen + category: Uniform + cost: 2 + exclusive: true + canBeHeirloom: true + items: + - ClothingUniformJumpskirtDressCheongsamGreen + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + - Security + +- type: loadout + id: LoadoutUniformJumpskirtDressCheongsamPurple + category: Uniform + cost: 2 + exclusive: true + canBeHeirloom: true + items: + - ClothingUniformJumpskirtDressCheongsamPurple + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + - Security + +- type: loadout + id: LoadoutUniformJumpskirtDressCheongsamRed + category: Uniform + cost: 2 + exclusive: true + canBeHeirloom: true + items: + - ClothingUniformJumpskirtDressCheongsamRed + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + +- type: loadout + id: LoadoutUniformJumpskirtDressCheongsamWhite + category: Uniform + cost: 2 + exclusive: true + customColorTint: true + canBeHeirloom: true + items: + - ClothingUniformJumpskirtDressCheongsamWhite + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + - Security + +- type: loadout + id: LoadoutUniformJumpskirtDressClub + category: Uniform + cost: 1 + exclusive: true + customColorTint: true + canBeHeirloom: true + items: + - ClothingUniformJumpskirtDressClub + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + +- type: loadout + id: LoadoutUniformJumpskirtDressCoveter + category: Uniform + cost: 0 + exclusive: true + customColorTint: true + items: + - ClothingUniformJumpskirtDressCoveter + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + +- type: loadout + id: LoadoutUniformJumpskirtDressFlamenco + category: Uniform + cost: 2 + exclusive: true + canBeHeirloom: true + items: + - ClothingUniformJumpskirtDressFlamenco + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + +- type: loadout + id: LoadoutUniformJumpskirtDressFire + category: Uniform + cost: 1 + exclusive: true + items: + - ClothingUniformJumpskirtDressFire + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + - Security + +- type: loadout + id: LoadoutUniformJumpskirtDressOrange + category: Uniform + cost: 1 + exclusive: true + items: + - ClothingUniformJumpskirtDressOrange + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + - Security + +- type: loadout + id: LoadoutUniformJumpskirtDressYellow + category: Uniform + cost: 1 + exclusive: true + items: + - ClothingUniformJumpskirtDressYellow + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + - Security + +- type: loadout + id: LoadoutUniformJumpskirtDressFlowergirl + category: Uniform + cost: 0 + exclusive: true + customColorTint: true + items: + - ClothingUniformJumpskirtDressFlowergirl + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + +- type: loadout + id: LoadoutUniformJumpskirtDressFluffy + category: Uniform + cost: 1 + exclusive: true + customColorTint: true + items: + - ClothingUniformJumpskirtDressFluffy + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + +- type: loadout + id: LoadoutUniformJumpskirtDressFormalRed + category: Uniform + cost: 2 + exclusive: true + items: + - ClothingUniformJumpskirtDressFormalRed + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + +- type: loadout + id: LoadoutUniformJumpskirtDressGothic + category: Uniform + cost: 2 + exclusive: true + items: + - ClothingUniformJumpskirtDressGothic + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + +- type: loadout + id: LoadoutUniformJumpskirtKimonoColor + category: Uniform + cost: 1 + exclusive: true + customColorTint: true + canBeHeirloom: true + items: + - ClothingUniformJumpskirtKimonoColor + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + +- type: loadout + id: LoadoutUniformJumpskirtDressLacyGown + category: Uniform + cost: 1 + exclusive: true + customColorTint: true + items: + - ClothingUniformJumpskirtDressLacyGown + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + +- type: loadout + id: LoadoutUniformJumpskirtDressLong + category: Uniform + cost: 1 + exclusive: true + customColorTint: true + items: + - ClothingUniformJumpskirtDressLong + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + +- type: loadout + id: LoadoutUniformJumpskirtDressLongFlared + category: Uniform + cost: 2 + exclusive: true + customColorTint: true + items: + - ClothingUniformJumpskirtDressLongFlared + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + +- type: loadout + id: LoadoutUniformJumpskirtQipao + category: Uniform + cost: 1 + exclusive: true + customColorTint: true + items: + - ClothingUniformJumpskirtQipao + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + +- type: loadout + id: LoadoutUniformJumpskirtQipaoSlim + category: Uniform + cost: 1 + exclusive: true + customColorTint: true + items: + - ClothingUniformJumpskirtQipaoSlim + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + +- type: loadout + id: LoadoutUniformJumpskirtDressRedSwept + category: Uniform + cost: 2 + exclusive: true + items: + - ClothingUniformJumpskirtDressRedSwept + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + +- type: loadout + id: LoadoutUniformJumpskirtPencilSkirtGymBra + category: Uniform + cost: 1 + exclusive: true + customColorTint: true + items: + - ClothingUniformJumpskirtPencilSkirtGymBra + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + +- type: loadout + id: LoadoutUniformJumpskirtDressPuffy + category: Uniform + cost: 2 + exclusive: true + customColorTint: true + items: + - ClothingUniformJumpskirtDressPuffy + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + +- type: loadout + id: LoadoutUniformJumpskirtSailor + category: Uniform + cost: 1 + exclusive: true + items: + - ClothingUniformJumpskirtSailor + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + +- type: loadout + id: LoadoutUniformJumpskirtDressSariGreen + category: Uniform + cost: 1 + exclusive: true + items: + - ClothingUniformJumpskirtDressSariGreen + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + - Security + +- type: loadout + id: LoadoutUniformJumpskirtDressSariRed + category: Uniform + cost: 1 + exclusive: true + items: + - ClothingUniformJumpskirtDressSariRed + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + +- type: loadout + id: LoadoutUniformJumpskirtDressShort + category: Uniform + cost: 0 + exclusive: true + customColorTint: true + items: + - ClothingUniformJumpskirtDressShort + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + +- type: loadout + id: LoadoutUniformJumpskirtDressSpider + category: Uniform + cost: 2 + exclusive: true + canBeHeirloom: true + items: + - ClothingUniformJumpskirtDressSpider + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + +- type: loadout + id: LoadoutUniformJumpskirtDressStriped + category: Uniform + cost: 1 + exclusive: true + items: + - ClothingUniformJumpskirtDressStriped + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + - Security + +- type: loadout + id: LoadoutUniformJumpskirtDressSundress + category: Uniform + cost: 0 + exclusive: true + items: + - ClothingUniformJumpskirtDressSundress + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + - Security + +- type: loadout + id: LoadoutUniformJumpskirtDressSundressWhite + category: Uniform + cost: 0 + exclusive: true + customColorTint: true + items: + - ClothingUniformJumpskirtDressSundressWhite + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + +- type: loadout + id: LoadoutUniformJumpskirtDressVictorianBlack + category: Uniform + cost: 2 + exclusive: true + items: + - ClothingUniformJumpskirtDressVictorianBlack + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + +- type: loadout + id: LoadoutUniformJumpskirtDressVictorianRed + category: Uniform + cost: 2 + exclusive: true + items: + - ClothingUniformJumpskirtDressVictorianRed + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + +- type: loadout + id: LoadoutUniformJumpskirtWaitress + category: Uniform + cost: 1 + exclusive: true + items: + - ClothingUniformJumpskirtWaitress + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + - Security + +- type: loadout + id: LoadoutUniformJumpskirtDressYellowSwoop + category: Uniform + cost: 2 + exclusive: true + items: + - ClothingUniformJumpskirtDressYellowSwoop + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + - Security + +- type: loadout + id: LoadoutUniformJumpsuitSuitAmish + category: Uniform + cost: 1 + exclusive: true + customColorTint: true + items: + - ClothingUniformJumpsuitSuitAmish + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + +- type: loadout + id: LoadoutUniformJumpsuitSuitAristocratic + category: Uniform + cost: 2 + exclusive: true + items: + - ClothingUniformJumpsuitSuitAristocratic + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + +- type: loadout + id: LoadoutUniformJumpsuitSuitAristocraticTuxedo + category: Uniform + cost: 2 + exclusive: true + items: + - ClothingUniformJumpsuitSuitAristocraticTuxedo + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + +- type: loadout + id: LoadoutUniformJumpsuitAscetic + category: Uniform + cost: 0 + exclusive: true + customColorTint: true + items: + - ClothingUniformJumpsuitAscetic + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + +- type: loadout + id: LoadoutUniformJumpsuitBarber + category: Uniform + cost: 1 + exclusive: true + items: + - ClothingUniformJumpsuitBarber + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + +- type: loadout + id: LoadoutUniformJumpsuitSuitBlueBlazer + category: Uniform + cost: 1 + exclusive: true + items: + - ClothingUniformJumpsuitSuitBlueBlazer + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + - Security + +- type: loadout + id: LoadoutUniformJumpsuitDisheveled + category: Uniform + cost: 0 + exclusive: true + customColorTint: true + canBeHeirloom: true + items: + - ClothingUniformJumpsuitDisheveled + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + +- type: loadout + id: LoadoutUniformJumpsuitSuitRegal + category: Uniform + cost: 2 + exclusive: true + items: + - ClothingUniformJumpsuitSuitRegal + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + +- type: loadout + id: LoadoutUniformJumpsuitSuitRegalTuxedo + category: Uniform + cost: 2 + exclusive: true + items: + - ClothingUniformJumpsuitSuitRegalTuxedo + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + +- type: loadout + id: LoadoutUniformJumpsuitRippedPunk + category: Uniform + cost: 1 + exclusive: true + canBeHeirloom: true + items: + - ClothingUniformJumpsuitRippedPunk + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + +- type: loadout + id: LoadoutUniformJumpsuitSailor + category: Uniform + cost: 1 + exclusive: true + customColorTint: true + items: + - ClothingUniformJumpsuitSailor + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + +- type: loadout + id: LoadoutUniformJumpsuitSuitStriped + category: Uniform + cost: 1 + exclusive: true + items: + - ClothingUniformJumpsuitSuitStriped + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + +- type: loadout + id: LoadoutUniformJumpsuitTrackpants + category: Uniform + cost: 0 + exclusive: true + customColorTint: true + items: + - ClothingUniformJumpsuitTrackpants + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + +- type: loadout + id: LoadoutUniformJumpsuitTurtleneckGrey + category: Uniform + cost: 1 + exclusive: true + customColorTint: true + items: + - ClothingUniformJumpsuitTurtleneckGrey + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + +- type: loadout + id: LoadoutUniformJumpsuitSuitVictorianRedBlack + category: Uniform + cost: 1 + exclusive: true + items: + - ClothingUniformJumpsuitSuitVictorianRedBlack + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + +- type: loadout + id: LoadoutUniformJumpsuitSuitVictorianRedVest + category: Uniform + cost: 1 + exclusive: true + items: + - ClothingUniformJumpsuitSuitVictorianRedVest + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + +- type: loadout + id: LoadoutUniformJumpsuitSuitVictorianVest + category: Uniform + cost: 1 + exclusive: true + items: + - ClothingUniformJumpsuitSuitVictorianVest + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + +- type: loadout + id: LoadoutUniformJumpsuitWaiter + category: Uniform + cost: 1 + exclusive: true + items: + - ClothingUniformJumpsuitWaiter + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + - Security + +- type: loadout + id: LoadoutUniformJumpsuitYogaGymBra + category: Uniform + cost: 1 + exclusive: true + customColorTint: true + items: + - ClothingUniformJumpsuitYogaGymBra + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + +# Nuclear 14 suits +- type: loadout + id: LoadoutUniformJumpsuitSuitRolledSleeves + category: Uniform + cost: 1 + exclusive: true + items: + - ClothingUniformJumpsuitSuitRolledSleeves + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + +- type: loadout + id: LoadoutUniformJumpsuitBartenderGrey + category: Uniform + cost: 1 + exclusive: true + items: + - ClothingUniformJumpsuitBartenderGrey + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + +- type: loadout + id: LoadoutUniformJumpsuitCheckered + category: Uniform + cost: 1 + exclusive: true + items: + - ClothingUniformJumpsuitCheckered + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + +- type: loadout + id: LoadoutUniformJumpsuitFlannelOveralls + category: Uniform + cost: 1 + exclusive: true + items: + - ClothingUniformJumpsuitFlannelOveralls + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + +- type: loadout + id: LoadoutUniformJumpsuitCowboyBrown + category: Uniform + cost: 1 + exclusive: true + items: + - ClothingUniformJumpsuitCowboyBrown + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + +- type: loadout + id: LoadoutUniformJumpsuitCowboyGrey + category: Uniform + cost: 1 + exclusive: true + items: + - ClothingUniformJumpsuitCowboyGrey + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + +- type: loadout + id: LoadoutUniformJumpsuitCamouflageShirt + category: Uniform + cost: 1 + exclusive: true + items: + - ClothingUniformJumpsuitCamouflageShirt + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + +- type: loadout + id: LoadoutUniformJumpsuitOliveSweater + category: Uniform + cost: 1 + exclusive: true + items: + - ClothingUniformJumpsuitOliveSweater + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + - Security + +- type: loadout + id: LoadoutUniformJumpsuitDesertUniform + category: Uniform + cost: 1 + exclusive: true + items: + - ClothingUniformJumpsuitDesertUniform + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + +- type: loadout + id: LoadoutUniformJumpsuitLumberjack + category: Uniform + cost: 1 + exclusive: true + items: + - ClothingUniformJumpsuitLumberjack + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + +- type: loadout + id: LoadoutUniformJumpsuitLightBlueShirt + category: Uniform + cost: 0 + exclusive: true + items: + - ClothingUniformJumpsuitLightBlueShirt + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + - Security + +- type: loadout + id: LoadoutUniformJumpsuitGreyShirt + category: Uniform + cost: 1 + exclusive: true + items: + - ClothingUniformJumpsuitGreyShirt + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + - Security + +- type: loadout + id: LoadoutUniformJumpsuitFlannelJeans + category: Uniform + cost: 1 + exclusive: true + items: + - ClothingUniformJumpsuitFlannelJeans + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + +- type: loadout + id: LoadoutUniformJumpsuitFlannelBlackJeans + category: Uniform + cost: 1 + exclusive: true + items: + - ClothingUniformJumpsuitFlannelBlackJeans + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + +- type: loadout + id: LoadoutUniformJumpsuitFlannelKhakis + category: Uniform + cost: 1 + exclusive: true + items: + - ClothingUniformJumpsuitFlannelKhakis + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + +- type: loadout + id: LoadoutUniformJumpsuitFlannelBlackKhakis + category: Uniform + cost: 1 + exclusive: true + items: + - ClothingUniformJumpsuitFlannelBlackKhakis + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command diff --git a/Resources/Prototypes/Loadouts/Jobs/Security/uncategorized.yml b/Resources/Prototypes/Loadouts/Jobs/Security/uncategorized.yml index 9fb358f05dc..e7e7ea19e4c 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Security/uncategorized.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Security/uncategorized.yml @@ -917,6 +917,48 @@ items: - ClothingEyesGlassesSecurity +- type: loadout + id: LoadoutClothingEyesGlassesSecurityAviator + category: JobsSecurityAUncategorized + cost: 2 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutSecurityEyes + - !type:CharacterDepartmentRequirement + departments: + - Security + items: + - ClothingEyesGlassesSecurityAviator + +- type: loadout + id: LoadoutClothingEyesGlassesSecurityBig + category: JobsSecurityAUncategorized + cost: 2 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutSecurityEyes + - !type:CharacterDepartmentRequirement + departments: + - Security + items: + - ClothingEyesGlassesSecurityBig + +- type: loadout + id: LoadoutClothingEyesGlassesSecurityVisor + category: JobsSecurityAUncategorized + cost: 2 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutSecurityEyes + - !type:CharacterDepartmentRequirement + departments: + - Security + items: + - ClothingEyesGlassesSecurityVisor + # Gloves # Head diff --git a/Resources/Prototypes/SoundCollections/footsteps.yml b/Resources/Prototypes/SoundCollections/footsteps.yml index e179584f6fb..66ee06dccbb 100644 --- a/Resources/Prototypes/SoundCollections/footsteps.yml +++ b/Resources/Prototypes/SoundCollections/footsteps.yml @@ -65,7 +65,7 @@ files: - /Audio/Effects/Footsteps/clownstep1.ogg - /Audio/Effects/Footsteps/clownstep2.ogg - + - type: soundCollection id: FootstepJester files: @@ -189,7 +189,7 @@ id: FootstepBlood files: - /Audio/Effects/Footsteps/gib_step.ogg - + - type: soundCollection id: FootstepSticky files: @@ -211,3 +211,12 @@ id: FootstepHoverBorg files: - /Audio/Effects/Footsteps/borgwalk2.ogg + +- type: soundCollection + id: FootstepHighHeels + files: + - /Audio/Effects/Footsteps/highheels1.ogg + - /Audio/Effects/Footsteps/highheels2.ogg + - /Audio/Effects/Footsteps/highheels3.ogg + - /Audio/Effects/Footsteps/highheels4.ogg + - /Audio/Effects/Footsteps/highheels5.ogg diff --git a/Resources/Textures/Clothing/Back/Satchels/purse.rsi/equipped-BACKPACK.png b/Resources/Textures/Clothing/Back/Satchels/purse.rsi/equipped-BACKPACK.png new file mode 100644 index 00000000000..babff2afbdf Binary files /dev/null and b/Resources/Textures/Clothing/Back/Satchels/purse.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/Clothing/Back/Satchels/purse.rsi/flipped-equipped-BACKPACK.png b/Resources/Textures/Clothing/Back/Satchels/purse.rsi/flipped-equipped-BACKPACK.png new file mode 100644 index 00000000000..dca9d08e1bc Binary files /dev/null and b/Resources/Textures/Clothing/Back/Satchels/purse.rsi/flipped-equipped-BACKPACK.png differ diff --git a/Resources/Textures/Clothing/Back/Satchels/purse.rsi/icon.png b/Resources/Textures/Clothing/Back/Satchels/purse.rsi/icon.png new file mode 100644 index 00000000000..166076ce6a0 Binary files /dev/null and b/Resources/Textures/Clothing/Back/Satchels/purse.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Back/Satchels/purse.rsi/inhand-left.png b/Resources/Textures/Clothing/Back/Satchels/purse.rsi/inhand-left.png new file mode 100644 index 00000000000..c468f47c011 Binary files /dev/null and b/Resources/Textures/Clothing/Back/Satchels/purse.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Back/Satchels/purse.rsi/inhand-right.png b/Resources/Textures/Clothing/Back/Satchels/purse.rsi/inhand-right.png new file mode 100644 index 00000000000..3a06f65fb6e Binary files /dev/null and b/Resources/Textures/Clothing/Back/Satchels/purse.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Back/Satchels/purse.rsi/meta.json b/Resources/Textures/Clothing/Back/Satchels/purse.rsi/meta.json new file mode 100644 index 00000000000..4619e364d1f --- /dev/null +++ b/Resources/Textures/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/Clothing/Belt/generic.rsi/equipped-BELT.png b/Resources/Textures/Clothing/Belt/generic.rsi/equipped-BELT.png new file mode 100644 index 00000000000..94b9abd6c12 Binary files /dev/null and b/Resources/Textures/Clothing/Belt/generic.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/Clothing/Belt/generic.rsi/icon.png b/Resources/Textures/Clothing/Belt/generic.rsi/icon.png new file mode 100644 index 00000000000..339fb56bd35 Binary files /dev/null and b/Resources/Textures/Clothing/Belt/generic.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Belt/generic.rsi/meta.json b/Resources/Textures/Clothing/Belt/generic.rsi/meta.json new file mode 100644 index 00000000000..ba364bc7a17 --- /dev/null +++ b/Resources/Textures/Clothing/Belt/generic.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/7bc5666e9e12ef31dcfdc9bd4b68831b34811bc6", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-BELT", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Belt/generic_thick.rsi/equipped-BELT.png b/Resources/Textures/Clothing/Belt/generic_thick.rsi/equipped-BELT.png new file mode 100644 index 00000000000..e0d6cdaa2de Binary files /dev/null and b/Resources/Textures/Clothing/Belt/generic_thick.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/Clothing/Belt/generic_thick.rsi/icon.png b/Resources/Textures/Clothing/Belt/generic_thick.rsi/icon.png new file mode 100644 index 00000000000..893640ea571 Binary files /dev/null and b/Resources/Textures/Clothing/Belt/generic_thick.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Belt/generic_thick.rsi/meta.json b/Resources/Textures/Clothing/Belt/generic_thick.rsi/meta.json new file mode 100644 index 00000000000..ba364bc7a17 --- /dev/null +++ b/Resources/Textures/Clothing/Belt/generic_thick.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/7bc5666e9e12ef31dcfdc9bd4b68831b34811bc6", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-BELT", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Belt/generic_thin.rsi/equipped-BELT.png b/Resources/Textures/Clothing/Belt/generic_thin.rsi/equipped-BELT.png new file mode 100644 index 00000000000..833681f457e Binary files /dev/null and b/Resources/Textures/Clothing/Belt/generic_thin.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/Clothing/Belt/generic_thin.rsi/icon.png b/Resources/Textures/Clothing/Belt/generic_thin.rsi/icon.png new file mode 100644 index 00000000000..9ab68761d53 Binary files /dev/null and b/Resources/Textures/Clothing/Belt/generic_thin.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Belt/generic_thin.rsi/meta.json b/Resources/Textures/Clothing/Belt/generic_thin.rsi/meta.json new file mode 100644 index 00000000000..ba364bc7a17 --- /dev/null +++ b/Resources/Textures/Clothing/Belt/generic_thin.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/7bc5666e9e12ef31dcfdc9bd4b68831b34811bc6", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-BELT", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Belt/waist.rsi/equipped-BELT.png b/Resources/Textures/Clothing/Belt/waist.rsi/equipped-BELT.png new file mode 100644 index 00000000000..7236be5aab2 Binary files /dev/null and b/Resources/Textures/Clothing/Belt/waist.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/Clothing/Belt/waist.rsi/icon.png b/Resources/Textures/Clothing/Belt/waist.rsi/icon.png new file mode 100644 index 00000000000..339fb56bd35 Binary files /dev/null and b/Resources/Textures/Clothing/Belt/waist.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Belt/waist.rsi/meta.json b/Resources/Textures/Clothing/Belt/waist.rsi/meta.json new file mode 100644 index 00000000000..86bdab33f57 --- /dev/null +++ b/Resources/Textures/Clothing/Belt/waist.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/7bc5666e9e12ef31dcfdc9bd4b68831b34811bc6, equipped sprite modified by SKubman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-BELT", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Belt/waist_thin.rsi/equipped-BELT.png b/Resources/Textures/Clothing/Belt/waist_thin.rsi/equipped-BELT.png new file mode 100644 index 00000000000..6c4935619f1 Binary files /dev/null and b/Resources/Textures/Clothing/Belt/waist_thin.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/Clothing/Belt/waist_thin.rsi/icon.png b/Resources/Textures/Clothing/Belt/waist_thin.rsi/icon.png new file mode 100644 index 00000000000..9ab68761d53 Binary files /dev/null and b/Resources/Textures/Clothing/Belt/waist_thin.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Belt/waist_thin.rsi/meta.json b/Resources/Textures/Clothing/Belt/waist_thin.rsi/meta.json new file mode 100644 index 00000000000..86bdab33f57 --- /dev/null +++ b/Resources/Textures/Clothing/Belt/waist_thin.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/7bc5666e9e12ef31dcfdc9bd4b68831b34811bc6, equipped sprite modified by SKubman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-BELT", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Belt/waistbag_color.rsi/equipped-BELT.png b/Resources/Textures/Clothing/Belt/waistbag_color.rsi/equipped-BELT.png new file mode 100644 index 00000000000..c76c684a3df Binary files /dev/null and b/Resources/Textures/Clothing/Belt/waistbag_color.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/Clothing/Belt/waistbag_color.rsi/icon.png b/Resources/Textures/Clothing/Belt/waistbag_color.rsi/icon.png new file mode 100644 index 00000000000..6eb8186404a Binary files /dev/null and b/Resources/Textures/Clothing/Belt/waistbag_color.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Belt/waistbag_color.rsi/meta.json b/Resources/Textures/Clothing/Belt/waistbag_color.rsi/meta.json new file mode 100644 index 00000000000..51fe76ee4d9 --- /dev/null +++ b/Resources/Textures/Clothing/Belt/waistbag_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/0dbad157368e1e5e794a3b642554787b3c238cbf", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-BELT", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Eyes/Glasses/3d.rsi/equipped-EYES.png b/Resources/Textures/Clothing/Eyes/Glasses/3d.rsi/equipped-EYES.png new file mode 100644 index 00000000000..0621736dd03 Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Glasses/3d.rsi/equipped-EYES.png differ diff --git a/Resources/Textures/Clothing/Eyes/Glasses/3d.rsi/icon.png b/Resources/Textures/Clothing/Eyes/Glasses/3d.rsi/icon.png new file mode 100644 index 00000000000..d3527a927c6 Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Glasses/3d.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Eyes/Glasses/3d.rsi/inhand-left.png b/Resources/Textures/Clothing/Eyes/Glasses/3d.rsi/inhand-left.png new file mode 100644 index 00000000000..ca1bb5ef302 Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Glasses/3d.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Eyes/Glasses/3d.rsi/inhand-right.png b/Resources/Textures/Clothing/Eyes/Glasses/3d.rsi/inhand-right.png new file mode 100644 index 00000000000..77bbcb37d0a Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Glasses/3d.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Eyes/Glasses/3d.rsi/meta.json b/Resources/Textures/Clothing/Eyes/Glasses/3d.rsi/meta.json new file mode 100644 index 00000000000..4a569fd22cd --- /dev/null +++ b/Resources/Textures/Clothing/Eyes/Glasses/3d.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/b790191c242f5ec4bd6b77bb485d108cea491cc8, modified by Skubman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-EYES", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Eyes/Glasses/aviators.rsi/equipped-EYES.png b/Resources/Textures/Clothing/Eyes/Glasses/aviators.rsi/equipped-EYES.png new file mode 100644 index 00000000000..0ecdfb7bec7 Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Glasses/aviators.rsi/equipped-EYES.png differ diff --git a/Resources/Textures/Clothing/Eyes/Glasses/aviators.rsi/icon.png b/Resources/Textures/Clothing/Eyes/Glasses/aviators.rsi/icon.png new file mode 100644 index 00000000000..84f1ef11b84 Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Glasses/aviators.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Eyes/Glasses/aviators.rsi/inhand-left.png b/Resources/Textures/Clothing/Eyes/Glasses/aviators.rsi/inhand-left.png new file mode 100644 index 00000000000..8a0c7325056 Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Glasses/aviators.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Eyes/Glasses/aviators.rsi/inhand-right.png b/Resources/Textures/Clothing/Eyes/Glasses/aviators.rsi/inhand-right.png new file mode 100644 index 00000000000..17e33b59a47 Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Glasses/aviators.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Eyes/Glasses/aviators.rsi/meta.json b/Resources/Textures/Clothing/Eyes/Glasses/aviators.rsi/meta.json new file mode 100644 index 00000000000..4a569fd22cd --- /dev/null +++ b/Resources/Textures/Clothing/Eyes/Glasses/aviators.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/b790191c242f5ec4bd6b77bb485d108cea491cc8, modified by Skubman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-EYES", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Eyes/Glasses/hipster.rsi/equipped-EYES.png b/Resources/Textures/Clothing/Eyes/Glasses/hipster.rsi/equipped-EYES.png new file mode 100644 index 00000000000..236d87bd6d6 Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Glasses/hipster.rsi/equipped-EYES.png differ diff --git a/Resources/Textures/Clothing/Eyes/Glasses/hipster.rsi/icon.png b/Resources/Textures/Clothing/Eyes/Glasses/hipster.rsi/icon.png new file mode 100644 index 00000000000..8240b908dd4 Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Glasses/hipster.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Eyes/Glasses/hipster.rsi/inhand-left.png b/Resources/Textures/Clothing/Eyes/Glasses/hipster.rsi/inhand-left.png new file mode 100644 index 00000000000..7efb4fce67c Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Glasses/hipster.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Eyes/Glasses/hipster.rsi/inhand-right.png b/Resources/Textures/Clothing/Eyes/Glasses/hipster.rsi/inhand-right.png new file mode 100644 index 00000000000..4d0320d4bcb Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Glasses/hipster.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Eyes/Glasses/hipster.rsi/meta.json b/Resources/Textures/Clothing/Eyes/Glasses/hipster.rsi/meta.json new file mode 100644 index 00000000000..4a569fd22cd --- /dev/null +++ b/Resources/Textures/Clothing/Eyes/Glasses/hipster.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/b790191c242f5ec4bd6b77bb485d108cea491cc8, modified by Skubman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-EYES", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Eyes/Glasses/monocle.rsi/equipped-EYES.png b/Resources/Textures/Clothing/Eyes/Glasses/monocle.rsi/equipped-EYES.png new file mode 100644 index 00000000000..33bfac80762 Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Glasses/monocle.rsi/equipped-EYES.png differ diff --git a/Resources/Textures/Clothing/Eyes/Glasses/monocle.rsi/icon.png b/Resources/Textures/Clothing/Eyes/Glasses/monocle.rsi/icon.png new file mode 100644 index 00000000000..36cbdac39f3 Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Glasses/monocle.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Eyes/Glasses/monocle.rsi/inhand-left.png b/Resources/Textures/Clothing/Eyes/Glasses/monocle.rsi/inhand-left.png new file mode 100644 index 00000000000..5aa27982ffb Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Glasses/monocle.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Eyes/Glasses/monocle.rsi/inhand-right.png b/Resources/Textures/Clothing/Eyes/Glasses/monocle.rsi/inhand-right.png new file mode 100644 index 00000000000..16b0d067ecf Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Glasses/monocle.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Eyes/Glasses/monocle.rsi/meta.json b/Resources/Textures/Clothing/Eyes/Glasses/monocle.rsi/meta.json new file mode 100644 index 00000000000..4a569fd22cd --- /dev/null +++ b/Resources/Textures/Clothing/Eyes/Glasses/monocle.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/b790191c242f5ec4bd6b77bb485d108cea491cc8, modified by Skubman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-EYES", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Eyes/Glasses/panto.rsi/equipped-EYES.png b/Resources/Textures/Clothing/Eyes/Glasses/panto.rsi/equipped-EYES.png new file mode 100644 index 00000000000..87a18bea92d Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Glasses/panto.rsi/equipped-EYES.png differ diff --git a/Resources/Textures/Clothing/Eyes/Glasses/panto.rsi/icon.png b/Resources/Textures/Clothing/Eyes/Glasses/panto.rsi/icon.png new file mode 100644 index 00000000000..df25ad1772d Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Glasses/panto.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Eyes/Glasses/panto.rsi/inhand-left.png b/Resources/Textures/Clothing/Eyes/Glasses/panto.rsi/inhand-left.png new file mode 100644 index 00000000000..0119aaaa4b9 Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Glasses/panto.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Eyes/Glasses/panto.rsi/inhand-right.png b/Resources/Textures/Clothing/Eyes/Glasses/panto.rsi/inhand-right.png new file mode 100644 index 00000000000..458e6ff1e23 Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Glasses/panto.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Eyes/Glasses/panto.rsi/meta.json b/Resources/Textures/Clothing/Eyes/Glasses/panto.rsi/meta.json new file mode 100644 index 00000000000..4a569fd22cd --- /dev/null +++ b/Resources/Textures/Clothing/Eyes/Glasses/panto.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/b790191c242f5ec4bd6b77bb485d108cea491cc8, modified by Skubman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-EYES", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Eyes/Glasses/secglasses_aviators.rsi/equipped-EYES.png b/Resources/Textures/Clothing/Eyes/Glasses/secglasses_aviators.rsi/equipped-EYES.png new file mode 100644 index 00000000000..d3e57c7a897 Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Glasses/secglasses_aviators.rsi/equipped-EYES.png differ diff --git a/Resources/Textures/Clothing/Eyes/Glasses/secglasses_aviators.rsi/icon.png b/Resources/Textures/Clothing/Eyes/Glasses/secglasses_aviators.rsi/icon.png new file mode 100644 index 00000000000..ae2ea021716 Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Glasses/secglasses_aviators.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Eyes/Glasses/secglasses_aviators.rsi/inhand-left.png b/Resources/Textures/Clothing/Eyes/Glasses/secglasses_aviators.rsi/inhand-left.png new file mode 100644 index 00000000000..7531ff211f9 Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Glasses/secglasses_aviators.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Eyes/Glasses/secglasses_aviators.rsi/inhand-right.png b/Resources/Textures/Clothing/Eyes/Glasses/secglasses_aviators.rsi/inhand-right.png new file mode 100644 index 00000000000..b386544e311 Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Glasses/secglasses_aviators.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Eyes/Glasses/secglasses_aviators.rsi/meta.json b/Resources/Textures/Clothing/Eyes/Glasses/secglasses_aviators.rsi/meta.json new file mode 100644 index 00000000000..4a569fd22cd --- /dev/null +++ b/Resources/Textures/Clothing/Eyes/Glasses/secglasses_aviators.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/b790191c242f5ec4bd6b77bb485d108cea491cc8, modified by Skubman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-EYES", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Eyes/Glasses/secglasses_big.rsi/equipped-EYES.png b/Resources/Textures/Clothing/Eyes/Glasses/secglasses_big.rsi/equipped-EYES.png new file mode 100644 index 00000000000..47c5949f6b8 Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Glasses/secglasses_big.rsi/equipped-EYES.png differ diff --git a/Resources/Textures/Clothing/Eyes/Glasses/secglasses_big.rsi/icon.png b/Resources/Textures/Clothing/Eyes/Glasses/secglasses_big.rsi/icon.png new file mode 100644 index 00000000000..e5377d37ab0 Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Glasses/secglasses_big.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Eyes/Glasses/secglasses_big.rsi/inhand-left.png b/Resources/Textures/Clothing/Eyes/Glasses/secglasses_big.rsi/inhand-left.png new file mode 100644 index 00000000000..6a464458203 Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Glasses/secglasses_big.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Eyes/Glasses/secglasses_big.rsi/inhand-right.png b/Resources/Textures/Clothing/Eyes/Glasses/secglasses_big.rsi/inhand-right.png new file mode 100644 index 00000000000..579c66a0d64 Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Glasses/secglasses_big.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Eyes/Glasses/secglasses_big.rsi/meta.json b/Resources/Textures/Clothing/Eyes/Glasses/secglasses_big.rsi/meta.json new file mode 100644 index 00000000000..4a569fd22cd --- /dev/null +++ b/Resources/Textures/Clothing/Eyes/Glasses/secglasses_big.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/b790191c242f5ec4bd6b77bb485d108cea491cc8, modified by Skubman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-EYES", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Eyes/Glasses/secglasses_visor.rsi/equipped-EYES.png b/Resources/Textures/Clothing/Eyes/Glasses/secglasses_visor.rsi/equipped-EYES.png new file mode 100644 index 00000000000..88147ef3bdd Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Glasses/secglasses_visor.rsi/equipped-EYES.png differ diff --git a/Resources/Textures/Clothing/Eyes/Glasses/secglasses_visor.rsi/icon.png b/Resources/Textures/Clothing/Eyes/Glasses/secglasses_visor.rsi/icon.png new file mode 100644 index 00000000000..c68533ebe38 Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Glasses/secglasses_visor.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Eyes/Glasses/secglasses_visor.rsi/inhand-left.png b/Resources/Textures/Clothing/Eyes/Glasses/secglasses_visor.rsi/inhand-left.png new file mode 100644 index 00000000000..d3581fe12be Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Glasses/secglasses_visor.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Eyes/Glasses/secglasses_visor.rsi/inhand-right.png b/Resources/Textures/Clothing/Eyes/Glasses/secglasses_visor.rsi/inhand-right.png new file mode 100644 index 00000000000..71c0537b019 Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Glasses/secglasses_visor.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Eyes/Glasses/secglasses_visor.rsi/meta.json b/Resources/Textures/Clothing/Eyes/Glasses/secglasses_visor.rsi/meta.json new file mode 100644 index 00000000000..4a569fd22cd --- /dev/null +++ b/Resources/Textures/Clothing/Eyes/Glasses/secglasses_visor.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/b790191c242f5ec4bd6b77bb485d108cea491cc8, modified by Skubman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-EYES", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Eyes/Glasses/sunglasses_big.rsi/equipped-EYES.png b/Resources/Textures/Clothing/Eyes/Glasses/sunglasses_big.rsi/equipped-EYES.png new file mode 100644 index 00000000000..9579e1a26f1 Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Glasses/sunglasses_big.rsi/equipped-EYES.png differ diff --git a/Resources/Textures/Clothing/Eyes/Glasses/sunglasses_big.rsi/icon.png b/Resources/Textures/Clothing/Eyes/Glasses/sunglasses_big.rsi/icon.png new file mode 100644 index 00000000000..d95a0e6f0b7 Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Glasses/sunglasses_big.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Eyes/Glasses/sunglasses_big.rsi/inhand-left.png b/Resources/Textures/Clothing/Eyes/Glasses/sunglasses_big.rsi/inhand-left.png new file mode 100644 index 00000000000..9712db9d5f4 Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Glasses/sunglasses_big.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Eyes/Glasses/sunglasses_big.rsi/inhand-right.png b/Resources/Textures/Clothing/Eyes/Glasses/sunglasses_big.rsi/inhand-right.png new file mode 100644 index 00000000000..2a225f98bcf Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Glasses/sunglasses_big.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Eyes/Glasses/sunglasses_big.rsi/meta.json b/Resources/Textures/Clothing/Eyes/Glasses/sunglasses_big.rsi/meta.json new file mode 100644 index 00000000000..4a569fd22cd --- /dev/null +++ b/Resources/Textures/Clothing/Eyes/Glasses/sunglasses_big.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/b790191c242f5ec4bd6b77bb485d108cea491cc8, modified by Skubman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-EYES", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Eyes/Glasses/sunglasses_visor.rsi/equipped-EYES.png b/Resources/Textures/Clothing/Eyes/Glasses/sunglasses_visor.rsi/equipped-EYES.png new file mode 100644 index 00000000000..0a10531ef14 Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Glasses/sunglasses_visor.rsi/equipped-EYES.png differ diff --git a/Resources/Textures/Clothing/Eyes/Glasses/sunglasses_visor.rsi/icon.png b/Resources/Textures/Clothing/Eyes/Glasses/sunglasses_visor.rsi/icon.png new file mode 100644 index 00000000000..299d32cb464 Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Glasses/sunglasses_visor.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Eyes/Glasses/sunglasses_visor.rsi/inhand-left.png b/Resources/Textures/Clothing/Eyes/Glasses/sunglasses_visor.rsi/inhand-left.png new file mode 100644 index 00000000000..26073e8cf96 Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Glasses/sunglasses_visor.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Eyes/Glasses/sunglasses_visor.rsi/inhand-right.png b/Resources/Textures/Clothing/Eyes/Glasses/sunglasses_visor.rsi/inhand-right.png new file mode 100644 index 00000000000..d28f9301949 Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Glasses/sunglasses_visor.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Eyes/Glasses/sunglasses_visor.rsi/meta.json b/Resources/Textures/Clothing/Eyes/Glasses/sunglasses_visor.rsi/meta.json new file mode 100644 index 00000000000..4a569fd22cd --- /dev/null +++ b/Resources/Textures/Clothing/Eyes/Glasses/sunglasses_visor.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/b790191c242f5ec4bd6b77bb485d108cea491cc8, modified by Skubman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-EYES", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Eyes/Misc/blindfold_color.rsi/equipped-EYES.png b/Resources/Textures/Clothing/Eyes/Misc/blindfold_color.rsi/equipped-EYES.png new file mode 100644 index 00000000000..9b69ef1cad4 Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Misc/blindfold_color.rsi/equipped-EYES.png differ diff --git a/Resources/Textures/Clothing/Eyes/Misc/blindfold_color.rsi/icon.png b/Resources/Textures/Clothing/Eyes/Misc/blindfold_color.rsi/icon.png new file mode 100644 index 00000000000..2c1ab66eb1b Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Misc/blindfold_color.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Eyes/Misc/blindfold_color.rsi/meta.json b/Resources/Textures/Clothing/Eyes/Misc/blindfold_color.rsi/meta.json new file mode 100644 index 00000000000..14fa442a59b --- /dev/null +++ b/Resources/Textures/Clothing/Eyes/Misc/blindfold_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/b790191c242f5ec4bd6b77bb485d108cea491cc8", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-EYES", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Eyes/Misc/eyepatch_color.rsi/equipped-EYES.png b/Resources/Textures/Clothing/Eyes/Misc/eyepatch_color.rsi/equipped-EYES.png new file mode 100644 index 00000000000..a2ad90375c2 Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Misc/eyepatch_color.rsi/equipped-EYES.png differ diff --git a/Resources/Textures/Clothing/Eyes/Misc/eyepatch_color.rsi/flipped-equipped-EYES.png b/Resources/Textures/Clothing/Eyes/Misc/eyepatch_color.rsi/flipped-equipped-EYES.png new file mode 100644 index 00000000000..4735865fef8 Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Misc/eyepatch_color.rsi/flipped-equipped-EYES.png differ diff --git a/Resources/Textures/Clothing/Eyes/Misc/eyepatch_color.rsi/icon.png b/Resources/Textures/Clothing/Eyes/Misc/eyepatch_color.rsi/icon.png new file mode 100644 index 00000000000..192ac48f792 Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Misc/eyepatch_color.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Eyes/Misc/eyepatch_color.rsi/icon_flipped.png b/Resources/Textures/Clothing/Eyes/Misc/eyepatch_color.rsi/icon_flipped.png new file mode 100644 index 00000000000..4b9156b7d99 Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Misc/eyepatch_color.rsi/icon_flipped.png differ diff --git a/Resources/Textures/Clothing/Eyes/Misc/eyepatch_color.rsi/meta.json b/Resources/Textures/Clothing/Eyes/Misc/eyepatch_color.rsi/meta.json new file mode 100644 index 00000000000..c7e71220bd3 --- /dev/null +++ b/Resources/Textures/Clothing/Eyes/Misc/eyepatch_color.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/b790191c242f5ec4bd6b77bb485d108cea491cc8", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon_flipped" + }, + { + "name": "equipped-EYES", + "directions": 4 + }, + { + "name": "flipped-equipped-EYES", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Hands/Gloves/evening_gloves.rsi/equipped-HAND.png b/Resources/Textures/Clothing/Hands/Gloves/evening_gloves.rsi/equipped-HAND.png new file mode 100644 index 00000000000..8d314474e3e Binary files /dev/null and b/Resources/Textures/Clothing/Hands/Gloves/evening_gloves.rsi/equipped-HAND.png differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/evening_gloves.rsi/icon.png b/Resources/Textures/Clothing/Hands/Gloves/evening_gloves.rsi/icon.png new file mode 100644 index 00000000000..34565adaf14 Binary files /dev/null and b/Resources/Textures/Clothing/Hands/Gloves/evening_gloves.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/evening_gloves.rsi/inhand-left.png b/Resources/Textures/Clothing/Hands/Gloves/evening_gloves.rsi/inhand-left.png new file mode 100644 index 00000000000..429cac14d5b Binary files /dev/null and b/Resources/Textures/Clothing/Hands/Gloves/evening_gloves.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/evening_gloves.rsi/inhand-right.png b/Resources/Textures/Clothing/Hands/Gloves/evening_gloves.rsi/inhand-right.png new file mode 100644 index 00000000000..37d879fe4e7 Binary files /dev/null and b/Resources/Textures/Clothing/Hands/Gloves/evening_gloves.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/evening_gloves.rsi/meta.json b/Resources/Textures/Clothing/Hands/Gloves/evening_gloves.rsi/meta.json new file mode 100644 index 00000000000..104bd8e3d41 --- /dev/null +++ b/Resources/Textures/Clothing/Hands/Gloves/evening_gloves.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/681abce496b34c5ae4bd06dd2ba05b8fd48df168, modified by Skubman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HAND", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Accessories/bow.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Accessories/bow.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..756ebd6bab2 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Accessories/bow.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Accessories/bow.rsi/icon.png b/Resources/Textures/Clothing/Head/Accessories/bow.rsi/icon.png new file mode 100644 index 00000000000..82788d858ba Binary files /dev/null and b/Resources/Textures/Clothing/Head/Accessories/bow.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Accessories/bow.rsi/meta.json b/Resources/Textures/Clothing/Head/Accessories/bow.rsi/meta.json new file mode 100644 index 00000000000..8d48ebcccb4 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Accessories/bow.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/8300e5fa0c4c594d4210fbcec17bc9eb6978914c", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Accessories/bow_small.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Accessories/bow_small.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..a82e2839f63 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Accessories/bow_small.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Accessories/bow_small.rsi/icon.png b/Resources/Textures/Clothing/Head/Accessories/bow_small.rsi/icon.png new file mode 100644 index 00000000000..f6f6d804a5d Binary files /dev/null and b/Resources/Textures/Clothing/Head/Accessories/bow_small.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Accessories/bow_small.rsi/meta.json b/Resources/Textures/Clothing/Head/Accessories/bow_small.rsi/meta.json new file mode 100644 index 00000000000..8d48ebcccb4 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Accessories/bow_small.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/8300e5fa0c4c594d4210fbcec17bc9eb6978914c", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Accessories/pin.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Accessories/pin.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..87868f8accd Binary files /dev/null and b/Resources/Textures/Clothing/Head/Accessories/pin.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Accessories/pin.rsi/icon.png b/Resources/Textures/Clothing/Head/Accessories/pin.rsi/icon.png new file mode 100644 index 00000000000..715281f5923 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Accessories/pin.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Accessories/pin.rsi/meta.json b/Resources/Textures/Clothing/Head/Accessories/pin.rsi/meta.json new file mode 100644 index 00000000000..8d48ebcccb4 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Accessories/pin.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/8300e5fa0c4c594d4210fbcec17bc9eb6978914c", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Accessories/pin_butterfly.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Accessories/pin_butterfly.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..abaa32a0963 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Accessories/pin_butterfly.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Accessories/pin_butterfly.rsi/icon.png b/Resources/Textures/Clothing/Head/Accessories/pin_butterfly.rsi/icon.png new file mode 100644 index 00000000000..fbb2aa1c333 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Accessories/pin_butterfly.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Accessories/pin_butterfly.rsi/meta.json b/Resources/Textures/Clothing/Head/Accessories/pin_butterfly.rsi/meta.json new file mode 100644 index 00000000000..734f9e78e3d --- /dev/null +++ b/Resources/Textures/Clothing/Head/Accessories/pin_butterfly.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/8300e5fa0c4c594d4210fbcec17bc9eb6978914c, modified by Skubman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Accessories/pin_clover.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Accessories/pin_clover.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..05cd6194044 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Accessories/pin_clover.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Accessories/pin_clover.rsi/icon.png b/Resources/Textures/Clothing/Head/Accessories/pin_clover.rsi/icon.png new file mode 100644 index 00000000000..814959f381c Binary files /dev/null and b/Resources/Textures/Clothing/Head/Accessories/pin_clover.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Accessories/pin_clover.rsi/meta.json b/Resources/Textures/Clothing/Head/Accessories/pin_clover.rsi/meta.json new file mode 100644 index 00000000000..8d48ebcccb4 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Accessories/pin_clover.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/8300e5fa0c4c594d4210fbcec17bc9eb6978914c", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Accessories/pin_magnetic.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Accessories/pin_magnetic.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..cec3d1c2b92 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Accessories/pin_magnetic.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Accessories/pin_magnetic.rsi/icon.png b/Resources/Textures/Clothing/Head/Accessories/pin_magnetic.rsi/icon.png new file mode 100644 index 00000000000..7cd82d49871 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Accessories/pin_magnetic.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Accessories/pin_magnetic.rsi/meta.json b/Resources/Textures/Clothing/Head/Accessories/pin_magnetic.rsi/meta.json new file mode 100644 index 00000000000..734f9e78e3d --- /dev/null +++ b/Resources/Textures/Clothing/Head/Accessories/pin_magnetic.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/8300e5fa0c4c594d4210fbcec17bc9eb6978914c, modified by Skubman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Accessories/ribbon.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Accessories/ribbon.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..ab03bbfaf6c Binary files /dev/null and b/Resources/Textures/Clothing/Head/Accessories/ribbon.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Accessories/ribbon.rsi/icon.png b/Resources/Textures/Clothing/Head/Accessories/ribbon.rsi/icon.png new file mode 100644 index 00000000000..a135076f9ec Binary files /dev/null and b/Resources/Textures/Clothing/Head/Accessories/ribbon.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Accessories/ribbon.rsi/meta.json b/Resources/Textures/Clothing/Head/Accessories/ribbon.rsi/meta.json new file mode 100644 index 00000000000..8d48ebcccb4 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Accessories/ribbon.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/8300e5fa0c4c594d4210fbcec17bc9eb6978914c", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Hats/beanie.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hats/beanie.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..14026d924bb Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/beanie.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/beanie.rsi/icon.png b/Resources/Textures/Clothing/Head/Hats/beanie.rsi/icon.png new file mode 100644 index 00000000000..c8a8abe31cd Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/beanie.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/beanie.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/beanie.rsi/meta.json new file mode 100644 index 00000000000..0df08ccad49 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hats/beanie.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/fbc78615f34e2fa615b2768487f4011876e803e7", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Hats/beanie_submariner.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hats/beanie_submariner.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..a2c1016e47b Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/beanie_submariner.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/beanie_submariner.rsi/icon.png b/Resources/Textures/Clothing/Head/Hats/beanie_submariner.rsi/icon.png new file mode 100644 index 00000000000..648efdb4790 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/beanie_submariner.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/beanie_submariner.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/beanie_submariner.rsi/meta.json new file mode 100644 index 00000000000..0df08ccad49 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hats/beanie_submariner.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/fbc78615f34e2fa615b2768487f4011876e803e7", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Hats/beanie_tight.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hats/beanie_tight.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..76ae256e232 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/beanie_tight.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/beanie_tight.rsi/icon.png b/Resources/Textures/Clothing/Head/Hats/beanie_tight.rsi/icon.png new file mode 100644 index 00000000000..e77978e669d Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/beanie_tight.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/beanie_tight.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/beanie_tight.rsi/meta.json new file mode 100644 index 00000000000..a8599dbbb7f --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hats/beanie_tight.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/729c8252fe401e760f2acf950046096669635b0e", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Hats/beanie_winter.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hats/beanie_winter.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..81fd60350b3 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/beanie_winter.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/beanie_winter.rsi/icon.png b/Resources/Textures/Clothing/Head/Hats/beanie_winter.rsi/icon.png new file mode 100644 index 00000000000..cffca00e101 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/beanie_winter.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/beanie_winter.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/beanie_winter.rsi/meta.json new file mode 100644 index 00000000000..0df08ccad49 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hats/beanie_winter.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/fbc78615f34e2fa615b2768487f4011876e803e7", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Hats/beret_artist.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hats/beret_artist.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..d55e1670844 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/beret_artist.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/beret_artist.rsi/icon.png b/Resources/Textures/Clothing/Head/Hats/beret_artist.rsi/icon.png new file mode 100644 index 00000000000..d59b93ac052 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/beret_artist.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/beret_artist.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hats/beret_artist.rsi/inhand-left.png new file mode 100644 index 00000000000..8b3e01facc6 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/beret_artist.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/beret_artist.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hats/beret_artist.rsi/inhand-right.png new file mode 100644 index 00000000000..32235914d1d Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/beret_artist.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/beret_artist.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/beret_artist.rsi/meta.json new file mode 100644 index 00000000000..1f9b098d34a --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hats/beret_artist.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/f8047ac7afb8c3be6770301c12e1c627407f9b79, modified by Skubman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Hats/beret_peaked.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hats/beret_peaked.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..22eaaa73ca2 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/beret_peaked.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/beret_peaked.rsi/icon.png b/Resources/Textures/Clothing/Head/Hats/beret_peaked.rsi/icon.png new file mode 100644 index 00000000000..51d69babb6b Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/beret_peaked.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/beret_peaked.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hats/beret_peaked.rsi/inhand-left.png new file mode 100644 index 00000000000..8b3e01facc6 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/beret_peaked.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/beret_peaked.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hats/beret_peaked.rsi/inhand-right.png new file mode 100644 index 00000000000..32235914d1d Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/beret_peaked.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/beret_peaked.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/beret_peaked.rsi/meta.json new file mode 100644 index 00000000000..5cfaa22454b --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hats/beret_peaked.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/f8047ac7afb8c3be6770301c12e1c627407f9b79", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Hats/slouch.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hats/slouch.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..9511e32725f Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/slouch.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/slouch.rsi/icon.png b/Resources/Textures/Clothing/Head/Hats/slouch.rsi/icon.png new file mode 100644 index 00000000000..8500b25648f Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/slouch.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/slouch.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/slouch.rsi/meta.json new file mode 100644 index 00000000000..a8599dbbb7f --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hats/slouch.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/729c8252fe401e760f2acf950046096669635b0e", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Hats/sun_visor.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hats/sun_visor.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..6f136245c20 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/sun_visor.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/sun_visor.rsi/icon.png b/Resources/Textures/Clothing/Head/Hats/sun_visor.rsi/icon.png new file mode 100644 index 00000000000..bf9dc1f3b2a Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/sun_visor.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/sun_visor.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/sun_visor.rsi/meta.json new file mode 100644 index 00000000000..a8599dbbb7f --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hats/sun_visor.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/729c8252fe401e760f2acf950046096669635b0e", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Misc/headband.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Misc/headband.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..f134dc5f1ac Binary files /dev/null and b/Resources/Textures/Clothing/Head/Misc/headband.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Misc/headband.rsi/icon.png b/Resources/Textures/Clothing/Head/Misc/headband.rsi/icon.png new file mode 100644 index 00000000000..d57c452c69b Binary files /dev/null and b/Resources/Textures/Clothing/Head/Misc/headband.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Misc/headband.rsi/meta.json b/Resources/Textures/Clothing/Head/Misc/headband.rsi/meta.json new file mode 100644 index 00000000000..a8599dbbb7f --- /dev/null +++ b/Resources/Textures/Clothing/Head/Misc/headband.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/729c8252fe401e760f2acf950046096669635b0e", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Neck/Misc/dogtags.rsi/equipped-NECK.png b/Resources/Textures/Clothing/Neck/Misc/dogtags.rsi/equipped-NECK.png new file mode 100644 index 00000000000..ca6bf1dc4b6 Binary files /dev/null and b/Resources/Textures/Clothing/Neck/Misc/dogtags.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/Clothing/Neck/Misc/dogtags.rsi/icon.png b/Resources/Textures/Clothing/Neck/Misc/dogtags.rsi/icon.png new file mode 100644 index 00000000000..4aa0156dca2 Binary files /dev/null and b/Resources/Textures/Clothing/Neck/Misc/dogtags.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Neck/Misc/dogtags.rsi/meta.json b/Resources/Textures/Clothing/Neck/Misc/dogtags.rsi/meta.json new file mode 100644 index 00000000000..939b5871ab0 --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Misc/dogtags.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/ff229569ae0597a55ea52760b71cd3f0d87e350d", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-NECK", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Neck/Necklaces/chain_gold.rsi/equipped-NECK.png b/Resources/Textures/Clothing/Neck/Necklaces/chain_gold.rsi/equipped-NECK.png new file mode 100644 index 00000000000..51960edb2ed Binary files /dev/null and b/Resources/Textures/Clothing/Neck/Necklaces/chain_gold.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/Clothing/Neck/Necklaces/chain_gold.rsi/icon.png b/Resources/Textures/Clothing/Neck/Necklaces/chain_gold.rsi/icon.png new file mode 100644 index 00000000000..dad89f18485 Binary files /dev/null and b/Resources/Textures/Clothing/Neck/Necklaces/chain_gold.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Neck/Necklaces/chain_gold.rsi/meta.json b/Resources/Textures/Clothing/Neck/Necklaces/chain_gold.rsi/meta.json new file mode 100644 index 00000000000..d2ecb896abe --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Necklaces/chain_gold.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/7bc5666e9e12ef31dcfdc9bd4b68831b34811bc6", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-NECK", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Neck/Necklaces/chain_silver.rsi/equipped-NECK.png b/Resources/Textures/Clothing/Neck/Necklaces/chain_silver.rsi/equipped-NECK.png new file mode 100644 index 00000000000..100cddf1eb5 Binary files /dev/null and b/Resources/Textures/Clothing/Neck/Necklaces/chain_silver.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/Clothing/Neck/Necklaces/chain_silver.rsi/icon.png b/Resources/Textures/Clothing/Neck/Necklaces/chain_silver.rsi/icon.png new file mode 100644 index 00000000000..06e4c2adeac Binary files /dev/null and b/Resources/Textures/Clothing/Neck/Necklaces/chain_silver.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Neck/Necklaces/chain_silver.rsi/meta.json b/Resources/Textures/Clothing/Neck/Necklaces/chain_silver.rsi/meta.json new file mode 100644 index 00000000000..d2ecb896abe --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Necklaces/chain_silver.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/7bc5666e9e12ef31dcfdc9bd4b68831b34811bc6", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-NECK", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Neck/Necklaces/gold.rsi/equipped-NECK.png b/Resources/Textures/Clothing/Neck/Necklaces/gold.rsi/equipped-NECK.png new file mode 100644 index 00000000000..c0c2d14bb84 Binary files /dev/null and b/Resources/Textures/Clothing/Neck/Necklaces/gold.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/Clothing/Neck/Necklaces/gold.rsi/icon.png b/Resources/Textures/Clothing/Neck/Necklaces/gold.rsi/icon.png new file mode 100644 index 00000000000..00112ddd475 Binary files /dev/null and b/Resources/Textures/Clothing/Neck/Necklaces/gold.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Neck/Necklaces/gold.rsi/meta.json b/Resources/Textures/Clothing/Neck/Necklaces/gold.rsi/meta.json new file mode 100644 index 00000000000..d2ecb896abe --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Necklaces/gold.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/7bc5666e9e12ef31dcfdc9bd4b68831b34811bc6", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-NECK", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Neck/Necklaces/low.rsi/equipped-NECK.png b/Resources/Textures/Clothing/Neck/Necklaces/low.rsi/equipped-NECK.png new file mode 100644 index 00000000000..418c0e77f5f Binary files /dev/null and b/Resources/Textures/Clothing/Neck/Necklaces/low.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/Clothing/Neck/Necklaces/low.rsi/icon.png b/Resources/Textures/Clothing/Neck/Necklaces/low.rsi/icon.png new file mode 100644 index 00000000000..25bcd9f20f4 Binary files /dev/null and b/Resources/Textures/Clothing/Neck/Necklaces/low.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Neck/Necklaces/low.rsi/meta.json b/Resources/Textures/Clothing/Neck/Necklaces/low.rsi/meta.json new file mode 100644 index 00000000000..d2ecb896abe --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Necklaces/low.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/7bc5666e9e12ef31dcfdc9bd4b68831b34811bc6", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-NECK", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Neck/Necklaces/pendant_gold.rsi/equipped-NECK.png b/Resources/Textures/Clothing/Neck/Necklaces/pendant_gold.rsi/equipped-NECK.png new file mode 100644 index 00000000000..83271541d2d Binary files /dev/null and b/Resources/Textures/Clothing/Neck/Necklaces/pendant_gold.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/Clothing/Neck/Necklaces/pendant_gold.rsi/icon.png b/Resources/Textures/Clothing/Neck/Necklaces/pendant_gold.rsi/icon.png new file mode 100644 index 00000000000..1554cf22159 Binary files /dev/null and b/Resources/Textures/Clothing/Neck/Necklaces/pendant_gold.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Neck/Necklaces/pendant_gold.rsi/meta.json b/Resources/Textures/Clothing/Neck/Necklaces/pendant_gold.rsi/meta.json new file mode 100644 index 00000000000..f7af9de0016 --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Necklaces/pendant_gold.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/7bc5666e9e12ef31dcfdc9bd4b68831b34811bc6", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-NECK", + "directions": 4 + }, + { + "name": "pendant-icon" + }, + { + "name": "pendant-equipped-NECK", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Neck/Necklaces/pendant_gold.rsi/pendant-equipped-NECK.png b/Resources/Textures/Clothing/Neck/Necklaces/pendant_gold.rsi/pendant-equipped-NECK.png new file mode 100644 index 00000000000..5b5f7c36ed0 Binary files /dev/null and b/Resources/Textures/Clothing/Neck/Necklaces/pendant_gold.rsi/pendant-equipped-NECK.png differ diff --git a/Resources/Textures/Clothing/Neck/Necklaces/pendant_gold.rsi/pendant-icon.png b/Resources/Textures/Clothing/Neck/Necklaces/pendant_gold.rsi/pendant-icon.png new file mode 100644 index 00000000000..4074385d34f Binary files /dev/null and b/Resources/Textures/Clothing/Neck/Necklaces/pendant_gold.rsi/pendant-icon.png differ diff --git a/Resources/Textures/Clothing/Neck/Necklaces/pendant_gold_large.rsi/equipped-NECK.png b/Resources/Textures/Clothing/Neck/Necklaces/pendant_gold_large.rsi/equipped-NECK.png new file mode 100644 index 00000000000..522cf71abb4 Binary files /dev/null and b/Resources/Textures/Clothing/Neck/Necklaces/pendant_gold_large.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/Clothing/Neck/Necklaces/pendant_gold_large.rsi/icon.png b/Resources/Textures/Clothing/Neck/Necklaces/pendant_gold_large.rsi/icon.png new file mode 100644 index 00000000000..31eb4d3e2fb Binary files /dev/null and b/Resources/Textures/Clothing/Neck/Necklaces/pendant_gold_large.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Neck/Necklaces/pendant_gold_large.rsi/meta.json b/Resources/Textures/Clothing/Neck/Necklaces/pendant_gold_large.rsi/meta.json new file mode 100644 index 00000000000..f7af9de0016 --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Necklaces/pendant_gold_large.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/7bc5666e9e12ef31dcfdc9bd4b68831b34811bc6", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-NECK", + "directions": 4 + }, + { + "name": "pendant-icon" + }, + { + "name": "pendant-equipped-NECK", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Neck/Necklaces/pendant_gold_large.rsi/pendant-equipped-NECK.png b/Resources/Textures/Clothing/Neck/Necklaces/pendant_gold_large.rsi/pendant-equipped-NECK.png new file mode 100644 index 00000000000..280388ebc38 Binary files /dev/null and b/Resources/Textures/Clothing/Neck/Necklaces/pendant_gold_large.rsi/pendant-equipped-NECK.png differ diff --git a/Resources/Textures/Clothing/Neck/Necklaces/pendant_gold_large.rsi/pendant-icon.png b/Resources/Textures/Clothing/Neck/Necklaces/pendant_gold_large.rsi/pendant-icon.png new file mode 100644 index 00000000000..bbe7a3d74bd Binary files /dev/null and b/Resources/Textures/Clothing/Neck/Necklaces/pendant_gold_large.rsi/pendant-icon.png differ diff --git a/Resources/Textures/Clothing/Neck/Necklaces/pendant_silver.rsi/equipped-NECK.png b/Resources/Textures/Clothing/Neck/Necklaces/pendant_silver.rsi/equipped-NECK.png new file mode 100644 index 00000000000..9aae5016677 Binary files /dev/null and b/Resources/Textures/Clothing/Neck/Necklaces/pendant_silver.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/Clothing/Neck/Necklaces/pendant_silver.rsi/icon.png b/Resources/Textures/Clothing/Neck/Necklaces/pendant_silver.rsi/icon.png new file mode 100644 index 00000000000..1dbe078b1c8 Binary files /dev/null and b/Resources/Textures/Clothing/Neck/Necklaces/pendant_silver.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Neck/Necklaces/pendant_silver.rsi/meta.json b/Resources/Textures/Clothing/Neck/Necklaces/pendant_silver.rsi/meta.json new file mode 100644 index 00000000000..f7af9de0016 --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Necklaces/pendant_silver.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/7bc5666e9e12ef31dcfdc9bd4b68831b34811bc6", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-NECK", + "directions": 4 + }, + { + "name": "pendant-icon" + }, + { + "name": "pendant-equipped-NECK", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Neck/Necklaces/pendant_silver.rsi/pendant-equipped-NECK.png b/Resources/Textures/Clothing/Neck/Necklaces/pendant_silver.rsi/pendant-equipped-NECK.png new file mode 100644 index 00000000000..5b5f7c36ed0 Binary files /dev/null and b/Resources/Textures/Clothing/Neck/Necklaces/pendant_silver.rsi/pendant-equipped-NECK.png differ diff --git a/Resources/Textures/Clothing/Neck/Necklaces/pendant_silver.rsi/pendant-icon.png b/Resources/Textures/Clothing/Neck/Necklaces/pendant_silver.rsi/pendant-icon.png new file mode 100644 index 00000000000..4074385d34f Binary files /dev/null and b/Resources/Textures/Clothing/Neck/Necklaces/pendant_silver.rsi/pendant-icon.png differ diff --git a/Resources/Textures/Clothing/Neck/Necklaces/pendant_silver_large.rsi/equipped-NECK.png b/Resources/Textures/Clothing/Neck/Necklaces/pendant_silver_large.rsi/equipped-NECK.png new file mode 100644 index 00000000000..0f6c18dce60 Binary files /dev/null and b/Resources/Textures/Clothing/Neck/Necklaces/pendant_silver_large.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/Clothing/Neck/Necklaces/pendant_silver_large.rsi/icon.png b/Resources/Textures/Clothing/Neck/Necklaces/pendant_silver_large.rsi/icon.png new file mode 100644 index 00000000000..e1cc1e116c5 Binary files /dev/null and b/Resources/Textures/Clothing/Neck/Necklaces/pendant_silver_large.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Neck/Necklaces/pendant_silver_large.rsi/meta.json b/Resources/Textures/Clothing/Neck/Necklaces/pendant_silver_large.rsi/meta.json new file mode 100644 index 00000000000..f7af9de0016 --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Necklaces/pendant_silver_large.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/7bc5666e9e12ef31dcfdc9bd4b68831b34811bc6", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-NECK", + "directions": 4 + }, + { + "name": "pendant-icon" + }, + { + "name": "pendant-equipped-NECK", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Neck/Necklaces/pendant_silver_large.rsi/pendant-equipped-NECK.png b/Resources/Textures/Clothing/Neck/Necklaces/pendant_silver_large.rsi/pendant-equipped-NECK.png new file mode 100644 index 00000000000..280388ebc38 Binary files /dev/null and b/Resources/Textures/Clothing/Neck/Necklaces/pendant_silver_large.rsi/pendant-equipped-NECK.png differ diff --git a/Resources/Textures/Clothing/Neck/Necklaces/pendant_silver_large.rsi/pendant-icon.png b/Resources/Textures/Clothing/Neck/Necklaces/pendant_silver_large.rsi/pendant-icon.png new file mode 100644 index 00000000000..bbe7a3d74bd Binary files /dev/null and b/Resources/Textures/Clothing/Neck/Necklaces/pendant_silver_large.rsi/pendant-icon.png differ diff --git a/Resources/Textures/Clothing/Neck/Necklaces/round.rsi/equipped-NECK.png b/Resources/Textures/Clothing/Neck/Necklaces/round.rsi/equipped-NECK.png new file mode 100644 index 00000000000..d4a1d773007 Binary files /dev/null and b/Resources/Textures/Clothing/Neck/Necklaces/round.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/Clothing/Neck/Necklaces/round.rsi/icon.png b/Resources/Textures/Clothing/Neck/Necklaces/round.rsi/icon.png new file mode 100644 index 00000000000..88c39b7b2e7 Binary files /dev/null and b/Resources/Textures/Clothing/Neck/Necklaces/round.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Neck/Necklaces/round.rsi/meta.json b/Resources/Textures/Clothing/Neck/Necklaces/round.rsi/meta.json new file mode 100644 index 00000000000..d2ecb896abe --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Necklaces/round.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/7bc5666e9e12ef31dcfdc9bd4b68831b34811bc6", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-NECK", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Neck/Necklaces/silver.rsi/equipped-NECK.png b/Resources/Textures/Clothing/Neck/Necklaces/silver.rsi/equipped-NECK.png new file mode 100644 index 00000000000..f84378701c9 Binary files /dev/null and b/Resources/Textures/Clothing/Neck/Necklaces/silver.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/Clothing/Neck/Necklaces/silver.rsi/icon.png b/Resources/Textures/Clothing/Neck/Necklaces/silver.rsi/icon.png new file mode 100644 index 00000000000..7de4574ac85 Binary files /dev/null and b/Resources/Textures/Clothing/Neck/Necklaces/silver.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Neck/Necklaces/silver.rsi/meta.json b/Resources/Textures/Clothing/Neck/Necklaces/silver.rsi/meta.json new file mode 100644 index 00000000000..d2ecb896abe --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Necklaces/silver.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/7bc5666e9e12ef31dcfdc9bd4b68831b34811bc6", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-NECK", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Neck/Necklaces/small.rsi/equipped-NECK.png b/Resources/Textures/Clothing/Neck/Necklaces/small.rsi/equipped-NECK.png new file mode 100644 index 00000000000..b3de1212cde Binary files /dev/null and b/Resources/Textures/Clothing/Neck/Necklaces/small.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/Clothing/Neck/Necklaces/small.rsi/icon.png b/Resources/Textures/Clothing/Neck/Necklaces/small.rsi/icon.png new file mode 100644 index 00000000000..48185b9f92c Binary files /dev/null and b/Resources/Textures/Clothing/Neck/Necklaces/small.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Neck/Necklaces/small.rsi/meta.json b/Resources/Textures/Clothing/Neck/Necklaces/small.rsi/meta.json new file mode 100644 index 00000000000..d2ecb896abe --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Necklaces/small.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/7bc5666e9e12ef31dcfdc9bd4b68831b34811bc6", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-NECK", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Neck/Necklaces/standard.rsi/equipped-NECK.png b/Resources/Textures/Clothing/Neck/Necklaces/standard.rsi/equipped-NECK.png new file mode 100644 index 00000000000..b0b9212df0e Binary files /dev/null and b/Resources/Textures/Clothing/Neck/Necklaces/standard.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/Clothing/Neck/Necklaces/standard.rsi/icon.png b/Resources/Textures/Clothing/Neck/Necklaces/standard.rsi/icon.png new file mode 100644 index 00000000000..41eeae6eae9 Binary files /dev/null and b/Resources/Textures/Clothing/Neck/Necklaces/standard.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Neck/Necklaces/standard.rsi/meta.json b/Resources/Textures/Clothing/Neck/Necklaces/standard.rsi/meta.json new file mode 100644 index 00000000000..0b6b2ab3dca --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Necklaces/standard.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/7bc5666e9e12ef31dcfdc9bd4b68831b34811bc6, modified by Skubman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-NECK", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Neck/Ties/bow.rsi/equipped-NECK.png b/Resources/Textures/Clothing/Neck/Ties/bow.rsi/equipped-NECK.png new file mode 100644 index 00000000000..697050ab226 Binary files /dev/null and b/Resources/Textures/Clothing/Neck/Ties/bow.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/Clothing/Neck/Ties/bow.rsi/icon.png b/Resources/Textures/Clothing/Neck/Ties/bow.rsi/icon.png new file mode 100644 index 00000000000..82788d858ba Binary files /dev/null and b/Resources/Textures/Clothing/Neck/Ties/bow.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Neck/Ties/bow.rsi/meta.json b/Resources/Textures/Clothing/Neck/Ties/bow.rsi/meta.json new file mode 100644 index 00000000000..49d1945446f --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Ties/bow.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/e7aabb7e14aa3f9a16916f29e519d9ef84027d7c", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-NECK", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Neck/Ties/bowtie.rsi/equipped-NECK.png b/Resources/Textures/Clothing/Neck/Ties/bowtie.rsi/equipped-NECK.png new file mode 100644 index 00000000000..399e4843f42 Binary files /dev/null and b/Resources/Textures/Clothing/Neck/Ties/bowtie.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/Clothing/Neck/Ties/bowtie.rsi/icon.png b/Resources/Textures/Clothing/Neck/Ties/bowtie.rsi/icon.png new file mode 100644 index 00000000000..67f4319dec9 Binary files /dev/null and b/Resources/Textures/Clothing/Neck/Ties/bowtie.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Neck/Ties/bowtie.rsi/meta.json b/Resources/Textures/Clothing/Neck/Ties/bowtie.rsi/meta.json new file mode 100644 index 00000000000..49d1945446f --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Ties/bowtie.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/e7aabb7e14aa3f9a16916f29e519d9ef84027d7c", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-NECK", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Neck/Ties/color.rsi/equipped-NECK.png b/Resources/Textures/Clothing/Neck/Ties/color.rsi/equipped-NECK.png new file mode 100644 index 00000000000..a02ad466f66 Binary files /dev/null and b/Resources/Textures/Clothing/Neck/Ties/color.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/Clothing/Neck/Ties/color.rsi/icon.png b/Resources/Textures/Clothing/Neck/Ties/color.rsi/icon.png new file mode 100644 index 00000000000..deddb53322f Binary files /dev/null and b/Resources/Textures/Clothing/Neck/Ties/color.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Neck/Ties/color.rsi/inhand-left.png b/Resources/Textures/Clothing/Neck/Ties/color.rsi/inhand-left.png new file mode 100644 index 00000000000..a0d4f49738c Binary files /dev/null and b/Resources/Textures/Clothing/Neck/Ties/color.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Neck/Ties/color.rsi/inhand-right.png b/Resources/Textures/Clothing/Neck/Ties/color.rsi/inhand-right.png new file mode 100644 index 00000000000..6b5b832a2dc Binary files /dev/null and b/Resources/Textures/Clothing/Neck/Ties/color.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Neck/Ties/color.rsi/meta.json b/Resources/Textures/Clothing/Neck/Ties/color.rsi/meta.json new file mode 100644 index 00000000000..96fedd49884 --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Ties/color.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "equipped-NECK from Aurorastation at commit https://github.com/Aurorastation/Aurora.3/commit/1ee286c3df1acf25c766df29cfb3ba5d97a1d5d5, edited by Skubman for Space Station 14. Icon taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da, edited by Flareguy for Space Station 14 | In hand sprites sprited by PuroSlavKing (Github) for Space Station 14. Modified by TJohnson.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-NECK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Neck/Ties/ribbon.rsi/equipped-NECK.png b/Resources/Textures/Clothing/Neck/Ties/ribbon.rsi/equipped-NECK.png new file mode 100644 index 00000000000..2e0fe4e7e84 Binary files /dev/null and b/Resources/Textures/Clothing/Neck/Ties/ribbon.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/Clothing/Neck/Ties/ribbon.rsi/icon.png b/Resources/Textures/Clothing/Neck/Ties/ribbon.rsi/icon.png new file mode 100644 index 00000000000..ff543d6b379 Binary files /dev/null and b/Resources/Textures/Clothing/Neck/Ties/ribbon.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Neck/Ties/ribbon.rsi/meta.json b/Resources/Textures/Clothing/Neck/Ties/ribbon.rsi/meta.json new file mode 100644 index 00000000000..49d1945446f --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Ties/ribbon.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/e7aabb7e14aa3f9a16916f29e519d9ef84027d7c", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-NECK", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Neck/Ties/shorttie.rsi/equipped-NECK.png b/Resources/Textures/Clothing/Neck/Ties/shorttie.rsi/equipped-NECK.png new file mode 100644 index 00000000000..4026b17ad5a Binary files /dev/null and b/Resources/Textures/Clothing/Neck/Ties/shorttie.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/Clothing/Neck/Ties/shorttie.rsi/icon.png b/Resources/Textures/Clothing/Neck/Ties/shorttie.rsi/icon.png new file mode 100644 index 00000000000..709a8c887a1 Binary files /dev/null and b/Resources/Textures/Clothing/Neck/Ties/shorttie.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Neck/Ties/shorttie.rsi/inhand-left.png b/Resources/Textures/Clothing/Neck/Ties/shorttie.rsi/inhand-left.png new file mode 100644 index 00000000000..9438ab65956 Binary files /dev/null and b/Resources/Textures/Clothing/Neck/Ties/shorttie.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Neck/Ties/shorttie.rsi/inhand-right.png b/Resources/Textures/Clothing/Neck/Ties/shorttie.rsi/inhand-right.png new file mode 100644 index 00000000000..c71a035a2a6 Binary files /dev/null and b/Resources/Textures/Clothing/Neck/Ties/shorttie.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Neck/Ties/shorttie.rsi/meta.json b/Resources/Textures/Clothing/Neck/Ties/shorttie.rsi/meta.json new file mode 100644 index 00000000000..9eeeebf07f4 --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Ties/shorttie.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/1ee286c3df1acf25c766df29cfb3ba5d97a1d5d5, edited by Skubman for Space Station 14 | Icon taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da, edited by Flareguy for Space Station 14 | In hand sprites sprited by PuroSlavKing (Github) for Space Station 14. Modified by TJohnson. Modified by Skubman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-NECK", + "directions": 4 + }, + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/asymmetric_coat.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Coats/asymmetric_coat.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..d6a2d04e809 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/asymmetric_coat.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/asymmetric_coat.rsi/icon-open.png b/Resources/Textures/Clothing/OuterClothing/Coats/asymmetric_coat.rsi/icon-open.png new file mode 100644 index 00000000000..cd4f025b4d0 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/asymmetric_coat.rsi/icon-open.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/asymmetric_coat.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Coats/asymmetric_coat.rsi/icon.png new file mode 100644 index 00000000000..a0a58fc73f0 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/asymmetric_coat.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/asymmetric_coat.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/asymmetric_coat.rsi/meta.json new file mode 100644 index 00000000000..44eb96a3a31 --- /dev/null +++ b/Resources/Textures/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/Clothing/OuterClothing/Coats/asymmetric_coat.rsi/open-equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Coats/asymmetric_coat.rsi/open-equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..5baa831fe25 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/asymmetric_coat.rsi/open-equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/modern_coat.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Coats/modern_coat.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..4d9f72c09ec Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/modern_coat.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/modern_coat.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Coats/modern_coat.rsi/icon.png new file mode 100644 index 00000000000..796e397e728 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/modern_coat.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/modern_coat.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/modern_coat.rsi/meta.json new file mode 100644 index 00000000000..693e5d48e6c --- /dev/null +++ b/Resources/Textures/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/Clothing/OuterClothing/Coats/peacoat.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Coats/peacoat.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..b2610776760 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/peacoat.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/peacoat.rsi/icon-open.png b/Resources/Textures/Clothing/OuterClothing/Coats/peacoat.rsi/icon-open.png new file mode 100644 index 00000000000..4e5f55e55d3 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/peacoat.rsi/icon-open.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/peacoat.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Coats/peacoat.rsi/icon.png new file mode 100644 index 00000000000..e2610b30b2f Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/peacoat.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/peacoat.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/peacoat.rsi/meta.json new file mode 100644 index 00000000000..44eb96a3a31 --- /dev/null +++ b/Resources/Textures/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/Clothing/OuterClothing/Coats/peacoat.rsi/open-equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Coats/peacoat.rsi/open-equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..b06263abd1d Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/peacoat.rsi/open-equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/submariner.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Coats/submariner.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..cc800731982 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/submariner.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/submariner.rsi/icon-open.png b/Resources/Textures/Clothing/OuterClothing/Coats/submariner.rsi/icon-open.png new file mode 100644 index 00000000000..9fe5b6b1343 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/submariner.rsi/icon-open.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/submariner.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Coats/submariner.rsi/icon.png new file mode 100644 index 00000000000..d1f7034cc90 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/submariner.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/submariner.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/submariner.rsi/meta.json new file mode 100644 index 00000000000..d51fef97892 --- /dev/null +++ b/Resources/Textures/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/Clothing/OuterClothing/Coats/submariner.rsi/open-equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Coats/submariner.rsi/open-equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..9bfad9b8f25 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/submariner.rsi/open-equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/tailcoat.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Coats/tailcoat.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..1a0b5493833 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/tailcoat.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/tailcoat.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Coats/tailcoat.rsi/icon.png new file mode 100644 index 00000000000..632999fdaf8 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/tailcoat.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/tailcoat.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/tailcoat.rsi/meta.json new file mode 100644 index 00000000000..693e5d48e6c --- /dev/null +++ b/Resources/Textures/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/Clothing/OuterClothing/Coats/victorian_coat.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Coats/victorian_coat.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..4ab674a3ac2 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/victorian_coat.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/victorian_coat.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Coats/victorian_coat.rsi/icon.png new file mode 100644 index 00000000000..6a3b52bdd0b Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/victorian_coat.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/victorian_coat.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/victorian_coat.rsi/meta.json new file mode 100644 index 00000000000..693e5d48e6c --- /dev/null +++ b/Resources/Textures/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/Clothing/OuterClothing/Coats/victorian_coat_red.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Coats/victorian_coat_red.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..f79c0f2bd02 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/victorian_coat_red.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/victorian_coat_red.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Coats/victorian_coat_red.rsi/icon.png new file mode 100644 index 00000000000..be64195ff24 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/victorian_coat_red.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/victorian_coat_red.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/victorian_coat_red.rsi/meta.json new file mode 100644 index 00000000000..693e5d48e6c --- /dev/null +++ b/Resources/Textures/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/Clothing/OuterClothing/Misc/blazer.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Misc/blazer.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..f875f19e1d1 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/blazer.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/blazer.rsi/icon-open.png b/Resources/Textures/Clothing/OuterClothing/Misc/blazer.rsi/icon-open.png new file mode 100644 index 00000000000..c5d1c374232 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/blazer.rsi/icon-open.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/blazer.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Misc/blazer.rsi/icon.png new file mode 100644 index 00000000000..3d1be3ea712 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/blazer.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/blazer.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/blazer.rsi/meta.json new file mode 100644 index 00000000000..4e392ed03ca --- /dev/null +++ b/Resources/Textures/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/Clothing/OuterClothing/Misc/blazer.rsi/open-equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Misc/blazer.rsi/open-equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..e1c9b5aa961 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/blazer.rsi/open-equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/blazer_flat_collar.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Misc/blazer_flat_collar.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..983be590939 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/blazer_flat_collar.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/blazer_flat_collar.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Misc/blazer_flat_collar.rsi/icon.png new file mode 100644 index 00000000000..52871d955b3 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/blazer_flat_collar.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/blazer_flat_collar.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/blazer_flat_collar.rsi/meta.json new file mode 100644 index 00000000000..693e5d48e6c --- /dev/null +++ b/Resources/Textures/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/Clothing/OuterClothing/Misc/blazer_formal.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Misc/blazer_formal.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..1e4c19b89be Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/blazer_formal.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/blazer_formal.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Misc/blazer_formal.rsi/icon.png new file mode 100644 index 00000000000..4d1b45d4064 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/blazer_formal.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/blazer_formal.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/blazer_formal.rsi/meta.json new file mode 100644 index 00000000000..693e5d48e6c --- /dev/null +++ b/Resources/Textures/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/Clothing/OuterClothing/Misc/blazer_long.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Misc/blazer_long.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..c159ee37abb Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/blazer_long.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/blazer_long.rsi/icon-open.png b/Resources/Textures/Clothing/OuterClothing/Misc/blazer_long.rsi/icon-open.png new file mode 100644 index 00000000000..186d966c096 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/blazer_long.rsi/icon-open.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/blazer_long.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Misc/blazer_long.rsi/icon.png new file mode 100644 index 00000000000..f80b093c25d Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/blazer_long.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/blazer_long.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/blazer_long.rsi/meta.json new file mode 100644 index 00000000000..4e392ed03ca --- /dev/null +++ b/Resources/Textures/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/Clothing/OuterClothing/Misc/blazer_long.rsi/open-equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Misc/blazer_long.rsi/open-equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..b48c89fd3c7 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/blazer_long.rsi/open-equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/blazer_loose_sleeve.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Misc/blazer_loose_sleeve.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..e77d7c8286d Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/blazer_loose_sleeve.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/blazer_loose_sleeve.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Misc/blazer_loose_sleeve.rsi/icon.png new file mode 100644 index 00000000000..d10fa7d9b6e Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/blazer_loose_sleeve.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/blazer_loose_sleeve.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/blazer_loose_sleeve.rsi/meta.json new file mode 100644 index 00000000000..693e5d48e6c --- /dev/null +++ b/Resources/Textures/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/Clothing/OuterClothing/Misc/blazer_posh.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Misc/blazer_posh.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..8cccc39af33 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/blazer_posh.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/blazer_posh.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Misc/blazer_posh.rsi/icon.png new file mode 100644 index 00000000000..3daa6c00517 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/blazer_posh.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/blazer_posh.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/blazer_posh.rsi/meta.json new file mode 100644 index 00000000000..693e5d48e6c --- /dev/null +++ b/Resources/Textures/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/Clothing/OuterClothing/Misc/cardigan.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Misc/cardigan.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..fdd6422e207 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/cardigan.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/cardigan.rsi/icon-open.png b/Resources/Textures/Clothing/OuterClothing/Misc/cardigan.rsi/icon-open.png new file mode 100644 index 00000000000..5800d2f756e Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/cardigan.rsi/icon-open.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/cardigan.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Misc/cardigan.rsi/icon.png new file mode 100644 index 00000000000..ce626a4dbc7 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/cardigan.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/cardigan.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/cardigan.rsi/meta.json new file mode 100644 index 00000000000..44eb96a3a31 --- /dev/null +++ b/Resources/Textures/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/Clothing/OuterClothing/Misc/cardigan.rsi/open-equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Misc/cardigan.rsi/open-equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..366dfe1b538 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/cardigan.rsi/open-equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/cardigan_argyle.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Misc/cardigan_argyle.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..f41f53ff7b5 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/cardigan_argyle.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/cardigan_argyle.rsi/icon-open.png b/Resources/Textures/Clothing/OuterClothing/Misc/cardigan_argyle.rsi/icon-open.png new file mode 100644 index 00000000000..0e90c2a2c3a Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/cardigan_argyle.rsi/icon-open.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/cardigan_argyle.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Misc/cardigan_argyle.rsi/icon.png new file mode 100644 index 00000000000..378136809ea Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/cardigan_argyle.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/cardigan_argyle.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/cardigan_argyle.rsi/meta.json new file mode 100644 index 00000000000..44eb96a3a31 --- /dev/null +++ b/Resources/Textures/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/Clothing/OuterClothing/Misc/cardigan_argyle.rsi/open-equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Misc/cardigan_argyle.rsi/open-equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..68ba62a02e9 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/cardigan_argyle.rsi/open-equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/cardigan_slim.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Misc/cardigan_slim.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..5ca306018cd Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/cardigan_slim.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/cardigan_slim.rsi/icon-open.png b/Resources/Textures/Clothing/OuterClothing/Misc/cardigan_slim.rsi/icon-open.png new file mode 100644 index 00000000000..12b893f8c2c Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/cardigan_slim.rsi/icon-open.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/cardigan_slim.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Misc/cardigan_slim.rsi/icon.png new file mode 100644 index 00000000000..1944635a2f2 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/cardigan_slim.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/cardigan_slim.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/cardigan_slim.rsi/meta.json new file mode 100644 index 00000000000..750fb29dc75 --- /dev/null +++ b/Resources/Textures/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/Clothing/OuterClothing/Misc/cardigan_slim.rsi/open-equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Misc/cardigan_slim.rsi/open-equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..5f36c0a3fdc Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/cardigan_slim.rsi/open-equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/cardigan_sweater.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Misc/cardigan_sweater.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..1cbc6b3a6b5 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/cardigan_sweater.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/cardigan_sweater.rsi/icon-open.png b/Resources/Textures/Clothing/OuterClothing/Misc/cardigan_sweater.rsi/icon-open.png new file mode 100644 index 00000000000..790520d887f Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/cardigan_sweater.rsi/icon-open.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/cardigan_sweater.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Misc/cardigan_sweater.rsi/icon.png new file mode 100644 index 00000000000..cc32217d196 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/cardigan_sweater.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/cardigan_sweater.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/cardigan_sweater.rsi/meta.json new file mode 100644 index 00000000000..44eb96a3a31 --- /dev/null +++ b/Resources/Textures/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/Clothing/OuterClothing/Misc/cardigan_sweater.rsi/open-equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Misc/cardigan_sweater.rsi/open-equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..9a91dd2b596 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/cardigan_sweater.rsi/open-equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/colored_vest.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Misc/colored_vest.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..9190868cbef Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/colored_vest.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/colored_vest.rsi/icon-open.png b/Resources/Textures/Clothing/OuterClothing/Misc/colored_vest.rsi/icon-open.png new file mode 100644 index 00000000000..36845eff37d Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/colored_vest.rsi/icon-open.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/colored_vest.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Misc/colored_vest.rsi/icon.png new file mode 100644 index 00000000000..cfcf0ca0c3c Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/colored_vest.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/colored_vest.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/colored_vest.rsi/meta.json new file mode 100644 index 00000000000..44eb96a3a31 --- /dev/null +++ b/Resources/Textures/Clothing/OuterClothing/Misc/colored_vest.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/Clothing/OuterClothing/Misc/colored_vest.rsi/open-equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Misc/colored_vest.rsi/open-equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..16b5fe6e640 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/colored_vest.rsi/open-equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/cowboy_duster.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Misc/cowboy_duster.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..ff14515d591 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/cowboy_duster.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/cowboy_duster.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Misc/cowboy_duster.rsi/icon.png new file mode 100644 index 00000000000..c7ddc901a4a Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/cowboy_duster.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/cowboy_duster.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Misc/cowboy_duster.rsi/inhand-left.png new file mode 100644 index 00000000000..422c7f2dc01 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/cowboy_duster.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/cowboy_duster.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Misc/cowboy_duster.rsi/inhand-right.png new file mode 100644 index 00000000000..0b4a4db2595 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/cowboy_duster.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/cowboy_duster.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/cowboy_duster.rsi/meta.json new file mode 100644 index 00000000000..69293f93ca5 --- /dev/null +++ b/Resources/Textures/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/Clothing/OuterClothing/Misc/suit_jacket.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Misc/suit_jacket.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..2de9e6859c5 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/suit_jacket.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/suit_jacket.rsi/icon-open.png b/Resources/Textures/Clothing/OuterClothing/Misc/suit_jacket.rsi/icon-open.png new file mode 100644 index 00000000000..d6bbd94b005 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/suit_jacket.rsi/icon-open.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/suit_jacket.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Misc/suit_jacket.rsi/icon.png new file mode 100644 index 00000000000..217a7711d07 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/suit_jacket.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/suit_jacket.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Misc/suit_jacket.rsi/inhand-left.png new file mode 100644 index 00000000000..49566b12d1c Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/suit_jacket.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/suit_jacket.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Misc/suit_jacket.rsi/inhand-right.png new file mode 100644 index 00000000000..8e0ebecdc78 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/suit_jacket.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/suit_jacket.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/suit_jacket.rsi/meta.json new file mode 100644 index 00000000000..500f38b7d1d --- /dev/null +++ b/Resources/Textures/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/Clothing/OuterClothing/Misc/suit_jacket.rsi/open-equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Misc/suit_jacket.rsi/open-equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..2be876d685a Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/suit_jacket.rsi/open-equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/suit_jacket.rsi/open-inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Misc/suit_jacket.rsi/open-inhand-left.png new file mode 100644 index 00000000000..49566b12d1c Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/suit_jacket.rsi/open-inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/suit_jacket.rsi/open-inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Misc/suit_jacket.rsi/open-inhand-right.png new file mode 100644 index 00000000000..8e0ebecdc78 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/suit_jacket.rsi/open-inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Vests/vest_colorable.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Vests/vest_colorable.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..2c4ae128162 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Vests/vest_colorable.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Vests/vest_colorable.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Vests/vest_colorable.rsi/icon.png new file mode 100644 index 00000000000..c0e651be1c7 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Vests/vest_colorable.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Vests/vest_colorable.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Vests/vest_colorable.rsi/inhand-left.png new file mode 100644 index 00000000000..bbba98af371 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Vests/vest_colorable.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Vests/vest_colorable.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Vests/vest_colorable.rsi/inhand-right.png new file mode 100644 index 00000000000..e5b6e67d550 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Vests/vest_colorable.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Vests/vest_colorable.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Vests/vest_colorable.rsi/meta.json new file mode 100644 index 00000000000..fe006ca3ba1 --- /dev/null +++ b/Resources/Textures/Clothing/OuterClothing/Vests/vest_colorable.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, modified by Skubman (angelofallars)", + "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/Clothing/OuterClothing/Vests/vest_thick.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Vests/vest_thick.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..9190868cbef Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Vests/vest_thick.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Vests/vest_thick.rsi/icon-open.png b/Resources/Textures/Clothing/OuterClothing/Vests/vest_thick.rsi/icon-open.png new file mode 100644 index 00000000000..36845eff37d Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Vests/vest_thick.rsi/icon-open.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Vests/vest_thick.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Vests/vest_thick.rsi/icon.png new file mode 100644 index 00000000000..cfcf0ca0c3c Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Vests/vest_thick.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Vests/vest_thick.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Vests/vest_thick.rsi/meta.json new file mode 100644 index 00000000000..44eb96a3a31 --- /dev/null +++ b/Resources/Textures/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/Clothing/OuterClothing/Vests/vest_thick.rsi/open-equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Vests/vest_thick.rsi/open-equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..16b5fe6e640 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Vests/vest_thick.rsi/open-equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/ankleboots.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Boots/ankleboots.rsi/equipped-FEET.png new file mode 100644 index 00000000000..96a18b1bb12 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/ankleboots.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/ankleboots.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Boots/ankleboots.rsi/icon.png new file mode 100644 index 00000000000..a95ae3d242b Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/ankleboots.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/ankleboots.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/Boots/ankleboots.rsi/inhand-left.png new file mode 100644 index 00000000000..1e00dadea0d Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/ankleboots.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/ankleboots.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/Boots/ankleboots.rsi/inhand-right.png new file mode 100644 index 00000000000..1694027e4e3 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/ankleboots.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/ankleboots.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Boots/ankleboots.rsi/meta.json new file mode 100644 index 00000000000..875d7f2b6b6 --- /dev/null +++ b/Resources/Textures/Clothing/Shoes/Boots/ankleboots.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/89ae2531b5934cc52fef5a55ace3e5f10882e920, modified by Skubman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Shoes/Boots/fullboots.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Boots/fullboots.rsi/equipped-FEET.png new file mode 100644 index 00000000000..2a148b9725e Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/fullboots.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/fullboots.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Boots/fullboots.rsi/icon.png new file mode 100644 index 00000000000..eefd5508653 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/fullboots.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/fullboots.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/Boots/fullboots.rsi/inhand-left.png new file mode 100644 index 00000000000..1e00dadea0d Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/fullboots.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/fullboots.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/Boots/fullboots.rsi/inhand-right.png new file mode 100644 index 00000000000..1694027e4e3 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/fullboots.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/fullboots.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Boots/fullboots.rsi/meta.json new file mode 100644 index 00000000000..875d7f2b6b6 --- /dev/null +++ b/Resources/Textures/Clothing/Shoes/Boots/fullboots.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/89ae2531b5934cc52fef5a55ace3e5f10882e920, modified by Skubman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Shoes/Boots/highheelboots.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Boots/highheelboots.rsi/equipped-FEET.png index a27e43165c7..428d84dbbe9 100644 Binary files a/Resources/Textures/Clothing/Shoes/Boots/highheelboots.rsi/equipped-FEET.png and b/Resources/Textures/Clothing/Shoes/Boots/highheelboots.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/highheelboots.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Boots/highheelboots.rsi/meta.json index 05e3d906824..4d09fa52766 100644 --- a/Resources/Textures/Clothing/Shoes/Boots/highheelboots.rsi/meta.json +++ b/Resources/Textures/Clothing/Shoes/Boots/highheelboots.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by IProduceWidgets", + "copyright": "Made by IProduceWidgets, modified by Skubman", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Shoes/Boots/jackboots_color.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Boots/jackboots_color.rsi/equipped-FEET.png new file mode 100644 index 00000000000..734419adb13 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/jackboots_color.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/jackboots_color.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Boots/jackboots_color.rsi/icon.png new file mode 100644 index 00000000000..2a76274f7f7 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/jackboots_color.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/jackboots_color.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/Boots/jackboots_color.rsi/inhand-left.png new file mode 100644 index 00000000000..1e00dadea0d Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/jackboots_color.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/jackboots_color.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/Boots/jackboots_color.rsi/inhand-right.png new file mode 100644 index 00000000000..1694027e4e3 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/jackboots_color.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/jackboots_color.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Boots/jackboots_color.rsi/meta.json new file mode 100644 index 00000000000..755a9ccc6a6 --- /dev/null +++ b/Resources/Textures/Clothing/Shoes/Boots/jackboots_color.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/89ae2531b5934cc52fef5a55ace3e5f10882e920", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Shoes/Boots/mudboots.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Boots/mudboots.rsi/equipped-FEET.png new file mode 100644 index 00000000000..5ae4b962de0 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/mudboots.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/mudboots.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Boots/mudboots.rsi/icon.png new file mode 100644 index 00000000000..45df9224450 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/mudboots.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/mudboots.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/Boots/mudboots.rsi/inhand-left.png new file mode 100644 index 00000000000..1e00dadea0d Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/mudboots.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/mudboots.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/Boots/mudboots.rsi/inhand-right.png new file mode 100644 index 00000000000..1694027e4e3 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/mudboots.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/mudboots.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Boots/mudboots.rsi/meta.json new file mode 100644 index 00000000000..755a9ccc6a6 --- /dev/null +++ b/Resources/Textures/Clothing/Shoes/Boots/mudboots.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/89ae2531b5934cc52fef5a55ace3e5f10882e920", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Shoes/Boots/thighboots.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Boots/thighboots.rsi/equipped-FEET.png new file mode 100644 index 00000000000..2afa98e4ad6 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/thighboots.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/thighboots.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Boots/thighboots.rsi/icon.png new file mode 100644 index 00000000000..a07ff86bb9e Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/thighboots.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/thighboots.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/Boots/thighboots.rsi/inhand-left.png new file mode 100644 index 00000000000..1e00dadea0d Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/thighboots.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/thighboots.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/Boots/thighboots.rsi/inhand-right.png new file mode 100644 index 00000000000..1694027e4e3 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/thighboots.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/thighboots.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Boots/thighboots.rsi/meta.json new file mode 100644 index 00000000000..875d7f2b6b6 --- /dev/null +++ b/Resources/Textures/Clothing/Shoes/Boots/thighboots.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/89ae2531b5934cc52fef5a55ace3e5f10882e920, modified by Skubman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Shoes/Boots/thighmudboots.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Boots/thighmudboots.rsi/equipped-FEET.png new file mode 100644 index 00000000000..c7f36c162c4 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/thighmudboots.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/thighmudboots.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Boots/thighmudboots.rsi/icon.png new file mode 100644 index 00000000000..a5cfb448ade Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/thighmudboots.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/thighmudboots.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/Boots/thighmudboots.rsi/inhand-left.png new file mode 100644 index 00000000000..1e00dadea0d Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/thighmudboots.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/thighmudboots.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/Boots/thighmudboots.rsi/inhand-right.png new file mode 100644 index 00000000000..1694027e4e3 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/thighmudboots.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/thighmudboots.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Boots/thighmudboots.rsi/meta.json new file mode 100644 index 00000000000..755a9ccc6a6 --- /dev/null +++ b/Resources/Textures/Clothing/Shoes/Boots/thighmudboots.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/89ae2531b5934cc52fef5a55ace3e5f10882e920", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Shoes/Boots/workboots_color.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Boots/workboots_color.rsi/equipped-FEET.png new file mode 100644 index 00000000000..0562af6a011 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/workboots_color.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/workboots_color.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Boots/workboots_color.rsi/icon.png new file mode 100644 index 00000000000..c0dce40cb56 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/workboots_color.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/workboots_color.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/Boots/workboots_color.rsi/inhand-left.png new file mode 100644 index 00000000000..1e00dadea0d Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/workboots_color.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/workboots_color.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/Boots/workboots_color.rsi/inhand-right.png new file mode 100644 index 00000000000..1694027e4e3 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/workboots_color.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/workboots_color.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Boots/workboots_color.rsi/meta.json new file mode 100644 index 00000000000..755a9ccc6a6 --- /dev/null +++ b/Resources/Textures/Clothing/Shoes/Boots/workboots_color.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/89ae2531b5934cc52fef5a55ace3e5f10882e920", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Shoes/Misc/flats.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Misc/flats.rsi/equipped-FEET.png new file mode 100644 index 00000000000..cae375e1533 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Misc/flats.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/Clothing/Shoes/Misc/flats.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Misc/flats.rsi/icon.png new file mode 100644 index 00000000000..b450d0de397 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Misc/flats.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Shoes/Misc/flats.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/Misc/flats.rsi/inhand-left.png new file mode 100644 index 00000000000..dcc9bf797d7 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Misc/flats.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Shoes/Misc/flats.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/Misc/flats.rsi/inhand-right.png new file mode 100644 index 00000000000..739c6d569d4 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Misc/flats.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Shoes/Misc/flats.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Misc/flats.rsi/meta.json new file mode 100644 index 00000000000..755a9ccc6a6 --- /dev/null +++ b/Resources/Textures/Clothing/Shoes/Misc/flats.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/89ae2531b5934cc52fef5a55ace3e5f10882e920", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Shoes/Misc/high_heels.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Misc/high_heels.rsi/equipped-FEET.png new file mode 100644 index 00000000000..0503c909c56 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Misc/high_heels.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/Clothing/Shoes/Misc/high_heels.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Misc/high_heels.rsi/icon.png new file mode 100644 index 00000000000..441bc821f0f Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Misc/high_heels.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Shoes/Misc/high_heels.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/Misc/high_heels.rsi/inhand-left.png new file mode 100644 index 00000000000..0e1d40e8914 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Misc/high_heels.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Shoes/Misc/high_heels.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/Misc/high_heels.rsi/inhand-right.png new file mode 100644 index 00000000000..eec1033574d Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Misc/high_heels.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Shoes/Misc/high_heels.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Misc/high_heels.rsi/meta.json new file mode 100644 index 00000000000..0442c1039ba --- /dev/null +++ b/Resources/Textures/Clothing/Shoes/Misc/high_heels.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/fd91b0d016b9001f9bd0e034d0b0f8ca8130e23d, and modified by Skubman for Space Station 14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Shoes/Misc/long_high_heels.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Misc/long_high_heels.rsi/equipped-FEET.png new file mode 100644 index 00000000000..5427b205c08 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Misc/long_high_heels.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/Clothing/Shoes/Misc/long_high_heels.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Misc/long_high_heels.rsi/icon.png new file mode 100644 index 00000000000..ae5bbb9c60e Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Misc/long_high_heels.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Shoes/Misc/long_high_heels.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/Misc/long_high_heels.rsi/inhand-left.png new file mode 100644 index 00000000000..0e1d40e8914 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Misc/long_high_heels.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Shoes/Misc/long_high_heels.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/Misc/long_high_heels.rsi/inhand-right.png new file mode 100644 index 00000000000..eec1033574d Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Misc/long_high_heels.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Shoes/Misc/long_high_heels.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Misc/long_high_heels.rsi/meta.json new file mode 100644 index 00000000000..0442c1039ba --- /dev/null +++ b/Resources/Textures/Clothing/Shoes/Misc/long_high_heels.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/fd91b0d016b9001f9bd0e034d0b0f8ca8130e23d, and modified by Skubman for Space Station 14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Shoes/Misc/skater.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Misc/skater.rsi/equipped-FEET.png new file mode 100644 index 00000000000..c6571d1c010 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Misc/skater.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/Clothing/Shoes/Misc/skater.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Misc/skater.rsi/icon.png new file mode 100644 index 00000000000..701e64c652f Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Misc/skater.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Shoes/Misc/skater.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/Misc/skater.rsi/inhand-left.png new file mode 100644 index 00000000000..91b21f65db1 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Misc/skater.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Shoes/Misc/skater.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/Misc/skater.rsi/inhand-right.png new file mode 100644 index 00000000000..c7e4de61c91 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Misc/skater.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Shoes/Misc/skater.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Misc/skater.rsi/meta.json new file mode 100644 index 00000000000..7e0308d761e --- /dev/null +++ b/Resources/Textures/Clothing/Shoes/Misc/skater.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/fd91b0d016b9001f9bd0e034d0b0f8ca8130e23d", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Shoes/Sandals/flipflops.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Sandals/flipflops.rsi/equipped-FEET.png new file mode 100644 index 00000000000..559ea0f0412 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Sandals/flipflops.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/Clothing/Shoes/Sandals/flipflops.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Sandals/flipflops.rsi/icon.png new file mode 100644 index 00000000000..0fb36b95f3b Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Sandals/flipflops.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Shoes/Sandals/flipflops.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/Sandals/flipflops.rsi/inhand-left.png new file mode 100644 index 00000000000..b35cd94d39d Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Sandals/flipflops.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Shoes/Sandals/flipflops.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/Sandals/flipflops.rsi/inhand-right.png new file mode 100644 index 00000000000..554feb95c8f Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Sandals/flipflops.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Shoes/Sandals/flipflops.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Sandals/flipflops.rsi/meta.json new file mode 100644 index 00000000000..fb340cce697 --- /dev/null +++ b/Resources/Textures/Clothing/Shoes/Sandals/flipflops.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/462115b50143c4e1d2722c08c1df66ad8f0ae087", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Shoes/Sandals/flipflops_alt.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Sandals/flipflops_alt.rsi/equipped-FEET.png new file mode 100644 index 00000000000..3cf6d24c928 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Sandals/flipflops_alt.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/Clothing/Shoes/Sandals/flipflops_alt.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Sandals/flipflops_alt.rsi/icon.png new file mode 100644 index 00000000000..7d0e4514172 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Sandals/flipflops_alt.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Shoes/Sandals/flipflops_alt.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/Sandals/flipflops_alt.rsi/inhand-left.png new file mode 100644 index 00000000000..b35cd94d39d Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Sandals/flipflops_alt.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Shoes/Sandals/flipflops_alt.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/Sandals/flipflops_alt.rsi/inhand-right.png new file mode 100644 index 00000000000..554feb95c8f Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Sandals/flipflops_alt.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Shoes/Sandals/flipflops_alt.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Sandals/flipflops_alt.rsi/meta.json new file mode 100644 index 00000000000..d910e19891a --- /dev/null +++ b/Resources/Textures/Clothing/Shoes/Sandals/flipflops_alt.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/462115b50143c4e1d2722c08c1df66ad8f0ae087 | icon modified by Skubman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Shoes/Sandals/sandals.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Sandals/sandals.rsi/equipped-FEET.png new file mode 100644 index 00000000000..c9bc80b348e Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Sandals/sandals.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/Clothing/Shoes/Sandals/sandals.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Sandals/sandals.rsi/icon.png new file mode 100644 index 00000000000..805289e5b07 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Sandals/sandals.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Shoes/Sandals/sandals.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/Sandals/sandals.rsi/inhand-left.png new file mode 100644 index 00000000000..f470be1865e Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Sandals/sandals.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Shoes/Sandals/sandals.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/Sandals/sandals.rsi/inhand-right.png new file mode 100644 index 00000000000..de73a45c00b Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Sandals/sandals.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Shoes/Sandals/sandals.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Sandals/sandals.rsi/meta.json new file mode 100644 index 00000000000..fb340cce697 --- /dev/null +++ b/Resources/Textures/Clothing/Shoes/Sandals/sandals.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/462115b50143c4e1d2722c08c1df66ad8f0ae087", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/asymmetric_dress.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/asymmetric_dress.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..7b6d87af338 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/asymmetric_dress.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/asymmetric_dress.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/asymmetric_dress.rsi/icon.png new file mode 100644 index 00000000000..0e90e48e64f Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/asymmetric_dress.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/asymmetric_dress.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/asymmetric_dress.rsi/meta.json new file mode 100644 index 00000000000..9d77e1c3f12 --- /dev/null +++ b/Resources/Textures/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/Clothing/Uniforms/Jumpskirt/black_and_gold.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/black_and_gold.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..810b1f0e02c Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/black_and_gold.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/black_and_gold.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/black_and_gold.rsi/icon.png new file mode 100644 index 00000000000..4ce73204b2f Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/black_and_gold.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/black_and_gold.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/black_and_gold.rsi/meta.json new file mode 100644 index 00000000000..2dc0faca889 --- /dev/null +++ b/Resources/Textures/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/Clothing/Uniforms/Jumpskirt/black_tango.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/black_tango.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..0b978fedf30 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/black_tango.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/black_tango.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/black_tango.rsi/icon.png new file mode 100644 index 00000000000..01d34e177c1 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/black_tango.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/black_tango.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/black_tango.rsi/inhand-left.png new file mode 100644 index 00000000000..322db6656b2 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/black_tango.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/black_tango.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/black_tango.rsi/inhand-right.png new file mode 100644 index 00000000000..65c3f9e8972 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/black_tango.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/black_tango.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/black_tango.rsi/meta.json new file mode 100644 index 00000000000..ac2f89fef0b --- /dev/null +++ b/Resources/Textures/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/Clothing/Uniforms/Jumpskirt/black_tango_alt.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/black_tango_alt.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..0cc0ec3abc3 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/black_tango_alt.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/black_tango_alt.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/black_tango_alt.rsi/icon.png new file mode 100644 index 00000000000..829e562cf43 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/black_tango_alt.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/black_tango_alt.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/black_tango_alt.rsi/inhand-left.png new file mode 100644 index 00000000000..322db6656b2 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/black_tango_alt.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/black_tango_alt.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/black_tango_alt.rsi/inhand-right.png new file mode 100644 index 00000000000..65c3f9e8972 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/black_tango_alt.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/black_tango_alt.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/black_tango_alt.rsi/meta.json new file mode 100644 index 00000000000..ac2f89fef0b --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpskirt/black_tango_alt.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/Clothing/Uniforms/Jumpskirt/blue_blazer.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/blue_blazer.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..5cfefaab69f Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/blue_blazer.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/blue_blazer.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/blue_blazer.rsi/icon.png new file mode 100644 index 00000000000..5801415e06d Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/blue_blazer.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/blue_blazer.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/blue_blazer.rsi/inhand-left.png new file mode 100644 index 00000000000..f0df5d4f495 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/blue_blazer.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/blue_blazer.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/blue_blazer.rsi/inhand-right.png new file mode 100644 index 00000000000..a4bebfe85ae Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/blue_blazer.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/blue_blazer.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/blue_blazer.rsi/meta.json new file mode 100644 index 00000000000..ae078084867 --- /dev/null +++ b/Resources/Textures/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/Clothing/Uniforms/Jumpskirt/blue_sundress.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/blue_sundress.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..59029dd6f83 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/blue_sundress.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/blue_sundress.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/blue_sundress.rsi/icon.png new file mode 100644 index 00000000000..cf9c03f55af Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/blue_sundress.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/blue_sundress.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/blue_sundress.rsi/meta.json new file mode 100644 index 00000000000..2dc0faca889 --- /dev/null +++ b/Resources/Textures/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/Clothing/Uniforms/Jumpskirt/cheongsamblue.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/cheongsamblue.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..3b383d0c61d Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/cheongsamblue.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/cheongsamblue.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/cheongsamblue.rsi/icon.png new file mode 100644 index 00000000000..57e330055ca Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/cheongsamblue.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/cheongsamblue.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/cheongsamblue.rsi/meta.json new file mode 100644 index 00000000000..c11bafd63a4 --- /dev/null +++ b/Resources/Textures/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/Clothing/Uniforms/Jumpskirt/cheongsamgreen.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/cheongsamgreen.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..9b12afcc924 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/cheongsamgreen.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/cheongsamgreen.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/cheongsamgreen.rsi/icon.png new file mode 100644 index 00000000000..1e9cb7bf446 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/cheongsamgreen.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/cheongsamgreen.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/cheongsamgreen.rsi/meta.json new file mode 100644 index 00000000000..c11bafd63a4 --- /dev/null +++ b/Resources/Textures/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/Clothing/Uniforms/Jumpskirt/cheongsampurple.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/cheongsampurple.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..0117c663a83 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/cheongsampurple.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/cheongsampurple.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/cheongsampurple.rsi/icon.png new file mode 100644 index 00000000000..26842eaa026 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/cheongsampurple.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/cheongsampurple.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/cheongsampurple.rsi/meta.json new file mode 100644 index 00000000000..c11bafd63a4 --- /dev/null +++ b/Resources/Textures/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/Clothing/Uniforms/Jumpskirt/cheongsamred.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/cheongsamred.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..0fb4f21660c Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/cheongsamred.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/cheongsamred.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/cheongsamred.rsi/icon.png new file mode 100644 index 00000000000..e4913d4f11e Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/cheongsamred.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/cheongsamred.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/cheongsamred.rsi/meta.json new file mode 100644 index 00000000000..c11bafd63a4 --- /dev/null +++ b/Resources/Textures/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/Clothing/Uniforms/Jumpskirt/cheongsamwhite.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/cheongsamwhite.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..9908c0c975e Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/cheongsamwhite.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/cheongsamwhite.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/cheongsamwhite.rsi/icon.png new file mode 100644 index 00000000000..70a60e5efba Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/cheongsamwhite.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/cheongsamwhite.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/cheongsamwhite.rsi/meta.json new file mode 100644 index 00000000000..c11bafd63a4 --- /dev/null +++ b/Resources/Textures/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/Clothing/Uniforms/Jumpskirt/club_dress.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/club_dress.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..300b4508c77 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/club_dress.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/club_dress.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/club_dress.rsi/icon.png new file mode 100644 index 00000000000..7ea0b70e6b6 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/club_dress.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/club_dress.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/club_dress.rsi/meta.json new file mode 100644 index 00000000000..095c561c3c9 --- /dev/null +++ b/Resources/Textures/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/Clothing/Uniforms/Jumpskirt/coveter.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/coveter.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..a8dd087c531 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/coveter.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/coveter.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/coveter.rsi/icon.png new file mode 100644 index 00000000000..0e430047516 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/coveter.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/coveter.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/coveter.rsi/meta.json new file mode 100644 index 00000000000..2dc0faca889 --- /dev/null +++ b/Resources/Textures/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/Clothing/Uniforms/Jumpskirt/dress_fire.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/dress_fire.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..22bd0f32324 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/dress_fire.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/dress_fire.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/dress_fire.rsi/icon.png new file mode 100644 index 00000000000..e635c5d5e3c Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/dress_fire.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/dress_fire.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/dress_fire.rsi/meta.json new file mode 100644 index 00000000000..27235e41f03 --- /dev/null +++ b/Resources/Textures/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/Clothing/Uniforms/Jumpskirt/dress_orange.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/dress_orange.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..f3c2e1dd15f Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/dress_orange.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/dress_orange.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/dress_orange.rsi/icon.png new file mode 100644 index 00000000000..10f2c0b18e6 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/dress_orange.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/dress_orange.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/dress_orange.rsi/meta.json new file mode 100644 index 00000000000..27235e41f03 --- /dev/null +++ b/Resources/Textures/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/Clothing/Uniforms/Jumpskirt/dress_yellow.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/dress_yellow.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..2c589322142 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/dress_yellow.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/dress_yellow.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/dress_yellow.rsi/icon.png new file mode 100644 index 00000000000..cfe553ff183 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/dress_yellow.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/dress_yellow.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/dress_yellow.rsi/meta.json new file mode 100644 index 00000000000..27235e41f03 --- /dev/null +++ b/Resources/Textures/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/Clothing/Uniforms/Jumpskirt/evening_gown.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/evening_gown.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..4a3e6588e61 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/evening_gown.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/evening_gown.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/evening_gown.rsi/icon.png new file mode 100644 index 00000000000..34b43413e2a Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/evening_gown.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/evening_gown.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/evening_gown.rsi/meta.json new file mode 100644 index 00000000000..9d77e1c3f12 --- /dev/null +++ b/Resources/Textures/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/Clothing/Uniforms/Jumpskirt/flamenco.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/flamenco.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..d119ec220fb Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/flamenco.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/flamenco.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/flamenco.rsi/icon.png new file mode 100644 index 00000000000..17d92f25e71 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/flamenco.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/flamenco.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/flamenco.rsi/inhand-left.png new file mode 100644 index 00000000000..27013832fdd Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/flamenco.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/flamenco.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/flamenco.rsi/inhand-right.png new file mode 100644 index 00000000000..c07e8763211 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/flamenco.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/flamenco.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/flamenco.rsi/meta.json new file mode 100644 index 00000000000..ae078084867 --- /dev/null +++ b/Resources/Textures/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/Clothing/Uniforms/Jumpskirt/flowergirl.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/flowergirl.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..d9e8c1c9219 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/flowergirl.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/flowergirl.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/flowergirl.rsi/icon.png new file mode 100644 index 00000000000..eedd43e11e6 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/flowergirl.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/flowergirl.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/flowergirl.rsi/meta.json new file mode 100644 index 00000000000..2dc0faca889 --- /dev/null +++ b/Resources/Textures/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/Clothing/Uniforms/Jumpskirt/fluffy.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/fluffy.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..dc175685303 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/fluffy.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/fluffy.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/fluffy.rsi/icon.png new file mode 100644 index 00000000000..7551560d20a Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/fluffy.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/fluffy.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/fluffy.rsi/meta.json new file mode 100644 index 00000000000..2dc0faca889 --- /dev/null +++ b/Resources/Textures/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/Clothing/Uniforms/Jumpskirt/formalred.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/formalred.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..4b345efe948 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/formalred.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/formalred.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/formalred.rsi/icon.png new file mode 100644 index 00000000000..13fbd32eeaf Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/formalred.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/formalred.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/formalred.rsi/meta.json new file mode 100644 index 00000000000..2dc0faca889 --- /dev/null +++ b/Resources/Textures/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/Clothing/Uniforms/Jumpskirt/gothic.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/gothic.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..8dc0a23425b Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/gothic.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/gothic.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/gothic.rsi/icon.png new file mode 100644 index 00000000000..235bf739f94 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/gothic.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/gothic.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/gothic.rsi/meta.json new file mode 100644 index 00000000000..2dc0faca889 --- /dev/null +++ b/Resources/Textures/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/Clothing/Uniforms/Jumpskirt/kimono_color.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/kimono_color.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..7a85082b332 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/kimono_color.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/kimono_color.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/kimono_color.rsi/icon.png new file mode 100644 index 00000000000..006f56936d4 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/kimono_color.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/kimono_color.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/kimono_color.rsi/meta.json new file mode 100644 index 00000000000..354a9b47073 --- /dev/null +++ b/Resources/Textures/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/Clothing/Uniforms/Jumpskirt/lacy_gown.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/lacy_gown.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..8c28a6d4c75 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/lacy_gown.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/lacy_gown.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/lacy_gown.rsi/icon.png new file mode 100644 index 00000000000..5b03cfe4ae8 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/lacy_gown.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/lacy_gown.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/lacy_gown.rsi/meta.json new file mode 100644 index 00000000000..6eba7ec1639 --- /dev/null +++ b/Resources/Textures/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/Clothing/Uniforms/Jumpskirt/long_dress.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/long_dress.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..17f0d54dee8 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/long_dress.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/long_dress.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/long_dress.rsi/icon.png new file mode 100644 index 00000000000..a199c85d795 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/long_dress.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/long_dress.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/long_dress.rsi/meta.json new file mode 100644 index 00000000000..6eba7ec1639 --- /dev/null +++ b/Resources/Textures/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/Clothing/Uniforms/Jumpskirt/long_flared_dress.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/long_flared_dress.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..d463a3d845e Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/long_flared_dress.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/long_flared_dress.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/long_flared_dress.rsi/icon.png new file mode 100644 index 00000000000..86d7296c84c Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/long_flared_dress.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/long_flared_dress.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/long_flared_dress.rsi/meta.json new file mode 100644 index 00000000000..6eba7ec1639 --- /dev/null +++ b/Resources/Textures/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/Clothing/Uniforms/Jumpskirt/longsleeve_dress.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/longsleeve_dress.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..ffcb91c9807 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/longsleeve_dress.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/longsleeve_dress.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/longsleeve_dress.rsi/icon.png new file mode 100644 index 00000000000..73a210e70a0 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/longsleeve_dress.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/longsleeve_dress.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/longsleeve_dress.rsi/meta.json new file mode 100644 index 00000000000..9d77e1c3f12 --- /dev/null +++ b/Resources/Textures/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/Clothing/Uniforms/Jumpskirt/midi_dress.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/midi_dress.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..97a2c01ac93 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/midi_dress.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/midi_dress.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/midi_dress.rsi/icon.png new file mode 100644 index 00000000000..245fd0713e4 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/midi_dress.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/midi_dress.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/midi_dress.rsi/meta.json new file mode 100644 index 00000000000..9d77e1c3f12 --- /dev/null +++ b/Resources/Textures/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/Clothing/Uniforms/Jumpskirt/openshoulder_dress.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/openshoulder_dress.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..74ec17b58c3 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/openshoulder_dress.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/openshoulder_dress.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/openshoulder_dress.rsi/icon.png new file mode 100644 index 00000000000..a5f9126c010 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/openshoulder_dress.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/openshoulder_dress.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/openshoulder_dress.rsi/meta.json new file mode 100644 index 00000000000..9d77e1c3f12 --- /dev/null +++ b/Resources/Textures/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/Clothing/Uniforms/Jumpskirt/puffydress.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/puffydress.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..9580bf06495 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/puffydress.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/puffydress.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/puffydress.rsi/icon.png new file mode 100644 index 00000000000..58dce30ed07 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/puffydress.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/puffydress.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/puffydress.rsi/meta.json new file mode 100644 index 00000000000..27235e41f03 --- /dev/null +++ b/Resources/Textures/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/Clothing/Uniforms/Jumpskirt/qipao.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/qipao.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..2f703ad7e82 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/qipao.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/qipao.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/qipao.rsi/icon.png new file mode 100644 index 00000000000..66f1c963ea8 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/qipao.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/qipao.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/qipao.rsi/meta.json new file mode 100644 index 00000000000..27235e41f03 --- /dev/null +++ b/Resources/Textures/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/Clothing/Uniforms/Jumpskirt/qipao_slim.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/qipao_slim.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..3d0c6a2f27e Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/qipao_slim.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/qipao_slim.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/qipao_slim.rsi/icon.png new file mode 100644 index 00000000000..ef734d390eb Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/qipao_slim.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/qipao_slim.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/qipao_slim.rsi/meta.json new file mode 100644 index 00000000000..27235e41f03 --- /dev/null +++ b/Resources/Textures/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/Clothing/Uniforms/Jumpskirt/red_swept_dress.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/red_swept_dress.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..0f32531ed1d Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/red_swept_dress.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/red_swept_dress.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/red_swept_dress.rsi/icon.png new file mode 100644 index 00000000000..e0767c19adf Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/red_swept_dress.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/red_swept_dress.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/red_swept_dress.rsi/meta.json new file mode 100644 index 00000000000..27235e41f03 --- /dev/null +++ b/Resources/Textures/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/Clothing/Uniforms/Jumpskirt/sailor_dress.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/sailor_dress.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..aaa78447e8e Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/sailor_dress.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/sailor_dress.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/sailor_dress.rsi/icon.png new file mode 100644 index 00000000000..2afcd482971 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/sailor_dress.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/sailor_dress.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/sailor_dress.rsi/meta.json new file mode 100644 index 00000000000..6eba7ec1639 --- /dev/null +++ b/Resources/Textures/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/Clothing/Uniforms/Jumpskirt/sari_green.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/sari_green.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..edd38994a8c Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/sari_green.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/sari_green.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/sari_green.rsi/icon.png new file mode 100644 index 00000000000..6bc6857014d Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/sari_green.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/sari_green.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/sari_green.rsi/meta.json new file mode 100644 index 00000000000..2dc0faca889 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpskirt/sari_green.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/Clothing/Uniforms/Jumpskirt/sari_red.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/sari_red.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..9695339f7d7 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/sari_red.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/sari_red.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/sari_red.rsi/icon.png new file mode 100644 index 00000000000..b5d70a58792 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/sari_red.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/sari_red.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/sari_red.rsi/meta.json new file mode 100644 index 00000000000..2dc0faca889 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpskirt/sari_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/53179e9bfdd2fbd028849aa9eddd2a2fbbf332e7", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/short_dress.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/short_dress.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..ac6eb1c7235 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/short_dress.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/short_dress.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/short_dress.rsi/icon.png new file mode 100644 index 00000000000..4dd94a541c7 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/short_dress.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/short_dress.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/short_dress.rsi/meta.json new file mode 100644 index 00000000000..6eba7ec1639 --- /dev/null +++ b/Resources/Textures/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/Clothing/Uniforms/Jumpskirt/skirt_pencil_gym_bra.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/skirt_pencil_gym_bra.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..0d28f73eb91 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/skirt_pencil_gym_bra.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/skirt_pencil_gym_bra.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/skirt_pencil_gym_bra.rsi/icon.png new file mode 100644 index 00000000000..0c74712972d Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/skirt_pencil_gym_bra.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/skirt_pencil_gym_bra.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/skirt_pencil_gym_bra.rsi/inhand-left.png new file mode 100644 index 00000000000..669c90f7935 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/skirt_pencil_gym_bra.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/skirt_pencil_gym_bra.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/skirt_pencil_gym_bra.rsi/inhand-right.png new file mode 100644 index 00000000000..90504a05d2f Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/skirt_pencil_gym_bra.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/skirt_pencil_gym_bra.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/skirt_pencil_gym_bra.rsi/meta.json new file mode 100644 index 00000000000..71e133c4871 --- /dev/null +++ b/Resources/Textures/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/Clothing/Uniforms/Jumpskirt/sleeveless_dress.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/sleeveless_dress.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..08a4d711c63 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/sleeveless_dress.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/sleeveless_dress.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/sleeveless_dress.rsi/icon.png new file mode 100644 index 00000000000..ca3daff18f5 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/sleeveless_dress.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/sleeveless_dress.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/sleeveless_dress.rsi/meta.json new file mode 100644 index 00000000000..9d77e1c3f12 --- /dev/null +++ b/Resources/Textures/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/Clothing/Uniforms/Jumpskirt/spider.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/spider.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..3a927280b11 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/spider.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/spider.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/spider.rsi/icon.png new file mode 100644 index 00000000000..ac96bcc6223 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/spider.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/spider.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/spider.rsi/meta.json new file mode 100644 index 00000000000..2dc0faca889 --- /dev/null +++ b/Resources/Textures/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/Clothing/Uniforms/Jumpskirt/striped_dress.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/striped_dress.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..a7f008ae25a Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/striped_dress.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/striped_dress.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/striped_dress.rsi/icon.png new file mode 100644 index 00000000000..606fe0b83d7 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/striped_dress.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/striped_dress.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/striped_dress.rsi/meta.json new file mode 100644 index 00000000000..6eba7ec1639 --- /dev/null +++ b/Resources/Textures/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/Clothing/Uniforms/Jumpskirt/sundress.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/sundress.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..1c1a70b7caf Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/sundress.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/sundress.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/sundress.rsi/icon.png new file mode 100644 index 00000000000..a082c7014af Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/sundress.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/sundress.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/sundress.rsi/meta.json new file mode 100644 index 00000000000..27235e41f03 --- /dev/null +++ b/Resources/Textures/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/Clothing/Uniforms/Jumpskirt/sundress_white.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/sundress_white.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..14c11610d7d Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/sundress_white.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/sundress_white.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/sundress_white.rsi/icon.png new file mode 100644 index 00000000000..8455b5bd191 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/sundress_white.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/sundress_white.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/sundress_white.rsi/meta.json new file mode 100644 index 00000000000..27235e41f03 --- /dev/null +++ b/Resources/Textures/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/Clothing/Uniforms/Jumpskirt/tea_dress.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/tea_dress.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..fda1949d35d Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/tea_dress.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/tea_dress.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/tea_dress.rsi/icon.png new file mode 100644 index 00000000000..44640995811 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/tea_dress.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/tea_dress.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/tea_dress.rsi/meta.json new file mode 100644 index 00000000000..9d77e1c3f12 --- /dev/null +++ b/Resources/Textures/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/Clothing/Uniforms/Jumpskirt/victorian_black_dress.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/victorian_black_dress.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..b1d186c085e Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/victorian_black_dress.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/victorian_black_dress.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/victorian_black_dress.rsi/icon.png new file mode 100644 index 00000000000..30d8f48eb3a Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/victorian_black_dress.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/victorian_black_dress.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/victorian_black_dress.rsi/meta.json new file mode 100644 index 00000000000..2dc0faca889 --- /dev/null +++ b/Resources/Textures/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/Clothing/Uniforms/Jumpskirt/victorian_red_dress.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/victorian_red_dress.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..732506c6d5c Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/victorian_red_dress.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/victorian_red_dress.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/victorian_red_dress.rsi/icon.png new file mode 100644 index 00000000000..0f58df68d36 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/victorian_red_dress.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/victorian_red_dress.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/victorian_red_dress.rsi/meta.json new file mode 100644 index 00000000000..2dc0faca889 --- /dev/null +++ b/Resources/Textures/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/Clothing/Uniforms/Jumpskirt/waitress.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/waitress.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..0208af19857 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/waitress.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/waitress.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/waitress.rsi/icon.png new file mode 100644 index 00000000000..c9e56781431 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/waitress.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/waitress.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/waitress.rsi/meta.json new file mode 100644 index 00000000000..19721ae28c7 --- /dev/null +++ b/Resources/Textures/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/Clothing/Uniforms/Jumpskirt/yellowswoop.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/yellowswoop.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..2ab6777576e Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/yellowswoop.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/yellowswoop.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/yellowswoop.rsi/icon.png new file mode 100644 index 00000000000..fb6f811b72c Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/yellowswoop.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/yellowswoop.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/yellowswoop.rsi/meta.json new file mode 100644 index 00000000000..2dc0faca889 --- /dev/null +++ b/Resources/Textures/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/Clothing/Uniforms/Jumpsuit/amish_suit.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/amish_suit.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..911473126dc Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/amish_suit.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/amish_suit.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/amish_suit.rsi/icon.png new file mode 100644 index 00000000000..b3e39d25d86 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/amish_suit.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/amish_suit.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/amish_suit.rsi/inhand-left.png new file mode 100644 index 00000000000..8639732471b Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/amish_suit.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/amish_suit.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/amish_suit.rsi/inhand-right.png new file mode 100644 index 00000000000..7443c9642a3 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/amish_suit.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/amish_suit.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/amish_suit.rsi/meta.json new file mode 100644 index 00000000000..141ad9778a3 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/amish_suit.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", + "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/Clothing/Uniforms/Jumpsuit/aristocratic_suit.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/aristocratic_suit.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..a71510328ba Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/aristocratic_suit.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/aristocratic_suit.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/aristocratic_suit.rsi/icon.png new file mode 100644 index 00000000000..b8b49bc3b06 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/aristocratic_suit.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/aristocratic_suit.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/aristocratic_suit.rsi/meta.json new file mode 100644 index 00000000000..2dc0faca889 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/aristocratic_suit.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/Clothing/Uniforms/Jumpsuit/aristocratic_tuxedo.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/aristocratic_tuxedo.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..cf1969c0398 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/aristocratic_tuxedo.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/aristocratic_tuxedo.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/aristocratic_tuxedo.rsi/icon.png new file mode 100644 index 00000000000..8b5b7a11bc3 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/aristocratic_tuxedo.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/aristocratic_tuxedo.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/aristocratic_tuxedo.rsi/meta.json new file mode 100644 index 00000000000..2dc0faca889 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/aristocratic_tuxedo.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/Clothing/Uniforms/Jumpsuit/ascetic.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ascetic.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..c61f3bcfd7c Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ascetic.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ascetic.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ascetic.rsi/icon.png new file mode 100644 index 00000000000..8d55d5bf5e3 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ascetic.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ascetic.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ascetic.rsi/meta.json new file mode 100644 index 00000000000..2dc0faca889 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ascetic.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/Clothing/Uniforms/Jumpsuit/barber.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/barber.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..0003717c167 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/barber.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/barber.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/barber.rsi/icon.png new file mode 100644 index 00000000000..d63c07a3e21 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/barber.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/barber.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/barber.rsi/meta.json new file mode 100644 index 00000000000..19721ae28c7 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/barber.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/Clothing/Uniforms/Jumpsuit/black_flannel_jeans.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/black_flannel_jeans.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..978ac83ecc2 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/black_flannel_jeans.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/black_flannel_jeans.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/black_flannel_jeans.rsi/icon.png new file mode 100644 index 00000000000..a74305892b6 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/black_flannel_jeans.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/black_flannel_jeans.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/black_flannel_jeans.rsi/meta.json new file mode 100644 index 00000000000..02d998ebd10 --- /dev/null +++ b/Resources/Textures/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/Clothing/Uniforms/Jumpsuit/black_flannel_khakis.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/black_flannel_khakis.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..f228eaa30bf Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/black_flannel_khakis.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/black_flannel_khakis.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/black_flannel_khakis.rsi/icon.png new file mode 100644 index 00000000000..1060d96b829 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/black_flannel_khakis.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/black_flannel_khakis.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/black_flannel_khakis.rsi/meta.json new file mode 100644 index 00000000000..6fe5d59eced --- /dev/null +++ b/Resources/Textures/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/Clothing/Uniforms/Jumpsuit/blue_blazer.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/blue_blazer.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..ae65a7865d7 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/blue_blazer.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/blue_blazer.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/blue_blazer.rsi/icon.png new file mode 100644 index 00000000000..11cd643c3ad Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/blue_blazer.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/blue_blazer.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/blue_blazer.rsi/inhand-left.png new file mode 100644 index 00000000000..f0df5d4f495 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/blue_blazer.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/blue_blazer.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/blue_blazer.rsi/inhand-right.png new file mode 100644 index 00000000000..a4bebfe85ae Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/blue_blazer.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/blue_blazer.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/blue_blazer.rsi/meta.json new file mode 100644 index 00000000000..ae078084867 --- /dev/null +++ b/Resources/Textures/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/Clothing/Uniforms/Jumpsuit/checkered.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/checkered.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..785d31b6cf7 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/checkered.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/checkered.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/checkered.rsi/icon.png new file mode 100644 index 00000000000..96eb9761a7d Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/checkered.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/checkered.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/checkered.rsi/meta.json new file mode 100644 index 00000000000..f96d1c0590c --- /dev/null +++ b/Resources/Textures/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/Clothing/Uniforms/Jumpsuit/cowboybrown.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cowboybrown.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..47dfed4a6f4 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cowboybrown.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cowboybrown.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cowboybrown.rsi/icon.png new file mode 100644 index 00000000000..f546acae959 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cowboybrown.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cowboybrown.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cowboybrown.rsi/meta.json new file mode 100644 index 00000000000..f96d1c0590c --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cowboybrown.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/Clothing/Uniforms/Jumpsuit/cowboygrey.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cowboygrey.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..de42f21583e Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cowboygrey.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cowboygrey.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cowboygrey.rsi/icon.png new file mode 100644 index 00000000000..38ecac6c4f0 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cowboygrey.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cowboygrey.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cowboygrey.rsi/meta.json new file mode 100644 index 00000000000..f96d1c0590c --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cowboygrey.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/Clothing/Uniforms/Jumpsuit/disheveled.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/disheveled.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..db32f0601f3 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/disheveled.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/disheveled.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/disheveled.rsi/icon.png new file mode 100644 index 00000000000..e3d573f5be1 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/disheveled.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/disheveled.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/disheveled.rsi/meta.json new file mode 100644 index 00000000000..eb398cdb1dd --- /dev/null +++ b/Resources/Textures/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/Clothing/Uniforms/Jumpsuit/flannel_jeans.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/flannel_jeans.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..d6e9c232653 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/flannel_jeans.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/flannel_jeans.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/flannel_jeans.rsi/icon.png new file mode 100644 index 00000000000..da697fd0a3a Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/flannel_jeans.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/flannel_jeans.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/flannel_jeans.rsi/meta.json new file mode 100644 index 00000000000..6fe5d59eced --- /dev/null +++ b/Resources/Textures/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/Clothing/Uniforms/Jumpsuit/flannel_khakis.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/flannel_khakis.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..8f58dd61882 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/flannel_khakis.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/flannel_khakis.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/flannel_khakis.rsi/icon.png new file mode 100644 index 00000000000..910ee3ef013 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/flannel_khakis.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/flannel_khakis.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/flannel_khakis.rsi/meta.json new file mode 100644 index 00000000000..02d998ebd10 --- /dev/null +++ b/Resources/Textures/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/Clothing/Uniforms/Jumpsuit/lightblue_shirt.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/lightblue_shirt.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..41cea4cbce3 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/lightblue_shirt.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/lightblue_shirt.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/lightblue_shirt.rsi/icon.png new file mode 100644 index 00000000000..cd6d9676d9d Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/lightblue_shirt.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/lightblue_shirt.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/lightblue_shirt.rsi/meta.json new file mode 100644 index 00000000000..6fe5d59eced --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/lightblue_shirt.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/Clothing/Uniforms/Jumpsuit/olive_sweater.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/olive_sweater.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..e4589597359 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/olive_sweater.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/olive_sweater.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/olive_sweater.rsi/icon.png new file mode 100644 index 00000000000..d9818ae992b Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/olive_sweater.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/olive_sweater.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/olive_sweater.rsi/meta.json new file mode 100644 index 00000000000..e1c7a190dc4 --- /dev/null +++ b/Resources/Textures/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/Clothing/Uniforms/Jumpsuit/regal_suit.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/regal_suit.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..4128e0917a6 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/regal_suit.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/regal_suit.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/regal_suit.rsi/icon.png new file mode 100644 index 00000000000..b385d917b52 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/regal_suit.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/regal_suit.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/regal_suit.rsi/meta.json new file mode 100644 index 00000000000..2dc0faca889 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/regal_suit.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/Clothing/Uniforms/Jumpsuit/regal_tuxedo.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/regal_tuxedo.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..5f1ac19a9fb Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/regal_tuxedo.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/regal_tuxedo.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/regal_tuxedo.rsi/icon.png new file mode 100644 index 00000000000..880aa8548f5 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/regal_tuxedo.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/regal_tuxedo.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/regal_tuxedo.rsi/meta.json new file mode 100644 index 00000000000..2dc0faca889 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/regal_tuxedo.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/Clothing/Uniforms/Jumpsuit/rippedpunk.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/rippedpunk.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..e3fab3358f0 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/rippedpunk.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/rippedpunk.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/rippedpunk.rsi/icon.png new file mode 100644 index 00000000000..e4db7339fd3 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/rippedpunk.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/rippedpunk.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/rippedpunk.rsi/meta.json new file mode 100644 index 00000000000..2dc0faca889 --- /dev/null +++ b/Resources/Textures/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/Clothing/Uniforms/Jumpsuit/sailor.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/sailor.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..6c70bfe2606 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/sailor.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/sailor.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/sailor.rsi/icon.png new file mode 100644 index 00000000000..18ba43708c9 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/sailor.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/sailor.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/sailor.rsi/meta.json new file mode 100644 index 00000000000..6eba7ec1639 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/sailor.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/Clothing/Uniforms/Jumpsuit/striped_suit.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/striped_suit.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..a2640f8d47b Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/striped_suit.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/striped_suit.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/striped_suit.rsi/icon.png new file mode 100644 index 00000000000..eae630c4d3e Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/striped_suit.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/striped_suit.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/striped_suit.rsi/meta.json new file mode 100644 index 00000000000..095c561c3c9 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/striped_suit.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/Clothing/Uniforms/Jumpsuit/trackpants.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/trackpants.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..0b73b5c1616 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/trackpants.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/trackpants.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/trackpants.rsi/icon.png new file mode 100644 index 00000000000..109d030367c Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/trackpants.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/trackpants.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/trackpants.rsi/meta.json new file mode 100644 index 00000000000..19721ae28c7 --- /dev/null +++ b/Resources/Textures/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/Clothing/Uniforms/Jumpsuit/turtleneck_grey.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/turtleneck_grey.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..90239856cd2 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/turtleneck_grey.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/turtleneck_grey.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/turtleneck_grey.rsi/icon.png new file mode 100644 index 00000000000..dcf8962b261 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/turtleneck_grey.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/turtleneck_grey.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/turtleneck_grey.rsi/meta.json new file mode 100644 index 00000000000..6eba7ec1639 --- /dev/null +++ b/Resources/Textures/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/Clothing/Uniforms/Jumpsuit/victorian_red_black.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/victorian_red_black.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..f94edce4171 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/victorian_red_black.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/victorian_red_black.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/victorian_red_black.rsi/icon.png new file mode 100644 index 00000000000..7863f55196a Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/victorian_red_black.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/victorian_red_black.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/victorian_red_black.rsi/meta.json new file mode 100644 index 00000000000..2dc0faca889 --- /dev/null +++ b/Resources/Textures/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/Clothing/Uniforms/Jumpsuit/victorian_red_vest.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/victorian_red_vest.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..7f2f6e2a2d8 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/victorian_red_vest.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/victorian_red_vest.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/victorian_red_vest.rsi/icon.png new file mode 100644 index 00000000000..d3ef3945305 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/victorian_red_vest.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/victorian_red_vest.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/victorian_red_vest.rsi/meta.json new file mode 100644 index 00000000000..2dc0faca889 --- /dev/null +++ b/Resources/Textures/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/Clothing/Uniforms/Jumpsuit/victorian_vest.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/victorian_vest.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..983247bc544 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/victorian_vest.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/victorian_vest.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/victorian_vest.rsi/icon.png new file mode 100644 index 00000000000..6026e3641c5 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/victorian_vest.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/victorian_vest.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/victorian_vest.rsi/meta.json new file mode 100644 index 00000000000..2dc0faca889 --- /dev/null +++ b/Resources/Textures/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/Clothing/Uniforms/Jumpsuit/waiter.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/waiter.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..f2425708947 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/waiter.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/waiter.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/waiter.rsi/icon.png new file mode 100644 index 00000000000..b48d5798157 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/waiter.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/waiter.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/waiter.rsi/meta.json new file mode 100644 index 00000000000..6eba7ec1639 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/waiter.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/Clothing/Uniforms/Jumpsuit/yoga_gym_bra.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/yoga_gym_bra.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..89cf9508020 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/yoga_gym_bra.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/yoga_gym_bra.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/yoga_gym_bra.rsi/icon.png new file mode 100644 index 00000000000..28e98972ff1 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/yoga_gym_bra.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/yoga_gym_bra.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/yoga_gym_bra.rsi/inhand-left.png new file mode 100644 index 00000000000..94da4848668 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/yoga_gym_bra.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/yoga_gym_bra.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/yoga_gym_bra.rsi/inhand-right.png new file mode 100644 index 00000000000..91127bba74e Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/yoga_gym_bra.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/yoga_gym_bra.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/yoga_gym_bra.rsi/meta.json new file mode 100644 index 00000000000..f4b631210b4 --- /dev/null +++ b/Resources/Textures/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/_Nuclear14/Clothing/Head/FalloutHats/beanie.rsi/equipped-HELMET.png b/Resources/Textures/_Nuclear14/Clothing/Head/FalloutHats/beanie.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..3d9f277fe62 Binary files /dev/null and b/Resources/Textures/_Nuclear14/Clothing/Head/FalloutHats/beanie.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/_Nuclear14/Clothing/Head/FalloutHats/beanie.rsi/icon.png b/Resources/Textures/_Nuclear14/Clothing/Head/FalloutHats/beanie.rsi/icon.png new file mode 100644 index 00000000000..7d97b3ea8ba Binary files /dev/null and b/Resources/Textures/_Nuclear14/Clothing/Head/FalloutHats/beanie.rsi/icon.png differ diff --git a/Resources/Textures/_Nuclear14/Clothing/Head/FalloutHats/beanie.rsi/inhand-left.png b/Resources/Textures/_Nuclear14/Clothing/Head/FalloutHats/beanie.rsi/inhand-left.png new file mode 100644 index 00000000000..4fd8fc820d5 Binary files /dev/null and b/Resources/Textures/_Nuclear14/Clothing/Head/FalloutHats/beanie.rsi/inhand-left.png differ diff --git a/Resources/Textures/_Nuclear14/Clothing/Head/FalloutHats/beanie.rsi/inhand-right.png b/Resources/Textures/_Nuclear14/Clothing/Head/FalloutHats/beanie.rsi/inhand-right.png new file mode 100644 index 00000000000..d131600ca7d Binary files /dev/null and b/Resources/Textures/_Nuclear14/Clothing/Head/FalloutHats/beanie.rsi/inhand-right.png differ diff --git a/Resources/Textures/_Nuclear14/Clothing/Head/FalloutHats/beanie.rsi/meta.json b/Resources/Textures/_Nuclear14/Clothing/Head/FalloutHats/beanie.rsi/meta.json new file mode 100644 index 00000000000..5bf4bfba4ce --- /dev/null +++ b/Resources/Textures/_Nuclear14/Clothing/Head/FalloutHats/beanie.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Nukapop13 at commit https://github.com/SeeminglyTypicalUsername/Nukapop13/commit/fbb54ee986f6f321767cbe227dfbf1a9254a0a7a", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Nuclear14/Clothing/Head/FalloutHats/mountiehat.rsi/equipped-HELMET.png b/Resources/Textures/_Nuclear14/Clothing/Head/FalloutHats/mountiehat.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..81ebd493bfa Binary files /dev/null and b/Resources/Textures/_Nuclear14/Clothing/Head/FalloutHats/mountiehat.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/_Nuclear14/Clothing/Head/FalloutHats/mountiehat.rsi/icon.png b/Resources/Textures/_Nuclear14/Clothing/Head/FalloutHats/mountiehat.rsi/icon.png new file mode 100644 index 00000000000..160035df0e5 Binary files /dev/null and b/Resources/Textures/_Nuclear14/Clothing/Head/FalloutHats/mountiehat.rsi/icon.png differ diff --git a/Resources/Textures/_Nuclear14/Clothing/Head/FalloutHats/mountiehat.rsi/inhand-left.png b/Resources/Textures/_Nuclear14/Clothing/Head/FalloutHats/mountiehat.rsi/inhand-left.png new file mode 100644 index 00000000000..4857563e687 Binary files /dev/null and b/Resources/Textures/_Nuclear14/Clothing/Head/FalloutHats/mountiehat.rsi/inhand-left.png differ diff --git a/Resources/Textures/_Nuclear14/Clothing/Head/FalloutHats/mountiehat.rsi/inhand-right.png b/Resources/Textures/_Nuclear14/Clothing/Head/FalloutHats/mountiehat.rsi/inhand-right.png new file mode 100644 index 00000000000..f95e2576b96 Binary files /dev/null and b/Resources/Textures/_Nuclear14/Clothing/Head/FalloutHats/mountiehat.rsi/inhand-right.png differ diff --git a/Resources/Textures/_Nuclear14/Clothing/Head/FalloutHats/mountiehat.rsi/meta.json b/Resources/Textures/_Nuclear14/Clothing/Head/FalloutHats/mountiehat.rsi/meta.json new file mode 100644 index 00000000000..417f89d5623 --- /dev/null +++ b/Resources/Textures/_Nuclear14/Clothing/Head/FalloutHats/mountiehat.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from DesertRose https://github.com/DesertRose2/desertrose/commit/704aa5e9e3b86d6e1dbf64a29ba976f7ef53a4ab", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/bartenderalt.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/bartenderalt.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..8b6aa2cf783 Binary files /dev/null and b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/bartenderalt.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/bartenderalt.rsi/icon.png b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/bartenderalt.rsi/icon.png new file mode 100644 index 00000000000..fa577b7aaa4 Binary files /dev/null and b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/bartenderalt.rsi/icon.png differ diff --git a/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/bartenderalt.rsi/meta.json b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/bartenderalt.rsi/meta.json new file mode 100644 index 00000000000..c34c5240b1f --- /dev/null +++ b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/bartenderalt.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", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/caravaneer.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/caravaneer.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..30d4c815b75 Binary files /dev/null and b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/caravaneer.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/caravaneer.rsi/icon.png b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/caravaneer.rsi/icon.png new file mode 100644 index 00000000000..bd05d1286ba Binary files /dev/null and b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/caravaneer.rsi/icon.png differ diff --git a/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/caravaneer.rsi/meta.json b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/caravaneer.rsi/meta.json new file mode 100644 index 00000000000..c34c5240b1f --- /dev/null +++ b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/caravaneer.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", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/desertbdu.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/desertbdu.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..fa282d5e6e5 Binary files /dev/null and b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/desertbdu.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/desertbdu.rsi/icon.png b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/desertbdu.rsi/icon.png new file mode 100644 index 00000000000..0149e82843b Binary files /dev/null and b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/desertbdu.rsi/icon.png differ diff --git a/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/desertbdu.rsi/meta.json b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/desertbdu.rsi/meta.json new file mode 100644 index 00000000000..8c7bdc2fbdf --- /dev/null +++ b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/desertbdu.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-3.0", + "copyright": "taken from BigIron github, https://github.com/Foundation-19/Big-Iron", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/detectivealt.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/detectivealt.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..7b9a70b70ac Binary files /dev/null and b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/detectivealt.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/detectivealt.rsi/icon.png b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/detectivealt.rsi/icon.png new file mode 100644 index 00000000000..5453db3e8de Binary files /dev/null and b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/detectivealt.rsi/icon.png differ diff --git a/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/detectivealt.rsi/meta.json b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/detectivealt.rsi/meta.json new file mode 100644 index 00000000000..c34c5240b1f --- /dev/null +++ b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/detectivealt.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", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/fudd.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/fudd.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..38a8d26bc97 Binary files /dev/null and b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/fudd.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/fudd.rsi/icon.png b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/fudd.rsi/icon.png new file mode 100644 index 00000000000..1692b15326b Binary files /dev/null and b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/fudd.rsi/icon.png differ diff --git a/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/fudd.rsi/meta.json b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/fudd.rsi/meta.json new file mode 100644 index 00000000000..eca18aa7c16 --- /dev/null +++ b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/fudd.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-3.0", + "copyright": "Taken from Civ13 at https://github.com/Civ13/Civ13/blob/d5cca4c4d7a649176c5f0b26d02dfccaaf5649f4/icons/mob/uniform.dmi, https://github.com/Civ13/Civ13/blob/d5cca4c4d7a649176c5f0b26d02dfccaaf5649f4/icons/obj/clothing/uniforms.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/lumberjack.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/lumberjack.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..bc6d6d98bfc Binary files /dev/null and b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/lumberjack.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/lumberjack.rsi/icon.png b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/lumberjack.rsi/icon.png new file mode 100644 index 00000000000..5acd0caaee1 Binary files /dev/null and b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/lumberjack.rsi/icon.png differ diff --git a/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/lumberjack.rsi/meta.json b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/lumberjack.rsi/meta.json new file mode 100644 index 00000000000..c34c5240b1f --- /dev/null +++ b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/lumberjack.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", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/manager.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/manager.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..271c7544c6c Binary files /dev/null and b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/manager.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/manager.rsi/icon.png b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/manager.rsi/icon.png new file mode 100644 index 00000000000..524e4e13a29 Binary files /dev/null and b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/manager.rsi/icon.png differ diff --git a/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/manager.rsi/meta.json b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/manager.rsi/meta.json new file mode 100644 index 00000000000..c34c5240b1f --- /dev/null +++ b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/manager.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", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/rangerv2.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/rangerv2.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..85452d64444 Binary files /dev/null and b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/rangerv2.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/rangerv2.rsi/icon.png b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/rangerv2.rsi/icon.png new file mode 100644 index 00000000000..0c6b563e41a Binary files /dev/null and b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/rangerv2.rsi/icon.png differ diff --git a/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/rangerv2.rsi/meta.json b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/rangerv2.rsi/meta.json new file mode 100644 index 00000000000..6424b6b36a4 --- /dev/null +++ b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/rangerv2.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-3.0", + "copyright": "made by PatoGrone for N14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/rangerv3.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/rangerv3.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..23b6d3c764d Binary files /dev/null and b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/rangerv3.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/rangerv3.rsi/icon.png b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/rangerv3.rsi/icon.png new file mode 100644 index 00000000000..eb369eed905 Binary files /dev/null and b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/rangerv3.rsi/icon.png differ diff --git a/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/rangerv3.rsi/meta.json b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/rangerv3.rsi/meta.json new file mode 100644 index 00000000000..6424b6b36a4 --- /dev/null +++ b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/rangerv3.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-3.0", + "copyright": "made by PatoGrone for N14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/rangerveteran.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/rangerveteran.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..65477dc3cb3 Binary files /dev/null and b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/rangerveteran.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/rangerveteran.rsi/icon.png b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/rangerveteran.rsi/icon.png new file mode 100644 index 00000000000..da697fd0a3a Binary files /dev/null and b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/rangerveteran.rsi/icon.png differ diff --git a/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/rangerveteran.rsi/meta.json b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/rangerveteran.rsi/meta.json new file mode 100644 index 00000000000..0a329cc6d03 --- /dev/null +++ b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/rangerveteran.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-3.0", + "copyright": "Taken from BigIron github", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/rangerveteranblack.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/rangerveteranblack.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..59794430ff0 Binary files /dev/null and b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/rangerveteranblack.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/rangerveteranblack.rsi/icon.png b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/rangerveteranblack.rsi/icon.png new file mode 100644 index 00000000000..a74305892b6 Binary files /dev/null and b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/rangerveteranblack.rsi/icon.png differ diff --git a/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/rangerveteranblack.rsi/meta.json b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/rangerveteranblack.rsi/meta.json new file mode 100644 index 00000000000..2415346db52 --- /dev/null +++ b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/rangerveteranblack.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-3.0", + "copyright": "taken from BigIron github", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/rangerveteranred.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/rangerveteranred.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..34493168b50 Binary files /dev/null and b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/rangerveteranred.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/rangerveteranred.rsi/icon.png b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/rangerveteranred.rsi/icon.png new file mode 100644 index 00000000000..c7fdd0e4385 Binary files /dev/null and b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/rangerveteranred.rsi/icon.png differ diff --git a/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/rangerveteranred.rsi/meta.json b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/rangerveteranred.rsi/meta.json new file mode 100644 index 00000000000..2415346db52 --- /dev/null +++ b/Resources/Textures/_Nuclear14/Clothing/Uniforms/FalloutSuits/rangerveteranred.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-3.0", + "copyright": "taken from BigIron github", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} \ No newline at end of file