diff --git a/Content.Shared/_RMC14/Clothing/RMCClothingFoldableComponent.cs b/Content.Shared/_RMC14/Clothing/RMCClothingFoldableComponent.cs new file mode 100644 index 00000000000..3458337e29c --- /dev/null +++ b/Content.Shared/_RMC14/Clothing/RMCClothingFoldableComponent.cs @@ -0,0 +1,23 @@ +using Robust.Shared.GameStates; +using Robust.Shared.Serialization; + +namespace Content.Shared._RMC14.Clothing; + +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +[Access(typeof(RMCClothingSystem))] +public sealed partial class RMCClothingFoldableComponent : Component +{ + [DataField, AutoNetworkedField] + public string? ActivatedPrefix; + + [DataField, AutoNetworkedField] + public List Types = new(); +} + +/// +/// Prefix is the clothing prefix when this foldable type is activated. BlacklistedPrefix will prevent this foldable type +/// from activating while the blacklisted one is activated. +/// +[DataRecord] +[Serializable, NetSerializable] +public readonly record struct FoldableType(string Prefix, LocId Name, int Priority, string? BlacklistedPrefix, LocId? BlacklistPopup, bool HideAccessories = false); diff --git a/Content.Shared/_RMC14/Clothing/RMCClothingSystem.cs b/Content.Shared/_RMC14/Clothing/RMCClothingSystem.cs new file mode 100644 index 00000000000..6b80de59d77 --- /dev/null +++ b/Content.Shared/_RMC14/Clothing/RMCClothingSystem.cs @@ -0,0 +1,75 @@ +using Content.Shared.Clothing.Components; +using Content.Shared.Clothing.EntitySystems; +using Content.Shared.Hands.EntitySystems; +using Content.Shared.Interaction.Events; +using Content.Shared.Item; +using Content.Shared.Popups; +using Content.Shared.Verbs; +using Robust.Shared.Utility; + +namespace Content.Shared._RMC14.Clothing; + +public sealed class RMCClothingSystem : EntitySystem +{ + [Dependency] private readonly ClothingSystem _clothing = default!; + [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly SharedHandsSystem _hands = default!; + [Dependency] private readonly SharedItemSystem _item = default!; + + public override void Initialize() + { + SubscribeLocalEvent>(AddFoldVerb); + } + + + private void AddFoldVerb(Entity ent, ref GetVerbsEvent args) + { + if (!args.CanAccess || !args.CanInteract || args.Hands == null) + return; + + var user = args.User; + foreach (var type in ent.Comp.Types) + { + AlternativeVerb verb = new() + { + Act = () => TryToggleFold(ent, type, user), + Text = Loc.GetString(type.Name), + Icon = new SpriteSpecifier.Texture(new("/Textures/Interface/VerbIcons/fold.svg.192dpi.png")), + Priority = type.Priority, + }; + + args.Verbs.Add(verb); + } + } + + public void TryToggleFold(Entity ent, FoldableType type, EntityUid? user) + { + if (type.Prefix == ent.Comp.ActivatedPrefix) // already activated + { + SetPrefix(ent, null, false); + } + else + { + if (type.BlacklistedPrefix == ent.Comp.ActivatedPrefix && ent.Comp.ActivatedPrefix != null) + { + if (type.BlacklistPopup != null && user != null) + { + var msg = Loc.GetString(type.BlacklistPopup); + _popup.PopupClient(msg, user.Value, user.Value, PopupType.SmallCaution); + } + + return; + } + + SetPrefix(ent, type.Prefix, type.HideAccessories); + } + } + + public void SetPrefix(Entity ent, string? prefix, bool hideAccessories) + { + ent.Comp.ActivatedPrefix = prefix; + Dirty(ent); + + _clothing.SetEquippedPrefix(ent.Owner, ent.Comp.ActivatedPrefix); + } +} diff --git a/README.md b/README.md index f5d4f0e12fb..2d87f2e696e 100644 --- a/README.md +++ b/README.md @@ -34,6 +34,7 @@ Content under these subdirectories originate from their respective forks and may | `_NC14` | Nuclear 14 | https://github.com/Vault-Overseers/nuclear-14 | AGPL 3.0 | | `Nyanotrasen` | Nyanotrasen | https://github.com/Nyanotrasen/Nyanotrasen | MIT | | `_StarLight` | StarLight | https://github.com/ss14Starlight/space-station-14 | MIT | +| `_RMC14` | RMC-14 | https://github.com/RMC-14/RMC-14 | MIT | Additional repos that we have ported features from without subdirectories are listed below. diff --git a/Resources/Locale/en-US/_RMC14/button_clothing.FTL b/Resources/Locale/en-US/_RMC14/button_clothing.FTL new file mode 100644 index 00000000000..a1f81c11bcf --- /dev/null +++ b/Resources/Locale/en-US/_RMC14/button_clothing.FTL @@ -0,0 +1,2 @@ +rmc-button-up-verb = Button up +rmc-unbutton-verb = Unbutton \ No newline at end of file diff --git a/Resources/Locale/en-US/_RMC14/foldable.ftl b/Resources/Locale/en-US/_RMC14/foldable.ftl new file mode 100644 index 00000000000..389e3425ccd --- /dev/null +++ b/Resources/Locale/en-US/_RMC14/foldable.ftl @@ -0,0 +1,38 @@ +# Foldable + +rmc-dogtag-verb-hide = Hide dogtags +rmc-dogtag-verb-show = Show dogtags + +rmc-jacket-verb-fold = Take off jacket +rmc-jacket-verb-unfold = Put on jacket + +rmc-sleeves-verb-fold = Roll up sleeves +rmc-sleeves-verb-unfold = Roll down sleeves + +rmc-pants-verb-fold = Roll up pants +rmc-pants-verb-unfold = Roll down pants + +rmc-buttons-verb-fold = Toggle buttons + +rmc-jacket-verb = Toggle Jacket +rmc-sleeves-verb = Toggle Sleeves + +rmc-sleeves-cannot = You can't roll down the sleeves! Try putting on your jacket. + +# Weapons +rmc-gun-foldable-launcher-unfold-self = You begin to unfold and expand the {$weapon} +rmc-gun-foldable-launcher-unfold-others = {$user} begins to unfold the {$weapon}. + +rmc-gun-foldable-launcher-fold-self = You begin to fold the {$weapon} +rmc-gun-foldable-launcher-fold-others = {$user} begins to unfold the {$weapon}. + +rmc-gun-foldable-launcher-fold-finish-self = You finish folding the {$weapon}. +rmc-gun-foldable-launcher-fold-finish-others = {$user} finishes folding the {$weapon}. + +rmc-gun-foldable-launcher-unfold-finish-self = You finish unfolding the {$weapon}. +rmc-gun-foldable-launcher-unfold-finish-others = {$user} finishes unfolding the {$weapon}. + +rmc-gun-foldable-launcher-examine = [bold]Press your [color=cyan]unique action[/color] keybind (Spacebar by default) to fold the weapon.[/bold] +rmc-gun-foldable-launcher-examine-unfold = [bold]Press your [color=cyan]in-hand activation[/color] keybind (Z by default) to unfold the weapon.[/bold] + +rmc-gun-foldable-launcher-fold-already-fired-attempt = The {$weapon} has already been fired - you can't fold it back up again! diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/clothesmate.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/clothesmate.yml index ed2f3a71730..3ce1206a4f6 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/clothesmate.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/clothesmate.yml @@ -115,6 +115,13 @@ ClothingUniformloinclothWhite: 2 ClothingOuterBeltedWear: 2 ClothingOuterTransparentOuterwear: 2 + # Coats ported from RMC to Hardlight by Rtasva + RMCCoatBomberBlack: 2 + RMCCoatBomber: 2 + RMCCoatBomberGrey: 2 + RMCCoatBomberKhaki: 2 + RMCCoatBomberRed: 2 + # End Coats contrabandInventory: ClothingMaskNeckGaiter: 2 ClothingUniformJumpsuitTacticool: 1 diff --git a/Resources/Prototypes/_HL/Catalog/VendingMachines/Inventories/unmcdrobeinventory.yml b/Resources/Prototypes/_HL/Catalog/VendingMachines/Inventories/unmcdrobeinventory.yml new file mode 100644 index 00000000000..388fa518739 --- /dev/null +++ b/Resources/Prototypes/_HL/Catalog/VendingMachines/Inventories/unmcdrobeinventory.yml @@ -0,0 +1,62 @@ +- type: vendingMachineInventory + id: UnmcDrobeInventory + startingInventory: + CMArmorHelmetM10Medic: 1 + CMArmorHelmetM10MedicUrban: 1 + ArmorHelmetM10: 2 + CMArmorHelmetM10Urban: 2 + RMCArmorHelmetM3G4: 1 + RMCArmorHelmetM3G4Urban: 1 + RMCArmorHelmetM3Scout: 1 + RMCArmorHelmetM3ScoutUrban: 1 + CMArmorHelmetM30: 1 + CMArmorHelmetM30Urban: 1 + CMArmorHelmetM35: 1 + CMArmorHelmetM35Urban: 1 + CMArmorM3Medium: 2 + CMArmorM3MediumUrban: 2 + RMCArmorM3MediumCarrier: 1 + RMCArmorM3MediumCarrierUrban: 1 + RMCArmorM3MediumPadlessUrban: 1 + CMArmorM3Heavy: 1 + CMArmorM3HeavyUrban: 1 + RMCArmorM3G4: 1 + RMCArmorM3G4Urban: 1 + CMArmorM3VLSynth: 2 + CMArmorM3VLSynthUrban: 2 + RMCArmorVestFlak: 2 + RMCArmorVestFlakUrban: 2 + RMCCoatPilot: 1 + JumpsuitMarine: 2 + JumpsuitMarineUrban: 2 + CMJumpsuitMarineMedic: 2 + CMJumpsuitMarineMedicUrban: 2 + CMJumpsuitMarineEngineer: 2 + CMJumpsuitMarineEngineerUrban: 2 + CMJumpsuitCO: 1 + CMJumpsuitCOUrban: 1 + CMJumpsuitMarineTanker: 2 + CMJumpsuitMessTech: 2 + CMJumpsuitMarineFormal: 1 + CMJumpsuitBO: 1 + CMJumpsuitDCC: 1 + CMJumpsuitPilot: 1 + RMCJumpsuitPilotAlt: 1 + RMCCoatService: 1 + CMCoatASO: 1 + CMCoatCOFormalBlack: 1 + CMCoatCOFormalWhite: 1 + CMJumpsuitCOFormalBlack: 1 + CMJumpsuitCOFormalWhite: 1 + CMCoatXOFormal: 1 + RMCJacketWindbreakerBrown: 2 + RMCJacketWindbreaker: 2 + RMCJacketWindbreakerGrey: 2 + RMCCoatParamedic: 2 + RMCCoatParamedicGreen: 2 + contrabandInventory: + RMCArmorM3MediumSkull: 1 + RMCArmorM3MediumSkullUrban: 1 + emaggedInventory: + RMCArmorProvost: 1 + RMCArmorProvostAgent: 1 \ No newline at end of file diff --git a/Resources/Prototypes/_HL/Entities/Structures/Machines/vending_machines.yml b/Resources/Prototypes/_HL/Entities/Structures/Machines/vending_machines.yml index 81729db90a5..f2ee19c1a54 100644 --- a/Resources/Prototypes/_HL/Entities/Structures/Machines/vending_machines.yml +++ b/Resources/Prototypes/_HL/Entities/Structures/Machines/vending_machines.yml @@ -72,3 +72,31 @@ radius: 1.8 energy: 1.6 color: "#B63BB8" + +- type: entity + parent: [BaseStructureDisableAnchoring, VendingMachine] + id: VendingMachineRMCDrobe + name: UNMC Surplus Dispenser + description: A vendor advertising military surplus from some far off conflict. + components: + - type: VendingMachine + pack: UnmcDrobeInventory + offState: off + brokenState: broken + normalState: normal-unshaded + - type: Sprite + sprite: _HL/Structures/Machines/VendingMachines/unmcdrobe.rsi + layers: + - state: "off" + map: ["enum.VendingMachineVisualLayers.Base"] + - state: "off" + map: ["enum.VendingMachineVisualLayers.BaseUnshaded"] + shader: unshaded + - state: panel + map: ["enum.WiresVisualLayers.MaintenancePanel"] + - type: PointLight + radius: 1.8 + energy: 1.8 + softness: 0.9 + offset: "0, -0.6" + color: "#bed4bf" \ No newline at end of file diff --git a/Resources/Prototypes/_NF/Entities/Markers/Spawners/Random/dungeon_items_general.yml b/Resources/Prototypes/_NF/Entities/Markers/Spawners/Random/dungeon_items_general.yml index 6c771990373..3517edfbf92 100644 --- a/Resources/Prototypes/_NF/Entities/Markers/Spawners/Random/dungeon_items_general.yml +++ b/Resources/Prototypes/_NF/Entities/Markers/Spawners/Random/dungeon_items_general.yml @@ -490,6 +490,7 @@ rarePrototypes: # - VendingMachineChemicalsSyndicate # A bit less Syndicate loot - VendingMachineArcadia + - VendingMachineRMCDrobe # - VendingMachineSyndieDrobe # A bit less Syndicate loot - VendingMachineSyndieContraband rareChance: 0.03 # actually rare vs. entry frequencies @@ -535,6 +536,7 @@ rarePrototypes: - VendingMachineMagivend - VendingMachineArcadia + - VendingMachineRMCDrobe - VendingMachineBountyVendPunk # - VendingMachineSyndieDrobe # A bit less Syndicate loot - VendingMachineSyndieContraband @@ -572,6 +574,7 @@ - VendingMachineSyndieContraband - VendingMachineSec - VendingMachineArcadia + - VendingMachineRMCDrobe - SpawnDungeonMachineFrame rareChance: 0.03 diff --git a/Resources/Prototypes/_NF/Entities/Markers/Spawners/Random/dungeon_items_mercenary.yml b/Resources/Prototypes/_NF/Entities/Markers/Spawners/Random/dungeon_items_mercenary.yml index cc3ecc7cba9..5cbba3fb69c 100644 --- a/Resources/Prototypes/_NF/Entities/Markers/Spawners/Random/dungeon_items_mercenary.yml +++ b/Resources/Prototypes/_NF/Entities/Markers/Spawners/Random/dungeon_items_mercenary.yml @@ -560,6 +560,7 @@ offset: 0.0 rarePrototypes: - VendingMachineArcadia + - VendingMachineRMCDrobe #- VendingMachineSec #- VendingMachineSecDrobe - SpawnDungeonMachineFrame diff --git a/Resources/Prototypes/_NF/Entities/Markers/Spawners/Random/dungeon_items_supply.yml b/Resources/Prototypes/_NF/Entities/Markers/Spawners/Random/dungeon_items_supply.yml index 161ef2d6f45..0c3d05111f3 100644 --- a/Resources/Prototypes/_NF/Entities/Markers/Spawners/Random/dungeon_items_supply.yml +++ b/Resources/Prototypes/_NF/Entities/Markers/Spawners/Random/dungeon_items_supply.yml @@ -253,6 +253,7 @@ - VendingMachineSyndieContraband # - VendingMachineSyndieDrobe # A bit less Syndicate loot - VendingMachineArcadia + - VendingMachineRMCDrobe rareChance: 0.01 # Other diff --git a/Resources/Prototypes/_RMC14/Entities/Clothing/OuterClothing/armored_vest.yml b/Resources/Prototypes/_RMC14/Entities/Clothing/OuterClothing/armored_vest.yml new file mode 100644 index 00000000000..8878ac3aa13 --- /dev/null +++ b/Resources/Prototypes/_RMC14/Entities/Clothing/OuterClothing/armored_vest.yml @@ -0,0 +1,104 @@ +- type: entity + parent: [RMCAllowSuitStorageClothingArmorVest, RMCBaseArmor] + id: RMCArmorVest + name: armor vest + description: An armored vest that protects against some damage. + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/OuterClothing/Armor/armored_vest.rsi + - type: ClothingSpeedModifier + walkModifier: 0.95 + sprintModifier: 0.95 + - type: Armor + modifiers: + coefficients: + Blunt: 0.9 + Slash: 0.85 + Piercing: 0.8 + Caustic: 0.8 + - type: ExplosionResistance + damageCoefficient: 0.9 + +- type: entity + parent: RMCArmorVest + id: RMCArmorVestFlak + name: M70 flak jacket + description: A flak jacket used by dropship pilots to protect themselves while flying in the cockpit. Excels in protecting the wearer against high-velocity solid projectiles. + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/OuterClothing/Armor/pilot/jungle.rsi + - type: Armor + modifiers: + coefficients: + Blunt: 0.95 + Slash: 0.8 + Piercing: 0.8 + Caustic: 0.9 + - type: ExplosionResistance + damageCoefficient: 0.8 + +- type: entity + parent: RMCArmorVest + id: RMCArmorVestFlakUrban + name: M70 flak jacket (Urban) + description: A flak jacket used by dropship pilots to protect themselves while flying in the cockpit. Excels in protecting the wearer against high-velocity solid projectiles. + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/OuterClothing/Armor/pilot/urban.rsi + - type: Armor + modifiers: + coefficients: + Blunt: 0.95 + Slash: 0.8 + Piercing: 0.8 + Caustic: 0.9 + - type: ExplosionResistance + damageCoefficient: 0.8 + +# M3-XL +- type: entity + parent: [ClothingOuterBase, RMCAllowSuitStorageClothingArmorVest, BaseStorageItem] + id: RMCArmorVestXLBase + abstract: true + name: M3-XL pattern armor vest + description: A type of body armor designed for protection against internal threats. It absorbs the impact of firearm projectiles, while retaining ease of movement. Does not protect against cuts, explosions or bio-threats. Not recommended for direct combat. + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/jungle.rsi + - type: Armor + modifiers: + coefficients: + Piercing: 0.9 + - type: Item + size: Huge + - type: Clothing + - type: Storage + grid: + - 0,0,2,1 + - type: ContainerContainer + containers: + storagebase: !type:Container + ents: [] + - type: UserInterface + interfaces: + enum.StorageUiKey.Key: + type: StorageBoundUserInterface + +# Squad +- type: entity + parent: RMCArmorVestXLBase + id: RMCArmorVestSquad + name: M3-XL pattern marine armor vest + description: A type of M3-XL body armor, standard issue for UNMC marines. The shoulder pads have been taken off for ease of movement. Not recommended for direct combat or for deployment use against hostiles. + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/jungle.rsi + +- type: entity + parent: RMCArmorVestXLBase + id: RMCArmorVestSquadUrban + name: M3-XL pattern marine armor vest (Urban) + description: A type of M3-XL body armor, standard issue for UNMC marines. The shoulder pads have been taken off for ease of movement. Not recommended for direct combat or for deployment use against hostiles. + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/urban.rsi \ No newline at end of file diff --git a/Resources/Prototypes/_RMC14/Entities/Clothing/OuterClothing/base_armor.yml b/Resources/Prototypes/_RMC14/Entities/Clothing/OuterClothing/base_armor.yml new file mode 100644 index 00000000000..47119bcd44d --- /dev/null +++ b/Resources/Prototypes/_RMC14/Entities/Clothing/OuterClothing/base_armor.yml @@ -0,0 +1,151 @@ +# base +- type: entity + parent: ClothingOuterBaseMedium + id: RMCBaseArmor + abstract: true + components: + - type: Sprite + state: icon # default state used by most inheritors + - type: Item + size: Huge + - type: Clothing + +- type: entity + parent: RMCBaseArmor + id: RMCBaseArmorNoAccessory + abstract: true + +- type: entity + abstract: true + id: RMCAllowSuitStorageClothingArmor + components: + - type: AllowSuitStorage + whitelist: + components: + - Lighter + - Bible + - Gun + tags: + - Flashlight + - HealthAnalyzer + - CigPack + - Knife + +- type: entity + abstract: true + id: RMCAllowSuitStorageClothingArmorVest + components: + - type: AllowSuitStorage + whitelist: + components: + - Gun + - Stunbaton + - BallisticAmmoProvider #Note should get all maganizes + tags: + - Handcuffs + - Flashlight + +- type: entity + parent: RMCBaseArmorNoAccessory + id: RMCBaseMarineArmorNoAccessory + abstract: true + components: + - type: Clothing + equipDelay: 2 + unequipDelay: 2 + - type: Storage + grid: + - 0,0,2,1 + - type: ContainerContainer + containers: + storagebase: !type:Container + ents: [] + - type: UserInterface + interfaces: + enum.StorageUiKey.Key: + type: StorageBoundUserInterface + - type: ClothingSpeedModifier + walkModifier: 0.90 + sprintModifier: 0.90 + + +- type: entity + parent: RMCBaseMarineArmorNoAccessory + id: RMCBaseMarineArmor + abstract: true + +- type: entity + parent: RMCBaseMarineArmorNoAccessory + id: RMCBaseMarineArmorLightNoAccessory + abstract: true + components: + - type: Item + heldPrefix: off + - type: Sprite + layers: + - state: icon + - sprite: _RMC14/Objects/Clothing/OuterClothing/Armor/armor_overlays.rsi + state: lamp-off + - sprite: _RMC14/Objects/Clothing/OuterClothing/Armor/armor_overlays.rsi + state: lamp-on + visible: false + map: [ "light" ] + - type: Clothing + equippedPrefix: off + clothingVisuals: + outerClothing: + - state: equipped-OUTERCLOTHING + - sprite: _RMC14/Objects/Clothing/OuterClothing/Armor/armor_overlays.rsi + state: lamp-off + - type: Appearance + - type: HandheldLight + addPrefix: false + - type: ItemTogglePointLight + - type: ToggleableLightVisuals + spriteLayer: light + clothingVisuals: + outerClothing: + - sprite: _RMC14/Objects/Clothing/OuterClothing/Armor/armor_overlays.rsi + state: lamp-on + - type: PointLight + enabled: false + radius: 5 + offset: 0,-0.85 + rotation: 90 + softness: 5 + autoRot: true + netsync: false + color: "#FFFFFF" + mask: /Textures/_RMC14/Effects/LightMasks/wide_ellipsis.png + - type: LightBehaviour + behaviours: + - !type:FadeBehaviour + id: radiating + interpolate: Linear + maxDuration: 2.0 + startValue: 3.0 + endValue: 2.0 + isLooped: true + property: Radius + enabled: false + reverseWhenFinished: true + - !type:PulseBehaviour + id: blinking + interpolate: Nearest + maxDuration: 1.0 + minValue: 0.1 + maxValue: 2.0 + isLooped: true + property: Radius + enabled: false + - type: Battery + maxCharge: 600 #lights drain 3/s but recharge of 2 makes this 1/s. Therefore 600 is 10 minutes of light. + startingCharge: 600 + - type: BatterySelfRecharger + autoRecharge: true + autoRechargeRate: 2 #recharge of 2 makes total drain 1w / s so max charge is 1:1 with time. Time to fully charge should be 5 minutes. Having recharge gives light an extended flicker period which gives you some warning to return to light area. + +- type: entity + parent: RMCBaseMarineArmorLightNoAccessory + id: RMCBaseMarineArmorLight + abstract: true \ No newline at end of file diff --git a/Resources/Prototypes/_RMC14/Entities/Clothing/OuterClothing/coats.yml b/Resources/Prototypes/_RMC14/Entities/Clothing/OuterClothing/coats.yml new file mode 100644 index 00000000000..67f1c5b1c2f --- /dev/null +++ b/Resources/Prototypes/_RMC14/Entities/Clothing/OuterClothing/coats.yml @@ -0,0 +1,382 @@ +#Base Jacket +- type: entity + abstract: true + parent: ClothingOuterStorageBase + id: RMCBaseJacket + components: + - type: Storage + maxItemSize: Small + grid: + - 0,0,3,1 # 2 slots + - type: ContainerContainer + containers: + storagebase: !type:Container + ents: [] + +- type: entity + abstract: True + parent: [ RMCBaseJacket, BaseFoldable ] + id: RMCBaseJacketButtonable + components: + - type: Appearance + - type: Foldable + canFoldInsideContainer: true + unfoldVerbText: rmc-button-up-verb + foldVerbText: rmc-unbutton-verb + - type: FoldableClothing + foldedEquippedPrefix: open + foldedHeldPrefix: open + - type: Sprite + layers: + - state: icon + map: [ "unfoldedLayer" ] + visible: true + - state: icon-open + map: [ "foldedLayer" ] + visible: false + +- type: entity + abstract: True + parent: RMCBaseJacketButtonable + id: RMCBaseJacketButtonableOpened + suffix: opened + components: + - type: Item + heldPrefix: open + - type: Foldable + folded: true + - type: Clothing + equippedPrefix: open + - type: Sprite + layers: + - state: icon + map: [ "unfoldedLayer" ] + visible: false + - state: icon-open + map: [ "foldedLayer" ] + visible: true + + +# Mess Seargeant/Tech +- type: entity + parent: RMCBaseJacket + id: CMCoatMessTech + name: mess technician jacket + description: Smells like vanilla. Signifies prestige and power, if a little flashy. + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/OuterClothing/Coats/chef.rsi + - type: Clothing + sprite: _RMC14/Objects/Clothing/OuterClothing/Coats/chef.rsi + +# Auxiliary Supply Officer +- type: entity + parent: RMCBaseJacket + id: CMCoatASO + name: auxiliary support officer jacket + description: A comfortable vest for officers who are expected to work long hours staring at rows of numbers and inspecting equipment from knives to torpedos to entire dropships. + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/OuterClothing/Coats/aso/classic.rsi + - type: Clothing + sprite: _RMC14/Objects/Clothing/OuterClothing/Coats/aso/classic.rsi + +- type: entity + parent: RMCBaseJacket + id: RMCCoatASOBlack + name: auxiliary support officer black jacket + description: A black jacket worn by officers that want to look stylish while looking at paperwork. + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/OuterClothing/Coats/aso/black.rsi + - type: Clothing + sprite: _RMC14/Objects/Clothing/OuterClothing/Coats/aso/black.rsi + +# Pilot Officer +- type: entity + parent: RMCBaseJacketButtonable + id: RMCCoatPilot + name: M70B1 light flak jacket + description: A light flak jacket used by dropship pilots to protect themselves while flying in the cockpit. This specific flak jacket has been designed for style and comfort over protection, and it shows. Don't get hit by any stray bullets! + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/OuterClothing/Coats/pilot.rsi + layers: + - state: icon + map: [ "unfoldedLayer" ] + - state: jacket-icon + map: [ "foldedLayer" ] + visible: false + - type: Clothing + sprite: _RMC14/Objects/Clothing/OuterClothing/Coats/pilot.rsi + - type: Armor + modifiers: + coefficients: + Blunt: 0.95 + Slash: 0.95 + Piercing: 0.95 + - type: FoldableClothing + foldedEquippedPrefix: jacket + foldedHeldPrefix: jacket + +# Commanding Officer +- type: entity + parent: RMCBaseJacket + id: CMCoatCO + name: marine officer dress jacket + description: Dress Jacket worn by Commanding Officers of the UNMC. + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/OuterClothing/Coats/CO/jacket.rsi + - type: Clothing + sprite: _RMC14/Objects/Clothing/OuterClothing/Coats/CO/jacket.rsi + +- type: entity + parent: RMCBaseJacket + id: RMCCoatBomber + name: brown bomber jacket + description: A well-worn leather bomber jacket. + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/OuterClothing/Coats/CO/bomber.rsi + - type: Clothing + sprite: _RMC14/Objects/Clothing/OuterClothing/Coats/CO/bomber.rsi + - type: Appearance + - type: Foldable + canFoldInsideContainer: true + unfoldVerbText: rmc-buttons-verb-fold + foldVerbText: rmc-buttons-verb-fold + - type: FoldableClothing + foldedEquippedPrefix: jacket + +- type: entity + parent: RMCBaseJacket + id: RMCCoatBomberRed + name: red bomber jacket + description: A well-worn leather bomber jacket. + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/OuterClothing/Coats/bomber_red.rsi + - type: Clothing + sprite: _RMC14/Objects/Clothing/OuterClothing/Coats/bomber_red.rsi + +- type: entity + parent: RMCCoatBomberRed + id: RMCCoatBomberGrey + name: grey bomber jacket + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/OuterClothing/Coats/bomber_grey.rsi + - type: Clothing + sprite: _RMC14/Objects/Clothing/OuterClothing/Coats/bomber_grey.rsi + +- type: entity + parent: RMCCoatBomberRed + id: RMCCoatBomberKhaki + name: khaki bomber jacket + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/OuterClothing/Coats/bomber_khaki.rsi + - type: Clothing + sprite: _RMC14/Objects/Clothing/OuterClothing/Coats/bomber_khaki.rsi + +- type: entity + parent: RMCCoatBomberRed + id: RMCCoatBomberBlack + name: black bomber jacket + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/OuterClothing/Coats/bomber_black.rsi + - type: Clothing + sprite: _RMC14/Objects/Clothing/OuterClothing/Coats/bomber_black.rsi + +- type: entity + parent: CMCoatCO + id: CMCoatCOFormalBlack + name: commanding officer gray dress jacket + description: A gray dress tunic for those occasions that mandate darker, more subdued colors. Combines sleek and subdued with gold accents. + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/OuterClothing/Coats/CO/formal_black.rsi + - type: Clothing + sprite: _RMC14/Objects/Clothing/OuterClothing/Coats/CO/formal_black.rsi + +- type: entity + parent: CMCoatCO + id: CMCoatCOFormalWhite + name: commanding officer white dress jacket + description: A white dress tunic for hot-weather parades. Bright, unstained, and immaculate with gold accents. + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/OuterClothing/Coats/CO/formal_white.rsi + - type: Clothing + sprite: _RMC14/Objects/Clothing/OuterClothing/Coats/CO/formal_white.rsi + +- type: entity + parent: CMCoatCO + id: RMCCoatCOServiceJacketStandard + name: Standard commanding officer standard issue jacket + description: A jacket complement to the standard-issue CO uniform. Smells synthetic, but at least it's stylish. + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/OuterClothing/Coats/CO/standardissuejackets/cojacketstandard.rsi + - type: Clothing + sprite: _RMC14/Objects/Clothing/OuterClothing/Coats/CO/standardissuejackets/cojacketstandard.rsi + +# Executive Officer + +- type: entity + parent: [RMCBaseJacketButtonable, CMCoatCO] + id: CMCoatXOFormal + name: marine formal service jacket + description: Smells like vanilla. Signifies prestige and power, if a little flashy. + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/OuterClothing/Coats/coat_formal.rsi + - type: Clothing + sprite: _RMC14/Objects/Clothing/OuterClothing/Coats/coat_formal.rsi + +- type: entity + parent: [CMCoatCO, RMCBaseJacketButtonable] + id: RMCCoatService + name: marine service jacket + description: A service jacket typically worn by officers of the UNMC. + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/OuterClothing/Coats/service/jungle.rsi + - type: Clothing + sprite: _RMC14/Objects/Clothing/OuterClothing/Coats/service/jungle.rsi + +- type: entity + parent: [CMCoatCO, RMCBaseJacketButtonable] + id: RMCCoatServiceUrban + name: marine service jacket (Urban) + description: A service jacket typically worn by officers of the UNMC. + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/OuterClothing/Coats/service/urban.rsi + - type: Clothing + sprite: _RMC14/Objects/Clothing/OuterClothing/Coats/service/urban.rsi + +- type: entity + parent: [RMCBaseJacketButtonableOpened, RMCCoatService] + id: RMCCoatServiceFolded + name: marine service jacket + description: A service jacket typically worn by officers of the UNMC. + suffix: Unbuttoned + +# Synthetic Utility Vest +- type: entity + parent: RMCBaseJacket + id: CMUtilityVestSynth + name: synthetic utility vest + description: A leather utility vest worn by synthetic UNMC personnel. The vest is rather lightweight but has a few pockets for carrying small items. It is not very protective, but it is a good choice for the Synthetics who want to look stylish while working. + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/OuterClothing/Synthetic/synth_utility.rsi + - type: Clothing + sprite: _RMC14/Objects/Clothing/OuterClothing/Synthetic/synth_utility.rsi + +# Normal utility vest +- type: entity + parent: RMCBaseJacket + id: CMUtilityVest + name: utility vest + description: A leather utility vest, often used to hold tools. + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/OuterClothing/Synthetic/synth_utility.rsi + - type: Clothing + sprite: _RMC14/Objects/Clothing/OuterClothing/Synthetic/synth_utility.rsi + - type: Appearance + +- type: entity + parent: [RMCBaseJacketButtonable, BaseFoldable] + id: RMCJacketWindbreaker + name: green windbreaker + description: A green windbreaker. + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/windbreaker.rsi + layers: + - state: icon + map: [ "unfoldedLayer" ] + visible: true + - state: jacket-icon + map: ["foldedLayer"] + visible: false + - type: Appearance + - type: Foldable + canFoldInsideContainer: true + unfoldVerbText: rmc-button-up-verb + foldVerbText: rmc-unbutton-verb + - type: Clothing + sprite: _RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/windbreaker.rsi + - type: FoldableClothing + foldedEquippedPrefix: jacket + foldedHeldPrefix: jacket + +- type: entity + parent: RMCJacketWindbreaker + id: RMCJacketWindbreakerFirstResponder + name: first responder windbreaker + description: A brown windbreaker with reflective strips commonly worn by first responders. + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/first_responder_windbreaker.rsi + - type: Clothing + sprite: _RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/first_responder_windbreaker.rsi + +- type: entity + parent: RMCJacketWindbreaker + id: RMCJacketWindbreakerBrown + name: brown windbreaker + description: A brown windbreaker. + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/windbreaker_brown.rsi + - type: Clothing + sprite: _RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/windbreaker_brown.rsi + +- type: entity + parent: RMCJacketWindbreaker + id: RMCJacketWindbreakerGrey + name: grey windbreaker + description: A grey windbreaker. + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/windbreaker_grey.rsi + - type: Clothing + sprite: _RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/windbreaker_grey.rsi + +- type: entity + parent: RMCJacketWindbreaker + id: RMCJacketWindbreakerExpedition + name: expedition windbreaker + description: A brown windbreaker with various patches tying it to one of the first explorations into this sector. + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/windbreaker_expedition.rsi + - type: Clothing + sprite: _RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/windbreaker_expedition.rsi + +- type: entity + parent: ClothingOuterBase + id: RMCCoatParamedic + name: EMT - Paramedic utility fatigues + description: A set of EMT - Paramedic utility fatigues, this one is red. + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/OuterClothing/Misc/EMT.rsi + - type: Clothing + sprite: _RMC14/Objects/Clothing/OuterClothing/Misc/EMT.rsi + +- type: entity + parent: RMCCoatParamedic + id: RMCCoatParamedicGreen + description: A set of EMT - Paramedic utility fatigues, this one is green. + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/OuterClothing/Misc/EMT_green.rsi + - type: Clothing + sprite: _RMC14/Objects/Clothing/OuterClothing/Misc/EMT_green.rsi \ No newline at end of file diff --git a/Resources/Prototypes/_RMC14/Entities/Clothing/OuterClothing/marine_armor.yml b/Resources/Prototypes/_RMC14/Entities/Clothing/OuterClothing/marine_armor.yml new file mode 100644 index 00000000000..c0565f240d2 --- /dev/null +++ b/Resources/Prototypes/_RMC14/Entities/Clothing/OuterClothing/marine_armor.yml @@ -0,0 +1,355 @@ +# m3 +- type: entity + parent: RMCBaseMarineArmorLight + id: CMArmorM3Medium + name: M3 pattern marine armor + description: A standard UNMC M3 Pattern Chestplate. Protects the chest from ballistic rounds, bladed objects and accidents. It has a small leather pouch strapped to it for limited storage. + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/OuterClothing/Armor/m3/standard/padded/jungle.rsi + - type: Armor + modifiers: + coefficients: + Blunt: 0.65 + Slash: 0.8 + Piercing: 0.75 + Caustic: 0.7 + - type: ExplosionResistance + damageCoefficient: 0.9 + +- type: entity + parent: RMCBaseMarineArmorLight + id: CMArmorM3MediumUrban + name: M3 pattern marine armor (Urban) + description: A standard UNMC M3 Pattern Chestplate. Protects the chest from ballistic rounds, bladed objects and accidents. It has a small leather pouch strapped to it for limited storage. + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/OuterClothing/Armor/m3/standard/padded/urban.rsi + - type: Armor + modifiers: + coefficients: + Blunt: 0.65 + Slash: 0.8 + Piercing: 0.75 + Caustic: 0.7 + - type: ExplosionResistance + damageCoefficient: 0.9 + +- type: entity + parent: CMArmorM3Medium + id: RMCArmorM3MediumPadless + name: M3 pattern padless marine armor + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/OuterClothing/Armor/m3/standard/padless/jungle.rsi + +- type: entity + parent: CMArmorM3Medium + id: RMCArmorM3MediumPadlessUrban + name: M3 pattern padless marine armor (Urban) + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/OuterClothing/Armor/m3/standard/padless/urban.rsi + +- type: entity + parent: CMArmorM3Medium + id: RMCArmorM3MediumCarrier + name: M3 pattern carrier marine armor + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/OuterClothing/Armor/m3/standard/carrier/jungle.rsi + +- type: entity + parent: CMArmorM3Medium + id: RMCArmorM3MediumCarrierUrban + name: M3 pattern carrier marine armor (Urban) + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/OuterClothing/Armor/m3/standard/carrier/urban.rsi + +- type: entity + parent: CMArmorM3Medium + id: RMCArmorM3MediumSkull + name: M3 pattern skull marine armor + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/OuterClothing/Armor/m3/standard/skull/jungle.rsi + +- type: entity + parent: CMArmorM3Medium + id: RMCArmorM3MediumSkullUrban + name: M3 pattern skull marine armor (Urban) + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/OuterClothing/Armor/m3/standard/skull/urban.rsi + +- type: entity + parent: CMArmorM3Medium + id: CMArmorM3Heavy + name: M3-EOD pattern heavy armor + description: A heavier version of the standard M3 pattern armor, the armor is primarily designed to withstand ballistic, explosive, and internal damage, with the drawback of increased bulk and thus reduced movement speed, alongside little additional protection from standard blunt force impacts and biological threats. + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/OuterClothing/Armor/m3/eod/padded/jungle.rsi + - type: Armor + modifiers: + coefficients: + Blunt: 0.5 + Slash: 0.75 + Piercing: 0.75 + Caustic: 0.6 + - type: ExplosionResistance + damageCoefficient: 0.5 + - type: ClothingSpeedModifier # SLOWDOWN_ARMOR_LOWHEAVY + walkModifier: 0.7 + sprintModifier: 0.7 + - type: Storage + grid: + - 0,0,3,1 # 2 slots + +- type: entity + parent: CMArmorM3Medium + id: CMArmorM3HeavyUrban + name: M3-EOD pattern heavy armor (Urban) + description: A heavier version of the standard M3 pattern armor, the armor is primarily designed to withstand ballistic, explosive, and internal damage, with the drawback of increased bulk and thus reduced movement speed, alongside little additional protection from standard blunt force impacts and biological threats. + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/OuterClothing/Armor/m3/eod/padded/urban.rsi + - type: Armor + modifiers: + coefficients: + Blunt: 0.5 + Slash: 0.75 + Piercing: 0.75 + Caustic: 0.6 + - type: ExplosionResistance + damageCoefficient: 0.5 + - type: ClothingSpeedModifier # SLOWDOWN_ARMOR_LOWHEAVY + walkModifier: 0.7 + sprintModifier: 0.7 + - type: Storage + grid: + - 0,0,3,1 # 2 slots + +- type: entity + parent: CMArmorM3Medium + id: RMCArmorM3G4 + name: M3-G4 grenadier armor + description: A custom set of M3 armor packed to the brim with padding, plating, and every form of ballistic protection under the sun. Used exclusively by Marine Grenadiers. + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/OuterClothing/Armor/m3/g4/jungle.rsi + - type: Armor + modifiers: + coefficients: + Blunt: 0.5 + Slash: 0.75 + Piercing: 0.65 + Caustic: 0.6 + - type: ExplosionResistance + damageCoefficient: 0.65 + - type: ClothingSpeedModifier # SLOWDOWN_ARMOR_LOWHEAVY + walkModifier: 0.8 + sprintModifier: 0.8 + +- type: entity + parent: CMArmorM3Medium + id: RMCArmorM3G4Urban + name: M3-G4 grenadier armor (Urban) + description: A custom set of M3 armor packed to the brim with padding, plating, and every form of ballistic protection under the sun. Used exclusively by Marine Grenadiers. + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/OuterClothing/Armor/m3/g4/urban.rsi + - type: Armor + modifiers: + coefficients: + Blunt: 0.65 + Slash: 0.85 + Piercing: 0.7 + Caustic: 0.85 + - type: ExplosionResistance + damageCoefficient: 0.7 + - type: ClothingSpeedModifier # SLOWDOWN_ARMOR_LOWHEAVY + walkModifier: 0.75 + sprintModifier: 0.75 + +- type: entity + parent: CMArmorM3Medium + id: CMArmorM3Light + name: M3-L pattern light armor + description: A lighter, cut down version of the standard M3 pattern armor. It sacrifices durability for more speed. + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/OuterClothing/Armor/m3/light/padded/jungle.rsi + - type: Armor + modifiers: + coefficients: + Blunt: 0.75 + Slash: 0.8 + Piercing: 0.75 + Caustic: 0.8 + - type: ClothingSpeedModifier + walkModifier: 0.95 + sprintModifier: 0.95 + +- type: entity + parent: CMArmorM3Light + id: RMCArmorM3LightSmooth + name: M3-L pattern low profile armor + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/OuterClothing/Armor/m3/light/smooth/jungle.rsi + +- type: entity + parent: CMArmorM3Light + id: RMCArmorM3LightSmoothUrban + name: M3-L pattern low profile armor (Urban) + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/OuterClothing/Armor/m3/light/smooth/urban.rsi + +- type: entity + parent: CMArmorM3Medium + id: RMCArmorM3Scout + name: M3-S scouting armor + description: A custom set of M3 armor designed for Marine Scouts. + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/OuterClothing/Armor/m3/scout/jungle.rsi + - type: Armor + modifiers: + coefficients: + Blunt: 0.8 + Slash: 0.9 + Piercing: 0.85 + Caustic: 0.8 + - type: ClothingSpeedModifier # light armor speed + walkModifier: 1 + sprintModifier: 1 + +- type: entity + parent: CMArmorM3Medium + id: RMCArmorM3ScoutUrban + name: M3-S scouting armor (Urban) + description: A custom set of M3 armor designed for Marine Scouts. + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/OuterClothing/Armor/m3/scout/urban.rsi + - type: Armor + modifiers: + coefficients: + Blunt: 0.8 + Slash: 0.9 + Piercing: 0.85 + Caustic: 0.8 + - type: ClothingSpeedModifier # light armor speed + walkModifier: 1 + sprintModifier: 1 + +- type: entity + parent: CMArmorM3Light + id: CMArmorM3VLSynth + name: M3A1 synthetic utility vest + description: This variant of the ubiquitous M3 pattern vest has been extensively modified to become superlight, providing zero protection in exchange for maximum mobility and added storage. Compliant will all synthetic armor regulations. + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/OuterClothing/Armor/m3/vl-synth/jungle.rsi + - type: Clothing + - type: Armor + modifiers: + coefficients: + Blunt: 1 + Slash: 1 + Piercing: 1 + Caustic: 0.9 + - type: ClothingSpeedModifier # SLOWDOWN_ARMOR_SUPER_LIGHT + walkModifier: 1 + sprintModifier: 1 + +- type: entity + parent: CMArmorM3Light + id: CMArmorM3VLSynthUrban + name: M3A1 synthetic utility vest (Urban) + description: This variant of the ubiquitous M3 pattern vest has been extensively modified to become superlight, providing zero protection in exchange for maximum mobility and added storage. Compliant will all synthetic armor regulations. + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/OuterClothing/Armor/m3/vl-synth/urban.rsi + - type: Clothing + - type: Armor + modifiers: + coefficients: + Blunt: 1 + Slash: 1 + Piercing: 1 + Caustic: 0.9 + - type: ClothingSpeedModifier # SLOWDOWN_ARMOR_SUPER_LIGHT + walkModifier: 1 + sprintModifier: 1 + +- type: entity + parent: CMArmorM3Medium + id: CMArmorM2MP + name: M2 pattern mp armor + description: A standard UNMC M2 Pattern Chestplate. Protects the chest from ballistic rounds, bladed objects and accidents. It has a small leather pouch strapped to it for limited storage. + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/OuterClothing/Armor/m2/mp/classic.rsi + - type: Armor + modifiers: + coefficients: + Blunt: 0.7 + Slash: 0.85 + Piercing: 0.7 + Caustic: 0.8 + - type: ClothingSpeedModifier + walkModifier: 0.9 + sprintModifier: 0.9 + - type: Storage + maxItemSize: Small + grid: + - 0,0,3,1 # 2 slots + +- type: entity + parent: CMArmorM2MP + id: RMCArmorProvost + name: M3 pattern provost armor + description: A standard Provost M3 Pattern Chestplate. Protects the chest from ballistic rounds, bladed objects and accidents. It has a small leather pouch strapped to it for limited storage. + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/OuterClothing/Provost/medium.rsi + - type: Armor + modifiers: + coefficients: + Blunt: 0.60 + Slash: 0.75 + Piercing: 0.60 + Caustic: 1 + - type: ExplosionResistance + damageCoefficient: 0.9 + - type: ClothingSpeedModifier + walkModifier: 0.8 + sprintModifier: 0.8 + - type: Storage + grid: + - 0,0,5,1 # 3 slots + +- type: entity + parent: CMArmorM3Medium + id: RMCArmorProvostAgent + name: M3 pattern special agent armor + description: A modified luxury armor, originally meant for a Provost Marshall, modified to use the colors and insignia of the intelligence service. + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/OuterClothing/Provost/special.rsi + - type: Armor + modifiers: + coefficients: + Blunt: 0.75 + Slash: 0.75 + Piercing: 0.65 + Caustic: 1 + - type: ExplosionResistance + damageCoefficient: 0.95 + - type: Storage + grid: + - 0,0,3,1 # 2 slots \ No newline at end of file diff --git a/Resources/Prototypes/_RMC14/Entities/Clothing/Uniforms/base.yml b/Resources/Prototypes/_RMC14/Entities/Clothing/Uniforms/base.yml new file mode 100644 index 00000000000..7f4b36dd1ed --- /dev/null +++ b/Resources/Prototypes/_RMC14/Entities/Clothing/Uniforms/base.yml @@ -0,0 +1,61 @@ +- type: entity + abstract: true + parent: Clothing + id: RMCUniformBase + components: + - type: Sprite + state: icon + - type: Clothing + slots: [innerclothing] + - type: Tag + tags: + - ClothMade + - WhitelistChameleon + - type: Food + requiresSpecialDigestion: true + - type: SolutionContainerManager + solutions: + food: + maxVol: 30 + reagents: + - ReagentId: Fiber + Quantity: 30 + +- type: entity + abstract: true + parent: RMCUniformBase + id: RMCFoldableUniformBase + components: + - type: Foldable + canFoldInsideContainer: true + unfoldVerbText: rmc-jacket-verb-unfold + foldVerbText: rmc-jacket-verb-fold + - type: FoldableClothing + foldedEquippedPrefix: jacket + +- type: entity + abstract: true + parent: RMCUniformBase + id: RMCAlternateFoldableUniformBase + components: + - type: RMCClothingFoldable + types: + - name: rmc-jacket-verb + prefix: jacket + priority: 0 + hideAccessories: true + - name: rmc-sleeves-verb + prefix: sleeves + priority: 1 + blacklistedPrefix: jacket + blacklistPopup: rmc-sleeves-cannot + +- type: entity + abstract: true + parent: RMCUniformBase + id: RMCArmoredUniformBase + +- type: entity + abstract: true + parent: RMCArmoredUniformBase + id: RMCMarineUniformBase \ No newline at end of file diff --git a/Resources/Prototypes/_RMC14/Entities/Clothing/Uniforms/marines.yml b/Resources/Prototypes/_RMC14/Entities/Clothing/Uniforms/marines.yml new file mode 100644 index 00000000000..6f132d16852 --- /dev/null +++ b/Resources/Prototypes/_RMC14/Entities/Clothing/Uniforms/marines.yml @@ -0,0 +1,206 @@ +- type: entity + parent: [RMCMarineUniformBase, RMCAlternateFoldableUniformBase] + id: JumpsuitMarine + name: UNMC uniform + description: Standard-issue Marine uniform. They have shards of light Kevlar to help protect against stabbing weapons and bullets. + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/Uniforms/Marine/standard/jungle.rsi + - type: Clothing + sprite: _RMC14/Objects/Clothing/Uniforms/Marine/standard/jungle.rsi + +- type: entity + parent: [RMCMarineUniformBase, RMCAlternateFoldableUniformBase] + id: JumpsuitMarineUrban + name: UNMC uniform (Urban) + description: Standard-issue Marine uniform. They have shards of light Kevlar to help protect against stabbing weapons and bullets. + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/Uniforms/Marine/standard/urban.rsi + - type: Clothing + sprite: _RMC14/Objects/Clothing/Uniforms/Marine/standard/urban.rsi + +# Formal +- type: entity + parent: RMCMarineUniformBase + id: CMJumpsuitMarineFormal + name: formal marine uniform + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/Uniforms/Marine/formal.rsi + - type: Clothing + sprite: _RMC14/Objects/Clothing/Uniforms/Marine/formal.rsi + +# ComTech +- type: entity + parent: JumpsuitMarine + id: CMJumpsuitMarineEngineer + name: UNMC ComTech uniform + description: Standard-issue Marine combat technician fatigues. They have shards of light Kevlar to help protect against stabbing weapons and bullets. + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/Uniforms/Marine/engineer/jungle.rsi + - type: Clothing + sprite: _RMC14/Objects/Clothing/Uniforms/Marine/engineer/jungle.rsi + +- type: entity + parent: JumpsuitMarine + id: CMJumpsuitMarineEngineerUrban + name: UNMC ComTech uniform (Urban) + description: Standard-issue Marine combat technician fatigues. They have shards of light Kevlar to help protect against stabbing weapons and bullets. + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/Uniforms/Marine/engineer/urban.rsi + - type: Clothing + sprite: _RMC14/Objects/Clothing/Uniforms/Marine/engineer/urban.rsi + +# Hospital Corpsman +- type: entity + parent: JumpsuitMarine + id: CMJumpsuitMarineMedic + name: UNMC corpsman uniform + description: Standard-issue Marine hospital corpsman fatigues. They have shards of light Kevlar to help protect against stabbing weapons and bullets. + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/Uniforms/Marine/medic/jungle.rsi + +- type: entity + parent: JumpsuitMarine + id: CMJumpsuitMarineMedicUrban + name: UNMC corpsman uniform (Urban) + description: Standard-issue Marine hospital corpsman fatigues. They have shards of light Kevlar to help protect against stabbing weapons and bullets. + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/Uniforms/Marine/medic/urban.rsi + +# RTO / FTL +- type: entity + parent: JumpsuitMarine + id: CMJumpsuitMarineRTO + name: UNMC radio telephone operator uniform + description: Standard-issue RTO fatigues. They have shards of light Kevlar to help protect against stabbing weapons and bullets. + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/Uniforms/Marine/rto/jungle.rsi + +- type: entity + parent: JumpsuitMarine + id: CMJumpsuitMarineRTOUrban + name: UNMC radio telephone operator uniform (Urban) + description: Standard-issue RTO fatigues. They have shards of light Kevlar to help protect against stabbing weapons and bullets. + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/Uniforms/Marine/rto/urban.rsi + +# Tanker +- type: entity + parent: RMCMarineUniformBase + id: CMJumpsuitMarineTanker + name: UNMC tanker uniform + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/Uniforms/Marine/tanker/jungle.rsi + +# MessTech / Chef +- type: entity + parent: RMCMarineUniformBase + id: CMJumpsuitMessTech + name: UNMC Mess Technician uniform + description: Standard-issue Mess Technician uniform. It has shards of light Kevlar to help protect against stabbing weapons and bullets. + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/Uniforms/Supply/chef.rsi + +# Command + +# Commanding Officer / CO +- type: entity + parent: RMCMarineUniformBase + id: CMJumpsuitCO + name: commanding officer uniform + description: Standard-issue Commanding Officer uniform. + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/Uniforms/Command/CO/standard/jungle.rsi + + +- type: entity + parent: RMCMarineUniformBase + id: CMJumpsuitCOUrban + name: commanding officer uniform (Urban) + description: Standard-issue Commanding Officer uniform. + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/Uniforms/Command/CO/standard/urban.rsi + +- type: entity + parent: CMJumpsuitCO + id: CMJumpsuitCOFormalBlack + name: formal commanding officer uniform + description: Standard-issue commanding officer uniform. + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/Uniforms/Command/CO/formal_black.rsi + +- type: entity + parent: CMJumpsuitCO + id: CMJumpsuitCOFormalWhite + name: formal commanding officer uniform + description: Standard-issue commanding officer uniform. + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/Uniforms/Command/CO/formal_white.rsi + +# Officer +- type: entity + parent: [RMCMarineUniformBase, RMCFoldableUniformBase] + id: CMJumpsuitBO + name: marine service uniform + description: A service uniform worn by members of the UNMC. Do the corps proud. It has shards of light Kevlar to help protect against stabbing weapons and bullets. + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/Uniforms/Command/bo.rsi + - type: Foldable + unfoldVerbText: rmc-sleeves-verb-unfold + foldVerbText: rmc-sleeves-verb-fold + +# Pilot +- type: entity + parent: [RMCMarineUniformBase, RMCFoldableUniformBase] + id: CMJumpsuitPilot + name: pilot bodysuit + description: A bodysuit worn by pilots of the marines, and is meant for survival in inhospitable conditions. Fly the marines onwards to glory. It has shards of light Kevlar to help protect against stabbing weapons and bullets. + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/Uniforms/Auxiliary/pilot/jungle.rsi + - type: Foldable + unfoldVerbText: rmc-sleeves-verb-unfold + foldVerbText: rmc-sleeves-verb-fold + +- type: entity + parent: [RMCMarineUniformBase, RMCFoldableUniformBase] + id: RMCJumpsuitPilotAlt + name: tactical pilot officer flightsuit + description: A flightsuit worn by pilot officers of the UNMC, with plenty of leather straps, pouches, and other essential gear you will never use. Looks badass. + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/Uniforms/Auxiliary/pilot_alt.rsi + +# Dropship Crew Chief +- type: entity + parent: [RMCMarineUniformBase, RMCAlternateFoldableUniformBase] + id: CMJumpsuitDCC + name: dropship crew chief bodysuit + description: A bodysuit worn by dropship crew chiefs of the UNMC, and is meant for survival in inhospitable conditions. It has shards of light Kevlar to help protect against stabbing weapons and bullets. + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/Uniforms/Auxiliary/crewchief.rsi + +- type: entity + parent: [RMCMarineUniformBase, RMCAlternateFoldableUniformBase] + id: RMCJumpsuitSynthetic + name: UNMC Support Uniform + description: A simple uniform made for Synthetic crewmembers + components: + - type: Sprite + sprite: _RMC14/Objects/Clothing/Uniforms/Synthetic/synthetic_support.rsi diff --git a/Resources/Textures/_HL/Structures/Machines/VendingMachines/unmcdrobe.rsi/broken.png b/Resources/Textures/_HL/Structures/Machines/VendingMachines/unmcdrobe.rsi/broken.png new file mode 100644 index 00000000000..cf3b3d203c6 Binary files /dev/null and b/Resources/Textures/_HL/Structures/Machines/VendingMachines/unmcdrobe.rsi/broken.png differ diff --git a/Resources/Textures/_HL/Structures/Machines/VendingMachines/unmcdrobe.rsi/meta.json b/Resources/Textures/_HL/Structures/Machines/VendingMachines/unmcdrobe.rsi/meta.json new file mode 100644 index 00000000000..b4d0f25b2a5 --- /dev/null +++ b/Resources/Textures/_HL/Structures/Machines/VendingMachines/unmcdrobe.rsi/meta.json @@ -0,0 +1,33 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Created by GhostPrince for Frontier Station, Modified by Rtasva for Hardlight", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "broken" + }, + { + "name": "off" + }, + { + "name": "panel" + }, + { + "name": "normal-unshaded", + "delays": [ + [ + 1.0, + 0.1, + 1.0, + 0.1, + 1.0, + 0.1 + ] + ] + } + ] +} diff --git a/Resources/Textures/_HL/Structures/Machines/VendingMachines/unmcdrobe.rsi/normal-unshaded.png b/Resources/Textures/_HL/Structures/Machines/VendingMachines/unmcdrobe.rsi/normal-unshaded.png new file mode 100644 index 00000000000..6dc3e1871dd Binary files /dev/null and b/Resources/Textures/_HL/Structures/Machines/VendingMachines/unmcdrobe.rsi/normal-unshaded.png differ diff --git a/Resources/Textures/_HL/Structures/Machines/VendingMachines/unmcdrobe.rsi/off.png b/Resources/Textures/_HL/Structures/Machines/VendingMachines/unmcdrobe.rsi/off.png new file mode 100644 index 00000000000..4d88614d212 Binary files /dev/null and b/Resources/Textures/_HL/Structures/Machines/VendingMachines/unmcdrobe.rsi/off.png differ diff --git a/Resources/Textures/_HL/Structures/Machines/VendingMachines/unmcdrobe.rsi/panel.png b/Resources/Textures/_HL/Structures/Machines/VendingMachines/unmcdrobe.rsi/panel.png new file mode 100644 index 00000000000..33f9ed5033a Binary files /dev/null and b/Resources/Textures/_HL/Structures/Machines/VendingMachines/unmcdrobe.rsi/panel.png differ diff --git a/Resources/Textures/_RMC14/Effects/Gibs/lesser_drone_gib.rsi/lesser_gib.png b/Resources/Textures/_RMC14/Effects/Gibs/lesser_drone_gib.rsi/lesser_gib.png new file mode 100644 index 00000000000..3ecd50a6900 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/Gibs/lesser_drone_gib.rsi/lesser_gib.png differ diff --git a/Resources/Textures/_RMC14/Effects/Gibs/lesser_drone_gib.rsi/meta.json b/Resources/Textures/_RMC14/Effects/Gibs/lesser_drone_gib.rsi/meta.json new file mode 100644 index 00000000000..c588c98255f --- /dev/null +++ b/Resources/Textures/_RMC14/Effects/Gibs/lesser_drone_gib.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Sprite by Crow/noctrn and @aleksh, edited by Dutch-VanDerLinde", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "lesser_gib", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + } + ] +} diff --git a/Resources/Textures/_RMC14/Effects/Gibs/xeno_gib_small.rsi/meta.json b/Resources/Textures/_RMC14/Effects/Gibs/xeno_gib_small.rsi/meta.json new file mode 100644 index 00000000000..0bc4c26238d --- /dev/null +++ b/Resources/Textures/_RMC14/Effects/Gibs/xeno_gib_small.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Sprite by Crow/noctrn", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "small_gib", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_RMC14/Effects/Gibs/xeno_gib_small.rsi/small_gib.png b/Resources/Textures/_RMC14/Effects/Gibs/xeno_gib_small.rsi/small_gib.png new file mode 100644 index 00000000000..74de6ecf946 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/Gibs/xeno_gib_small.rsi/small_gib.png differ diff --git a/Resources/Textures/_RMC14/Effects/LightMasks/wide_ellipsis.png b/Resources/Textures/_RMC14/Effects/LightMasks/wide_ellipsis.png new file mode 100644 index 00000000000..478a01c4d22 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/LightMasks/wide_ellipsis.png differ diff --git a/Resources/Textures/_RMC14/Effects/beam.rsi/1-corner.png b/Resources/Textures/_RMC14/Effects/beam.rsi/1-corner.png new file mode 100644 index 00000000000..1d7a93ad8a6 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/beam.rsi/1-corner.png differ diff --git a/Resources/Textures/_RMC14/Effects/beam.rsi/1-full.png b/Resources/Textures/_RMC14/Effects/beam.rsi/1-full.png new file mode 100644 index 00000000000..4c08b872f8f Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/beam.rsi/1-full.png differ diff --git a/Resources/Textures/_RMC14/Effects/beam.rsi/1-half.png b/Resources/Textures/_RMC14/Effects/beam.rsi/1-half.png new file mode 100644 index 00000000000..9ee89d96d3d Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/beam.rsi/1-half.png differ diff --git a/Resources/Textures/_RMC14/Effects/beam.rsi/2-corner.png b/Resources/Textures/_RMC14/Effects/beam.rsi/2-corner.png new file mode 100644 index 00000000000..a5299df65f3 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/beam.rsi/2-corner.png differ diff --git a/Resources/Textures/_RMC14/Effects/beam.rsi/2-full.png b/Resources/Textures/_RMC14/Effects/beam.rsi/2-full.png new file mode 100644 index 00000000000..6ca11d10df5 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/beam.rsi/2-full.png differ diff --git a/Resources/Textures/_RMC14/Effects/beam.rsi/2-half.png b/Resources/Textures/_RMC14/Effects/beam.rsi/2-half.png new file mode 100644 index 00000000000..2bd3d1866ea Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/beam.rsi/2-half.png differ diff --git a/Resources/Textures/_RMC14/Effects/beam.rsi/3-corner.png b/Resources/Textures/_RMC14/Effects/beam.rsi/3-corner.png new file mode 100644 index 00000000000..5a397f6fbaa Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/beam.rsi/3-corner.png differ diff --git a/Resources/Textures/_RMC14/Effects/beam.rsi/3-full.png b/Resources/Textures/_RMC14/Effects/beam.rsi/3-full.png new file mode 100644 index 00000000000..6dbdc867614 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/beam.rsi/3-full.png differ diff --git a/Resources/Textures/_RMC14/Effects/beam.rsi/3-half.png b/Resources/Textures/_RMC14/Effects/beam.rsi/3-half.png new file mode 100644 index 00000000000..52645ebb65a Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/beam.rsi/3-half.png differ diff --git a/Resources/Textures/_RMC14/Effects/beam.rsi/b_beam.png b/Resources/Textures/_RMC14/Effects/beam.rsi/b_beam.png new file mode 100644 index 00000000000..2b57ed310eb Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/beam.rsi/b_beam.png differ diff --git a/Resources/Textures/_RMC14/Effects/beam.rsi/blur.png b/Resources/Textures/_RMC14/Effects/beam.rsi/blur.png new file mode 100644 index 00000000000..3177291f8e7 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/beam.rsi/blur.png differ diff --git a/Resources/Textures/_RMC14/Effects/beam.rsi/bsa_beam.png b/Resources/Textures/_RMC14/Effects/beam.rsi/bsa_beam.png new file mode 100644 index 00000000000..a7b39b08c4d Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/beam.rsi/bsa_beam.png differ diff --git a/Resources/Textures/_RMC14/Effects/beam.rsi/chain.png b/Resources/Textures/_RMC14/Effects/beam.rsi/chain.png new file mode 100644 index 00000000000..e11ba411903 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/beam.rsi/chain.png differ diff --git a/Resources/Textures/_RMC14/Effects/beam.rsi/electric.png b/Resources/Textures/_RMC14/Effects/beam.rsi/electric.png new file mode 100644 index 00000000000..af2dc680ca4 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/beam.rsi/electric.png differ diff --git a/Resources/Textures/_RMC14/Effects/beam.rsi/g_beam.png b/Resources/Textures/_RMC14/Effects/beam.rsi/g_beam.png new file mode 100644 index 00000000000..bf3e889bfa5 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/beam.rsi/g_beam.png differ diff --git a/Resources/Textures/_RMC14/Effects/beam.rsi/iv_tube.png b/Resources/Textures/_RMC14/Effects/beam.rsi/iv_tube.png new file mode 100644 index 00000000000..2698d46d378 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/beam.rsi/iv_tube.png differ diff --git a/Resources/Textures/_RMC14/Effects/beam.rsi/laser_beam.png b/Resources/Textures/_RMC14/Effects/beam.rsi/laser_beam.png new file mode 100644 index 00000000000..ab56ca9df4a Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/beam.rsi/laser_beam.png differ diff --git a/Resources/Textures/_RMC14/Effects/beam.rsi/laser_beam_intense.png b/Resources/Textures/_RMC14/Effects/beam.rsi/laser_beam_intense.png new file mode 100644 index 00000000000..a96e85d348b Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/beam.rsi/laser_beam_intense.png differ diff --git a/Resources/Textures/_RMC14/Effects/beam.rsi/laser_beam_spotter.png b/Resources/Textures/_RMC14/Effects/beam.rsi/laser_beam_spotter.png new file mode 100644 index 00000000000..4fdbd165c61 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/beam.rsi/laser_beam_spotter.png differ diff --git a/Resources/Textures/_RMC14/Effects/beam.rsi/light_beam.png b/Resources/Textures/_RMC14/Effects/beam.rsi/light_beam.png new file mode 100644 index 00000000000..0536e91439a Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/beam.rsi/light_beam.png differ diff --git a/Resources/Textures/_RMC14/Effects/beam.rsi/lightning1.png b/Resources/Textures/_RMC14/Effects/beam.rsi/lightning1.png new file mode 100644 index 00000000000..e4bbc6f383e Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/beam.rsi/lightning1.png differ diff --git a/Resources/Textures/_RMC14/Effects/beam.rsi/lightning10.png b/Resources/Textures/_RMC14/Effects/beam.rsi/lightning10.png new file mode 100644 index 00000000000..516c8a2fbbc Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/beam.rsi/lightning10.png differ diff --git a/Resources/Textures/_RMC14/Effects/beam.rsi/lightning11.png b/Resources/Textures/_RMC14/Effects/beam.rsi/lightning11.png new file mode 100644 index 00000000000..2c1de9e27e2 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/beam.rsi/lightning11.png differ diff --git a/Resources/Textures/_RMC14/Effects/beam.rsi/lightning12.png b/Resources/Textures/_RMC14/Effects/beam.rsi/lightning12.png new file mode 100644 index 00000000000..739f48982b2 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/beam.rsi/lightning12.png differ diff --git a/Resources/Textures/_RMC14/Effects/beam.rsi/lightning2.png b/Resources/Textures/_RMC14/Effects/beam.rsi/lightning2.png new file mode 100644 index 00000000000..a8d13dc21ac Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/beam.rsi/lightning2.png differ diff --git a/Resources/Textures/_RMC14/Effects/beam.rsi/lightning3.png b/Resources/Textures/_RMC14/Effects/beam.rsi/lightning3.png new file mode 100644 index 00000000000..649af10dcb7 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/beam.rsi/lightning3.png differ diff --git a/Resources/Textures/_RMC14/Effects/beam.rsi/lightning4.png b/Resources/Textures/_RMC14/Effects/beam.rsi/lightning4.png new file mode 100644 index 00000000000..c68afc01f94 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/beam.rsi/lightning4.png differ diff --git a/Resources/Textures/_RMC14/Effects/beam.rsi/lightning5.png b/Resources/Textures/_RMC14/Effects/beam.rsi/lightning5.png new file mode 100644 index 00000000000..575c86f60bb Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/beam.rsi/lightning5.png differ diff --git a/Resources/Textures/_RMC14/Effects/beam.rsi/lightning6.png b/Resources/Textures/_RMC14/Effects/beam.rsi/lightning6.png new file mode 100644 index 00000000000..1ada9e046be Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/beam.rsi/lightning6.png differ diff --git a/Resources/Textures/_RMC14/Effects/beam.rsi/lightning7.png b/Resources/Textures/_RMC14/Effects/beam.rsi/lightning7.png new file mode 100644 index 00000000000..2a18c12484f Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/beam.rsi/lightning7.png differ diff --git a/Resources/Textures/_RMC14/Effects/beam.rsi/lightning8.png b/Resources/Textures/_RMC14/Effects/beam.rsi/lightning8.png new file mode 100644 index 00000000000..10226ba849f Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/beam.rsi/lightning8.png differ diff --git a/Resources/Textures/_RMC14/Effects/beam.rsi/lightning9.png b/Resources/Textures/_RMC14/Effects/beam.rsi/lightning9.png new file mode 100644 index 00000000000..b038cceca11 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/beam.rsi/lightning9.png differ diff --git a/Resources/Textures/_RMC14/Effects/beam.rsi/medbeam.png b/Resources/Textures/_RMC14/Effects/beam.rsi/medbeam.png new file mode 100644 index 00000000000..d5a68d8078b Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/beam.rsi/medbeam.png differ diff --git a/Resources/Textures/_RMC14/Effects/beam.rsi/meta.json b/Resources/Textures/_RMC14/Effects/beam.rsi/meta.json new file mode 100644 index 00000000000..14c8cb8441b --- /dev/null +++ b/Resources/Textures/_RMC14/Effects/beam.rsi/meta.json @@ -0,0 +1,402 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/18e0f698bd58944a46b04d1e147c21d4b05057d5/icons/effects/beam.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "1-full", + "directions": 8 + }, + { + "name": "1-half", + "directions": 8 + }, + { + "name": "1-corner", + "directions": 8 + }, + { + "name": "2-full", + "directions": 8 + }, + { + "name": "2-half", + "directions": 8 + }, + { + "name": "2-corner", + "directions": 8 + }, + { + "name": "3-full", + "directions": 8 + }, + { + "name": "3-half", + "directions": 8 + }, + { + "name": "3-corner", + "directions": 8 + }, + { + "name": "b_beam", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "r_beam", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "g_beam", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "n_beam", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "electric", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "chain" + }, + { + "name": "wire" + }, + { + "name": "iv_tube" + }, + { + "name": "medbeam", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "nzcrentrs_power", + "delays": [ + [ + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "bsa_beam", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sat_beam", + "delays": [ + [ + 0.1, + 0.1 + ] + ] + }, + { + "name": "red_lightning", + "delays": [ + [ + 0.2, + 0.2 + ] + ] + }, + { + "name": "purple_lightning", + "delays": [ + [ + 0.2, + 0.2 + ] + ] + }, + { + "name": "lightning1", + "delays": [ + [ + 0.120000005, + 0.08 + ] + ] + }, + { + "name": "lightning2", + "delays": [ + [ + 0.120000005, + 0.08 + ] + ] + }, + { + "name": "lightning3", + "delays": [ + [ + 0.120000005, + 0.08 + ] + ] + }, + { + "name": "lightning4", + "delays": [ + [ + 0.120000005, + 0.08 + ] + ] + }, + { + "name": "lightning5", + "delays": [ + [ + 0.120000005, + 0.08 + ] + ] + }, + { + "name": "lightning6", + "delays": [ + [ + 0.120000005, + 0.08 + ] + ] + }, + { + "name": "lightning7", + "delays": [ + [ + 0.120000005, + 0.08 + ] + ] + }, + { + "name": "lightning8", + "delays": [ + [ + 0.120000005, + 0.08 + ] + ] + }, + { + "name": "lightning9", + "delays": [ + [ + 0.120000005, + 0.08 + ] + ] + }, + { + "name": "lightning10", + "delays": [ + [ + 0.120000005, + 0.08 + ] + ] + }, + { + "name": "lightning11", + "delays": [ + [ + 0.120000005, + 0.08 + ] + ] + }, + { + "name": "lightning12", + "delays": [ + [ + 0.120000005, + 0.08 + ] + ] + }, + { + "name": "rped_upgrade", + "delays": [ + [ + 0.030000001, + 0.030000001, + 0.030000001, + 0.030000001 + ] + ] + }, + { + "name": "volt_ray", + "delays": [ + [ + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "blur" + }, + { + "name": "solar_beam", + "delays": [ + [ + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "light_beam", + "delays": [ + [ + 0.1, + 0.1 + ] + ] + }, + { + "name": "plasmabeam" + }, + { + "name": "sm_arc", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sm_arc_supercharged", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sm_arc_dbz_referance", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "oppressor_tail" + }, + { + "name": "oppressor_tail_hook" + }, + { + "name": "oppressor_tail_hook_full" + }, + { + "name": "laser_beam" + }, + { + "name": "laser_beam_intense" + }, + { + "name": "laser_beam_spotter" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_RMC14/Effects/beam.rsi/n_beam.png b/Resources/Textures/_RMC14/Effects/beam.rsi/n_beam.png new file mode 100644 index 00000000000..1005e0f08a4 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/beam.rsi/n_beam.png differ diff --git a/Resources/Textures/_RMC14/Effects/beam.rsi/nzcrentrs_power.png b/Resources/Textures/_RMC14/Effects/beam.rsi/nzcrentrs_power.png new file mode 100644 index 00000000000..05fc36d93a2 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/beam.rsi/nzcrentrs_power.png differ diff --git a/Resources/Textures/_RMC14/Effects/beam.rsi/oppressor_tail.png b/Resources/Textures/_RMC14/Effects/beam.rsi/oppressor_tail.png new file mode 100644 index 00000000000..8def4a5685a Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/beam.rsi/oppressor_tail.png differ diff --git a/Resources/Textures/_RMC14/Effects/beam.rsi/oppressor_tail_hook.png b/Resources/Textures/_RMC14/Effects/beam.rsi/oppressor_tail_hook.png new file mode 100644 index 00000000000..186ffe5232b Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/beam.rsi/oppressor_tail_hook.png differ diff --git a/Resources/Textures/_RMC14/Effects/beam.rsi/oppressor_tail_hook_full.png b/Resources/Textures/_RMC14/Effects/beam.rsi/oppressor_tail_hook_full.png new file mode 100644 index 00000000000..6caad7d8757 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/beam.rsi/oppressor_tail_hook_full.png differ diff --git a/Resources/Textures/_RMC14/Effects/beam.rsi/plasmabeam.png b/Resources/Textures/_RMC14/Effects/beam.rsi/plasmabeam.png new file mode 100644 index 00000000000..a837d00bb4a Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/beam.rsi/plasmabeam.png differ diff --git a/Resources/Textures/_RMC14/Effects/beam.rsi/purple_lightning.png b/Resources/Textures/_RMC14/Effects/beam.rsi/purple_lightning.png new file mode 100644 index 00000000000..eb2067b1003 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/beam.rsi/purple_lightning.png differ diff --git a/Resources/Textures/_RMC14/Effects/beam.rsi/r_beam.png b/Resources/Textures/_RMC14/Effects/beam.rsi/r_beam.png new file mode 100644 index 00000000000..41718974835 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/beam.rsi/r_beam.png differ diff --git a/Resources/Textures/_RMC14/Effects/beam.rsi/red_lightning.png b/Resources/Textures/_RMC14/Effects/beam.rsi/red_lightning.png new file mode 100644 index 00000000000..2205ab44819 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/beam.rsi/red_lightning.png differ diff --git a/Resources/Textures/_RMC14/Effects/beam.rsi/rped_upgrade.png b/Resources/Textures/_RMC14/Effects/beam.rsi/rped_upgrade.png new file mode 100644 index 00000000000..154930d2b5d Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/beam.rsi/rped_upgrade.png differ diff --git a/Resources/Textures/_RMC14/Effects/beam.rsi/sat_beam.png b/Resources/Textures/_RMC14/Effects/beam.rsi/sat_beam.png new file mode 100644 index 00000000000..3c1fd388885 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/beam.rsi/sat_beam.png differ diff --git a/Resources/Textures/_RMC14/Effects/beam.rsi/sm_arc.png b/Resources/Textures/_RMC14/Effects/beam.rsi/sm_arc.png new file mode 100644 index 00000000000..b933aca360a Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/beam.rsi/sm_arc.png differ diff --git a/Resources/Textures/_RMC14/Effects/beam.rsi/sm_arc_dbz_referance.png b/Resources/Textures/_RMC14/Effects/beam.rsi/sm_arc_dbz_referance.png new file mode 100644 index 00000000000..dd373861743 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/beam.rsi/sm_arc_dbz_referance.png differ diff --git a/Resources/Textures/_RMC14/Effects/beam.rsi/sm_arc_supercharged.png b/Resources/Textures/_RMC14/Effects/beam.rsi/sm_arc_supercharged.png new file mode 100644 index 00000000000..a2b63c9563b Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/beam.rsi/sm_arc_supercharged.png differ diff --git a/Resources/Textures/_RMC14/Effects/beam.rsi/solar_beam.png b/Resources/Textures/_RMC14/Effects/beam.rsi/solar_beam.png new file mode 100644 index 00000000000..9cf10c7b906 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/beam.rsi/solar_beam.png differ diff --git a/Resources/Textures/_RMC14/Effects/beam.rsi/volt_ray.png b/Resources/Textures/_RMC14/Effects/beam.rsi/volt_ray.png new file mode 100644 index 00000000000..6a21b7d88c9 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/beam.rsi/volt_ray.png differ diff --git a/Resources/Textures/_RMC14/Effects/beam.rsi/wire.png b/Resources/Textures/_RMC14/Effects/beam.rsi/wire.png new file mode 100644 index 00000000000..46a95f94fd7 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/beam.rsi/wire.png differ diff --git a/Resources/Textures/_RMC14/Effects/creampie.rsi/creampie_feroxi.png b/Resources/Textures/_RMC14/Effects/creampie.rsi/creampie_feroxi.png new file mode 100644 index 00000000000..c3c34b6e503 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/creampie.rsi/creampie_feroxi.png differ diff --git a/Resources/Textures/_RMC14/Effects/creampie.rsi/meta.json b/Resources/Textures/_RMC14/Effects/creampie.rsi/meta.json new file mode 100644 index 00000000000..ff3507bde60 --- /dev/null +++ b/Resources/Textures/_RMC14/Effects/creampie.rsi/meta.json @@ -0,0 +1,15 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Edited by Floofers, portfiend and BlitzTheSquishy", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "creampie_feroxi", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_RMC14/Effects/emotes.rsi/emote_fistbump.png b/Resources/Textures/_RMC14/Effects/emotes.rsi/emote_fistbump.png new file mode 100644 index 00000000000..2de2abb31e1 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/emotes.rsi/emote_fistbump.png differ diff --git a/Resources/Textures/_RMC14/Effects/emotes.rsi/emote_highfive.png b/Resources/Textures/_RMC14/Effects/emotes.rsi/emote_highfive.png new file mode 100644 index 00000000000..d4ad3892658 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/emotes.rsi/emote_highfive.png differ diff --git a/Resources/Textures/_RMC14/Effects/emotes.rsi/emote_hug.png b/Resources/Textures/_RMC14/Effects/emotes.rsi/emote_hug.png new file mode 100644 index 00000000000..72b50f54ebe Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/emotes.rsi/emote_hug.png differ diff --git a/Resources/Textures/_RMC14/Effects/emotes.rsi/emote_tailswipe.png b/Resources/Textures/_RMC14/Effects/emotes.rsi/emote_tailswipe.png new file mode 100644 index 00000000000..d6334211c90 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/emotes.rsi/emote_tailswipe.png differ diff --git a/Resources/Textures/_RMC14/Effects/emotes.rsi/meta.json b/Resources/Textures/_RMC14/Effects/emotes.rsi/meta.json new file mode 100644 index 00000000000..212bc0293e0 --- /dev/null +++ b/Resources/Textures/_RMC14/Effects/emotes.rsi/meta.json @@ -0,0 +1,55 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/0525b5ada7da1afcd9b260e76d5fea01500d9c8d/icons/mob/do_afters.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "emote_highfive", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "emote_fistbump", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "emote_tailswipe", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "emote_hug", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + } + ] +} diff --git a/Resources/Textures/_RMC14/Effects/fire.rsi/meta.json b/Resources/Textures/_RMC14/Effects/fire.rsi/meta.json index c3b9d14337c..3e1dd419600 100644 --- a/Resources/Textures/_RMC14/Effects/fire.rsi/meta.json +++ b/Resources/Textures/_RMC14/Effects/fire.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/ce01adda18ccca3bb0105615391861567c766330/icons/effects/fire.dmi", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/ce01adda18ccca3bb0105615391861567c766330/icons/effects/fire.dmi, purple fire recolored by UnicornOnLSD on github from white fire taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/ce01adda18ccca3bb0105615391861567c766330/icons/effects/fire.dmi", "size": { "x": 32, "y": 32 @@ -185,6 +185,50 @@ 0.1 ] ] + }, + { + "name": "purple_4", + "delays": [ + [ + 0.1, + 0.2, + 0.1, + 0.2 + ] + ] + }, + { + "name": "purple_3", + "delays": [ + [ + 0.1, + 0.2, + 0.1, + 0.2 + ] + ] + }, + { + "name": "purple_2", + "delays": [ + [ + 0.1, + 0.2, + 0.1, + 0.2 + ] + ] + }, + { + "name": "purple_1", + "delays": [ + [ + 0.1, + 0.2, + 0.1, + 0.1 + ] + ] }, { "name": "dynamic_4", diff --git a/Resources/Textures/_RMC14/Effects/fire.rsi/purple_1.png b/Resources/Textures/_RMC14/Effects/fire.rsi/purple_1.png new file mode 100644 index 00000000000..b87ce4368db Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/fire.rsi/purple_1.png differ diff --git a/Resources/Textures/_RMC14/Effects/fire.rsi/purple_2.png b/Resources/Textures/_RMC14/Effects/fire.rsi/purple_2.png new file mode 100644 index 00000000000..05ec8c8b4fe Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/fire.rsi/purple_2.png differ diff --git a/Resources/Textures/_RMC14/Effects/fire.rsi/purple_3.png b/Resources/Textures/_RMC14/Effects/fire.rsi/purple_3.png new file mode 100644 index 00000000000..68ac2f9f62e Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/fire.rsi/purple_3.png differ diff --git a/Resources/Textures/_RMC14/Effects/fire.rsi/purple_4.png b/Resources/Textures/_RMC14/Effects/fire.rsi/purple_4.png new file mode 100644 index 00000000000..bdd97398206 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/fire.rsi/purple_4.png differ diff --git a/Resources/Textures/_RMC14/Effects/green_glow.rsi/green_glow.png b/Resources/Textures/_RMC14/Effects/green_glow.rsi/green_glow.png new file mode 100644 index 00000000000..1246c62412f Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/green_glow.rsi/green_glow.png differ diff --git a/Resources/Textures/_RMC14/Effects/green_glow.rsi/meta.json b/Resources/Textures/_RMC14/Effects/green_glow.rsi/meta.json new file mode 100644 index 00000000000..74798939b1c --- /dev/null +++ b/Resources/Textures/_RMC14/Effects/green_glow.rsi/meta.json @@ -0,0 +1,14 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/9e46a4af63818ec5c627c77624a0a9904491f90b/icons/effects/effects.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "green_glow" + } + ] +} diff --git a/Resources/Textures/_RMC14/Effects/heal.rsi/meta.json b/Resources/Textures/_RMC14/Effects/heal.rsi/meta.json index bd28f86fac1..af88446b73b 100644 --- a/Resources/Textures/_RMC14/Effects/heal.rsi/meta.json +++ b/Resources/Textures/_RMC14/Effects/heal.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/884ab172389b6fc54ef063f5fbea5e8b0a0a2235/icons/mob/mob.dmi", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/884ab172389b6fc54ef063f5fbea5e8b0a0a2235/icons/mob/mob.dmi, plasma overlay by Vermidia", "size": { "x": 32, "y": 32 @@ -36,6 +36,21 @@ 0.1 ] ] + }, + { + "name": "plasma_overlay", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.1 + ] + ] } ] } \ No newline at end of file diff --git a/Resources/Textures/_RMC14/Effects/heal.rsi/plasma_overlay.png b/Resources/Textures/_RMC14/Effects/heal.rsi/plasma_overlay.png new file mode 100644 index 00000000000..9ccb3d8a350 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/heal.rsi/plasma_overlay.png differ diff --git a/Resources/Textures/_RMC14/Effects/pointing.rsi/big_arrow.png b/Resources/Textures/_RMC14/Effects/pointing.rsi/big_arrow.png index 2a934c577e3..8d235568d6e 100644 Binary files a/Resources/Textures/_RMC14/Effects/pointing.rsi/big_arrow.png and b/Resources/Textures/_RMC14/Effects/pointing.rsi/big_arrow.png differ diff --git a/Resources/Textures/_RMC14/Effects/pointing.rsi/big_arrow_grey.png b/Resources/Textures/_RMC14/Effects/pointing.rsi/big_arrow_grey.png new file mode 100644 index 00000000000..a711b975ab0 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/pointing.rsi/big_arrow_grey.png differ diff --git a/Resources/Textures/_RMC14/Effects/pointing.rsi/big_arrow_queen.png b/Resources/Textures/_RMC14/Effects/pointing.rsi/big_arrow_queen.png index 3bedace891e..bb4a9ddef60 100644 Binary files a/Resources/Textures/_RMC14/Effects/pointing.rsi/big_arrow_queen.png and b/Resources/Textures/_RMC14/Effects/pointing.rsi/big_arrow_queen.png differ diff --git a/Resources/Textures/_RMC14/Effects/pointing.rsi/meta.json b/Resources/Textures/_RMC14/Effects/pointing.rsi/meta.json index 808fdcfabe2..f635f2aaaa0 100644 --- a/Resources/Textures/_RMC14/Effects/pointing.rsi/meta.json +++ b/Resources/Textures/_RMC14/Effects/pointing.rsi/meta.json @@ -1,17 +1,20 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/403abdaa39c950d60dde0a57bdf29a30b1a8aff6/icons/mob/hud/screen1.dmi", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/0525b5ada7da1afcd9b260e76d5fea01500d9c8d/icons/mob/hud/screen1.dmi, edited by InvisibleSnake7(github)", "size": { "x": 32, "y": 32 }, "states": [ + { + "name": "big_arrow" + }, { "name": "big_arrow_queen" }, { - "name": "big_arrow" + "name": "big_arrow_grey" } ] } diff --git a/Resources/Textures/_RMC14/Effects/targeted.rsi/meta.json b/Resources/Textures/_RMC14/Effects/targeted.rsi/meta.json new file mode 100644 index 00000000000..4cdd7d8a7ea --- /dev/null +++ b/Resources/Textures/_RMC14/Effects/targeted.rsi/meta.json @@ -0,0 +1,52 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/ad5daf73527c723bc4dc496366812c7e536df548/icons/effects/Targeted.dmi, https://github.com/cmss13-devs/cmss13/blob/18e0f698bd58944a46b04d1e147c21d4b05057d5/icons/effects/beam.dmi, https://github.com/cmss13-devs/cmss13/blob/1fae8ef420342ad5eb5d8a850ee898560c094669/icons/mob/hud/actions.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "sniper_lockon", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "spotter_lockon", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "sniper_lockon_intense", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sniper_lockon_direction", + "directions": 4 + }, + { + "name": "sniper_lockon_intense_direction", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_RMC14/Effects/targeted.rsi/sniper_lockon.png b/Resources/Textures/_RMC14/Effects/targeted.rsi/sniper_lockon.png new file mode 100644 index 00000000000..9a17fe57159 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/targeted.rsi/sniper_lockon.png differ diff --git a/Resources/Textures/_RMC14/Effects/targeted.rsi/sniper_lockon_direction.png b/Resources/Textures/_RMC14/Effects/targeted.rsi/sniper_lockon_direction.png new file mode 100644 index 00000000000..94e5dd4fd1d Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/targeted.rsi/sniper_lockon_direction.png differ diff --git a/Resources/Textures/_RMC14/Effects/targeted.rsi/sniper_lockon_intense.png b/Resources/Textures/_RMC14/Effects/targeted.rsi/sniper_lockon_intense.png new file mode 100644 index 00000000000..3d74d163e2f Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/targeted.rsi/sniper_lockon_intense.png differ diff --git a/Resources/Textures/_RMC14/Effects/targeted.rsi/sniper_lockon_intense_direction.png b/Resources/Textures/_RMC14/Effects/targeted.rsi/sniper_lockon_intense_direction.png new file mode 100644 index 00000000000..ca752efda1c Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/targeted.rsi/sniper_lockon_intense_direction.png differ diff --git a/Resources/Textures/_RMC14/Effects/targeted.rsi/spotter_lockon.png b/Resources/Textures/_RMC14/Effects/targeted.rsi/spotter_lockon.png new file mode 100644 index 00000000000..d7a6b33a5b5 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/targeted.rsi/spotter_lockon.png differ diff --git a/Resources/Textures/_RMC14/Effects/transparent_smoke.rsi/meta.json b/Resources/Textures/_RMC14/Effects/transparent_smoke.rsi/meta.json new file mode 100644 index 00000000000..dbf1e4bf88e --- /dev/null +++ b/Resources/Textures/_RMC14/Effects/transparent_smoke.rsi/meta.json @@ -0,0 +1,47 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/3e5f07059175d34e7a731edafa23a57e481fce77/icons/effects/96x96.dmi", + "size": { + "x": 96, + "y": 96 + }, + "states": [ + { + "name": "smoke2", + "delays": [ + [ + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "smoke", + "directions": 4, + "delays": [ + [ + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2 + ] + ] + } + ] +} diff --git a/Resources/Textures/_RMC14/Effects/transparent_smoke.rsi/smoke.png b/Resources/Textures/_RMC14/Effects/transparent_smoke.rsi/smoke.png new file mode 100644 index 00000000000..238e44b2f4f Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/transparent_smoke.rsi/smoke.png differ diff --git a/Resources/Textures/_RMC14/Effects/transparent_smoke.rsi/smoke2.png b/Resources/Textures/_RMC14/Effects/transparent_smoke.rsi/smoke2.png new file mode 100644 index 00000000000..3a5522db40e Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/transparent_smoke.rsi/smoke2.png differ diff --git a/Resources/Textures/_RMC14/Effects/weather.rsi/bigred_dust.png b/Resources/Textures/_RMC14/Effects/weather.rsi/bigred_dust.png new file mode 100644 index 00000000000..7923c2ffcb7 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/weather.rsi/bigred_dust.png differ diff --git a/Resources/Textures/_RMC14/Effects/weather.rsi/bigred_rocks.png b/Resources/Textures/_RMC14/Effects/weather.rsi/bigred_rocks.png new file mode 100644 index 00000000000..ec466adfcda Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/weather.rsi/bigred_rocks.png differ diff --git a/Resources/Textures/_RMC14/Effects/weather.rsi/bigred_sand.png b/Resources/Textures/_RMC14/Effects/weather.rsi/bigred_sand.png new file mode 100644 index 00000000000..8c4e453c858 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/weather.rsi/bigred_sand.png differ diff --git a/Resources/Textures/_RMC14/Effects/weather.rsi/hybrisa_rain.png b/Resources/Textures/_RMC14/Effects/weather.rsi/hybrisa_rain.png new file mode 100644 index 00000000000..65bf40e1c96 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/weather.rsi/hybrisa_rain.png differ diff --git a/Resources/Textures/_RMC14/Effects/weather.rsi/hybrisa_rain_light.png b/Resources/Textures/_RMC14/Effects/weather.rsi/hybrisa_rain_light.png new file mode 100644 index 00000000000..e154b47e2bf Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/weather.rsi/hybrisa_rain_light.png differ diff --git a/Resources/Textures/_RMC14/Effects/weather.rsi/hybrisa_rain_very_light.png b/Resources/Textures/_RMC14/Effects/weather.rsi/hybrisa_rain_very_light.png new file mode 100644 index 00000000000..eaabefadfb5 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/weather.rsi/hybrisa_rain_very_light.png differ diff --git a/Resources/Textures/_RMC14/Effects/weather.rsi/meta.json b/Resources/Textures/_RMC14/Effects/weather.rsi/meta.json new file mode 100644 index 00000000000..72bc18915b0 --- /dev/null +++ b/Resources/Textures/_RMC14/Effects/weather.rsi/meta.json @@ -0,0 +1,406 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/master/icons/effects/weather.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "strata_clearsky", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "strata_blizzard", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "strata_storm", + "delays": [ + [ + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09 + ] + ] + }, + { + "name": "strata_storm_light", + "delays": [ + [ + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09 + ] + ] + }, + { + "name": "strata_storm_very_light", + "delays": [ + [ + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09 + ] + ] + }, + { + "name": "hybrisa_rain", + "delays": [ + [ + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09 + ] + ] + }, + { + "name": "hybrisa_rain_light", + "delays": [ + [ + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09 + ] + ] + }, + { + "name": "hybrisa_rain_very_light", + "delays": [ + [ + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09 + ] + ] + }, + { + "name": "trijent_rain_light", + "delays": [ + [ + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09 + ] + ] + }, + { + "name": "bigred_rocks", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "bigred_dust", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "bigred_sand", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "strata_snowing", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + } + ] +} diff --git a/Resources/Textures/_RMC14/Effects/weather.rsi/strata_blizzard.png b/Resources/Textures/_RMC14/Effects/weather.rsi/strata_blizzard.png new file mode 100644 index 00000000000..5a6814ad637 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/weather.rsi/strata_blizzard.png differ diff --git a/Resources/Textures/_RMC14/Effects/weather.rsi/strata_clearsky.png b/Resources/Textures/_RMC14/Effects/weather.rsi/strata_clearsky.png new file mode 100644 index 00000000000..b255aecb3db Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/weather.rsi/strata_clearsky.png differ diff --git a/Resources/Textures/_RMC14/Effects/weather.rsi/strata_snowing.png b/Resources/Textures/_RMC14/Effects/weather.rsi/strata_snowing.png new file mode 100644 index 00000000000..f49f4c37c29 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/weather.rsi/strata_snowing.png differ diff --git a/Resources/Textures/_RMC14/Effects/weather.rsi/strata_storm.png b/Resources/Textures/_RMC14/Effects/weather.rsi/strata_storm.png new file mode 100644 index 00000000000..ab2f38e9cbe Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/weather.rsi/strata_storm.png differ diff --git a/Resources/Textures/_RMC14/Effects/weather.rsi/strata_storm_light.png b/Resources/Textures/_RMC14/Effects/weather.rsi/strata_storm_light.png new file mode 100644 index 00000000000..f306519e60b Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/weather.rsi/strata_storm_light.png differ diff --git a/Resources/Textures/_RMC14/Effects/weather.rsi/strata_storm_very_light.png b/Resources/Textures/_RMC14/Effects/weather.rsi/strata_storm_very_light.png new file mode 100644 index 00000000000..d793223d30f Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/weather.rsi/strata_storm_very_light.png differ diff --git a/Resources/Textures/_RMC14/Effects/weather.rsi/trijent_rain_light.png b/Resources/Textures/_RMC14/Effects/weather.rsi/trijent_rain_light.png new file mode 100644 index 00000000000..82530ee9424 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/weather.rsi/trijent_rain_light.png differ diff --git a/Resources/Textures/_RMC14/Effects/xeno_acid.rsi/acid-extinguish.png b/Resources/Textures/_RMC14/Effects/xeno_acid.rsi/acid-extinguish.png new file mode 100644 index 00000000000..bb097762967 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/xeno_acid.rsi/acid-extinguish.png differ diff --git a/Resources/Textures/_RMC14/Effects/xeno_acid.rsi/meta.json b/Resources/Textures/_RMC14/Effects/xeno_acid.rsi/meta.json index 439a453a89d..64d1b7cf51d 100644 --- a/Resources/Textures/_RMC14/Effects/xeno_acid.rsi/meta.json +++ b/Resources/Textures/_RMC14/Effects/xeno_acid.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/af7813ee8c36f9195a88f3b3d018af2b8833cbea/icons/mob/xenos/effects.dmi", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/af7813ee8c36f9195a88f3b3d018af2b8833cbea/icons/mob/xenos/effects.dmi, extinguish by Vermidia", "size": { "x": 32, "y": 32 @@ -141,6 +141,18 @@ 0.2 ] ] + }, + { + "name": "acid-extinguish", + "delays": [ + [ + 0.4, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] } ] } \ No newline at end of file diff --git a/Resources/Textures/_RMC14/Effects/xeno_eye.rsi/hudeye1.png b/Resources/Textures/_RMC14/Effects/xeno_eye.rsi/hudeye1.png new file mode 100644 index 00000000000..ded5fd5141a Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/xeno_eye.rsi/hudeye1.png differ diff --git a/Resources/Textures/_RMC14/Effects/xeno_eye.rsi/hudeye2.png b/Resources/Textures/_RMC14/Effects/xeno_eye.rsi/hudeye2.png new file mode 100644 index 00000000000..dd2215d3cd8 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/xeno_eye.rsi/hudeye2.png differ diff --git a/Resources/Textures/_RMC14/Effects/xeno_eye.rsi/hudeye3.png b/Resources/Textures/_RMC14/Effects/xeno_eye.rsi/hudeye3.png new file mode 100644 index 00000000000..54dbccd258a Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/xeno_eye.rsi/hudeye3.png differ diff --git a/Resources/Textures/_RMC14/Effects/xeno_eye.rsi/hudeye4.png b/Resources/Textures/_RMC14/Effects/xeno_eye.rsi/hudeye4.png new file mode 100644 index 00000000000..eaeafc27cb1 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/xeno_eye.rsi/hudeye4.png differ diff --git a/Resources/Textures/_RMC14/Effects/xeno_eye.rsi/hudeye5.png b/Resources/Textures/_RMC14/Effects/xeno_eye.rsi/hudeye5.png new file mode 100644 index 00000000000..06f9435c10d Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/xeno_eye.rsi/hudeye5.png differ diff --git a/Resources/Textures/_RMC14/Effects/xeno_eye.rsi/meta.json b/Resources/Textures/_RMC14/Effects/xeno_eye.rsi/meta.json new file mode 100644 index 00000000000..7510ef4d09c --- /dev/null +++ b/Resources/Textures/_RMC14/Effects/xeno_eye.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Made by Alekshhh", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "hudeye1" + }, + { + "name": "hudeye2" + }, + { + "name": "hudeye3" + }, + { + "name": "hudeye4" + }, + { + "name": "hudeye5" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/meta.json b/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/meta.json new file mode 100644 index 00000000000..cea27c29635 --- /dev/null +++ b/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/meta.json @@ -0,0 +1,104 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/20db6e3fc344d59ed9502ee7626d9fea89674713/icons/mob/xenos/effects.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "secrete_base" + }, + { + "name": "secrete_dir1" + }, + { + "name": "secrete_dir2" + }, + { + "name": "secrete_dir3" + }, + { + "name": "secrete_dir4" + }, + { + "name": "secrete_dir5" + }, + { + "name": "secrete_dir6" + }, + { + "name": "secrete_dir7" + }, + { + "name": "secrete_dir8" + }, + { + "name": "secrete_dir9" + }, + { + "name": "secrete_dir10" + }, + { + "name": "secrete_dir11" + }, + { + "name": "secrete_dir12" + }, + { + "name": "secrete_dir13" + }, + { + "name": "secrete_dir14" + }, + { + "name": "secrete0" + }, + { + "name": "secrete1" + }, + { + "name": "secrete2" + }, + { + "name": "secrete3" + }, + { + "name": "secrete4" + }, + { + "name": "secrete5" + }, + { + "name": "secrete6" + }, + { + "name": "secrete7" + }, + { + "name": "secrete8" + }, + { + "name": "secrete9" + }, + { + "name": "secrete10" + }, + { + "name": "secrete11" + }, + { + "name": "secrete12" + }, + { + "name": "secrete13" + }, + { + "name": "secrete14" + }, + { + "name": "secrete15" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete0.png b/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete0.png new file mode 100644 index 00000000000..ddcdf232d82 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete0.png differ diff --git a/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete1.png b/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete1.png new file mode 100644 index 00000000000..ee2b0c4c19d Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete1.png differ diff --git a/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete10.png b/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete10.png new file mode 100644 index 00000000000..e71495ddc7d Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete10.png differ diff --git a/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete11.png b/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete11.png new file mode 100644 index 00000000000..42f7afbd5b6 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete11.png differ diff --git a/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete12.png b/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete12.png new file mode 100644 index 00000000000..3301c57df23 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete12.png differ diff --git a/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete13.png b/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete13.png new file mode 100644 index 00000000000..4d68411f8dd Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete13.png differ diff --git a/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete14.png b/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete14.png new file mode 100644 index 00000000000..f78f31e8fae Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete14.png differ diff --git a/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete15.png b/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete15.png new file mode 100644 index 00000000000..4708c3fd461 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete15.png differ diff --git a/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete2.png b/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete2.png new file mode 100644 index 00000000000..509ed7e6998 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete2.png differ diff --git a/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete3.png b/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete3.png new file mode 100644 index 00000000000..5e895e5d092 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete3.png differ diff --git a/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete4.png b/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete4.png new file mode 100644 index 00000000000..9565c06cdae Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete4.png differ diff --git a/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete5.png b/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete5.png new file mode 100644 index 00000000000..a0db538d56f Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete5.png differ diff --git a/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete6.png b/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete6.png new file mode 100644 index 00000000000..8e94e17d532 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete6.png differ diff --git a/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete7.png b/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete7.png new file mode 100644 index 00000000000..a78e4f411bb Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete7.png differ diff --git a/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete8.png b/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete8.png new file mode 100644 index 00000000000..5b0fae5d946 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete8.png differ diff --git a/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete9.png b/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete9.png new file mode 100644 index 00000000000..753740997d5 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete9.png differ diff --git a/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete_base.png b/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete_base.png new file mode 100644 index 00000000000..a723c561f83 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete_base.png differ diff --git a/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete_dir1.png b/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete_dir1.png new file mode 100644 index 00000000000..5162d04683f Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete_dir1.png differ diff --git a/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete_dir10.png b/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete_dir10.png new file mode 100644 index 00000000000..1658bdaf9f1 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete_dir10.png differ diff --git a/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete_dir11.png b/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete_dir11.png new file mode 100644 index 00000000000..d6b82e8d4f8 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete_dir11.png differ diff --git a/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete_dir12.png b/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete_dir12.png new file mode 100644 index 00000000000..c9021c9d4ef Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete_dir12.png differ diff --git a/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete_dir13.png b/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete_dir13.png new file mode 100644 index 00000000000..14e4c57b9d9 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete_dir13.png differ diff --git a/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete_dir14.png b/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete_dir14.png new file mode 100644 index 00000000000..c0160893ea3 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete_dir14.png differ diff --git a/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete_dir2.png b/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete_dir2.png new file mode 100644 index 00000000000..17290b6890c Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete_dir2.png differ diff --git a/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete_dir3.png b/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete_dir3.png new file mode 100644 index 00000000000..9d7f8b4de03 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete_dir3.png differ diff --git a/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete_dir4.png b/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete_dir4.png new file mode 100644 index 00000000000..1eb9c0a9808 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete_dir4.png differ diff --git a/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete_dir5.png b/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete_dir5.png new file mode 100644 index 00000000000..56745d34d8c Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete_dir5.png differ diff --git a/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete_dir6.png b/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete_dir6.png new file mode 100644 index 00000000000..43009b9a461 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete_dir6.png differ diff --git a/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete_dir7.png b/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete_dir7.png new file mode 100644 index 00000000000..6e81f273498 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete_dir7.png differ diff --git a/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete_dir8.png b/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete_dir8.png new file mode 100644 index 00000000000..af1d175414e Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete_dir8.png differ diff --git a/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete_dir9.png b/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete_dir9.png new file mode 100644 index 00000000000..3175194dd66 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/xeno_secrete.rsi/secrete_dir9.png differ diff --git a/Resources/Textures/_RMC14/Effects/xeno_shield.rsi/meta.json b/Resources/Textures/_RMC14/Effects/xeno_shield.rsi/meta.json new file mode 100644 index 00000000000..c74827a253f --- /dev/null +++ b/Resources/Textures/_RMC14/Effects/xeno_shield.rsi/meta.json @@ -0,0 +1,14 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/085faa829b8e86366f180a5cc9d45dda0d9e4e0b/icons/mob/xenos/overlay_effects64x64.dmi", + "size": { + "x": 64, + "y": 64 + }, + "states": [ + { + "name": "shield" + } + ] +} diff --git a/Resources/Textures/_RMC14/Effects/xeno_shield.rsi/shield.png b/Resources/Textures/_RMC14/Effects/xeno_shield.rsi/shield.png new file mode 100644 index 00000000000..d61bced2b49 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/xeno_shield.rsi/shield.png differ diff --git a/Resources/Textures/_RMC14/Effects/xeno_shields.rsi/king-shield-full.png b/Resources/Textures/_RMC14/Effects/xeno_shields.rsi/king-shield-full.png new file mode 100644 index 00000000000..42121d60d0b Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/xeno_shields.rsi/king-shield-full.png differ diff --git a/Resources/Textures/_RMC14/Effects/xeno_shields.rsi/king-shield-half.png b/Resources/Textures/_RMC14/Effects/xeno_shields.rsi/king-shield-half.png new file mode 100644 index 00000000000..249c88fd1dd Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/xeno_shields.rsi/king-shield-half.png differ diff --git a/Resources/Textures/_RMC14/Effects/xeno_shields.rsi/king-shield-quarter.png b/Resources/Textures/_RMC14/Effects/xeno_shields.rsi/king-shield-quarter.png new file mode 100644 index 00000000000..4fbb7ab71ce Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/xeno_shields.rsi/king-shield-quarter.png differ diff --git a/Resources/Textures/_RMC14/Effects/xeno_shields.rsi/meta.json b/Resources/Textures/_RMC14/Effects/xeno_shields.rsi/meta.json new file mode 100644 index 00000000000..07d13a7cd8e --- /dev/null +++ b/Resources/Textures/_RMC14/Effects/xeno_shields.rsi/meta.json @@ -0,0 +1,44 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by Vermidia based on sprites by Aleksh", + "size": { + "x": 64, + "y": 64 + }, + "states": [ + { + "name": "king-shield-half", + "delays": [ + [ + 0.15, + 0.15, + 0.15, + 0.15 + ] + ] + }, + { + "name": "king-shield-quarter", + "delays": [ + [ + 0.15, + 0.15, + 0.15, + 0.15 + ] + ] + }, + { + "name": "king-shield-full", + "delays": [ + [ + 0.15, + 0.15, + 0.15, + 0.15 + ] + ] + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_RMC14/Effects/xeno_telegraph.rsi/meta.json b/Resources/Textures/_RMC14/Effects/xeno_telegraph.rsi/meta.json index f365c9dd988..682d3e81c2a 100644 --- a/Resources/Textures/_RMC14/Effects/xeno_telegraph.rsi/meta.json +++ b/Resources/Textures/_RMC14/Effects/xeno_telegraph.rsi/meta.json @@ -9,6 +9,39 @@ "states": [ { "name": "xeno_telegraph_base" + }, + { + "name": "xeno_telegraph_base_small" + }, + { + "name": "xeno_telegraph_abduct_hook_anim", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "xeno_telegraph_lash" + }, + { + "name": "xeno_telegraph_lash_anim", + "delays": [ + [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05 + ] + ] } ] } \ No newline at end of file diff --git a/Resources/Textures/_RMC14/Effects/xeno_telegraph.rsi/xeno_telegraph_abduct_hook_anim.png b/Resources/Textures/_RMC14/Effects/xeno_telegraph.rsi/xeno_telegraph_abduct_hook_anim.png new file mode 100644 index 00000000000..d1be840b09c Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/xeno_telegraph.rsi/xeno_telegraph_abduct_hook_anim.png differ diff --git a/Resources/Textures/_RMC14/Effects/xeno_telegraph.rsi/xeno_telegraph_base_small.png b/Resources/Textures/_RMC14/Effects/xeno_telegraph.rsi/xeno_telegraph_base_small.png new file mode 100644 index 00000000000..291b4cc60a4 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/xeno_telegraph.rsi/xeno_telegraph_base_small.png differ diff --git a/Resources/Textures/_RMC14/Effects/xeno_telegraph.rsi/xeno_telegraph_lash.png b/Resources/Textures/_RMC14/Effects/xeno_telegraph.rsi/xeno_telegraph_lash.png new file mode 100644 index 00000000000..c4ad4c5b693 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/xeno_telegraph.rsi/xeno_telegraph_lash.png differ diff --git a/Resources/Textures/_RMC14/Effects/xeno_telegraph.rsi/xeno_telegraph_lash_anim.png b/Resources/Textures/_RMC14/Effects/xeno_telegraph.rsi/xeno_telegraph_lash_anim.png new file mode 100644 index 00000000000..df3c9202211 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/xeno_telegraph.rsi/xeno_telegraph_lash_anim.png differ diff --git a/Resources/Textures/_RMC14/Effects/xeno_telegraph_big.rsi/expand_out.png b/Resources/Textures/_RMC14/Effects/xeno_telegraph_big.rsi/expand_out.png new file mode 100644 index 00000000000..8be97d18b96 Binary files /dev/null and b/Resources/Textures/_RMC14/Effects/xeno_telegraph_big.rsi/expand_out.png differ diff --git a/Resources/Textures/_RMC14/Effects/xeno_telegraph_big.rsi/meta.json b/Resources/Textures/_RMC14/Effects/xeno_telegraph_big.rsi/meta.json new file mode 100644 index 00000000000..ea83c148f99 --- /dev/null +++ b/Resources/Textures/_RMC14/Effects/xeno_telegraph_big.rsi/meta.json @@ -0,0 +1,42 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/20db6e3fc344d59ed9502ee7626d9fea89674713/icons/mob/xenos/effects.dmi, modified by Vermidia", + "size": { + "x": 96, + "y": 96 + }, + "states": [ + { + "name": "expand_out", + "delays": [ + [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05 + ] + ] + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/armor_overlays.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/armor_overlays.rsi/meta.json index 77d7771f23c..2282d235e49 100644 --- a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/armor_overlays.rsi/meta.json +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/armor_overlays.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/81c7806eb705f3a6b43085056cef1be0055d8ed2/icons/mob/humans/onmob/suit_1.dmi", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/81c7806eb705f3a6b43085056cef1be0055d8ed2/icons/mob/humans/onmob/suit_1.dmi, snpr armor and pmc lights by github noctyrnal", "size": { "x": 32, "y": 32 @@ -15,6 +15,10 @@ "name": "sql-armor", "directions": 4 }, + { + "name": "snpr-armor", + "directions": 4 + }, { "name": "lamp-off", "directions": 4 @@ -48,6 +52,40 @@ 0.4 ] ] + }, + { + "name": "pmc-lamp-off", + "directions": 4 + }, + { + "name": "pmc-lamp-on", + "directions": 4, + "delays": [ + [ + 0.7, + 0.4, + 0.2, + 0.4 + ], + [ + 0.7, + 0.4, + 0.2, + 0.4 + ], + [ + 0.7, + 0.4, + 0.2, + 0.4 + ], + [ + 0.7, + 0.4, + 0.2, + 0.4 + ] + ] } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/armor_overlays.rsi/pmc-lamp-off.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/armor_overlays.rsi/pmc-lamp-off.png new file mode 100644 index 00000000000..6c1a4774900 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/armor_overlays.rsi/pmc-lamp-off.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/armor_overlays.rsi/pmc-lamp-on.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/armor_overlays.rsi/pmc-lamp-on.png new file mode 100644 index 00000000000..97333610414 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/armor_overlays.rsi/pmc-lamp-on.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/armor_overlays.rsi/snpr-armor.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/armor_overlays.rsi/snpr-armor.png new file mode 100644 index 00000000000..c9f2a80c7fa Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/armor_overlays.rsi/snpr-armor.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/bulletproof/badge.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/bulletproof/badge.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..e460bba2283 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/bulletproof/badge.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/bulletproof/badge.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/bulletproof/badge.rsi/icon.png new file mode 100644 index 00000000000..4416173fa5f Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/bulletproof/badge.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/bulletproof/badge.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/bulletproof/badge.rsi/meta.json new file mode 100644 index 00000000000..1a97264e394 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/bulletproof/badge.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/eb675ffc9c92f3453d9451130b81ee77dc011d0c/icons/obj/items/clothing/suits.dmi, https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/mob/humans/onmob/suit_1.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/bulletproof/vest.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/bulletproof/vest.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..a6132af7b60 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/bulletproof/vest.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/bulletproof/vest.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/bulletproof/vest.rsi/icon.png new file mode 100644 index 00000000000..159b6455572 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/bulletproof/vest.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/bulletproof/vest.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/bulletproof/vest.rsi/meta.json new file mode 100644 index 00000000000..1a97264e394 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/bulletproof/vest.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/eb675ffc9c92f3453d9451130b81ee77dc011d0c/icons/obj/items/clothing/suits.dmi, https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/mob/humans/onmob/suit_1.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghille.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghille.rsi/equipped-OUTERCLOTHING.png index 0165edafa1d..3fec0b4f8e9 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghille.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghille.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghille.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghille.rsi/icon.png index 9c7e16ecc4b..8d0c5e184a7 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghille.rsi/icon.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghille.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghille.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghille.rsi/meta.json index ff545b1456c..92c0b555550 100644 --- a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghille.rsi/meta.json +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghille.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/05eaa3484b1a35aa759300bcfc8f0119f009daae/icons/obj/items/clothing/cm_suits.dmi, https://github.com/cmss13-devs/cmss13/blob/05eaa3484b1a35aa759300bcfc8f0119f009daae/icons/mob/humans/onmob/suit_1.dmi", + "copyright": "Sprites by github noctyrnal", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghillie/classic.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghillie/classic.rsi/equipped-OUTERCLOTHING.png index dab18c52598..9df79ddc65a 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghillie/classic.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghillie/classic.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghillie/classic.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghillie/classic.rsi/icon.png index a676152335e..9e320177dfd 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghillie/classic.rsi/icon.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghillie/classic.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghillie/classic.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghillie/classic.rsi/meta.json index 39a66417bbe..102d3ff20f6 100644 --- a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghillie/classic.rsi/meta.json +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghillie/classic.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/mob/humans/onmob/suit_1.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_lefthand_0.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_righthand_0.dmi, https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/obj/items/clothing/cm_suits.dmi", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_lefthand_0.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_righthand_0.dmi, on mob and icon sprites by github noctyrnal", "size": { "x": 32, "y": 32 @@ -23,4 +23,4 @@ "name": "icon" } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghillie/desert.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghillie/desert.rsi/equipped-OUTERCLOTHING.png index 6db79d02869..017174cf8eb 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghillie/desert.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghillie/desert.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghillie/desert.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghillie/desert.rsi/icon.png index 1f507a2f693..aefdf54bca5 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghillie/desert.rsi/icon.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghillie/desert.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghillie/desert.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghillie/desert.rsi/meta.json index 39a66417bbe..102d3ff20f6 100644 --- a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghillie/desert.rsi/meta.json +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghillie/desert.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/mob/humans/onmob/suit_1.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_lefthand_0.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_righthand_0.dmi, https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/obj/items/clothing/cm_suits.dmi", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_lefthand_0.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_righthand_0.dmi, on mob and icon sprites by github noctyrnal", "size": { "x": 32, "y": 32 @@ -23,4 +23,4 @@ "name": "icon" } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghillie/forecon.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghillie/forecon.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..5e4518ab72d Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghillie/forecon.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghillie/forecon.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghillie/forecon.rsi/icon.png new file mode 100644 index 00000000000..c51f4958491 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghillie/forecon.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghillie/forecon.rsi/inhand-left.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghillie/forecon.rsi/inhand-left.png new file mode 100644 index 00000000000..9f16f1bfcf4 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghillie/forecon.rsi/inhand-left.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghillie/forecon.rsi/inhand-right.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghillie/forecon.rsi/inhand-right.png new file mode 100644 index 00000000000..cdbf0d85402 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghillie/forecon.rsi/inhand-right.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghillie/forecon.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghillie/forecon.rsi/meta.json new file mode 100644 index 00000000000..b8595815957 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghillie/forecon.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_lefthand_0.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_righthand_0.dmi, on mob and icon sprites by github noctyrnal, modified by Dutch-VanDerLinde", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghillie/jungle.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghillie/jungle.rsi/equipped-OUTERCLOTHING.png index 0165edafa1d..3fec0b4f8e9 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghillie/jungle.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghillie/jungle.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghillie/jungle.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghillie/jungle.rsi/icon.png index 9c7e16ecc4b..8d0c5e184a7 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghillie/jungle.rsi/icon.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghillie/jungle.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghillie/jungle.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghillie/jungle.rsi/meta.json index 39a66417bbe..102d3ff20f6 100644 --- a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghillie/jungle.rsi/meta.json +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghillie/jungle.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/mob/humans/onmob/suit_1.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_lefthand_0.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_righthand_0.dmi, https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/obj/items/clothing/cm_suits.dmi", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_lefthand_0.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_righthand_0.dmi, on mob and icon sprites by github noctyrnal", "size": { "x": 32, "y": 32 @@ -23,4 +23,4 @@ "name": "icon" } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghillie/snow.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghillie/snow.rsi/equipped-OUTERCLOTHING.png index 7fed9a3efc6..1b940a29f07 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghillie/snow.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghillie/snow.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghillie/snow.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghillie/snow.rsi/icon.png index 0490b69903c..018f3d8d375 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghillie/snow.rsi/icon.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghillie/snow.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghillie/urban.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghillie/urban.rsi/equipped-OUTERCLOTHING.png index 0165edafa1d..0cae9a15a6b 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghillie/urban.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghillie/urban.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghillie/urban.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghillie/urban.rsi/icon.png index fb84de9f175..98b99ff1956 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghillie/urban.rsi/icon.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ghillie/urban.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/classic.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/classic.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..b85fedd54a4 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/classic.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/classic.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/classic.rsi/icon.png new file mode 100644 index 00000000000..7be21c233f8 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/classic.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/classic.rsi/inhand-left.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/classic.rsi/inhand-left.png new file mode 100644 index 00000000000..9f16f1bfcf4 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/classic.rsi/inhand-left.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/classic.rsi/inhand-right.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/classic.rsi/inhand-right.png new file mode 100644 index 00000000000..cdbf0d85402 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/classic.rsi/inhand-right.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/classic.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/classic.rsi/meta.json new file mode 100644 index 00000000000..cb429589079 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/classic.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/7a0d383182f220e28abc3c0a2790757c97288bd3/icons/obj/items/clothing/suits/suits_by_map/classic.dmi, https://github.com/cmss13-devs/cmss13/blob/8d3eabd2575fcb859ab4320a298cdbc185910f6f/icons/mob/humans/onmob/inhands/items_by_map/classic_lefthand.dmi, https://github.com/cmss13-devs/cmss13/blob/8d3eabd2575fcb859ab4320a298cdbc185910f6f/icons/mob/humans/onmob/inhands/items_by_map/classic_lefthand.dmi, https://github.com/cmss13-devs/cmss13/blob/7a0d383182f220e28abc3c0a2790757c97288bd3/icons/mob/humans/onmob/clothing/suits/suits_by_map/classic.dmi, https://github.com/cmss13-devs/cmss13/blob/8d3eabd2575fcb859ab4320a298cdbc185910f6f/icons/mob/humans/onmob/inhands/items_by_map/classic_righthand.dmi, https://github.com/cmss13-devs/cmss13/blob/7a0d383182f220e28abc3c0a2790757c97288bd3/icons/mob/humans/onmob/clothing/suits/suits_by_map/classic.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/desert.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/desert.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..c3dce45ed1f Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/desert.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/desert.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/desert.rsi/icon.png new file mode 100644 index 00000000000..7f880dd1ee0 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/desert.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/desert.rsi/inhand-left.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/desert.rsi/inhand-left.png new file mode 100644 index 00000000000..f41da970943 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/desert.rsi/inhand-left.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/desert.rsi/inhand-right.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/desert.rsi/inhand-right.png new file mode 100644 index 00000000000..872d28849ce Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/desert.rsi/inhand-right.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/desert.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/desert.rsi/meta.json new file mode 100644 index 00000000000..110f5675fb6 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/desert.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/7a0d383182f220e28abc3c0a2790757c97288bd3/icons/obj/items/clothing/suits/suits_by_map/desert.dmi, https://github.com/cmss13-devs/cmss13/blob/8d3eabd2575fcb859ab4320a298cdbc185910f6f/icons/mob/humans/onmob/inhands/items_by_map/desert_lefthand.dmi, https://github.com/cmss13-devs/cmss13/blob/8d3eabd2575fcb859ab4320a298cdbc185910f6f/icons/mob/humans/onmob/inhands/items_by_map/desert_righthand.dmi, https://github.com/cmss13-devs/cmss13/blob/7a0d383182f220e28abc3c0a2790757c97288bd3/icons/mob/humans/onmob/clothing/suits/suits_by_map/desert.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/jungle.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/jungle.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..80ba1f0e843 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/jungle.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/jungle.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/jungle.rsi/icon.png new file mode 100644 index 00000000000..0413303dcb3 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/jungle.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/jungle.rsi/inhand-left.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/jungle.rsi/inhand-left.png new file mode 100644 index 00000000000..4950d0772cf Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/jungle.rsi/inhand-left.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/jungle.rsi/inhand-right.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/jungle.rsi/inhand-right.png new file mode 100644 index 00000000000..e6ead17a706 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/jungle.rsi/inhand-right.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/jungle.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/jungle.rsi/meta.json new file mode 100644 index 00000000000..4da893f549b --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/jungle.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/7a0d383182f220e28abc3c0a2790757c97288bd3/icons/obj/items/clothing/suits/suits_by_map/jungle.dmi, https://github.com/cmss13-devs/cmss13/blob/8d3eabd2575fcb859ab4320a298cdbc185910f6f/icons/mob/humans/onmob/inhands/items_by_map/jungle_lefthand.dmi, https://github.com/cmss13-devs/cmss13/blob/8d3eabd2575fcb859ab4320a298cdbc185910f6f/icons/mob/humans/onmob/inhands/items_by_map/jungle_righthand.dmi, https://github.com/cmss13-devs/cmss13/blob/7a0d383182f220e28abc3c0a2790757c97288bd3/icons/mob/humans/onmob/clothing/suits/suits_by_map/jungle.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/snow.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/snow.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..e103f74dd80 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/snow.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/snow.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/snow.rsi/icon.png new file mode 100644 index 00000000000..513c6e91c21 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/snow.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/snow.rsi/inhand-left.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/snow.rsi/inhand-left.png new file mode 100644 index 00000000000..cc5ca9d6cc5 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/snow.rsi/inhand-left.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/snow.rsi/inhand-right.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/snow.rsi/inhand-right.png new file mode 100644 index 00000000000..db22d216cd2 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/snow.rsi/inhand-right.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/snow.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/snow.rsi/meta.json new file mode 100644 index 00000000000..f80a4f2a687 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/snow.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/7a0d383182f220e28abc3c0a2790757c97288bd3/icons/obj/items/clothing/suits/suits_by_map/snow.dmi, https://github.com/cmss13-devs/cmss13/blob/8d3eabd2575fcb859ab4320a298cdbc185910f6f/icons/mob/humans/onmob/inhands/items_by_map/snow_lefthand.dmi, https://github.com/cmss13-devs/cmss13/blob/8d3eabd2575fcb859ab4320a298cdbc185910f6f/icons/mob/humans/onmob/inhands/items_by_map/snow_righthand.dmi, https://github.com/cmss13-devs/cmss13/blob/7a0d383182f220e28abc3c0a2790757c97288bd3/icons/mob/humans/onmob/clothing/suits/suits_by_map/snow.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/urban.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/urban.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..dac0673f13b Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/urban.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/urban.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/urban.rsi/icon.png new file mode 100644 index 00000000000..fba9e670889 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/urban.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/urban.rsi/inhand-left.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/urban.rsi/inhand-left.png new file mode 100644 index 00000000000..81a2a6c80b3 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/urban.rsi/inhand-left.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/urban.rsi/inhand-right.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/urban.rsi/inhand-right.png new file mode 100644 index 00000000000..9c8e4c20bc5 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/urban.rsi/inhand-right.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/urban.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/urban.rsi/meta.json new file mode 100644 index 00000000000..2f6504295c1 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/io/urban.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/7a0d383182f220e28abc3c0a2790757c97288bd3/icons/obj/items/clothing/suits/suits_by_map/urban.dmi, https://github.com/cmss13-devs/cmss13/blob/8d3eabd2575fcb859ab4320a298cdbc185910f6f/icons/mob/humans/onmob/inhands/items_by_map/urban_lefthand.dmi, https://github.com/cmss13-devs/cmss13/blob/8d3eabd2575fcb859ab4320a298cdbc185910f6f/icons/mob/humans/onmob/inhands/items_by_map/urban_righthand.dmi, https://github.com/cmss13-devs/cmss13/blob/7a0d383182f220e28abc3c0a2790757c97288bd3/icons/mob/humans/onmob/clothing/suits/suits_by_map/urban.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m2/mp/urban.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m2/mp/urban.rsi/equipped-OUTERCLOTHING.png index 6c3365f8707..8b8e4950c97 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m2/mp/urban.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m2/mp/urban.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m2/mp/urban.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m2/mp/urban.rsi/icon.png index cd3a2f6e39d..1993a017cef 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m2/mp/urban.rsi/icon.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m2/mp/urban.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/b12/urban.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/b12/urban.rsi/equipped-OUTERCLOTHING.png index 4a8a70caaa1..698d4205024 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/b12/urban.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/b12/urban.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/b12/urban.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/b12/urban.rsi/icon.png index 88da3853908..501991a4687 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/b12/urban.rsi/icon.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/b12/urban.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/ceremonial.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/ceremonial.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..298546cbcd4 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/ceremonial.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/ceremonial.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/ceremonial.rsi/icon.png new file mode 100644 index 00000000000..619b9aa105d Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/ceremonial.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/ceremonial.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/ceremonial.rsi/meta.json new file mode 100644 index 00000000000..06ae4a27012 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/ceremonial.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken and modified from cmss13 at https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/mob/humans/onmob/suit_1.dmi, https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/obj/items/clothing/cm_suits.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "icon" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/co.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/co.rsi/equipped-OUTERCLOTHING.png index 298546cbcd4..a802176bd33 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/co.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/co.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/co.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/co.rsi/icon.png index 619b9aa105d..6094e47b008 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/co.rsi/icon.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/co.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/co.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/co.rsi/meta.json index 06ae4a27012..1a2021740dd 100644 --- a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/co.rsi/meta.json +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/co.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken and modified from cmss13 at https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/mob/humans/onmob/suit_1.dmi, https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/obj/items/clothing/cm_suits.dmi", + "copyright": "Taken and modified from cmss13 at https://github.com/cmss13-devs/cmss13/blob/master/icons/mob/humans/onmob/clothing/suits/suits_by_map/jungle.dmi, https://github.com/cmss13-devs/cmss13/blob/master/icons/obj/items/clothing/suits/suits_by_map/jungle.dmi", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/co/classic.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/co/classic.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..f029aba2b8f Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/co/classic.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/co/classic.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/co/classic.rsi/icon.png new file mode 100644 index 00000000000..a61fe630307 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/co/classic.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/co/classic.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/co/classic.rsi/meta.json new file mode 100644 index 00000000000..efa67cc9a1c --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/co/classic.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken and modified from cmss13 at https://github.com/cmss13-devs/cmss13/blob/master/icons/mob/humans/onmob/clothing/suits/suits_by_map/classic.dmi, https://github.com/cmss13-devs/cmss13/blob/master/icons/obj/items/clothing/suits/suits_by_map/classic.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "icon" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/co/desert.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/co/desert.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..04e96464e84 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/co/desert.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/co/desert.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/co/desert.rsi/icon.png new file mode 100644 index 00000000000..7d3e861fcb0 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/co/desert.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/co/desert.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/co/desert.rsi/meta.json new file mode 100644 index 00000000000..ad042981ce7 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/co/desert.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken and modified from cmss13 at https://github.com/cmss13-devs/cmss13/blob/master/icons/mob/humans/onmob/clothing/suits/suits_by_map/desert.dmi, https://github.com/cmss13-devs/cmss13/blob/master/icons/obj/items/clothing/suits/suits_by_map/desert.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "icon" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/co/jungle.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/co/jungle.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..a802176bd33 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/co/jungle.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/co/jungle.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/co/jungle.rsi/icon.png new file mode 100644 index 00000000000..6094e47b008 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/co/jungle.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/co/jungle.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/co/jungle.rsi/meta.json new file mode 100644 index 00000000000..1a2021740dd --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/co/jungle.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken and modified from cmss13 at https://github.com/cmss13-devs/cmss13/blob/master/icons/mob/humans/onmob/clothing/suits/suits_by_map/jungle.dmi, https://github.com/cmss13-devs/cmss13/blob/master/icons/obj/items/clothing/suits/suits_by_map/jungle.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "icon" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/co/snow.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/co/snow.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..83d2a79be79 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/co/snow.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/co/snow.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/co/snow.rsi/icon.png new file mode 100644 index 00000000000..3a8b441095b Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/co/snow.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/co/snow.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/co/snow.rsi/meta.json new file mode 100644 index 00000000000..36697ef2bfc --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/co/snow.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken and modified from cmss13 at https://github.com/cmss13-devs/cmss13/blob/master/icons/mob/humans/onmob/clothing/suits/suits_by_map/snow.dmi, https://github.com/cmss13-devs/cmss13/blob/master/icons/obj/items/clothing/suits/suits_by_map/snow.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "icon" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/co/urban.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/co/urban.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..3382307a3a2 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/co/urban.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/co/urban.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/co/urban.rsi/icon.png new file mode 100644 index 00000000000..7bd3b9ca9c7 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/co/urban.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/co/urban.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/co/urban.rsi/meta.json new file mode 100644 index 00000000000..92b65e5fd7b --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/co/urban.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken and modified from cmss13 at https://github.com/cmss13-devs/cmss13/blob/master/icons/mob/humans/onmob/clothing/suits/suits_by_map/urban.dmi, https://github.com/cmss13-devs/cmss13/blob/master/icons/obj/items/clothing/suits/suits_by_map/urban.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "icon" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/eod/carrier/urban.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/eod/carrier/urban.rsi/equipped-OUTERCLOTHING.png index 4c07c69dfb6..99d4f5ff220 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/eod/carrier/urban.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/eod/carrier/urban.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/eod/carrier/urban.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/eod/carrier/urban.rsi/icon.png index 032796b80a7..fd306321659 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/eod/carrier/urban.rsi/icon.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/eod/carrier/urban.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/eod/padded/urban.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/eod/padded/urban.rsi/equipped-OUTERCLOTHING.png index 6caf6e85566..c576125e0da 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/eod/padded/urban.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/eod/padded/urban.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/eod/padded/urban.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/eod/padded/urban.rsi/icon.png index 8cc8ff8cb8a..77db4f158c3 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/eod/padded/urban.rsi/icon.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/eod/padded/urban.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/eod/padless/urban.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/eod/padless/urban.rsi/equipped-OUTERCLOTHING.png index 7377c8059ec..8458a45b9e2 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/eod/padless/urban.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/eod/padless/urban.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/eod/padless/urban.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/eod/padless/urban.rsi/icon.png index 8aea91cea34..75ca212a7b7 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/eod/padless/urban.rsi/icon.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/eod/padless/urban.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/eod/ridged/urban.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/eod/ridged/urban.rsi/equipped-OUTERCLOTHING.png index 3f9cd0f924c..83e6fb84529 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/eod/ridged/urban.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/eod/ridged/urban.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/eod/ridged/urban.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/eod/ridged/urban.rsi/icon.png index 92a5f61d540..f0c112d5a88 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/eod/ridged/urban.rsi/icon.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/eod/ridged/urban.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/eod/skull/urban.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/eod/skull/urban.rsi/equipped-OUTERCLOTHING.png index 42458190738..9f31767bb85 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/eod/skull/urban.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/eod/skull/urban.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/eod/skull/urban.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/eod/skull/urban.rsi/icon.png index 1a3d43a31cc..5e4914cab89 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/eod/skull/urban.rsi/icon.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/eod/skull/urban.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/eod/smooth/urban.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/eod/smooth/urban.rsi/equipped-OUTERCLOTHING.png index e253e754751..778fb0c6109 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/eod/smooth/urban.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/eod/smooth/urban.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/eod/smooth/urban.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/eod/smooth/urban.rsi/icon.png index 99bf7015f63..fc0bb269a92 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/eod/smooth/urban.rsi/icon.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/eod/smooth/urban.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/commanding_officer/classic.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/commanding_officer/classic.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..49c094b6956 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/commanding_officer/classic.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/commanding_officer/classic.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/commanding_officer/classic.rsi/icon.png new file mode 100644 index 00000000000..b15135b6d1c Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/commanding_officer/classic.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/commanding_officer/classic.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/commanding_officer/classic.rsi/meta.json new file mode 100644 index 00000000000..3cd111a60c0 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/commanding_officer/classic.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/mob/humans/onmob/suit_1.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_lefthand_0.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_righthand_0.dmi, https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/obj/items/clothing/cm_suits.dmi, modified by Dutch-VanDerLinde and github noctyrnal", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/commanding_officer/desert.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/commanding_officer/desert.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..0a37e42c2bc Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/commanding_officer/desert.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/commanding_officer/desert.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/commanding_officer/desert.rsi/icon.png new file mode 100644 index 00000000000..7da68b165ca Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/commanding_officer/desert.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/commanding_officer/desert.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/commanding_officer/desert.rsi/meta.json new file mode 100644 index 00000000000..3cd111a60c0 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/commanding_officer/desert.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/mob/humans/onmob/suit_1.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_lefthand_0.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_righthand_0.dmi, https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/obj/items/clothing/cm_suits.dmi, modified by Dutch-VanDerLinde and github noctyrnal", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/commanding_officer/jungle.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/commanding_officer/jungle.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..dd8cabc75b5 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/commanding_officer/jungle.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/commanding_officer/jungle.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/commanding_officer/jungle.rsi/icon.png new file mode 100644 index 00000000000..acc074849ba Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/commanding_officer/jungle.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/commanding_officer/jungle.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/commanding_officer/jungle.rsi/meta.json new file mode 100644 index 00000000000..3cd111a60c0 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/commanding_officer/jungle.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/mob/humans/onmob/suit_1.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_lefthand_0.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_righthand_0.dmi, https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/obj/items/clothing/cm_suits.dmi, modified by Dutch-VanDerLinde and github noctyrnal", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/commanding_officer/snow.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/commanding_officer/snow.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..daf78e9bb26 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/commanding_officer/snow.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/commanding_officer/snow.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/commanding_officer/snow.rsi/icon.png new file mode 100644 index 00000000000..34b29ea8f83 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/commanding_officer/snow.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/commanding_officer/snow.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/commanding_officer/snow.rsi/meta.json new file mode 100644 index 00000000000..3cd111a60c0 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/commanding_officer/snow.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/mob/humans/onmob/suit_1.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_lefthand_0.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_righthand_0.dmi, https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/obj/items/clothing/cm_suits.dmi, modified by Dutch-VanDerLinde and github noctyrnal", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/commanding_officer/urban.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/commanding_officer/urban.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..767d3451730 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/commanding_officer/urban.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/commanding_officer/urban.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/commanding_officer/urban.rsi/icon.png new file mode 100644 index 00000000000..a47b9b5385e Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/commanding_officer/urban.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/commanding_officer/urban.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/commanding_officer/urban.rsi/meta.json new file mode 100644 index 00000000000..3cd111a60c0 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/commanding_officer/urban.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/mob/humans/onmob/suit_1.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_lefthand_0.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_righthand_0.dmi, https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/obj/items/clothing/cm_suits.dmi, modified by Dutch-VanDerLinde and github noctyrnal", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/mp.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/mp.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..5cca7132b55 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/mp.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/mp.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/mp.rsi/icon.png new file mode 100644 index 00000000000..b2ac9c0ab61 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/mp.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/mp.rsi/inhand-left.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/mp.rsi/inhand-left.png new file mode 100644 index 00000000000..b93f64ad33d Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/mp.rsi/inhand-left.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/mp.rsi/inhand-right.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/mp.rsi/inhand-right.png new file mode 100644 index 00000000000..2e59dad8b8c Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/mp.rsi/inhand-right.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/mp.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/mp.rsi/meta.json new file mode 100644 index 00000000000..a53fbdb1d33 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/mp.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/mob/humans/onmob/suit_1.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_lefthand_0.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_righthand_0.dmi, https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/obj/items/clothing/cm_suits.dmi, modified by Dutch-VanDerLinde", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/officer/classic-jungle.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/officer/classic-jungle.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..9005d4372fd Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/officer/classic-jungle.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/officer/classic-jungle.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/officer/classic-jungle.rsi/icon.png new file mode 100644 index 00000000000..606cf85a29f Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/officer/classic-jungle.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/officer/classic-jungle.rsi/inhand-left.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/officer/classic-jungle.rsi/inhand-left.png new file mode 100644 index 00000000000..f41da970943 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/officer/classic-jungle.rsi/inhand-left.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/officer/classic-jungle.rsi/inhand-right.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/officer/classic-jungle.rsi/inhand-right.png new file mode 100644 index 00000000000..872d28849ce Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/officer/classic-jungle.rsi/inhand-right.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/officer/classic-jungle.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/officer/classic-jungle.rsi/meta.json new file mode 100644 index 00000000000..63d8bf9f04b --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/officer/classic-jungle.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/mob/humans/onmob/suit_1.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_lefthand_0.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_righthand_0.dmi, https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/obj/items/clothing/cm_suits.dmi, modified by Dutch-VanDerLinde and github noctyrnal", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/officer/desert-snow-urban.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/officer/desert-snow-urban.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..cfcc99c60e2 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/officer/desert-snow-urban.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/officer/desert-snow-urban.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/officer/desert-snow-urban.rsi/icon.png new file mode 100644 index 00000000000..05bcf3c71d2 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/officer/desert-snow-urban.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/officer/desert-snow-urban.rsi/inhand-left.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/officer/desert-snow-urban.rsi/inhand-left.png new file mode 100644 index 00000000000..81a2a6c80b3 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/officer/desert-snow-urban.rsi/inhand-left.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/officer/desert-snow-urban.rsi/inhand-right.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/officer/desert-snow-urban.rsi/inhand-right.png new file mode 100644 index 00000000000..9c8e4c20bc5 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/officer/desert-snow-urban.rsi/inhand-right.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/officer/desert-snow-urban.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/officer/desert-snow-urban.rsi/meta.json new file mode 100644 index 00000000000..63d8bf9f04b --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/officer/desert-snow-urban.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/mob/humans/onmob/suit_1.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_lefthand_0.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_righthand_0.dmi, https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/obj/items/clothing/cm_suits.dmi, modified by Dutch-VanDerLinde and github noctyrnal", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/classic.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/classic.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..033d4593198 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/classic.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/classic.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/classic.rsi/icon.png new file mode 100644 index 00000000000..059df9137cc Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/classic.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/classic.rsi/inhand-left.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/classic.rsi/inhand-left.png new file mode 100644 index 00000000000..9f16f1bfcf4 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/classic.rsi/inhand-left.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/classic.rsi/inhand-right.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/classic.rsi/inhand-right.png new file mode 100644 index 00000000000..cdbf0d85402 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/classic.rsi/inhand-right.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/classic.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/classic.rsi/meta.json new file mode 100644 index 00000000000..63d8bf9f04b --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/classic.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/mob/humans/onmob/suit_1.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_lefthand_0.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_righthand_0.dmi, https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/obj/items/clothing/cm_suits.dmi, modified by Dutch-VanDerLinde and github noctyrnal", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/desert.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/desert.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..7af167e217d Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/desert.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/desert.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/desert.rsi/icon.png new file mode 100644 index 00000000000..5efe3ea1319 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/desert.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/desert.rsi/inhand-left.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/desert.rsi/inhand-left.png new file mode 100644 index 00000000000..f41da970943 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/desert.rsi/inhand-left.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/desert.rsi/inhand-right.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/desert.rsi/inhand-right.png new file mode 100644 index 00000000000..872d28849ce Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/desert.rsi/inhand-right.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/desert.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/desert.rsi/meta.json new file mode 100644 index 00000000000..63d8bf9f04b --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/desert.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/mob/humans/onmob/suit_1.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_lefthand_0.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_righthand_0.dmi, https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/obj/items/clothing/cm_suits.dmi, modified by Dutch-VanDerLinde and github noctyrnal", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/jungle.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/jungle.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..a4aca13b9f9 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/jungle.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/jungle.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/jungle.rsi/icon.png new file mode 100644 index 00000000000..97713a2678c Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/jungle.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/jungle.rsi/inhand-left.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/jungle.rsi/inhand-left.png new file mode 100644 index 00000000000..4950d0772cf Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/jungle.rsi/inhand-left.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/jungle.rsi/inhand-right.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/jungle.rsi/inhand-right.png new file mode 100644 index 00000000000..e6ead17a706 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/jungle.rsi/inhand-right.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/jungle.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/jungle.rsi/meta.json new file mode 100644 index 00000000000..63d8bf9f04b --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/jungle.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/mob/humans/onmob/suit_1.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_lefthand_0.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_righthand_0.dmi, https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/obj/items/clothing/cm_suits.dmi, modified by Dutch-VanDerLinde and github noctyrnal", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/snow.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/snow.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..98fd3b43ec6 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/snow.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/snow.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/snow.rsi/icon.png new file mode 100644 index 00000000000..ab8fdeb01a0 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/snow.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/snow.rsi/inhand-left.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/snow.rsi/inhand-left.png new file mode 100644 index 00000000000..cc5ca9d6cc5 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/snow.rsi/inhand-left.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/snow.rsi/inhand-right.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/snow.rsi/inhand-right.png new file mode 100644 index 00000000000..db22d216cd2 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/snow.rsi/inhand-right.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/snow.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/snow.rsi/meta.json new file mode 100644 index 00000000000..63d8bf9f04b --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/snow.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/mob/humans/onmob/suit_1.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_lefthand_0.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_righthand_0.dmi, https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/obj/items/clothing/cm_suits.dmi, modified by Dutch-VanDerLinde and github noctyrnal", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/urban.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/urban.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..18c0bc883b2 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/urban.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/urban.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/urban.rsi/icon.png new file mode 100644 index 00000000000..807d00bebc8 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/urban.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/urban.rsi/inhand-left.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/urban.rsi/inhand-left.png new file mode 100644 index 00000000000..81a2a6c80b3 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/urban.rsi/inhand-left.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/urban.rsi/inhand-right.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/urban.rsi/inhand-right.png new file mode 100644 index 00000000000..9c8e4c20bc5 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/urban.rsi/inhand-right.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/urban.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/urban.rsi/meta.json new file mode 100644 index 00000000000..63d8bf9f04b --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/extra-light/standard/urban.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/mob/humans/onmob/suit_1.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_lefthand_0.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_righthand_0.dmi, https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/obj/items/clothing/cm_suits.dmi, modified by Dutch-VanDerLinde and github noctyrnal", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/g4/urban.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/g4/urban.rsi/equipped-OUTERCLOTHING.png index 6d53fce13df..c5deba301ae 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/g4/urban.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/g4/urban.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/g4/urban.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/g4/urban.rsi/icon.png index 562dc91497d..a40a9745435 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/g4/urban.rsi/icon.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/g4/urban.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/light/carrier/urban.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/light/carrier/urban.rsi/equipped-OUTERCLOTHING.png index 980fb6fd850..c92fc364944 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/light/carrier/urban.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/light/carrier/urban.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/light/carrier/urban.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/light/carrier/urban.rsi/icon.png index a4113acc9c3..bf023eefa0b 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/light/carrier/urban.rsi/icon.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/light/carrier/urban.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/light/padded/urban.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/light/padded/urban.rsi/equipped-OUTERCLOTHING.png index e4c994ef0ba..179f28af52a 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/light/padded/urban.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/light/padded/urban.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/light/padded/urban.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/light/padded/urban.rsi/icon.png index fd6b92024e1..45f64939210 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/light/padded/urban.rsi/icon.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/light/padded/urban.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/light/padless/urban.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/light/padless/urban.rsi/equipped-OUTERCLOTHING.png index dc705811f00..91c4e34cbaa 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/light/padless/urban.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/light/padless/urban.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/light/padless/urban.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/light/padless/urban.rsi/icon.png index 05ad6efdf79..4f703383e92 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/light/padless/urban.rsi/icon.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/light/padless/urban.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/light/ridged/urban.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/light/ridged/urban.rsi/equipped-OUTERCLOTHING.png index 2aca9a39282..3367ef94294 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/light/ridged/urban.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/light/ridged/urban.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/light/ridged/urban.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/light/ridged/urban.rsi/icon.png index bf1bb0921ad..22213d0b3f1 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/light/ridged/urban.rsi/icon.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/light/ridged/urban.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/light/skull/urban.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/light/skull/urban.rsi/equipped-OUTERCLOTHING.png index a51ce18efb4..8318a58eca3 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/light/skull/urban.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/light/skull/urban.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/light/skull/urban.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/light/skull/urban.rsi/icon.png index c68de0cdda0..47186087bba 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/light/skull/urban.rsi/icon.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/light/skull/urban.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/light/smooth/urban.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/light/smooth/urban.rsi/equipped-OUTERCLOTHING.png index 505e40a8b1f..73607e5c403 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/light/smooth/urban.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/light/smooth/urban.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/light/smooth/urban.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/light/smooth/urban.rsi/icon.png index 3194d7dc175..930cae7b98d 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/light/smooth/urban.rsi/icon.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/light/smooth/urban.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/scout/urban.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/scout/urban.rsi/equipped-OUTERCLOTHING.png index ac74551e69e..a1b1fd04d77 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/scout/urban.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/scout/urban.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/scout/urban.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/scout/urban.rsi/icon.png index 36a1d0b6f8c..2eb851269d1 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/scout/urban.rsi/icon.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/scout/urban.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/standard/carrier/urban.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/standard/carrier/urban.rsi/equipped-OUTERCLOTHING.png index 2bbc449bba4..dc973ee5692 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/standard/carrier/urban.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/standard/carrier/urban.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/standard/carrier/urban.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/standard/carrier/urban.rsi/icon.png index d2e7fa592a7..1230f206c35 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/standard/carrier/urban.rsi/icon.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/standard/carrier/urban.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/standard/padded/urban.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/standard/padded/urban.rsi/equipped-OUTERCLOTHING.png index 860085e2edd..3ef5ec42d35 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/standard/padded/urban.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/standard/padded/urban.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/standard/padded/urban.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/standard/padded/urban.rsi/icon.png index 9e132636873..0033425e868 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/standard/padded/urban.rsi/icon.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/standard/padded/urban.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/standard/padless/urban.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/standard/padless/urban.rsi/equipped-OUTERCLOTHING.png index e72071b25c2..24ad0de701e 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/standard/padless/urban.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/standard/padless/urban.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/standard/padless/urban.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/standard/padless/urban.rsi/icon.png index 76eea7978cb..6f2daf3b9ed 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/standard/padless/urban.rsi/icon.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/standard/padless/urban.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/standard/ridged/urban.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/standard/ridged/urban.rsi/equipped-OUTERCLOTHING.png index 561858317b5..ae7acea607f 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/standard/ridged/urban.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/standard/ridged/urban.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/standard/ridged/urban.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/standard/ridged/urban.rsi/icon.png index f68d9be658b..2b770796170 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/standard/ridged/urban.rsi/icon.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/standard/ridged/urban.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/standard/skull/urban.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/standard/skull/urban.rsi/equipped-OUTERCLOTHING.png index af7bcb8de8e..74902cb543d 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/standard/skull/urban.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/standard/skull/urban.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/standard/skull/urban.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/standard/skull/urban.rsi/icon.png index 3bd72d9404c..fe77f559806 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/standard/skull/urban.rsi/icon.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/standard/skull/urban.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/standard/smooth/urban.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/standard/smooth/urban.rsi/equipped-OUTERCLOTHING.png index c217ba5667f..9a87e49147f 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/standard/smooth/urban.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/standard/smooth/urban.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/standard/smooth/urban.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/standard/smooth/urban.rsi/icon.png index a718105d93e..e6be93c37b6 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/standard/smooth/urban.rsi/icon.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/standard/smooth/urban.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/t/urban.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/t/urban.rsi/equipped-OUTERCLOTHING.png index 68ced828e6f..fefb8b388ec 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/t/urban.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/t/urban.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/t/urban.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/t/urban.rsi/icon.png index 90a6df75734..ee60976be89 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/t/urban.rsi/icon.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/t/urban.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/un-m1_body_armor.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/un-m1_body_armor.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..230605de3a5 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/un-m1_body_armor.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/un-m1_body_armor.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/un-m1_body_armor.rsi/icon.png new file mode 100644 index 00000000000..61a0071b5e2 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/un-m1_body_armor.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/un-m1_body_armor.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/un-m1_body_armor.rsi/meta.json new file mode 100644 index 00000000000..65395692d1d --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/un-m1_body_armor.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/e5fe7269bd90b07ce84742c95873c4cd83557c63/icons/mob/humans/onmob/clothing/suits/suits_by_faction/UA.dmi, https://github.com/cmss13-devs/cmss13/blob/e5fe7269bd90b07ce84742c95873c4cd83557c63/icons/obj/items/clothing/suits/suits_by_faction/UA.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "icon" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/warden/urban.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/warden/urban.rsi/equipped-OUTERCLOTHING.png index d0140d3d69c..062790fd61a 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/warden/urban.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/warden/urban.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/warden/urban.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/warden/urban.rsi/icon.png index c8373fbb583..e81c0603626 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/warden/urban.rsi/icon.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/warden/urban.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/wo/urban.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/wo/urban.rsi/equipped-OUTERCLOTHING.png index bd1a2bd79f7..97d26120f7a 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/wo/urban.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/wo/urban.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/wo/urban.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/wo/urban.rsi/icon.png index b61c33b7bc2..46406a3e993 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/wo/urban.rsi/icon.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m3/wo/urban.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m35/urban.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m35/urban.rsi/equipped-OUTERCLOTHING.png index bd89290ef8a..19950d441f7 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m35/urban.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m35/urban.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m35/urban.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m35/urban.rsi/icon.png index 5f312cdfd53..fdac7d02c18 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m35/urban.rsi/icon.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m35/urban.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m4/urban.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m4/urban.rsi/equipped-OUTERCLOTHING.png index ccec48c69b5..dac0673f13b 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m4/urban.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m4/urban.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m4/urban.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m4/urban.rsi/icon.png index fbec9c98fd6..fba9e670889 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m4/urban.rsi/icon.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/m4/urban.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ml66a/urban.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ml66a/urban.rsi/equipped-OUTERCLOTHING.png index 3b974f469eb..fc0e2d7a280 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ml66a/urban.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ml66a/urban.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ml66a/urban.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ml66a/urban.rsi/icon.png index 0547d36c20b..f06018e3e46 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ml66a/urban.rsi/icon.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/ml66a/urban.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/pilot/urban.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/pilot/urban.rsi/equipped-OUTERCLOTHING.png index fdbb72d9068..5a5fc1fe61e 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/pilot/urban.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/pilot/urban.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/pilot/urban.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/pilot/urban.rsi/icon.png index 90f95d55d4b..c34e6caaf44 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/pilot/urban.rsi/icon.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Armor/pilot/urban.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/CMB/cmb_heavy_armor.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/CMB/cmb_heavy_armor.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..d1ad459f8f5 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/CMB/cmb_heavy_armor.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/CMB/cmb_heavy_armor.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/CMB/cmb_heavy_armor.rsi/icon.png new file mode 100644 index 00000000000..a9065bb3dc9 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/CMB/cmb_heavy_armor.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/CMB/cmb_heavy_armor.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/CMB/cmb_heavy_armor.rsi/meta.json new file mode 100644 index 00000000000..ff545b1456c --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/CMB/cmb_heavy_armor.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/05eaa3484b1a35aa759300bcfc8f0119f009daae/icons/obj/items/clothing/cm_suits.dmi, https://github.com/cmss13-devs/cmss13/blob/05eaa3484b1a35aa759300bcfc8f0119f009daae/icons/mob/humans/onmob/suit_1.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/CMB/cmb_light_armor.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/CMB/cmb_light_armor.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..237f9cba07a Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/CMB/cmb_light_armor.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/CMB/cmb_light_armor.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/CMB/cmb_light_armor.rsi/icon.png new file mode 100644 index 00000000000..a2913370094 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/CMB/cmb_light_armor.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/CMB/cmb_light_armor.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/CMB/cmb_light_armor.rsi/meta.json new file mode 100644 index 00000000000..ff545b1456c --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/CMB/cmb_light_armor.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/05eaa3484b1a35aa759300bcfc8f0119f009daae/icons/obj/items/clothing/cm_suits.dmi, https://github.com/cmss13-devs/cmss13/blob/05eaa3484b1a35aa759300bcfc8f0119f009daae/icons/mob/humans/onmob/suit_1.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/CMB/cmb_sheriff_armor.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/CMB/cmb_sheriff_armor.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..d225e11e7f9 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/CMB/cmb_sheriff_armor.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/CMB/cmb_sheriff_armor.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/CMB/cmb_sheriff_armor.rsi/icon.png new file mode 100644 index 00000000000..1f409f7ea9d Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/CMB/cmb_sheriff_armor.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/CMB/cmb_sheriff_armor.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/CMB/cmb_sheriff_armor.rsi/meta.json new file mode 100644 index 00000000000..ff545b1456c --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/CMB/cmb_sheriff_armor.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/05eaa3484b1a35aa759300bcfc8f0119f009daae/icons/obj/items/clothing/cm_suits.dmi, https://github.com/cmss13-devs/cmss13/blob/05eaa3484b1a35aa759300bcfc8f0119f009daae/icons/mob/humans/onmob/suit_1.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Bureau/trench_beige.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Bureau/trench_beige.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..85b65103b3a Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Bureau/trench_beige.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Bureau/trench_beige.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Bureau/trench_beige.rsi/icon.png new file mode 100644 index 00000000000..148e902380d Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Bureau/trench_beige.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Bureau/trench_beige.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Bureau/trench_beige.rsi/meta.json new file mode 100644 index 00000000000..a37f3ee3a2c --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Bureau/trench_beige.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/master/icons/obj/items/clothing/suits/coats_robes.dmi, https://github.com/cmss13-devs/cmss13/blob/master/icons/mob/humans/onmob/clothing/suits/coats_robes.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Bureau/trench_brown.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Bureau/trench_brown.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..6e0976f1def Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Bureau/trench_brown.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Bureau/trench_brown.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Bureau/trench_brown.rsi/icon.png new file mode 100644 index 00000000000..bdf09990d77 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Bureau/trench_brown.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Bureau/trench_brown.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Bureau/trench_brown.rsi/meta.json new file mode 100644 index 00000000000..a37f3ee3a2c --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Bureau/trench_brown.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/master/icons/obj/items/clothing/suits/coats_robes.dmi, https://github.com/cmss13-devs/cmss13/blob/master/icons/mob/humans/onmob/clothing/suits/coats_robes.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Bureau/trench_grey.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Bureau/trench_grey.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..df44f172c72 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Bureau/trench_grey.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Bureau/trench_grey.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Bureau/trench_grey.rsi/icon.png new file mode 100644 index 00000000000..096a8d980fb Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Bureau/trench_grey.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Bureau/trench_grey.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Bureau/trench_grey.rsi/meta.json new file mode 100644 index 00000000000..a37f3ee3a2c --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Bureau/trench_grey.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/master/icons/obj/items/clothing/suits/coats_robes.dmi, https://github.com/cmss13-devs/cmss13/blob/master/icons/mob/humans/onmob/clothing/suits/coats_robes.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/CO/bomber.rsi/jacket-equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/CO/bomber.rsi/jacket-equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..c4a446f4a23 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/CO/bomber.rsi/jacket-equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/CO/bomber.rsi/jacket-icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/CO/bomber.rsi/jacket-icon.png new file mode 100644 index 00000000000..0f5e37d4f1c Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/CO/bomber.rsi/jacket-icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/CO/bomber.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/CO/bomber.rsi/meta.json index ff545b1456c..c7d85c3dc51 100644 --- a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/CO/bomber.rsi/meta.json +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/CO/bomber.rsi/meta.json @@ -8,11 +8,18 @@ }, "states": [ { - "name": "icon" + "name": "equipped-OUTERCLOTHING", + "directions": 4 }, { - "name": "equipped-OUTERCLOTHING", + "name": "jacket-equipped-OUTERCLOTHING", "directions": 4 + }, + { + "name": "icon" + }, + { + "name": "jacket-icon" } - ] -} +] +} \ No newline at end of file diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/CO/standardissuejackets/cojacketgreen.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/CO/standardissuejackets/cojacketgreen.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..b4f833addfe Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/CO/standardissuejackets/cojacketgreen.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/CO/standardissuejackets/cojacketgreen.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/CO/standardissuejackets/cojacketgreen.rsi/icon.png new file mode 100644 index 00000000000..18529396228 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/CO/standardissuejackets/cojacketgreen.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/CO/standardissuejackets/cojacketgreen.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/CO/standardissuejackets/cojacketgreen.rsi/meta.json new file mode 100644 index 00000000000..328d1d130bf --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/CO/standardissuejackets/cojacketgreen.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by Kompanilinge, Palette from https://github.com/cmss13-devs/cmss13/blob/8d2ee2746ce1b8aa5a876266951a8d9f92499aff/icons/mob/humans/onmob/uniform_0.dmi, https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/obj/items/clothing/uniforms.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "icon" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/CO/standardissuejackets/cojacketgrey.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/CO/standardissuejackets/cojacketgrey.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..2d7405d1357 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/CO/standardissuejackets/cojacketgrey.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/CO/standardissuejackets/cojacketgrey.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/CO/standardissuejackets/cojacketgrey.rsi/icon.png new file mode 100644 index 00000000000..163c6fa840c Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/CO/standardissuejackets/cojacketgrey.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/CO/standardissuejackets/cojacketgrey.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/CO/standardissuejackets/cojacketgrey.rsi/meta.json new file mode 100644 index 00000000000..0f4e92162e2 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/CO/standardissuejackets/cojacketgrey.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Made by KompaniLinge on Github.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/CO/standardissuejackets/cojacketpurple.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/CO/standardissuejackets/cojacketpurple.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..6dcbca176f0 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/CO/standardissuejackets/cojacketpurple.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/CO/standardissuejackets/cojacketpurple.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/CO/standardissuejackets/cojacketpurple.rsi/icon.png new file mode 100644 index 00000000000..7257a50b6b2 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/CO/standardissuejackets/cojacketpurple.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/CO/standardissuejackets/cojacketpurple.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/CO/standardissuejackets/cojacketpurple.rsi/meta.json new file mode 100644 index 00000000000..328d1d130bf --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/CO/standardissuejackets/cojacketpurple.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by Kompanilinge, Palette from https://github.com/cmss13-devs/cmss13/blob/8d2ee2746ce1b8aa5a876266951a8d9f92499aff/icons/mob/humans/onmob/uniform_0.dmi, https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/obj/items/clothing/uniforms.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "icon" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/CO/standardissuejackets/cojacketstandard.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/CO/standardissuejackets/cojacketstandard.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..11c7def1930 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/CO/standardissuejackets/cojacketstandard.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/CO/standardissuejackets/cojacketstandard.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/CO/standardissuejackets/cojacketstandard.rsi/icon.png new file mode 100644 index 00000000000..e05afad1554 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/CO/standardissuejackets/cojacketstandard.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/CO/standardissuejackets/cojacketstandard.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/CO/standardissuejackets/cojacketstandard.rsi/meta.json new file mode 100644 index 00000000000..1a488100fb5 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/CO/standardissuejackets/cojacketstandard.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by Kompanlinge, Palette taken from https://github.com/cmss13-devs/cmss13/blob/8d2ee2746ce1b8aa5a876266951a8d9f92499aff/icons/mob/humans/onmob/uniform_0.dmi, https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/obj/items/clothing/uniforms.dmi\u0022", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "icon" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/ChancesClaim/brown_iconcoat.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/ChancesClaim/brown_iconcoat.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..8a8e5c0a470 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/ChancesClaim/brown_iconcoat.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/ChancesClaim/brown_iconcoat.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/ChancesClaim/brown_iconcoat.rsi/icon.png new file mode 100644 index 00000000000..3c0c7681e8b Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/ChancesClaim/brown_iconcoat.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/ChancesClaim/brown_iconcoat.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/ChancesClaim/brown_iconcoat.rsi/meta.json new file mode 100644 index 00000000000..12ee1a8a92e --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/ChancesClaim/brown_iconcoat.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Made by SharkSnake98 on GitHub", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/ChancesClaim/yellow_raincoat.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/ChancesClaim/yellow_raincoat.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..134d8f72777 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/ChancesClaim/yellow_raincoat.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/ChancesClaim/yellow_raincoat.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/ChancesClaim/yellow_raincoat.rsi/icon.png new file mode 100644 index 00000000000..b2f6a03213b Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/ChancesClaim/yellow_raincoat.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/ChancesClaim/yellow_raincoat.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/ChancesClaim/yellow_raincoat.rsi/meta.json new file mode 100644 index 00000000000..12ee1a8a92e --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/ChancesClaim/yellow_raincoat.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Made by SharkSnake98 on GitHub", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/black_fancy.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/black_fancy.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..1cd0f774914 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/black_fancy.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/black_fancy.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/black_fancy.rsi/icon.png new file mode 100644 index 00000000000..d3b83852839 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/black_fancy.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/black_fancy.rsi/jacket-equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/black_fancy.rsi/jacket-equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..88596af1790 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/black_fancy.rsi/jacket-equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/black_fancy.rsi/jacket-icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/black_fancy.rsi/jacket-icon.png new file mode 100644 index 00000000000..57e44631f8a Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/black_fancy.rsi/jacket-icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/black_fancy.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/black_fancy.rsi/meta.json new file mode 100644 index 00000000000..36e68c92cc7 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/black_fancy.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/obj/items/clothing/cm_suits.dmi, https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/mob/humans/onmob/suit_1.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "jacket-equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "icon" + }, + { + "name": "jacket-icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/blue_fancy.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/blue_fancy.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..84c02c1bbdd Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/blue_fancy.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/blue_fancy.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/blue_fancy.rsi/icon.png new file mode 100644 index 00000000000..7f97d6b32eb Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/blue_fancy.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/blue_fancy.rsi/jacket-equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/blue_fancy.rsi/jacket-equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..bff78b46c46 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/blue_fancy.rsi/jacket-equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/blue_fancy.rsi/jacket-icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/blue_fancy.rsi/jacket-icon.png new file mode 100644 index 00000000000..6e8779c19f8 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/blue_fancy.rsi/jacket-icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/blue_fancy.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/blue_fancy.rsi/meta.json new file mode 100644 index 00000000000..6b5a8f4cf50 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/blue_fancy.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/HEAD/icons/mob/humans/onmob/clothing/suits/windbreakers.dmi, https://github.com/cmss13-devs/cmss13/blob/HEAD/icons/obj/items/clothing/suits/windbreakers.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "jacket-equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "icon" + }, + { + "name": "jacket-icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/brown_fancy.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/brown_fancy.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..fb8482f5a35 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/brown_fancy.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/brown_fancy.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/brown_fancy.rsi/icon.png new file mode 100644 index 00000000000..a1bab41758b Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/brown_fancy.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/brown_fancy.rsi/jacket-equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/brown_fancy.rsi/jacket-equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..386276eee04 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/brown_fancy.rsi/jacket-equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/brown_fancy.rsi/jacket-icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/brown_fancy.rsi/jacket-icon.png new file mode 100644 index 00000000000..70d405fe75d Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/brown_fancy.rsi/jacket-icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/brown_fancy.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/brown_fancy.rsi/meta.json new file mode 100644 index 00000000000..6b5a8f4cf50 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/brown_fancy.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/HEAD/icons/mob/humans/onmob/clothing/suits/windbreakers.dmi, https://github.com/cmss13-devs/cmss13/blob/HEAD/icons/obj/items/clothing/suits/windbreakers.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "jacket-equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "icon" + }, + { + "name": "jacket-icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/corporate_duty_jacket.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/corporate_duty_jacket.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..461114758b9 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/corporate_duty_jacket.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/corporate_duty_jacket.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/corporate_duty_jacket.rsi/icon.png new file mode 100644 index 00000000000..8f1a189eec8 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/corporate_duty_jacket.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/corporate_duty_jacket.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/corporate_duty_jacket.rsi/meta.json new file mode 100644 index 00000000000..f655f3c2ed9 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/corporate_duty_jacket.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Made by SharkSnake98 on GitHub", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/corporate_manager.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/corporate_manager.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..a619a8e4b99 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/corporate_manager.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/corporate_manager.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/corporate_manager.rsi/icon.png new file mode 100644 index 00000000000..940c79bcf8a Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/corporate_manager.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/corporate_manager.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/corporate_manager.rsi/meta.json new file mode 100644 index 00000000000..1cca9a8a276 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/corporate_manager.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/e0f06e0a3383e56331e9315b3aed1c8c2041ebd0/icons/obj/items/clothing/suits/suits_by_faction/WY.dmi and https://github.com/cmss13-devs/cmss13/blob/e0f06e0a3383e56331e9315b3aed1c8c2041ebd0/icons/mob/humans/onmob/clothing/suits/suits_by_faction/WY.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/lightbrown_fancy.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/lightbrown_fancy.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..a835be933c4 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/lightbrown_fancy.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/lightbrown_fancy.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/lightbrown_fancy.rsi/icon.png new file mode 100644 index 00000000000..609c7200461 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/lightbrown_fancy.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/lightbrown_fancy.rsi/jacket-equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/lightbrown_fancy.rsi/jacket-equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..9d3c03409d0 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/lightbrown_fancy.rsi/jacket-equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/lightbrown_fancy.rsi/jacket-icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/lightbrown_fancy.rsi/jacket-icon.png new file mode 100644 index 00000000000..bcaadab95b1 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/lightbrown_fancy.rsi/jacket-icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/lightbrown_fancy.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/lightbrown_fancy.rsi/meta.json new file mode 100644 index 00000000000..6b5a8f4cf50 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/lightbrown_fancy.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/HEAD/icons/mob/humans/onmob/clothing/suits/windbreakers.dmi, https://github.com/cmss13-devs/cmss13/blob/HEAD/icons/obj/items/clothing/suits/windbreakers.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "jacket-equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "icon" + }, + { + "name": "jacket-icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/logistics_jacket.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/logistics_jacket.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..d2703d595d9 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/logistics_jacket.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/logistics_jacket.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/logistics_jacket.rsi/icon.png new file mode 100644 index 00000000000..d4a739cbd45 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/logistics_jacket.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/logistics_jacket.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/logistics_jacket.rsi/meta.json new file mode 100644 index 00000000000..f655f3c2ed9 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/logistics_jacket.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Made by SharkSnake98 on GitHub", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/purp_fancy.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/purp_fancy.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..01428d1c5c2 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/purp_fancy.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/purp_fancy.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/purp_fancy.rsi/icon.png new file mode 100644 index 00000000000..fdd5bd0a2e9 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/purp_fancy.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/purp_fancy.rsi/jacket-equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/purp_fancy.rsi/jacket-equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..1a65e2ef229 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/purp_fancy.rsi/jacket-equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/purp_fancy.rsi/jacket-icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/purp_fancy.rsi/jacket-icon.png new file mode 100644 index 00000000000..b4dad8945f8 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/purp_fancy.rsi/jacket-icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/purp_fancy.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/purp_fancy.rsi/meta.json new file mode 100644 index 00000000000..6b5a8f4cf50 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/purp_fancy.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/HEAD/icons/mob/humans/onmob/clothing/suits/windbreakers.dmi, https://github.com/cmss13-devs/cmss13/blob/HEAD/icons/obj/items/clothing/suits/windbreakers.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "jacket-equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "icon" + }, + { + "name": "jacket-icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/red_fancy.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/red_fancy.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..e0787e4dcc4 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/red_fancy.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/red_fancy.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/red_fancy.rsi/icon.png new file mode 100644 index 00000000000..7e97a04f1fd Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/red_fancy.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/red_fancy.rsi/jacket-equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/red_fancy.rsi/jacket-equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..5f84cfbe6e9 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/red_fancy.rsi/jacket-equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/red_fancy.rsi/jacket-icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/red_fancy.rsi/jacket-icon.png new file mode 100644 index 00000000000..6061c5a7966 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/red_fancy.rsi/jacket-icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/red_fancy.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/red_fancy.rsi/meta.json new file mode 100644 index 00000000000..6b5a8f4cf50 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/red_fancy.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/HEAD/icons/mob/humans/onmob/clothing/suits/windbreakers.dmi, https://github.com/cmss13-devs/cmss13/blob/HEAD/icons/obj/items/clothing/suits/windbreakers.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "jacket-equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "icon" + }, + { + "name": "jacket-icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/weya_blue_vest.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/weya_blue_vest.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..6526f602cbe Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/weya_blue_vest.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/weya_blue_vest.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/weya_blue_vest.rsi/icon.png new file mode 100644 index 00000000000..ec05aba9fe7 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/weya_blue_vest.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/weya_blue_vest.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/weya_blue_vest.rsi/meta.json new file mode 100644 index 00000000000..b1887375f5f --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/weya_blue_vest.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-3.0", + "copyright": "Created by SharkSnake98 on GitHub. Permission given to RMC14 https://github.com/RMC-14/RMC-14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/weya_brown_vest.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/weya_brown_vest.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..dc65220c6dc Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/weya_brown_vest.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/weya_brown_vest.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/weya_brown_vest.rsi/icon.png new file mode 100644 index 00000000000..df6b1fd9526 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/weya_brown_vest.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/weya_brown_vest.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/weya_brown_vest.rsi/meta.json new file mode 100644 index 00000000000..b1887375f5f --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/weya_brown_vest.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-3.0", + "copyright": "Created by SharkSnake98 on GitHub. Permission given to RMC14 https://github.com/RMC-14/RMC-14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/weya_red_vest.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/weya_red_vest.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..f21837c9e04 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/weya_red_vest.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/weya_red_vest.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/weya_red_vest.rsi/icon.png new file mode 100644 index 00000000000..5c0b2ddb49e Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/weya_red_vest.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/weya_red_vest.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/weya_red_vest.rsi/meta.json new file mode 100644 index 00000000000..b1887375f5f --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/weya_red_vest.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-3.0", + "copyright": "Created by SharkSnake98 on GitHub. Permission given to RMC14 https://github.com/RMC-14/RMC-14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/weya_white_vest.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/weya_white_vest.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..8746a8f7139 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/weya_white_vest.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/weya_white_vest.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/weya_white_vest.rsi/icon.png new file mode 100644 index 00000000000..7a7b85dd185 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/weya_white_vest.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/weya_white_vest.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/weya_white_vest.rsi/meta.json new file mode 100644 index 00000000000..b1887375f5f --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Corporate/weya_white_vest.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-3.0", + "copyright": "Created by SharkSnake98 on GitHub. Permission given to RMC14 https://github.com/RMC-14/RMC-14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/FurCoat/fur_coat.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/FurCoat/fur_coat.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..7e673660cf8 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/FurCoat/fur_coat.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/FurCoat/fur_coat.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/FurCoat/fur_coat.rsi/icon.png new file mode 100644 index 00000000000..38ee645a70e Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/FurCoat/fur_coat.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/FurCoat/fur_coat.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/FurCoat/fur_coat.rsi/meta.json new file mode 100644 index 00000000000..f226d8a0bfe --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/FurCoat/fur_coat.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/09583166e0082a417aef46dbb280675fa93a81e8/icons/obj/items/clothing/suits/suits_by_faction/WY.dmi, https://github.com/cmss13-devs/cmss13/blob/09583166e0082a417aef46dbb280675fa93a81e8/icons/mob/humans/onmob/clothing/suits/suits_by_faction/WY.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/FurCoat/fur_coat_alt.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/FurCoat/fur_coat_alt.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..8089ccfabbc Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/FurCoat/fur_coat_alt.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/FurCoat/fur_coat_alt.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/FurCoat/fur_coat_alt.rsi/icon.png new file mode 100644 index 00000000000..2d146612630 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/FurCoat/fur_coat_alt.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/FurCoat/fur_coat_alt.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/FurCoat/fur_coat_alt.rsi/meta.json new file mode 100644 index 00000000000..f226d8a0bfe --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/FurCoat/fur_coat_alt.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/09583166e0082a417aef46dbb280675fa93a81e8/icons/obj/items/clothing/suits/suits_by_faction/WY.dmi, https://github.com/cmss13-devs/cmss13/blob/09583166e0082a417aef46dbb280675fa93a81e8/icons/mob/humans/onmob/clothing/suits/suits_by_faction/WY.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Provost/provost_coat.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Provost/provost_coat.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..cf4803a3b2c Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Provost/provost_coat.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Provost/provost_coat.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Provost/provost_coat.rsi/icon.png new file mode 100644 index 00000000000..665f0938e90 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Provost/provost_coat.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Provost/provost_coat.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Provost/provost_coat.rsi/meta.json new file mode 100644 index 00000000000..73b8e057ef2 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Provost/provost_coat.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/a70e62e5a4fd30059e21efdea1bc840e3be487eb/icons/obj/items/clothing/suits/suits_by_faction/UA.dmi, https://github.com/cmss13-devs/cmss13/blob/a70e62e5a4fd30059e21efdea1bc840e3be487eb/icons/mob/humans/onmob/clothing/suits/suits_by_faction/UA.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Provost/provost_coat_marshal.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Provost/provost_coat_marshal.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..7d238d90a99 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Provost/provost_coat_marshal.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Provost/provost_coat_marshal.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Provost/provost_coat_marshal.rsi/icon.png new file mode 100644 index 00000000000..74ea5cc7ac3 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Provost/provost_coat_marshal.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Provost/provost_coat_marshal.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Provost/provost_coat_marshal.rsi/meta.json new file mode 100644 index 00000000000..73b8e057ef2 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Provost/provost_coat_marshal.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/a70e62e5a4fd30059e21efdea1bc840e3be487eb/icons/obj/items/clothing/suits/suits_by_faction/UA.dmi, https://github.com/cmss13-devs/cmss13/blob/a70e62e5a4fd30059e21efdea1bc840e3be487eb/icons/mob/humans/onmob/clothing/suits/suits_by_faction/UA.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Provost/provost_jacket.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Provost/provost_jacket.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..0f7ac23442b Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Provost/provost_jacket.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Provost/provost_jacket.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Provost/provost_jacket.rsi/icon.png new file mode 100644 index 00000000000..52d497973df Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Provost/provost_jacket.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Provost/provost_jacket.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Provost/provost_jacket.rsi/meta.json new file mode 100644 index 00000000000..73b8e057ef2 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Provost/provost_jacket.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/a70e62e5a4fd30059e21efdea1bc840e3be487eb/icons/obj/items/clothing/suits/suits_by_faction/UA.dmi, https://github.com/cmss13-devs/cmss13/blob/a70e62e5a4fd30059e21efdea1bc840e3be487eb/icons/mob/humans/onmob/clothing/suits/suits_by_faction/UA.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Provost/provostci_jacket.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Provost/provostci_jacket.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..468f15c38c3 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Provost/provostci_jacket.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Provost/provostci_jacket.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Provost/provostci_jacket.rsi/icon.png new file mode 100644 index 00000000000..0ff5731c365 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Provost/provostci_jacket.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Provost/provostci_jacket.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Provost/provostci_jacket.rsi/meta.json new file mode 100644 index 00000000000..73b8e057ef2 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Provost/provostci_jacket.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/a70e62e5a4fd30059e21efdea1bc840e3be487eb/icons/obj/items/clothing/suits/suits_by_faction/UA.dmi, https://github.com/cmss13-devs/cmss13/blob/a70e62e5a4fd30059e21efdea1bc840e3be487eb/icons/mob/humans/onmob/clothing/suits/suits_by_faction/UA.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/cmb.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/cmb.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..9caae3aa691 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/cmb.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/cmb.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/cmb.rsi/icon.png new file mode 100644 index 00000000000..919af97f7f5 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/cmb.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/cmb.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/cmb.rsi/meta.json new file mode 100644 index 00000000000..cc5be05c3b7 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/cmb.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/b6f4841b5768599c0fcf58a21fd88536a9959c2c/icons/mob/humans/onmob/clothing/suits/coats_robes.dmi, https://github.com/cmss13-devs/cmss13/blob/b6f4841b5768599c0fcf58a21fd88536a9959c2c/icons/obj/items/clothing/suits/coats_robes.dmi, modified by Dutch-VanDerLinde", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/green.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/green.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..1dc1449b9c4 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/green.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/green.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/green.rsi/icon.png new file mode 100644 index 00000000000..0f72706b3ec Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/green.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/green.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/green.rsi/meta.json new file mode 100644 index 00000000000..73d56222bc3 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/green.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/b6f4841b5768599c0fcf58a21fd88536a9959c2c/icons/mob/humans/onmob/clothing/suits/coats_robes.dmi, https://github.com/cmss13-devs/cmss13/blob/b6f4841b5768599c0fcf58a21fd88536a9959c2c/icons/obj/items/clothing/suits/coats_robes.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/liaison.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/liaison.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..dbca47de713 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/liaison.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/liaison.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/liaison.rsi/icon.png new file mode 100644 index 00000000000..8b72612d84a Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/liaison.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/liaison.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/liaison.rsi/meta.json new file mode 100644 index 00000000000..f226d8a0bfe --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/liaison.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/09583166e0082a417aef46dbb280675fa93a81e8/icons/obj/items/clothing/suits/suits_by_faction/WY.dmi, https://github.com/cmss13-devs/cmss13/blob/09583166e0082a417aef46dbb280675fa93a81e8/icons/mob/humans/onmob/clothing/suits/suits_by_faction/WY.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/navy.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/navy.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..656689fbaef Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/navy.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/navy.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/navy.rsi/icon.png new file mode 100644 index 00000000000..16893b0eaf1 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/navy.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/navy.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/navy.rsi/meta.json new file mode 100644 index 00000000000..73d56222bc3 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/navy.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/b6f4841b5768599c0fcf58a21fd88536a9959c2c/icons/mob/humans/onmob/clothing/suits/coats_robes.dmi, https://github.com/cmss13-devs/cmss13/blob/b6f4841b5768599c0fcf58a21fd88536a9959c2c/icons/obj/items/clothing/suits/coats_robes.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/normal.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/normal.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..58ac55d9e22 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/normal.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/normal.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/normal.rsi/icon.png new file mode 100644 index 00000000000..feba1474054 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/normal.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/normal.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/normal.rsi/meta.json new file mode 100644 index 00000000000..73d56222bc3 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/normal.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/b6f4841b5768599c0fcf58a21fd88536a9959c2c/icons/mob/humans/onmob/clothing/suits/coats_robes.dmi, https://github.com/cmss13-devs/cmss13/blob/b6f4841b5768599c0fcf58a21fd88536a9959c2c/icons/obj/items/clothing/suits/coats_robes.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/purple.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/purple.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..23b792be7de Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/purple.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/purple.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/purple.rsi/icon.png new file mode 100644 index 00000000000..6a2494ae561 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/purple.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/purple.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/purple.rsi/meta.json new file mode 100644 index 00000000000..73d56222bc3 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/purple.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/b6f4841b5768599c0fcf58a21fd88536a9959c2c/icons/mob/humans/onmob/clothing/suits/coats_robes.dmi, https://github.com/cmss13-devs/cmss13/blob/b6f4841b5768599c0fcf58a21fd88536a9959c2c/icons/obj/items/clothing/suits/coats_robes.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/security.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/security.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..837a994d34f Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/security.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/security.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/security.rsi/icon.png new file mode 100644 index 00000000000..ae0defb8cd6 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/security.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/security.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/security.rsi/meta.json new file mode 100644 index 00000000000..73d56222bc3 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/security.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/b6f4841b5768599c0fcf58a21fd88536a9959c2c/icons/mob/humans/onmob/clothing/suits/coats_robes.dmi, https://github.com/cmss13-devs/cmss13/blob/b6f4841b5768599c0fcf58a21fd88536a9959c2c/icons/obj/items/clothing/suits/coats_robes.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/soviet.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/soviet.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..82cbd982764 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/soviet.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/soviet.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/soviet.rsi/icon.png new file mode 100644 index 00000000000..66a629927b8 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/soviet.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/soviet.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/soviet.rsi/meta.json new file mode 100644 index 00000000000..ebf7ac26328 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/soviet.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/master/icons/obj/items/clothing/suits/suits_by_faction/UPP.dmi, https://github.com/cmss13-devs/cmss13/blob/master/icons/mob/humans/onmob/suits/suits_by_faction/UPP.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/yellow.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/yellow.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..3f1e116abc6 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/yellow.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/yellow.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/yellow.rsi/icon.png new file mode 100644 index 00000000000..c123ad48004 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/yellow.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/yellow.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/yellow.rsi/meta.json new file mode 100644 index 00000000000..73d56222bc3 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Snowsuits/yellow.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/b6f4841b5768599c0fcf58a21fd88536a9959c2c/icons/mob/humans/onmob/clothing/suits/coats_robes.dmi, https://github.com/cmss13-devs/cmss13/blob/b6f4841b5768599c0fcf58a21fd88536a9959c2c/icons/obj/items/clothing/suits/coats_robes.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/first_responder_windbreaker.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/first_responder_windbreaker.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..c5d9bd37805 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/first_responder_windbreaker.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/first_responder_windbreaker.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/first_responder_windbreaker.rsi/icon.png new file mode 100644 index 00000000000..510070b747f Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/first_responder_windbreaker.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/first_responder_windbreaker.rsi/jacket-equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/first_responder_windbreaker.rsi/jacket-equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..8650acb791c Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/first_responder_windbreaker.rsi/jacket-equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/first_responder_windbreaker.rsi/jacket-icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/first_responder_windbreaker.rsi/jacket-icon.png new file mode 100644 index 00000000000..510070b747f Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/first_responder_windbreaker.rsi/jacket-icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/first_responder_windbreaker.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/first_responder_windbreaker.rsi/meta.json new file mode 100644 index 00000000000..22e2e55237e --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/first_responder_windbreaker.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/0525b5ada7da1afcd9b260e76d5fea01500d9c8d/icons/mob/humans/onmob/clothing/suits/windbreakers.dmi, https://github.com/cmss13-devs/cmss13/blob/0525b5ada7da1afcd9b260e76d5fea01500d9c8d/icons/obj/items/clothing/suits/windbreakers.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "jacket-equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "icon" + }, + { + "name": "jacket-icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/weya_windbreaker.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/weya_windbreaker.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..1c7f8700522 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/weya_windbreaker.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/weya_windbreaker.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/weya_windbreaker.rsi/icon.png new file mode 100644 index 00000000000..a57624f10bc Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/weya_windbreaker.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/weya_windbreaker.rsi/jacket-equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/weya_windbreaker.rsi/jacket-equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..5ed29d104d4 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/weya_windbreaker.rsi/jacket-equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/weya_windbreaker.rsi/jacket-icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/weya_windbreaker.rsi/jacket-icon.png new file mode 100644 index 00000000000..27a872af835 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/weya_windbreaker.rsi/jacket-icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/weya_windbreaker.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/weya_windbreaker.rsi/meta.json new file mode 100644 index 00000000000..041f16d4913 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/weya_windbreaker.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Made by SharkSnake98 on GitHub", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "jacket-equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "icon" + }, + { + "name": "jacket-icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/windbreaker.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/windbreaker.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..bb5f8c48395 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/windbreaker.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/windbreaker.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/windbreaker.rsi/icon.png new file mode 100644 index 00000000000..4e284160fcc Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/windbreaker.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/windbreaker.rsi/jacket-equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/windbreaker.rsi/jacket-equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..b53da8931c2 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/windbreaker.rsi/jacket-equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/windbreaker.rsi/jacket-icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/windbreaker.rsi/jacket-icon.png new file mode 100644 index 00000000000..e746104f133 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/windbreaker.rsi/jacket-icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/windbreaker.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/windbreaker.rsi/meta.json new file mode 100644 index 00000000000..6b5a8f4cf50 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/windbreaker.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/HEAD/icons/mob/humans/onmob/clothing/suits/windbreakers.dmi, https://github.com/cmss13-devs/cmss13/blob/HEAD/icons/obj/items/clothing/suits/windbreakers.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "jacket-equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "icon" + }, + { + "name": "jacket-icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/windbreaker_brown.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/windbreaker_brown.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..3721f54f976 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/windbreaker_brown.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/windbreaker_brown.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/windbreaker_brown.rsi/icon.png new file mode 100644 index 00000000000..87f9d170014 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/windbreaker_brown.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/windbreaker_brown.rsi/jacket-equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/windbreaker_brown.rsi/jacket-equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..12c643b4cea Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/windbreaker_brown.rsi/jacket-equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/windbreaker_brown.rsi/jacket-icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/windbreaker_brown.rsi/jacket-icon.png new file mode 100644 index 00000000000..87f9d170014 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/windbreaker_brown.rsi/jacket-icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/windbreaker_brown.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/windbreaker_brown.rsi/meta.json new file mode 100644 index 00000000000..22e2e55237e --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/windbreaker_brown.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/0525b5ada7da1afcd9b260e76d5fea01500d9c8d/icons/mob/humans/onmob/clothing/suits/windbreakers.dmi, https://github.com/cmss13-devs/cmss13/blob/0525b5ada7da1afcd9b260e76d5fea01500d9c8d/icons/obj/items/clothing/suits/windbreakers.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "jacket-equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "icon" + }, + { + "name": "jacket-icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/windbreaker_expedition.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/windbreaker_expedition.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..45a8caf8812 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/windbreaker_expedition.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/windbreaker_expedition.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/windbreaker_expedition.rsi/icon.png new file mode 100644 index 00000000000..cbab44305a0 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/windbreaker_expedition.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/windbreaker_expedition.rsi/jacket-equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/windbreaker_expedition.rsi/jacket-equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..9a18d1b696a Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/windbreaker_expedition.rsi/jacket-equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/windbreaker_expedition.rsi/jacket-icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/windbreaker_expedition.rsi/jacket-icon.png new file mode 100644 index 00000000000..cbab44305a0 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/windbreaker_expedition.rsi/jacket-icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/windbreaker_expedition.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/windbreaker_expedition.rsi/meta.json new file mode 100644 index 00000000000..22e2e55237e --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/windbreaker_expedition.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/0525b5ada7da1afcd9b260e76d5fea01500d9c8d/icons/mob/humans/onmob/clothing/suits/windbreakers.dmi, https://github.com/cmss13-devs/cmss13/blob/0525b5ada7da1afcd9b260e76d5fea01500d9c8d/icons/obj/items/clothing/suits/windbreakers.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "jacket-equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "icon" + }, + { + "name": "jacket-icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/windbreaker_grey.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/windbreaker_grey.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..af314b02a47 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/windbreaker_grey.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/windbreaker_grey.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/windbreaker_grey.rsi/icon.png new file mode 100644 index 00000000000..9252e7e54ee Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/windbreaker_grey.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/windbreaker_grey.rsi/jacket-equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/windbreaker_grey.rsi/jacket-equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..9a4a3c96a39 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/windbreaker_grey.rsi/jacket-equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/windbreaker_grey.rsi/jacket-icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/windbreaker_grey.rsi/jacket-icon.png new file mode 100644 index 00000000000..9252e7e54ee Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/windbreaker_grey.rsi/jacket-icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/windbreaker_grey.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/windbreaker_grey.rsi/meta.json new file mode 100644 index 00000000000..22e2e55237e --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/Windbreakers/windbreaker_grey.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/0525b5ada7da1afcd9b260e76d5fea01500d9c8d/icons/mob/humans/onmob/clothing/suits/windbreakers.dmi, https://github.com/cmss13-devs/cmss13/blob/0525b5ada7da1afcd9b260e76d5fea01500d9c8d/icons/obj/items/clothing/suits/windbreakers.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "jacket-equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "icon" + }, + { + "name": "jacket-icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/aso/black.rsi/equipped-OUTERCLOTHING-avali.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/aso/black.rsi/equipped-OUTERCLOTHING-avali.png new file mode 100644 index 00000000000..71413cd58d4 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/aso/black.rsi/equipped-OUTERCLOTHING-avali.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/aso/black.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/aso/black.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..c07128383fa Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/aso/black.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/aso/black.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/aso/black.rsi/icon.png new file mode 100644 index 00000000000..e8099466ef1 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/aso/black.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/aso/black.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/aso/black.rsi/meta.json new file mode 100644 index 00000000000..e706570a1d5 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/aso/black.rsi/meta.json @@ -0,0 +1,22 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Modified by Sigma Draconis from cmss13 sprites at https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/mob/humans/onmob/suit_1.dmi, https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/obj/items/clothing/cm_suits.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-avali", + "directions": 4 + }, + { + "name": "icon" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/aso/black_alt.rsi/equipped-OUTERCLOTHING-avali.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/aso/black_alt.rsi/equipped-OUTERCLOTHING-avali.png new file mode 100644 index 00000000000..12d565ea754 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/aso/black_alt.rsi/equipped-OUTERCLOTHING-avali.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/aso/black_alt.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/aso/black_alt.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..2f2a4026fe6 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/aso/black_alt.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/aso/black_alt.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/aso/black_alt.rsi/icon.png new file mode 100644 index 00000000000..43e13b53d86 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/aso/black_alt.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/aso/black_alt.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/aso/black_alt.rsi/meta.json new file mode 100644 index 00000000000..e706570a1d5 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/aso/black_alt.rsi/meta.json @@ -0,0 +1,22 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Modified by Sigma Draconis from cmss13 sprites at https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/mob/humans/onmob/suit_1.dmi, https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/obj/items/clothing/cm_suits.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-avali", + "directions": 4 + }, + { + "name": "icon" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/aso/white.rsi/equipped-OUTERCLOTHING-avali.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/aso/white.rsi/equipped-OUTERCLOTHING-avali.png new file mode 100644 index 00000000000..1634b0031e6 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/aso/white.rsi/equipped-OUTERCLOTHING-avali.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/aso/white.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/aso/white.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..c5a5e005a0b Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/aso/white.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/aso/white.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/aso/white.rsi/icon.png new file mode 100644 index 00000000000..f1082fbc9a3 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/aso/white.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/aso/white.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/aso/white.rsi/meta.json new file mode 100644 index 00000000000..e706570a1d5 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/aso/white.rsi/meta.json @@ -0,0 +1,22 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Modified by Sigma Draconis from cmss13 sprites at https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/mob/humans/onmob/suit_1.dmi, https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/obj/items/clothing/cm_suits.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-avali", + "directions": 4 + }, + { + "name": "icon" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/aso/white_alt.rsi/equipped-OUTERCLOTHING-avali.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/aso/white_alt.rsi/equipped-OUTERCLOTHING-avali.png new file mode 100644 index 00000000000..49e288dddc3 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/aso/white_alt.rsi/equipped-OUTERCLOTHING-avali.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/aso/white_alt.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/aso/white_alt.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..545d38f8963 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/aso/white_alt.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/aso/white_alt.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/aso/white_alt.rsi/icon.png new file mode 100644 index 00000000000..c05566bf1cf Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/aso/white_alt.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/aso/white_alt.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/aso/white_alt.rsi/meta.json new file mode 100644 index 00000000000..e706570a1d5 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/aso/white_alt.rsi/meta.json @@ -0,0 +1,22 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Modified by Sigma Draconis from cmss13 sprites at https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/mob/humans/onmob/suit_1.dmi, https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/obj/items/clothing/cm_suits.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-avali", + "directions": 4 + }, + { + "name": "icon" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/bomber_black.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/bomber_black.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..3a07122f476 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/bomber_black.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/bomber_black.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/bomber_black.rsi/icon.png new file mode 100644 index 00000000000..3efe3fbd5d6 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/bomber_black.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/bomber_black.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/bomber_black.rsi/meta.json new file mode 100644 index 00000000000..d0818feb838 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/bomber_black.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/HEAD/icons/mob/humans/onmob/clothing/suits/jackets.dmi, https://github.com/cmss13-devs/cmss13/blob/HEAD/icons/obj/items/clothing/suits/jackets.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/bomber_grey.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/bomber_grey.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..10f3311f9a2 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/bomber_grey.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/bomber_grey.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/bomber_grey.rsi/icon.png new file mode 100644 index 00000000000..83c6d75b8ae Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/bomber_grey.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/bomber_grey.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/bomber_grey.rsi/meta.json new file mode 100644 index 00000000000..d0818feb838 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/bomber_grey.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/HEAD/icons/mob/humans/onmob/clothing/suits/jackets.dmi, https://github.com/cmss13-devs/cmss13/blob/HEAD/icons/obj/items/clothing/suits/jackets.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/bomber_khaki.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/bomber_khaki.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..b56bfde8653 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/bomber_khaki.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/bomber_khaki.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/bomber_khaki.rsi/icon.png new file mode 100644 index 00000000000..4e0f6f03880 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/bomber_khaki.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/bomber_khaki.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/bomber_khaki.rsi/meta.json new file mode 100644 index 00000000000..d0818feb838 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/bomber_khaki.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/HEAD/icons/mob/humans/onmob/clothing/suits/jackets.dmi, https://github.com/cmss13-devs/cmss13/blob/HEAD/icons/obj/items/clothing/suits/jackets.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/bomber_red.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/bomber_red.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..c3d639587fb Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/bomber_red.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/bomber_red.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/bomber_red.rsi/icon.png new file mode 100644 index 00000000000..fd882d259fe Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/bomber_red.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/bomber_red.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/bomber_red.rsi/meta.json new file mode 100644 index 00000000000..d0818feb838 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/bomber_red.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/HEAD/icons/mob/humans/onmob/clothing/suits/jackets.dmi, https://github.com/cmss13-devs/cmss13/blob/HEAD/icons/obj/items/clothing/suits/jackets.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/brown_vest.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/brown_vest.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..97d1ec5fb42 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/brown_vest.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/brown_vest.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/brown_vest.rsi/icon.png new file mode 100644 index 00000000000..315aee91bbc Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/brown_vest.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/brown_vest.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/brown_vest.rsi/meta.json new file mode 100644 index 00000000000..711a5dc232e --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/brown_vest.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/HEAD/icons/mob/humans/onmob/clothing/suits/vests_aprons.dmi, https://github.com/cmss13-devs/cmss13/blob/HEAD/icons/obj/items/clothing/suits/vests_aprons.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/chaplain_robes.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/chaplain_robes.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..db012555d92 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/chaplain_robes.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/chaplain_robes.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/chaplain_robes.rsi/icon.png new file mode 100644 index 00000000000..ff3dda7b5d1 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/chaplain_robes.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/chaplain_robes.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/chaplain_robes.rsi/meta.json new file mode 100644 index 00000000000..52a6bd2fc7c --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/chaplain_robes.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/6885bdcc04edc239796f74ac325fc9bc98c0a8fc/icons/obj/items/clothing/suits/coats_robes.dmi, https://github.com/cmss13-devs/cmss13/blob/6885bdcc04edc239796f74ac325fc9bc98c0a8fc/icons/mob/humans/onmob/clothing/suits/coats_robes.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/cl_fur_coat.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/cl_fur_coat.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..34f325ebb0c Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/cl_fur_coat.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/cl_fur_coat.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/cl_fur_coat.rsi/icon.png new file mode 100644 index 00000000000..77077fcf841 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/cl_fur_coat.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/cl_fur_coat.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/cl_fur_coat.rsi/meta.json new file mode 100644 index 00000000000..5b8bef21af3 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/cl_fur_coat.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-4.0", + "copyright": "Created by Assknuckles on GitHub. Permission given to RMC14 https://github.com/RMC-14/RMC-14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/coat_formal.rsi/icon-open.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/coat_formal.rsi/icon-open.png new file mode 100644 index 00000000000..189808e46cd Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/coat_formal.rsi/icon-open.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/coat_formal.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/coat_formal.rsi/meta.json index cea44b61067..4e93d84b468 100644 --- a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/coat_formal.rsi/meta.json +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/coat_formal.rsi/meta.json @@ -10,9 +10,16 @@ { "name": "icon" }, + { + "name": "icon-open" + }, { "name": "equipped-OUTERCLOTHING", "directions": 4 + }, + { + "name": "open-equipped-OUTERCLOTHING", + "directions": 4 } - ] -} \ No newline at end of file + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/coat_formal.rsi/open-equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/coat_formal.rsi/open-equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..c0e6143b9df Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/coat_formal.rsi/open-equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/grey_vest.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/grey_vest.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..8364526a3b5 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/grey_vest.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/grey_vest.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/grey_vest.rsi/icon.png new file mode 100644 index 00000000000..29aa2bacaac Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/grey_vest.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/grey_vest.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/grey_vest.rsi/meta.json new file mode 100644 index 00000000000..711a5dc232e --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/grey_vest.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/HEAD/icons/mob/humans/onmob/clothing/suits/vests_aprons.dmi, https://github.com/cmss13-devs/cmss13/blob/HEAD/icons/obj/items/clothing/suits/vests_aprons.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/hobocoat_blue.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/hobocoat_blue.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..a35b37aeac6 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/hobocoat_blue.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/hobocoat_blue.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/hobocoat_blue.rsi/icon.png new file mode 100644 index 00000000000..1842891e8ba Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/hobocoat_blue.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/hobocoat_blue.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/hobocoat_blue.rsi/meta.json new file mode 100644 index 00000000000..5a4afd16a78 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/hobocoat_blue.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/HEAD/icons/mob/humans/onmob/clothing/suits/coats_robes.dmi, https://github.com/cmss13-devs/cmss13/blob/HEAD/icons/obj/items/clothing/suits/coats_robes.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/hobocoat_brown.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/hobocoat_brown.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..3c2d07ef16a Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/hobocoat_brown.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/hobocoat_brown.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/hobocoat_brown.rsi/icon.png new file mode 100644 index 00000000000..613c830be8f Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/hobocoat_brown.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/hobocoat_brown.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/hobocoat_brown.rsi/meta.json new file mode 100644 index 00000000000..5a4afd16a78 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/hobocoat_brown.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/HEAD/icons/mob/humans/onmob/clothing/suits/coats_robes.dmi, https://github.com/cmss13-devs/cmss13/blob/HEAD/icons/obj/items/clothing/suits/coats_robes.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/hobocoat_dark_blue.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/hobocoat_dark_blue.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..4a71f5fd054 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/hobocoat_dark_blue.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/hobocoat_dark_blue.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/hobocoat_dark_blue.rsi/icon.png new file mode 100644 index 00000000000..9c229d96d12 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/hobocoat_dark_blue.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/hobocoat_dark_blue.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/hobocoat_dark_blue.rsi/meta.json new file mode 100644 index 00000000000..5a4afd16a78 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/hobocoat_dark_blue.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/HEAD/icons/mob/humans/onmob/clothing/suits/coats_robes.dmi, https://github.com/cmss13-devs/cmss13/blob/HEAD/icons/obj/items/clothing/suits/coats_robes.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/hobocoat_green.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/hobocoat_green.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..8c2edd72288 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/hobocoat_green.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/hobocoat_green.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/hobocoat_green.rsi/icon.png new file mode 100644 index 00000000000..445f9408328 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/hobocoat_green.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/hobocoat_green.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/hobocoat_green.rsi/meta.json new file mode 100644 index 00000000000..5a4afd16a78 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/hobocoat_green.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/HEAD/icons/mob/humans/onmob/clothing/suits/coats_robes.dmi, https://github.com/cmss13-devs/cmss13/blob/HEAD/icons/obj/items/clothing/suits/coats_robes.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/hobocoat_red.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/hobocoat_red.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..0b898bd66b5 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/hobocoat_red.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/hobocoat_red.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/hobocoat_red.rsi/icon.png new file mode 100644 index 00000000000..49341278fc4 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/hobocoat_red.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/hobocoat_red.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/hobocoat_red.rsi/meta.json new file mode 100644 index 00000000000..5a4afd16a78 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/hobocoat_red.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/HEAD/icons/mob/humans/onmob/clothing/suits/coats_robes.dmi, https://github.com/cmss13-devs/cmss13/blob/HEAD/icons/obj/items/clothing/suits/coats_robes.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/holiday_robes.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/holiday_robes.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..6016b78d28e Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/holiday_robes.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/holiday_robes.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/holiday_robes.rsi/icon.png new file mode 100644 index 00000000000..532a8c9e950 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/holiday_robes.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/holiday_robes.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/holiday_robes.rsi/meta.json new file mode 100644 index 00000000000..0d6520da163 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/holiday_robes.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/8ac8786d178687dd4e2b7c3e8c688d5cb623614c/icons/obj/items/clothing/suits/coats_robes.dmi, https://github.com/cmss13-devs/cmss13/blob/8ac8786d178687dd4e2b7c3e8c688d5cb623614c/icons/mob/humans/onmob/clothing/suits/coats_robes.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/jacket_general.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/jacket_general.rsi/equipped-OUTERCLOTHING.png index 756fa4780d1..ca4c3ce6f1f 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/jacket_general.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/jacket_general.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/jacket_general.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/jacket_general.rsi/icon.png index a2f7e7b95fb..3b879e9778d 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/jacket_general.rsi/icon.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/jacket_general.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/jacket_general.rsi/jacket-equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/jacket_general.rsi/jacket-equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..a576b2822e7 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/jacket_general.rsi/jacket-equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/jacket_general.rsi/jacket-icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/jacket_general.rsi/jacket-icon.png new file mode 100644 index 00000000000..8a1f85bc0fe Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/jacket_general.rsi/jacket-icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/jacket_general.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/jacket_general.rsi/meta.json index 752fc917432..3705f3011c7 100644 --- a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/jacket_general.rsi/meta.json +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/jacket_general.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/f4f08bd6ff5ff67172d60f00f522c62726f2b432/icons/obj/items/clothing/suits.dmi, https://github.com/cmss13-devs/cmss13/blob/64d528e554abea15df13cd2cce4918e04e45fcf5/icons/mob/humans/onmob/suit_0.dmi", + "license": "CC-BY-SA-4.0", + "copyright": "Sprites by github noctyrnal", "size": { "x": 32, "y": 32 @@ -10,9 +10,16 @@ { "name": "icon" }, + { + "name": "jacket-icon" + }, { "name": "equipped-OUTERCLOTHING", "directions": 4 + }, + { + "name": "jacket-equipped-OUTERCLOTHING", + "directions": 4 } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/mp.rsi/icon-open.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/mp.rsi/icon-open.png new file mode 100644 index 00000000000..724e11ce9dd Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/mp.rsi/icon-open.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/mp.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/mp.rsi/meta.json index ff545b1456c..86a2182716a 100644 --- a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/mp.rsi/meta.json +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/mp.rsi/meta.json @@ -10,9 +10,16 @@ { "name": "icon" }, + { + "name": "icon-open" + }, { "name": "equipped-OUTERCLOTHING", "directions": 4 + }, + { + "name": "open-equipped-OUTERCLOTHING", + "directions": 4 } ] } diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/mp.rsi/open-equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/mp.rsi/open-equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..51af1eee92f Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/mp.rsi/open-equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/pilot.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/pilot.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..9399d9b7992 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/pilot.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/pilot.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/pilot.rsi/icon.png new file mode 100644 index 00000000000..9399d9b7992 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/pilot.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/pilot.rsi/jacket-equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/pilot.rsi/jacket-equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..ee624c4105e Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/pilot.rsi/jacket-equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/pilot.rsi/jacket-icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/pilot.rsi/jacket-icon.png new file mode 100644 index 00000000000..ee624c4105e Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/pilot.rsi/jacket-icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/pilot.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/pilot.rsi/meta.json new file mode 100644 index 00000000000..c471d3f9f38 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/pilot.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/443f5d2810e6d955594bc1c6b46a5887dbf3351d/icons/mob/humans/onmob/clothing/suits/suits_by_faction/UA.dmi, https://github.com/cmss13-devs/cmss13/blob/443f5d2810e6d955594bc1c6b46a5887dbf3351d/icons/obj/items/clothing/suits/suits_by_faction/UA.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "icon", + "directions": 4 + }, + { + "name": "jacket-equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "jacket-icon", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/qm.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/qm.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..fc8f37d82f0 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/qm.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/qm.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/qm.rsi/icon.png new file mode 100644 index 00000000000..43182978662 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/qm.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/qm.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/qm.rsi/meta.json new file mode 100644 index 00000000000..ff545b1456c --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/qm.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/05eaa3484b1a35aa759300bcfc8f0119f009daae/icons/obj/items/clothing/cm_suits.dmi, https://github.com/cmss13-devs/cmss13/blob/05eaa3484b1a35aa759300bcfc8f0119f009daae/icons/mob/humans/onmob/suit_1.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/sanitation.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/sanitation.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..87476807adc Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/sanitation.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/sanitation.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/sanitation.rsi/icon.png new file mode 100644 index 00000000000..02698302ffd Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/sanitation.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/sanitation.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/sanitation.rsi/meta.json new file mode 100644 index 00000000000..3b050424c73 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/sanitation.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/HEAD/icons/obj/items/clothing/suits/hazard.dmi, https://github.com/cmss13-devs/cmss13/blob/HEAD/icons/mob/humans/onmob/clothing/suits/hazard.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/service/classic.rsi/icon-open.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/service/classic.rsi/icon-open.png new file mode 100644 index 00000000000..6d14d53a61b Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/service/classic.rsi/icon-open.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/service/classic.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/service/classic.rsi/meta.json index c31bd63193d..527baec7718 100644 --- a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/service/classic.rsi/meta.json +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/service/classic.rsi/meta.json @@ -12,14 +12,14 @@ "directions": 4 }, { - "name": "jacket-equipped-OUTERCLOTHING", + "name": "open-equipped-OUTERCLOTHING", "directions": 4 }, { "name": "icon" }, { - "name": "jacket-icon" + "name": "icon-open" } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/service/classic.rsi/open-equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/service/classic.rsi/open-equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..5a9ba6e45ce Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/service/classic.rsi/open-equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/service/desert.rsi/icon-open.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/service/desert.rsi/icon-open.png new file mode 100644 index 00000000000..2682a11b411 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/service/desert.rsi/icon-open.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/service/desert.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/service/desert.rsi/meta.json index c31bd63193d..527baec7718 100644 --- a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/service/desert.rsi/meta.json +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/service/desert.rsi/meta.json @@ -12,14 +12,14 @@ "directions": 4 }, { - "name": "jacket-equipped-OUTERCLOTHING", + "name": "open-equipped-OUTERCLOTHING", "directions": 4 }, { "name": "icon" }, { - "name": "jacket-icon" + "name": "icon-open" } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/service/desert.rsi/open-equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/service/desert.rsi/open-equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..09ae94600e7 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/service/desert.rsi/open-equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/service/jungle.rsi/icon-open.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/service/jungle.rsi/icon-open.png new file mode 100644 index 00000000000..6ff2a4b5b6c Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/service/jungle.rsi/icon-open.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/service/jungle.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/service/jungle.rsi/meta.json index c31bd63193d..527baec7718 100644 --- a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/service/jungle.rsi/meta.json +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/service/jungle.rsi/meta.json @@ -12,14 +12,14 @@ "directions": 4 }, { - "name": "jacket-equipped-OUTERCLOTHING", + "name": "open-equipped-OUTERCLOTHING", "directions": 4 }, { "name": "icon" }, { - "name": "jacket-icon" + "name": "icon-open" } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/service/jungle.rsi/open-equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/service/jungle.rsi/open-equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..9e44da1c9bc Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/service/jungle.rsi/open-equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/service/snow.rsi/icon-open.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/service/snow.rsi/icon-open.png new file mode 100644 index 00000000000..9edc7d87f40 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/service/snow.rsi/icon-open.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/service/snow.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/service/snow.rsi/meta.json index c31bd63193d..527baec7718 100644 --- a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/service/snow.rsi/meta.json +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/service/snow.rsi/meta.json @@ -12,14 +12,14 @@ "directions": 4 }, { - "name": "jacket-equipped-OUTERCLOTHING", + "name": "open-equipped-OUTERCLOTHING", "directions": 4 }, { "name": "icon" }, { - "name": "jacket-icon" + "name": "icon-open" } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/service/snow.rsi/open-equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/service/snow.rsi/open-equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..5ec47dbb173 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/service/snow.rsi/open-equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/service/urban.rsi/icon-open.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/service/urban.rsi/icon-open.png new file mode 100644 index 00000000000..6ff2a4b5b6c Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/service/urban.rsi/icon-open.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/service/urban.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/service/urban.rsi/meta.json index c31bd63193d..527baec7718 100644 --- a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/service/urban.rsi/meta.json +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/service/urban.rsi/meta.json @@ -12,14 +12,14 @@ "directions": 4 }, { - "name": "jacket-equipped-OUTERCLOTHING", + "name": "open-equipped-OUTERCLOTHING", "directions": 4 }, { "name": "icon" }, { - "name": "jacket-icon" + "name": "icon-open" } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/service/urban.rsi/open-equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/service/urban.rsi/open-equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..9e44da1c9bc Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/service/urban.rsi/open-equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/tan_vest.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/tan_vest.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..33c8d3b556d Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/tan_vest.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/tan_vest.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/tan_vest.rsi/icon.png new file mode 100644 index 00000000000..e43fd1abaaf Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/tan_vest.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/tan_vest.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/tan_vest.rsi/meta.json new file mode 100644 index 00000000000..711a5dc232e --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/tan_vest.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/HEAD/icons/mob/humans/onmob/clothing/suits/vests_aprons.dmi, https://github.com/cmss13-devs/cmss13/blob/HEAD/icons/obj/items/clothing/suits/vests_aprons.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/waistcoat.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/waistcoat.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..1d9c09e2867 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/waistcoat.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/waistcoat.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/waistcoat.rsi/icon.png new file mode 100644 index 00000000000..291181c7ea5 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/waistcoat.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/waistcoat.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/waistcoat.rsi/meta.json new file mode 100644 index 00000000000..24dc97c087d --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/waistcoat.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/05eaa3484b1a35aa759300bcfc8f0119f009daae//obj/items/clothing/suits/vests_aprons.dmi, https://github.com/cmss13-devs/cmss13/blob/05eaa3484b1a35aa759300bcfc8f0119f009daae/icons/mob/humans/onmob/clothing/suits/vests_aprons.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/weya_pilot.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/weya_pilot.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..e4104267b2f Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/weya_pilot.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/weya_pilot.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/weya_pilot.rsi/icon.png new file mode 100644 index 00000000000..ff423ac0f16 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/weya_pilot.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/weya_pilot.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/weya_pilot.rsi/meta.json new file mode 100644 index 00000000000..f226d8a0bfe --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Coats/weya_pilot.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/09583166e0082a417aef46dbb280675fa93a81e8/icons/obj/items/clothing/suits/suits_by_faction/WY.dmi, https://github.com/cmss13-devs/cmss13/blob/09583166e0082a417aef46dbb280675fa93a81e8/icons/mob/humans/onmob/clothing/suits/suits_by_faction/WY.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/EVA/spp.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/EVA/spp.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..da582538913 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/EVA/spp.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/EVA/spp.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/EVA/spp.rsi/icon.png new file mode 100644 index 00000000000..ef5c19b8329 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/EVA/spp.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/EVA/spp.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/EVA/spp.rsi/meta.json new file mode 100644 index 00000000000..f870325afe3 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/EVA/spp.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13-pve at https://github.com/cmss13-devs/cmss13-pve/blob/2550250608085a8418995ece0b9fe56f74132085/icons/mob/humans/onmob/suit_1.dmi, https://github.com/cmss13-devs/cmss13-pve/blob/2550250608085a8418995ece0b9fe56f74132085/icons/obj/items/clothing/cm_suits.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/EVA/unmc.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/EVA/unmc.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..76510a5effe Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/EVA/unmc.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/EVA/unmc.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/EVA/unmc.rsi/icon.png new file mode 100644 index 00000000000..25fa1572b13 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/EVA/unmc.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/EVA/unmc.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/EVA/unmc.rsi/meta.json new file mode 100644 index 00000000000..f870325afe3 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/EVA/unmc.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13-pve at https://github.com/cmss13-devs/cmss13-pve/blob/2550250608085a8418995ece0b9fe56f74132085/icons/mob/humans/onmob/suit_1.dmi, https://github.com/cmss13-devs/cmss13-pve/blob/2550250608085a8418995ece0b9fe56f74132085/icons/obj/items/clothing/cm_suits.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/EVA/white.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/EVA/white.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..611ee117794 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/EVA/white.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/EVA/white.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/EVA/white.rsi/icon.png new file mode 100644 index 00000000000..adee390108c Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/EVA/white.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/EVA/white.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/EVA/white.rsi/meta.json new file mode 100644 index 00000000000..f870325afe3 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/EVA/white.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13-pve at https://github.com/cmss13-devs/cmss13-pve/blob/2550250608085a8418995ece0b9fe56f74132085/icons/mob/humans/onmob/suit_1.dmi, https://github.com/cmss13-devs/cmss13-pve/blob/2550250608085a8418995ece0b9fe56f74132085/icons/obj/items/clothing/cm_suits.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/HazardVests/emt.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/HazardVests/emt.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..9418951b0c9 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/HazardVests/emt.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/HazardVests/emt.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/HazardVests/emt.rsi/icon.png new file mode 100644 index 00000000000..6f2f975fc23 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/HazardVests/emt.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/HazardVests/emt.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/HazardVests/emt.rsi/meta.json new file mode 100644 index 00000000000..8a94b69dae4 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/HazardVests/emt.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/05eaa3484b1a35aa759300bcfc8f0119f009daae/icons/obj/items/clothing/suits/vests_aprons.dmi, https://github.com/cmss13-devs/cmss13/blob/05eaa3484b1a35aa759300bcfc8f0119f009daae/icons/mob/humans/onmob/clothing/suits/vests_aprons.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/HazardVests/emt_green.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/HazardVests/emt_green.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..20fb3eb171c Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/HazardVests/emt_green.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/HazardVests/emt_green.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/HazardVests/emt_green.rsi/icon.png new file mode 100644 index 00000000000..47da7f2fb14 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/HazardVests/emt_green.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/HazardVests/emt_green.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/HazardVests/emt_green.rsi/meta.json new file mode 100644 index 00000000000..8a94b69dae4 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/HazardVests/emt_green.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/05eaa3484b1a35aa759300bcfc8f0119f009daae/icons/obj/items/clothing/suits/vests_aprons.dmi, https://github.com/cmss13-devs/cmss13/blob/05eaa3484b1a35aa759300bcfc8f0119f009daae/icons/mob/humans/onmob/clothing/suits/vests_aprons.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/HazardVests/green.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/HazardVests/green.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..c2138310990 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/HazardVests/green.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/HazardVests/green.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/HazardVests/green.rsi/icon.png new file mode 100644 index 00000000000..e52f95e86db Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/HazardVests/green.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/HazardVests/green.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/HazardVests/green.rsi/meta.json new file mode 100644 index 00000000000..b5fa1921fff --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/HazardVests/green.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/f0608f2f329e00fb29096d0bb3a7a4c25c5d08a6/icons/mob/humans/onmob/clothing/suits/vests_aprons.dmi, https://github.com/cmss13-devs/cmss13/blob/f0608f2f329e00fb29096d0bb3a7a4c25c5d08a6/icons/obj/items/clothing/suits/vests_aprons.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/HazardVests/tmcc.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/HazardVests/tmcc.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..5047595301f Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/HazardVests/tmcc.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/HazardVests/tmcc.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/HazardVests/tmcc.rsi/icon.png new file mode 100644 index 00000000000..d9db26757d0 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/HazardVests/tmcc.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/HazardVests/tmcc.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/HazardVests/tmcc.rsi/meta.json new file mode 100644 index 00000000000..8a94b69dae4 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/HazardVests/tmcc.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/05eaa3484b1a35aa759300bcfc8f0119f009daae/icons/obj/items/clothing/suits/vests_aprons.dmi, https://github.com/cmss13-devs/cmss13/blob/05eaa3484b1a35aa759300bcfc8f0119f009daae/icons/mob/humans/onmob/clothing/suits/vests_aprons.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/HazardVests/weyamart.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/HazardVests/weyamart.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..22e1758dc8b Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/HazardVests/weyamart.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/HazardVests/weyamart.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/HazardVests/weyamart.rsi/icon.png new file mode 100644 index 00000000000..8fe47b9d8f5 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/HazardVests/weyamart.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/HazardVests/weyamart.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/HazardVests/weyamart.rsi/meta.json new file mode 100644 index 00000000000..3114aef8309 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/HazardVests/weyamart.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/05eaa3484b1a35aa759300bcfc8f0119f009daae/icons/obj/items/clothing/suits/suits_by_faction/WY.dmi, https://github.com/cmss13-devs/cmss13/blob/05eaa3484b1a35aa759300bcfc8f0119f009daae/icons/mob/humans/onmob/clothing/suits/suits_by_faction/WY.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/apron_daily_grind.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/apron_daily_grind.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..df3293550ca Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/apron_daily_grind.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/apron_daily_grind.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/apron_daily_grind.rsi/icon.png new file mode 100644 index 00000000000..c197a8240da Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/apron_daily_grind.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/apron_daily_grind.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/apron_daily_grind.rsi/meta.json new file mode 100644 index 00000000000..7679f4fc1e9 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/apron_daily_grind.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/6885bdcc04edc239796f74ac325fc9bc98c0a8fc/icons/mob/humans/onmob/clothing/suits/vests_aprons.dmi, https://github.com/cmss13-devs/cmss13/commits/6885bdcc04edc239796f74ac325fc9bc98c0a8fc/icons/obj/items/clothing/suits/vests_aprons.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/brown.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/brown.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..e43e00820ed Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/brown.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/brown.rsi/icon-open.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/brown.rsi/icon-open.png new file mode 100644 index 00000000000..9a63d4b0a82 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/brown.rsi/icon-open.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/brown.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/brown.rsi/icon.png new file mode 100644 index 00000000000..445326596e5 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/brown.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/brown.rsi/inhand-left.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/brown.rsi/inhand-left.png new file mode 100644 index 00000000000..f4a2d2dcaad Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/brown.rsi/inhand-left.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/brown.rsi/inhand-right.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/brown.rsi/inhand-right.png new file mode 100644 index 00000000000..d571f8e00ec Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/brown.rsi/inhand-right.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/brown.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/brown.rsi/meta.json new file mode 100644 index 00000000000..d8b6084f6c1 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/brown.rsi/meta.json @@ -0,0 +1,33 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/master/icons/mob/humans/onmob/clothing/suits/coats_robes.dmi, https://github.com/cmss13-devs/cmss13/commits/master/icons/obj/items/clothing/suits/coats_robes.dmi, https://github.com/cmss13-devs/cmss13/blob/master/icons/mob/humans/onmob/inhands/clothing/suits_righthand.dmi, https://github.com/cmss13-devs/cmss13/blob/master/icons/mob/humans/onmob/inhands/clothing/suits_lefthand.dmi", + "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 + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/brown.rsi/open-equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/brown.rsi/open-equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..88f68b95da7 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/brown.rsi/open-equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/cmolabcoat.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/cmolabcoat.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..d65ae596f3b Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/cmolabcoat.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/cmolabcoat.rsi/icon-open.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/cmolabcoat.rsi/icon-open.png new file mode 100644 index 00000000000..48d717fe3f4 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/cmolabcoat.rsi/icon-open.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/cmolabcoat.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/cmolabcoat.rsi/icon.png new file mode 100644 index 00000000000..cb5ed856462 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/cmolabcoat.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/cmolabcoat.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/cmolabcoat.rsi/meta.json new file mode 100644 index 00000000000..1b32d2a8777 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/cmolabcoat.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/6885bdcc04edc239796f74ac325fc9bc98c0a8fc/icons/mob/humans/onmob/clothing/suits/coats_robes.dmi, https://github.com/cmss13-devs/cmss13/commits/6885bdcc04edc239796f74ac325fc9bc98c0a8fc/icons/obj/items/clothing/suits/coats_robes.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-open" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "open-equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/cmolabcoat.rsi/open-equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/cmolabcoat.rsi/open-equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..fcaf3a8e866 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/cmolabcoat.rsi/open-equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/labcoat.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/labcoat.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..67525022e45 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/labcoat.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/labcoat.rsi/icon-open.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/labcoat.rsi/icon-open.png new file mode 100644 index 00000000000..5cffe4a7c6c Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/labcoat.rsi/icon-open.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/labcoat.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/labcoat.rsi/icon.png new file mode 100644 index 00000000000..69442fdbc08 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/labcoat.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/labcoat.rsi/inhand-left.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/labcoat.rsi/inhand-left.png new file mode 100644 index 00000000000..f4a2d2dcaad Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/labcoat.rsi/inhand-left.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/labcoat.rsi/inhand-right.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/labcoat.rsi/inhand-right.png new file mode 100644 index 00000000000..d571f8e00ec Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/labcoat.rsi/inhand-right.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/labcoat.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/labcoat.rsi/meta.json new file mode 100644 index 00000000000..fe06f9fdc25 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/labcoat.rsi/meta.json @@ -0,0 +1,33 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/6885bdcc04edc239796f74ac325fc9bc98c0a8fc/icons/mob/humans/onmob/clothing/suits/coats_robes.dmi, https://github.com/cmss13-devs/cmss13/commits/6885bdcc04edc239796f74ac325fc9bc98c0a8fc/icons/obj/items/clothing/suits/coats_robes.dmi, https://github.com/cmss13-devs/cmss13/blob/6885bdcc04edc239796f74ac325fc9bc98c0a8fc/icons/mob/humans/onmob/inhands/clothing/suits_righthand.dmi, https://github.com/cmss13-devs/cmss13/blob/6885bdcc04edc239796f74ac325fc9bc98c0a8fc/icons/mob/humans/onmob/inhands/clothing/suits_lefthand.dmi", + "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 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/labcoat.rsi/open-equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/labcoat.rsi/open-equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..1ebb731b5c8 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/labcoat.rsi/open-equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/long.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/long.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..9e97e6b4aa7 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/long.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/long.rsi/icon-open.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/long.rsi/icon-open.png new file mode 100644 index 00000000000..c1273695377 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/long.rsi/icon-open.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/long.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/long.rsi/icon.png new file mode 100644 index 00000000000..f39e72c2a0d Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/long.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/long.rsi/inhand-left.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/long.rsi/inhand-left.png new file mode 100644 index 00000000000..f4a2d2dcaad Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/long.rsi/inhand-left.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/long.rsi/inhand-right.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/long.rsi/inhand-right.png new file mode 100644 index 00000000000..d571f8e00ec Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/long.rsi/inhand-right.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/long.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/long.rsi/meta.json new file mode 100644 index 00000000000..d8b6084f6c1 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/long.rsi/meta.json @@ -0,0 +1,33 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/master/icons/mob/humans/onmob/clothing/suits/coats_robes.dmi, https://github.com/cmss13-devs/cmss13/commits/master/icons/obj/items/clothing/suits/coats_robes.dmi, https://github.com/cmss13-devs/cmss13/blob/master/icons/mob/humans/onmob/inhands/clothing/suits_righthand.dmi, https://github.com/cmss13-devs/cmss13/blob/master/icons/mob/humans/onmob/inhands/clothing/suits_lefthand.dmi", + "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 + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/long.rsi/open-equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/long.rsi/open-equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..37553462ec5 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/long.rsi/open-equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/medicalapron.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/medicalapron.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..4286b59e6a6 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/medicalapron.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/medicalapron.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/medicalapron.rsi/icon.png new file mode 100644 index 00000000000..68bab5fdb6a Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/medicalapron.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/medicalapron.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/medicalapron.rsi/meta.json new file mode 100644 index 00000000000..7679f4fc1e9 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/medicalapron.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/6885bdcc04edc239796f74ac325fc9bc98c0a8fc/icons/mob/humans/onmob/clothing/suits/vests_aprons.dmi, https://github.com/cmss13-devs/cmss13/commits/6885bdcc04edc239796f74ac325fc9bc98c0a8fc/icons/obj/items/clothing/suits/vests_aprons.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/sciencecoat.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/sciencecoat.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..3b7e7b771cd Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/sciencecoat.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/sciencecoat.rsi/icon-open.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/sciencecoat.rsi/icon-open.png new file mode 100644 index 00000000000..6c6df30ba56 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/sciencecoat.rsi/icon-open.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/sciencecoat.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/sciencecoat.rsi/icon.png new file mode 100644 index 00000000000..f4b5452d2cf Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/sciencecoat.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/sciencecoat.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/sciencecoat.rsi/meta.json new file mode 100644 index 00000000000..1b32d2a8777 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/sciencecoat.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/6885bdcc04edc239796f74ac325fc9bc98c0a8fc/icons/mob/humans/onmob/clothing/suits/coats_robes.dmi, https://github.com/cmss13-devs/cmss13/commits/6885bdcc04edc239796f74ac325fc9bc98c0a8fc/icons/obj/items/clothing/suits/coats_robes.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-open" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "open-equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/sciencecoat.rsi/open-equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/sciencecoat.rsi/open-equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..bd35dc137d8 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/sciencecoat.rsi/open-equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/short.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/short.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..756cd2e0afc Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/short.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/short.rsi/icon-open.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/short.rsi/icon-open.png new file mode 100644 index 00000000000..648ac40dad4 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/short.rsi/icon-open.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/short.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/short.rsi/icon.png new file mode 100644 index 00000000000..4f26a6be8d2 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/short.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/short.rsi/inhand-left.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/short.rsi/inhand-left.png new file mode 100644 index 00000000000..f4a2d2dcaad Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/short.rsi/inhand-left.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/short.rsi/inhand-right.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/short.rsi/inhand-right.png new file mode 100644 index 00000000000..d571f8e00ec Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/short.rsi/inhand-right.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/short.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/short.rsi/meta.json new file mode 100644 index 00000000000..d8b6084f6c1 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/short.rsi/meta.json @@ -0,0 +1,33 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/master/icons/mob/humans/onmob/clothing/suits/coats_robes.dmi, https://github.com/cmss13-devs/cmss13/commits/master/icons/obj/items/clothing/suits/coats_robes.dmi, https://github.com/cmss13-devs/cmss13/blob/master/icons/mob/humans/onmob/inhands/clothing/suits_righthand.dmi, https://github.com/cmss13-devs/cmss13/blob/master/icons/mob/humans/onmob/inhands/clothing/suits_lefthand.dmi", + "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 + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/short.rsi/open-equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/short.rsi/open-equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..00a7ef794a4 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/short.rsi/open-equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/virology.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/virology.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..98ae91da75f Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/virology.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/virology.rsi/icon-open.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/virology.rsi/icon-open.png new file mode 100644 index 00000000000..fbd53684484 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/virology.rsi/icon-open.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/virology.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/virology.rsi/icon.png new file mode 100644 index 00000000000..029d7d3405d Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/virology.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/virology.rsi/inhand-left.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/virology.rsi/inhand-left.png new file mode 100644 index 00000000000..f4a2d2dcaad Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/virology.rsi/inhand-left.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/virology.rsi/inhand-right.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/virology.rsi/inhand-right.png new file mode 100644 index 00000000000..d571f8e00ec Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/virology.rsi/inhand-right.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/virology.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/virology.rsi/meta.json new file mode 100644 index 00000000000..fe06f9fdc25 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/virology.rsi/meta.json @@ -0,0 +1,33 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/6885bdcc04edc239796f74ac325fc9bc98c0a8fc/icons/mob/humans/onmob/clothing/suits/coats_robes.dmi, https://github.com/cmss13-devs/cmss13/commits/6885bdcc04edc239796f74ac325fc9bc98c0a8fc/icons/obj/items/clothing/suits/coats_robes.dmi, https://github.com/cmss13-devs/cmss13/blob/6885bdcc04edc239796f74ac325fc9bc98c0a8fc/icons/mob/humans/onmob/inhands/clothing/suits_righthand.dmi, https://github.com/cmss13-devs/cmss13/blob/6885bdcc04edc239796f74ac325fc9bc98c0a8fc/icons/mob/humans/onmob/inhands/clothing/suits_lefthand.dmi", + "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 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/virology.rsi/open-equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/virology.rsi/open-equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..a8c81533425 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Labcoats/virology.rsi/open-equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/EMT.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/EMT.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..2c31c314737 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/EMT.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/EMT.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/EMT.rsi/icon.png new file mode 100644 index 00000000000..2e41c9bf717 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/EMT.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/EMT.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/EMT.rsi/meta.json new file mode 100644 index 00000000000..aaec85e8415 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/EMT.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/b8d32055a8f09355d677f6e181d64d1d2c30c3f0/icons/mob/humans/onmob/clothing/suits/hazard.dmi, https://github.com/cmss13-devs/cmss13/blob/b8d32055a8f09355d677f6e181d64d1d2c30c3f0/icons/obj/items/clothing/suits/hazard.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/EMT_green.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/EMT_green.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..380c6cca929 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/EMT_green.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/EMT_green.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/EMT_green.rsi/icon.png new file mode 100644 index 00000000000..cc4e062faba Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/EMT_green.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/EMT_green.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/EMT_green.rsi/meta.json new file mode 100644 index 00000000000..aaec85e8415 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/EMT_green.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/b8d32055a8f09355d677f6e181d64d1d2c30c3f0/icons/mob/humans/onmob/clothing/suits/hazard.dmi, https://github.com/cmss13-devs/cmss13/blob/b8d32055a8f09355d677f6e181d64d1d2c30c3f0/icons/obj/items/clothing/suits/hazard.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/TMCC.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/TMCC.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..86a37f54662 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/TMCC.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/TMCC.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/TMCC.rsi/icon.png new file mode 100644 index 00000000000..0544e4453f2 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/TMCC.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/TMCC.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/TMCC.rsi/meta.json new file mode 100644 index 00000000000..aaec85e8415 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/TMCC.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/b8d32055a8f09355d677f6e181d64d1d2c30c3f0/icons/mob/humans/onmob/clothing/suits/hazard.dmi, https://github.com/cmss13-devs/cmss13/blob/b8d32055a8f09355d677f6e181d64d1d2c30c3f0/icons/obj/items/clothing/suits/hazard.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/TMCC_alt.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/TMCC_alt.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..bcfc859a14b Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/TMCC_alt.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/TMCC_alt.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/TMCC_alt.rsi/icon.png new file mode 100644 index 00000000000..b74b9b223d2 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/TMCC_alt.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/TMCC_alt.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/TMCC_alt.rsi/meta.json new file mode 100644 index 00000000000..aaec85e8415 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/TMCC_alt.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/b8d32055a8f09355d677f6e181d64d1d2c30c3f0/icons/mob/humans/onmob/clothing/suits/hazard.dmi, https://github.com/cmss13-devs/cmss13/blob/b8d32055a8f09355d677f6e181d64d1d2c30c3f0/icons/obj/items/clothing/suits/hazard.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/biosuit.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/biosuit.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..0c38f76f473 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/biosuit.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/biosuit.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/biosuit.rsi/icon.png new file mode 100644 index 00000000000..b659e52a40f Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/biosuit.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/biosuit.rsi/inhand-left.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/biosuit.rsi/inhand-left.png new file mode 100644 index 00000000000..fe63a2c3902 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/biosuit.rsi/inhand-left.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/biosuit.rsi/inhand-right.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/biosuit.rsi/inhand-right.png new file mode 100644 index 00000000000..af2e830f4f0 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/biosuit.rsi/inhand-right.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/biosuit.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/biosuit.rsi/meta.json new file mode 100644 index 00000000000..02cdcae883b --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/biosuit.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/b8d32055a8f09355d677f6e181d64d1d2c30c3f0/icons/mob/humans/onmob/clothing/suits/hazard.dmi, https://github.com/cmss13-devs/cmss13/blob/b8d32055a8f09355d677f6e181d64d1d2c30c3f0/icons/obj/items/clothing/suits/hazard.dmi, https://github.com/cmss13-devs/cmss13/blob/8d3eabd2575fcb859ab4320a298cdbc185910f6f/icons/mob/humans/onmob/inhands/clothing/suits_lefthand.dmi, https://github.com/cmss13-devs/cmss13/blob/8d3eabd2575fcb859ab4320a298cdbc185910f6f/icons/mob/humans/onmob/inhands/clothing/suits_righthand.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/biosuit_weya.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/biosuit_weya.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..4a2ae73db66 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/biosuit_weya.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/biosuit_weya.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/biosuit_weya.rsi/icon.png new file mode 100644 index 00000000000..3bf6e8ae16e Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/biosuit_weya.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/biosuit_weya.rsi/inhand-left.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/biosuit_weya.rsi/inhand-left.png new file mode 100644 index 00000000000..fe63a2c3902 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/biosuit_weya.rsi/inhand-left.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/biosuit_weya.rsi/inhand-right.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/biosuit_weya.rsi/inhand-right.png new file mode 100644 index 00000000000..af2e830f4f0 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/biosuit_weya.rsi/inhand-right.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/biosuit_weya.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/biosuit_weya.rsi/meta.json new file mode 100644 index 00000000000..71dadb851e5 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/biosuit_weya.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/b8d32055a8f09355d677f6e181d64d1d2c30c3f0/icons/mob/humans/onmob/clothing/suits/hazard.dmi, https://github.com/cmss13-devs/cmss13/blob/b8d32055a8f09355d677f6e181d64d1d2c30c3f0/icons/obj/items/clothing/suits/hazard.dmi, https://github.com/cmss13-devs/cmss13/blob/8d3eabd2575fcb859ab4320a298cdbc185910f6f/icons/mob/humans/onmob/inhands/clothing/suits_lefthand.dmi, https://github.com/cmss13-devs/cmss13/blob/8d3eabd2575fcb859ab4320a298cdbc185910f6f/icons/mob/humans/onmob/inhands/clothing/suits_righthand.dmi. Equipped sprite modified by PursuitInAshes (Github)", + "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/_RMC14/Objects/Clothing/OuterClothing/Misc/external_webbing.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/external_webbing.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..fd85f9046da Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/external_webbing.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/external_webbing.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/external_webbing.rsi/icon.png new file mode 100644 index 00000000000..d209e4615e2 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/external_webbing.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/external_webbing.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/external_webbing.rsi/meta.json new file mode 100644 index 00000000000..1248e116d6a --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/external_webbing.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/0525b5ada7da1afcd9b260e76d5fea01500d9c8d/icons/obj/items/clothing/suits/misc_ert.dmi, https://github.com/cmss13-devs/cmss13/blob/0525b5ada7da1afcd9b260e76d5fea01500d9c8d/icons/mob/humans/onmob/clothing/suits/misc_ert.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/external_webbing_black.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/external_webbing_black.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..c72db33369e Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/external_webbing_black.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/external_webbing_black.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/external_webbing_black.rsi/icon.png new file mode 100644 index 00000000000..29195c0a054 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/external_webbing_black.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/external_webbing_black.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/external_webbing_black.rsi/meta.json new file mode 100644 index 00000000000..1248e116d6a --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/external_webbing_black.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/0525b5ada7da1afcd9b260e76d5fea01500d9c8d/icons/obj/items/clothing/suits/misc_ert.dmi, https://github.com/cmss13-devs/cmss13/blob/0525b5ada7da1afcd9b260e76d5fea01500d9c8d/icons/mob/humans/onmob/clothing/suits/misc_ert.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/external_webbing_brown.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/external_webbing_brown.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..a074fc1e617 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/external_webbing_brown.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/external_webbing_brown.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/external_webbing_brown.rsi/icon.png new file mode 100644 index 00000000000..fd8178ce9a1 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/external_webbing_brown.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/external_webbing_brown.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/external_webbing_brown.rsi/meta.json new file mode 100644 index 00000000000..1248e116d6a --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/external_webbing_brown.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/0525b5ada7da1afcd9b260e76d5fea01500d9c8d/icons/obj/items/clothing/suits/misc_ert.dmi, https://github.com/cmss13-devs/cmss13/blob/0525b5ada7da1afcd9b260e76d5fea01500d9c8d/icons/mob/humans/onmob/clothing/suits/misc_ert.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/firefighter.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/firefighter.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..e68aa01ae26 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/firefighter.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/firefighter.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/firefighter.rsi/icon.png new file mode 100644 index 00000000000..573152410d7 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/firefighter.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/firefighter.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/firefighter.rsi/meta.json new file mode 100644 index 00000000000..b9daf2544a5 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/firefighter.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/obj/items/clothing/suits/hazard.dmi, https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/mob/humans/onmob/clothing/suits/hazard.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/firesuit.rsi/equipped-OUTERCLOTHING-monkey.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/firesuit.rsi/equipped-OUTERCLOTHING-monkey.png new file mode 100644 index 00000000000..adaa1e1877e Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/firesuit.rsi/equipped-OUTERCLOTHING-monkey.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/firesuit.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/firesuit.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..a114bd3799e Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/firesuit.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/firesuit.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/firesuit.rsi/icon.png new file mode 100644 index 00000000000..a900e346580 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/firesuit.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/firesuit.rsi/inhand-left.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/firesuit.rsi/inhand-left.png new file mode 100644 index 00000000000..fadafa1f63b Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/firesuit.rsi/inhand-left.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/firesuit.rsi/inhand-right.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/firesuit.rsi/inhand-right.png new file mode 100644 index 00000000000..81b6012e7e5 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/firesuit.rsi/inhand-right.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/firesuit.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/firesuit.rsi/meta.json new file mode 100644 index 00000000000..7aee1758928 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/firesuit.rsi/meta.json @@ -0,0 +1,30 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/48e570bd697f2476e28d89cd255d0539a5228228/icons/mob/humans/onmob/clothing/suits/hazard.dmi, https://github.com/cmss13-devs/cmss13/blob/09a5191fb11aab8ddffe3f9be94292b53e4d96f6/icons/mob/humans/species/monkeys/onmob/suit_monkey_0.dmi, https://github.com/cmss13-devs/cmss13/blob/8d3eabd2575fcb859ab4320a298cdbc185910f6f/icons/mob/humans/onmob/inhands/clothing/suits_lefthand.dmi, https://github.com/cmss13-devs/cmss13/blob/8d3eabd2575fcb859ab4320a298cdbc185910f6f/icons/mob/humans/onmob/inhands/clothing/suits_righthand.dmi, https://github.com/cmss13-devs/cmss13/blob/48e570bd697f2476e28d89cd255d0539a5228228/icons/obj/items/clothing/suits/hazard.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-monkey", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "icon" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/radiation_suit.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/radiation_suit.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..073c91fa309 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/radiation_suit.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/radiation_suit.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/radiation_suit.rsi/icon.png new file mode 100644 index 00000000000..5632ba4b1c8 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/radiation_suit.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/radiation_suit.rsi/inhand-left.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/radiation_suit.rsi/inhand-left.png new file mode 100644 index 00000000000..0488cb1c9e2 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/radiation_suit.rsi/inhand-left.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/radiation_suit.rsi/inhand-right.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/radiation_suit.rsi/inhand-right.png new file mode 100644 index 00000000000..7c2dd2c4bc0 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/radiation_suit.rsi/inhand-right.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/radiation_suit.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/radiation_suit.rsi/meta.json new file mode 100644 index 00000000000..02cdcae883b --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/radiation_suit.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/b8d32055a8f09355d677f6e181d64d1d2c30c3f0/icons/mob/humans/onmob/clothing/suits/hazard.dmi, https://github.com/cmss13-devs/cmss13/blob/b8d32055a8f09355d677f6e181d64d1d2c30c3f0/icons/obj/items/clothing/suits/hazard.dmi, https://github.com/cmss13-devs/cmss13/blob/8d3eabd2575fcb859ab4320a298cdbc185910f6f/icons/mob/humans/onmob/inhands/clothing/suits_lefthand.dmi, https://github.com/cmss13-devs/cmss13/blob/8d3eabd2575fcb859ab4320a298cdbc185910f6f/icons/mob/humans/onmob/inhands/clothing/suits_righthand.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/radsuit_weya.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/radsuit_weya.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..eda27894621 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/radsuit_weya.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/radsuit_weya.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/radsuit_weya.rsi/icon.png new file mode 100644 index 00000000000..fc0769e8ce7 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/radsuit_weya.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/radsuit_weya.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/radsuit_weya.rsi/meta.json new file mode 100644 index 00000000000..f655f3c2ed9 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/radsuit_weya.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Made by SharkSnake98 on GitHub", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/weya_engineer_jacket.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/weya_engineer_jacket.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..970aac88b24 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/weya_engineer_jacket.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/weya_engineer_jacket.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/weya_engineer_jacket.rsi/icon.png new file mode 100644 index 00000000000..52a2f5d9cd5 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/weya_engineer_jacket.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/weya_engineer_jacket.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/weya_engineer_jacket.rsi/meta.json new file mode 100644 index 00000000000..60cd9a2dfc2 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/weya_engineer_jacket.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/48e570bd697f2476e28d89cd255d0539a5228228/icons/obj/items/clothing/suits/hazard.dmi, https://github.com/cmss13-devs/cmss13/blob/48e570bd697f2476e28d89cd255d0539a5228228/icons/mob/humans/onmob/clothing/suits/hazard.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/weya_engineer_jacket_alt.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/weya_engineer_jacket_alt.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..1ef7ce81448 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/weya_engineer_jacket_alt.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/weya_engineer_jacket_alt.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/weya_engineer_jacket_alt.rsi/icon.png new file mode 100644 index 00000000000..89f66e52964 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/weya_engineer_jacket_alt.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/weya_engineer_jacket_alt.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/weya_engineer_jacket_alt.rsi/meta.json new file mode 100644 index 00000000000..60cd9a2dfc2 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Misc/weya_engineer_jacket_alt.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/48e570bd697f2476e28d89cd255d0539a5228228/icons/obj/items/clothing/suits/hazard.dmi, https://github.com/cmss13-devs/cmss13/blob/48e570bd697f2476e28d89cd255d0539a5228228/icons/mob/humans/onmob/clothing/suits/hazard.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/bulletproof.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/bulletproof.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..2f7cb8d6902 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/bulletproof.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/bulletproof.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/bulletproof.rsi/icon.png new file mode 100644 index 00000000000..6d90f1269bf Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/bulletproof.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/bulletproof.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/bulletproof.rsi/meta.json new file mode 100644 index 00000000000..3da32464cd4 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/bulletproof.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/obj/items/clothing/cm_suits.dmi, https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/mob/humans/onmob/suit_1.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/commando.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/commando.rsi/equipped-OUTERCLOTHING.png index 2d9a8515194..ec3f912d333 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/commando.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/commando.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/commando.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/commando.rsi/icon.png index b34e44cf107..dfa397f487d 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/commando.rsi/icon.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/commando.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/commando.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/commando.rsi/meta.json index cea44b61067..96e711ad2ed 100644 --- a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/commando.rsi/meta.json +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/commando.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/obj/items/clothing/cm_suits.dmi, https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/mob/humans/onmob/suit_1.dmi", + "license": "CC-BY-SA-4.0", + "copyright": "Sprites by github noctyrnal", "size": { "x": 32, "y": 32 @@ -15,4 +15,4 @@ "directions": 4 } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/director.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/director.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..405574f0d84 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/director.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/director.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/director.rsi/icon.png new file mode 100644 index 00000000000..41e8d9cf71d Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/director.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/director.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/director.rsi/meta.json new file mode 100644 index 00000000000..1cca9a8a276 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/director.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/e0f06e0a3383e56331e9315b3aed1c8c2041ebd0/icons/obj/items/clothing/suits/suits_by_faction/WY.dmi and https://github.com/cmss13-devs/cmss13/blob/e0f06e0a3383e56331e9315b3aed1c8c2041ebd0/icons/mob/humans/onmob/clothing/suits/suits_by_faction/WY.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/engineer.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/engineer.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..7ecc7e2d894 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/engineer.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/engineer.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/engineer.rsi/icon.png new file mode 100644 index 00000000000..6e96995b035 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/engineer.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/engineer.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/engineer.rsi/meta.json new file mode 100644 index 00000000000..2308a9c3fda --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/engineer.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/184d4c37ae9a3cbadce682a08a37b2b8336a60e4/icons/obj/items/clothing/suits/suits_by_faction/WY.dmi and https://github.com/cmss13-devs/cmss13/blob/184d4c37ae9a3cbadce682a08a37b2b8336a60e4/icons/mob/humans/onmob/clothing/suits/suits_by_faction/WY.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/heavy.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/heavy.rsi/equipped-OUTERCLOTHING.png index bfe427625e3..8a159d67ad1 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/heavy.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/heavy.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/heavy.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/heavy.rsi/icon.png index dcc3a3bed61..4b06b08e1ff 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/heavy.rsi/icon.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/heavy.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/heavy.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/heavy.rsi/meta.json index cea44b61067..1117b88fe06 100644 --- a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/heavy.rsi/meta.json +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/heavy.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/obj/items/clothing/cm_suits.dmi, https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/mob/humans/onmob/suit_1.dmi", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/obj/items/clothing/cm_suits.dmi, https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/mob/humans/onmob/suit_1.dmimodified by github noctyrnal", "size": { "x": 32, "y": 32 @@ -15,4 +15,4 @@ "directions": 4 } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/officer.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/officer.rsi/equipped-OUTERCLOTHING.png index 2fdd051264c..b4352f44920 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/officer.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/officer.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/officer.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/officer.rsi/icon.png index 7825a17f815..595954a34aa 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/officer.rsi/icon.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/officer.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/officer.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/officer.rsi/meta.json index cea44b61067..5b61949dcd4 100644 --- a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/officer.rsi/meta.json +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/officer.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/obj/items/clothing/cm_suits.dmi, https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/mob/humans/onmob/suit_1.dmi", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/e0f06e0a3383e56331e9315b3aed1c8c2041ebd0/icons/obj/items/clothing/suits/suits_by_faction/WY.dmi, https://github.com/cmss13-devs/cmss13/blob/e0f06e0a3383e56331e9315b3aed1c8c2041ebd0/icons/mob/humans/onmob/clothing/suits/suits_by_faction/WY.dmi, modified by github noctyrnal", "size": { "x": 32, "y": 32 @@ -15,4 +15,4 @@ "directions": 4 } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/pmc.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/pmc.rsi/equipped-OUTERCLOTHING.png index 14e47ab9980..0f6b0e0287f 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/pmc.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/pmc.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/pmc.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/pmc.rsi/icon.png index e035357ac73..69c835309a6 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/pmc.rsi/icon.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/pmc.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/pmc.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/pmc.rsi/meta.json index cea44b61067..879b922942a 100644 --- a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/pmc.rsi/meta.json +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/pmc.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/obj/items/clothing/cm_suits.dmi, https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/mob/humans/onmob/suit_1.dmi", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/obj/items/clothing/cm_suits.dmi, https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/mob/humans/onmob/suit_1.dmi, modified by github noctyrnal", "size": { "x": 32, "y": 32 @@ -15,4 +15,4 @@ "directions": 4 } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/sniper.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/sniper.rsi/equipped-OUTERCLOTHING.png index 9222a11944b..8115f731fe7 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/sniper.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/sniper.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/sniper.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/sniper.rsi/icon.png index 403c5bfe53f..127a7d8df6d 100644 Binary files a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/sniper.rsi/icon.png and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/sniper.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/sniper.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/sniper.rsi/meta.json index cea44b61067..879b922942a 100644 --- a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/sniper.rsi/meta.json +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PMC/sniper.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/obj/items/clothing/cm_suits.dmi, https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/mob/humans/onmob/suit_1.dmi", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/obj/items/clothing/cm_suits.dmi, https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/mob/humans/onmob/suit_1.dmi, modified by github noctyrnal", "size": { "x": 32, "y": 32 @@ -15,4 +15,4 @@ "directions": 4 } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/classic.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/classic.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..9328eeae5f1 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/classic.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/classic.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/classic.rsi/icon.png new file mode 100644 index 00000000000..03527e6736f Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/classic.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/classic.rsi/inhand-left.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/classic.rsi/inhand-left.png new file mode 100644 index 00000000000..9f16f1bfcf4 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/classic.rsi/inhand-left.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/classic.rsi/inhand-right.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/classic.rsi/inhand-right.png new file mode 100644 index 00000000000..cdbf0d85402 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/classic.rsi/inhand-right.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/classic.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/classic.rsi/meta.json new file mode 100644 index 00000000000..b5b25eb8938 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/classic.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13-pve and cmss13 at https://github.com/cmss13-devs/cmss13-pve/blob/f076c9bf9842c04af6ba0904fb09da72faeb9ee2/icons/mob/humans/onmob/suit_1.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_lefthand_0.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_righthand_0.dmi, https://github.com/cmss13-devs/cmss13-pve/blob/f076c9bf9842c04af6ba0904fb09da72faeb9ee2/icons/obj/items/clothing/cm_suits.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/desert.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/desert.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..3314af2b0d3 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/desert.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/desert.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/desert.rsi/icon.png new file mode 100644 index 00000000000..3e413315d76 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/desert.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/desert.rsi/inhand-left.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/desert.rsi/inhand-left.png new file mode 100644 index 00000000000..f41da970943 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/desert.rsi/inhand-left.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/desert.rsi/inhand-right.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/desert.rsi/inhand-right.png new file mode 100644 index 00000000000..872d28849ce Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/desert.rsi/inhand-right.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/desert.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/desert.rsi/meta.json new file mode 100644 index 00000000000..b5b25eb8938 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/desert.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13-pve and cmss13 at https://github.com/cmss13-devs/cmss13-pve/blob/f076c9bf9842c04af6ba0904fb09da72faeb9ee2/icons/mob/humans/onmob/suit_1.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_lefthand_0.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_righthand_0.dmi, https://github.com/cmss13-devs/cmss13-pve/blob/f076c9bf9842c04af6ba0904fb09da72faeb9ee2/icons/obj/items/clothing/cm_suits.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/jungle.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/jungle.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..de7a5686dc0 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/jungle.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/jungle.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/jungle.rsi/icon.png new file mode 100644 index 00000000000..f7b424f0054 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/jungle.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/jungle.rsi/inhand-left.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/jungle.rsi/inhand-left.png new file mode 100644 index 00000000000..4950d0772cf Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/jungle.rsi/inhand-left.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/jungle.rsi/inhand-right.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/jungle.rsi/inhand-right.png new file mode 100644 index 00000000000..e6ead17a706 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/jungle.rsi/inhand-right.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/jungle.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/jungle.rsi/meta.json new file mode 100644 index 00000000000..b5b25eb8938 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/jungle.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13-pve and cmss13 at https://github.com/cmss13-devs/cmss13-pve/blob/f076c9bf9842c04af6ba0904fb09da72faeb9ee2/icons/mob/humans/onmob/suit_1.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_lefthand_0.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_righthand_0.dmi, https://github.com/cmss13-devs/cmss13-pve/blob/f076c9bf9842c04af6ba0904fb09da72faeb9ee2/icons/obj/items/clothing/cm_suits.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/snow.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/snow.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..769483eab7a Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/snow.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/snow.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/snow.rsi/icon.png new file mode 100644 index 00000000000..ed90e7412d9 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/snow.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/snow.rsi/inhand-left.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/snow.rsi/inhand-left.png new file mode 100644 index 00000000000..cc5ca9d6cc5 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/snow.rsi/inhand-left.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/snow.rsi/inhand-right.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/snow.rsi/inhand-right.png new file mode 100644 index 00000000000..db22d216cd2 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/snow.rsi/inhand-right.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/snow.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/snow.rsi/meta.json new file mode 100644 index 00000000000..dc656eeb46d --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/snow.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13-pve and cmss13 at https://github.com/cmss13-devs/cmss13-pve/blob/f076c9bf9842c04af6ba0904fb09da72faeb9ee2/icons/mob/humans/onmob/suit_1.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_lefthand_0.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_righthand_0.dmi, https://github.com/cmss13-devs/cmss13-pve/blob/f076c9bf9842c04af6ba0904fb09da72faeb9ee2/icons/obj/items/clothing/cm_suits.dmi, icon and worn sprites modified by github noctyrnal", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/urban.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/urban.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..ac294980a14 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/urban.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/urban.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/urban.rsi/icon.png new file mode 100644 index 00000000000..c2747c51912 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/urban.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/urban.rsi/inhand-left.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/urban.rsi/inhand-left.png new file mode 100644 index 00000000000..81a2a6c80b3 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/urban.rsi/inhand-left.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/urban.rsi/inhand-right.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/urban.rsi/inhand-right.png new file mode 100644 index 00000000000..9c8e4c20bc5 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/urban.rsi/inhand-right.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/urban.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/urban.rsi/meta.json new file mode 100644 index 00000000000..dc656eeb46d --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/b12/urban.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13-pve and cmss13 at https://github.com/cmss13-devs/cmss13-pve/blob/f076c9bf9842c04af6ba0904fb09da72faeb9ee2/icons/mob/humans/onmob/suit_1.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_lefthand_0.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_righthand_0.dmi, https://github.com/cmss13-devs/cmss13-pve/blob/f076c9bf9842c04af6ba0904fb09da72faeb9ee2/icons/obj/items/clothing/cm_suits.dmi, icon and worn sprites modified by github noctyrnal", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/classic.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/classic.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..301489873be Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/classic.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/classic.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/classic.rsi/icon.png new file mode 100644 index 00000000000..c3689727683 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/classic.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/classic.rsi/inhand-left.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/classic.rsi/inhand-left.png new file mode 100644 index 00000000000..9f16f1bfcf4 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/classic.rsi/inhand-left.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/classic.rsi/inhand-right.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/classic.rsi/inhand-right.png new file mode 100644 index 00000000000..cdbf0d85402 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/classic.rsi/inhand-right.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/classic.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/classic.rsi/meta.json new file mode 100644 index 00000000000..b5b25eb8938 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/classic.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13-pve and cmss13 at https://github.com/cmss13-devs/cmss13-pve/blob/f076c9bf9842c04af6ba0904fb09da72faeb9ee2/icons/mob/humans/onmob/suit_1.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_lefthand_0.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_righthand_0.dmi, https://github.com/cmss13-devs/cmss13-pve/blob/f076c9bf9842c04af6ba0904fb09da72faeb9ee2/icons/obj/items/clothing/cm_suits.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/desert.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/desert.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..beae9603797 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/desert.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/desert.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/desert.rsi/icon.png new file mode 100644 index 00000000000..45c78916741 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/desert.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/desert.rsi/inhand-left.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/desert.rsi/inhand-left.png new file mode 100644 index 00000000000..f41da970943 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/desert.rsi/inhand-left.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/desert.rsi/inhand-right.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/desert.rsi/inhand-right.png new file mode 100644 index 00000000000..872d28849ce Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/desert.rsi/inhand-right.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/desert.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/desert.rsi/meta.json new file mode 100644 index 00000000000..b5b25eb8938 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/desert.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13-pve and cmss13 at https://github.com/cmss13-devs/cmss13-pve/blob/f076c9bf9842c04af6ba0904fb09da72faeb9ee2/icons/mob/humans/onmob/suit_1.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_lefthand_0.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_righthand_0.dmi, https://github.com/cmss13-devs/cmss13-pve/blob/f076c9bf9842c04af6ba0904fb09da72faeb9ee2/icons/obj/items/clothing/cm_suits.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/jungle.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/jungle.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..9ca680aea9e Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/jungle.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/jungle.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/jungle.rsi/icon.png new file mode 100644 index 00000000000..5624a852470 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/jungle.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/jungle.rsi/inhand-left.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/jungle.rsi/inhand-left.png new file mode 100644 index 00000000000..4950d0772cf Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/jungle.rsi/inhand-left.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/jungle.rsi/inhand-right.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/jungle.rsi/inhand-right.png new file mode 100644 index 00000000000..e6ead17a706 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/jungle.rsi/inhand-right.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/jungle.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/jungle.rsi/meta.json new file mode 100644 index 00000000000..b5b25eb8938 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/jungle.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13-pve and cmss13 at https://github.com/cmss13-devs/cmss13-pve/blob/f076c9bf9842c04af6ba0904fb09da72faeb9ee2/icons/mob/humans/onmob/suit_1.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_lefthand_0.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_righthand_0.dmi, https://github.com/cmss13-devs/cmss13-pve/blob/f076c9bf9842c04af6ba0904fb09da72faeb9ee2/icons/obj/items/clothing/cm_suits.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/snow.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/snow.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..82a5b53d562 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/snow.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/snow.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/snow.rsi/icon.png new file mode 100644 index 00000000000..163fb63758f Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/snow.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/snow.rsi/inhand-left.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/snow.rsi/inhand-left.png new file mode 100644 index 00000000000..cc5ca9d6cc5 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/snow.rsi/inhand-left.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/snow.rsi/inhand-right.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/snow.rsi/inhand-right.png new file mode 100644 index 00000000000..db22d216cd2 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/snow.rsi/inhand-right.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/snow.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/snow.rsi/meta.json new file mode 100644 index 00000000000..dc656eeb46d --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/snow.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13-pve and cmss13 at https://github.com/cmss13-devs/cmss13-pve/blob/f076c9bf9842c04af6ba0904fb09da72faeb9ee2/icons/mob/humans/onmob/suit_1.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_lefthand_0.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_righthand_0.dmi, https://github.com/cmss13-devs/cmss13-pve/blob/f076c9bf9842c04af6ba0904fb09da72faeb9ee2/icons/obj/items/clothing/cm_suits.dmi, icon and worn sprites modified by github noctyrnal", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/urban.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/urban.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..23a71a03adf Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/urban.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/urban.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/urban.rsi/icon.png new file mode 100644 index 00000000000..f6f04353dfb Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/urban.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/urban.rsi/inhand-left.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/urban.rsi/inhand-left.png new file mode 100644 index 00000000000..81a2a6c80b3 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/urban.rsi/inhand-left.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/urban.rsi/inhand-right.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/urban.rsi/inhand-right.png new file mode 100644 index 00000000000..9c8e4c20bc5 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/urban.rsi/inhand-right.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/urban.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/urban.rsi/meta.json new file mode 100644 index 00000000000..dc656eeb46d --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/ridged/urban.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13-pve and cmss13 at https://github.com/cmss13-devs/cmss13-pve/blob/f076c9bf9842c04af6ba0904fb09da72faeb9ee2/icons/mob/humans/onmob/suit_1.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_lefthand_0.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_righthand_0.dmi, https://github.com/cmss13-devs/cmss13-pve/blob/f076c9bf9842c04af6ba0904fb09da72faeb9ee2/icons/obj/items/clothing/cm_suits.dmi, icon and worn sprites modified by github noctyrnal", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/classic.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/classic.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..405e6ef3fdf Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/classic.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/classic.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/classic.rsi/icon.png new file mode 100644 index 00000000000..793aa8cde1f Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/classic.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/classic.rsi/inhand-left.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/classic.rsi/inhand-left.png new file mode 100644 index 00000000000..9f16f1bfcf4 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/classic.rsi/inhand-left.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/classic.rsi/inhand-right.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/classic.rsi/inhand-right.png new file mode 100644 index 00000000000..cdbf0d85402 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/classic.rsi/inhand-right.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/classic.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/classic.rsi/meta.json new file mode 100644 index 00000000000..b5b25eb8938 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/classic.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13-pve and cmss13 at https://github.com/cmss13-devs/cmss13-pve/blob/f076c9bf9842c04af6ba0904fb09da72faeb9ee2/icons/mob/humans/onmob/suit_1.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_lefthand_0.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_righthand_0.dmi, https://github.com/cmss13-devs/cmss13-pve/blob/f076c9bf9842c04af6ba0904fb09da72faeb9ee2/icons/obj/items/clothing/cm_suits.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/desert.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/desert.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..4fdeb249f07 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/desert.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/desert.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/desert.rsi/icon.png new file mode 100644 index 00000000000..04f0fcd236d Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/desert.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/desert.rsi/inhand-left.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/desert.rsi/inhand-left.png new file mode 100644 index 00000000000..f41da970943 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/desert.rsi/inhand-left.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/desert.rsi/inhand-right.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/desert.rsi/inhand-right.png new file mode 100644 index 00000000000..872d28849ce Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/desert.rsi/inhand-right.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/desert.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/desert.rsi/meta.json new file mode 100644 index 00000000000..b5b25eb8938 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/desert.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13-pve and cmss13 at https://github.com/cmss13-devs/cmss13-pve/blob/f076c9bf9842c04af6ba0904fb09da72faeb9ee2/icons/mob/humans/onmob/suit_1.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_lefthand_0.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_righthand_0.dmi, https://github.com/cmss13-devs/cmss13-pve/blob/f076c9bf9842c04af6ba0904fb09da72faeb9ee2/icons/obj/items/clothing/cm_suits.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/jungle.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/jungle.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..0728ffb2bf6 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/jungle.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/jungle.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/jungle.rsi/icon.png new file mode 100644 index 00000000000..2cb4fb37276 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/jungle.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/jungle.rsi/inhand-left.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/jungle.rsi/inhand-left.png new file mode 100644 index 00000000000..4950d0772cf Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/jungle.rsi/inhand-left.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/jungle.rsi/inhand-right.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/jungle.rsi/inhand-right.png new file mode 100644 index 00000000000..e6ead17a706 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/jungle.rsi/inhand-right.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/jungle.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/jungle.rsi/meta.json new file mode 100644 index 00000000000..b5b25eb8938 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/jungle.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13-pve and cmss13 at https://github.com/cmss13-devs/cmss13-pve/blob/f076c9bf9842c04af6ba0904fb09da72faeb9ee2/icons/mob/humans/onmob/suit_1.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_lefthand_0.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_righthand_0.dmi, https://github.com/cmss13-devs/cmss13-pve/blob/f076c9bf9842c04af6ba0904fb09da72faeb9ee2/icons/obj/items/clothing/cm_suits.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/snow.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/snow.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..ecf79e77ccb Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/snow.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/snow.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/snow.rsi/icon.png new file mode 100644 index 00000000000..659e3185f5f Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/snow.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/snow.rsi/inhand-left.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/snow.rsi/inhand-left.png new file mode 100644 index 00000000000..cc5ca9d6cc5 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/snow.rsi/inhand-left.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/snow.rsi/inhand-right.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/snow.rsi/inhand-right.png new file mode 100644 index 00000000000..db22d216cd2 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/snow.rsi/inhand-right.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/snow.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/snow.rsi/meta.json new file mode 100644 index 00000000000..dc656eeb46d --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/snow.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13-pve and cmss13 at https://github.com/cmss13-devs/cmss13-pve/blob/f076c9bf9842c04af6ba0904fb09da72faeb9ee2/icons/mob/humans/onmob/suit_1.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_lefthand_0.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_righthand_0.dmi, https://github.com/cmss13-devs/cmss13-pve/blob/f076c9bf9842c04af6ba0904fb09da72faeb9ee2/icons/obj/items/clothing/cm_suits.dmi, icon and worn sprites modified by github noctyrnal", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/urban.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/urban.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..57d0a65932a Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/urban.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/urban.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/urban.rsi/icon.png new file mode 100644 index 00000000000..da858b7b605 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/urban.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/urban.rsi/inhand-left.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/urban.rsi/inhand-left.png new file mode 100644 index 00000000000..81a2a6c80b3 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/urban.rsi/inhand-left.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/urban.rsi/inhand-right.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/urban.rsi/inhand-right.png new file mode 100644 index 00000000000..9c8e4c20bc5 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/urban.rsi/inhand-right.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/urban.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/urban.rsi/meta.json new file mode 100644 index 00000000000..dc656eeb46d --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/sg/urban.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13-pve and cmss13 at https://github.com/cmss13-devs/cmss13-pve/blob/f076c9bf9842c04af6ba0904fb09da72faeb9ee2/icons/mob/humans/onmob/suit_1.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_lefthand_0.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_righthand_0.dmi, https://github.com/cmss13-devs/cmss13-pve/blob/f076c9bf9842c04af6ba0904fb09da72faeb9ee2/icons/obj/items/clothing/cm_suits.dmi, icon and worn sprites modified by github noctyrnal", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/classic.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/classic.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..bd9598eccc0 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/classic.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/classic.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/classic.rsi/icon.png new file mode 100644 index 00000000000..c8bca089f03 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/classic.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/classic.rsi/inhand-left.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/classic.rsi/inhand-left.png new file mode 100644 index 00000000000..9f16f1bfcf4 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/classic.rsi/inhand-left.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/classic.rsi/inhand-right.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/classic.rsi/inhand-right.png new file mode 100644 index 00000000000..cdbf0d85402 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/classic.rsi/inhand-right.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/classic.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/classic.rsi/meta.json new file mode 100644 index 00000000000..b5b25eb8938 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/classic.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13-pve and cmss13 at https://github.com/cmss13-devs/cmss13-pve/blob/f076c9bf9842c04af6ba0904fb09da72faeb9ee2/icons/mob/humans/onmob/suit_1.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_lefthand_0.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_righthand_0.dmi, https://github.com/cmss13-devs/cmss13-pve/blob/f076c9bf9842c04af6ba0904fb09da72faeb9ee2/icons/obj/items/clothing/cm_suits.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/desert.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/desert.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..f50b6af8de8 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/desert.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/desert.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/desert.rsi/icon.png new file mode 100644 index 00000000000..dae9f763356 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/desert.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/desert.rsi/inhand-left.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/desert.rsi/inhand-left.png new file mode 100644 index 00000000000..f41da970943 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/desert.rsi/inhand-left.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/desert.rsi/inhand-right.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/desert.rsi/inhand-right.png new file mode 100644 index 00000000000..872d28849ce Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/desert.rsi/inhand-right.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/desert.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/desert.rsi/meta.json new file mode 100644 index 00000000000..b5b25eb8938 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/desert.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13-pve and cmss13 at https://github.com/cmss13-devs/cmss13-pve/blob/f076c9bf9842c04af6ba0904fb09da72faeb9ee2/icons/mob/humans/onmob/suit_1.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_lefthand_0.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_righthand_0.dmi, https://github.com/cmss13-devs/cmss13-pve/blob/f076c9bf9842c04af6ba0904fb09da72faeb9ee2/icons/obj/items/clothing/cm_suits.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/jungle.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/jungle.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..9a59e05d2e7 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/jungle.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/jungle.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/jungle.rsi/icon.png new file mode 100644 index 00000000000..aeb7546fab1 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/jungle.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/jungle.rsi/inhand-left.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/jungle.rsi/inhand-left.png new file mode 100644 index 00000000000..4950d0772cf Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/jungle.rsi/inhand-left.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/jungle.rsi/inhand-right.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/jungle.rsi/inhand-right.png new file mode 100644 index 00000000000..e6ead17a706 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/jungle.rsi/inhand-right.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/jungle.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/jungle.rsi/meta.json new file mode 100644 index 00000000000..b5b25eb8938 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/jungle.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13-pve and cmss13 at https://github.com/cmss13-devs/cmss13-pve/blob/f076c9bf9842c04af6ba0904fb09da72faeb9ee2/icons/mob/humans/onmob/suit_1.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_lefthand_0.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_righthand_0.dmi, https://github.com/cmss13-devs/cmss13-pve/blob/f076c9bf9842c04af6ba0904fb09da72faeb9ee2/icons/obj/items/clothing/cm_suits.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/snow.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/snow.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..dd81526f477 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/snow.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/snow.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/snow.rsi/icon.png new file mode 100644 index 00000000000..73349e09bae Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/snow.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/snow.rsi/inhand-left.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/snow.rsi/inhand-left.png new file mode 100644 index 00000000000..cc5ca9d6cc5 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/snow.rsi/inhand-left.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/snow.rsi/inhand-right.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/snow.rsi/inhand-right.png new file mode 100644 index 00000000000..db22d216cd2 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/snow.rsi/inhand-right.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/snow.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/snow.rsi/meta.json new file mode 100644 index 00000000000..dc656eeb46d --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/snow.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13-pve and cmss13 at https://github.com/cmss13-devs/cmss13-pve/blob/f076c9bf9842c04af6ba0904fb09da72faeb9ee2/icons/mob/humans/onmob/suit_1.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_lefthand_0.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_righthand_0.dmi, https://github.com/cmss13-devs/cmss13-pve/blob/f076c9bf9842c04af6ba0904fb09da72faeb9ee2/icons/obj/items/clothing/cm_suits.dmi, icon and worn sprites modified by github noctyrnal", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/urban.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/urban.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..31b1bbf27e9 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/urban.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/urban.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/urban.rsi/icon.png new file mode 100644 index 00000000000..f3f157f61a4 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/urban.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/urban.rsi/inhand-left.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/urban.rsi/inhand-left.png new file mode 100644 index 00000000000..81a2a6c80b3 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/urban.rsi/inhand-left.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/urban.rsi/inhand-right.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/urban.rsi/inhand-right.png new file mode 100644 index 00000000000..9c8e4c20bc5 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/urban.rsi/inhand-right.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/urban.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/urban.rsi/meta.json new file mode 100644 index 00000000000..dc656eeb46d --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/smooth/urban.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13-pve and cmss13 at https://github.com/cmss13-devs/cmss13-pve/blob/f076c9bf9842c04af6ba0904fb09da72faeb9ee2/icons/mob/humans/onmob/suit_1.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_lefthand_0.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_righthand_0.dmi, https://github.com/cmss13-devs/cmss13-pve/blob/f076c9bf9842c04af6ba0904fb09da72faeb9ee2/icons/obj/items/clothing/cm_suits.dmi, icon and worn sprites modified by github noctyrnal", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/classic.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/classic.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..8a1609ac563 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/classic.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/classic.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/classic.rsi/icon.png new file mode 100644 index 00000000000..b59686d6112 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/classic.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/classic.rsi/inhand-left.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/classic.rsi/inhand-left.png new file mode 100644 index 00000000000..9f16f1bfcf4 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/classic.rsi/inhand-left.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/classic.rsi/inhand-right.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/classic.rsi/inhand-right.png new file mode 100644 index 00000000000..cdbf0d85402 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/classic.rsi/inhand-right.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/classic.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/classic.rsi/meta.json new file mode 100644 index 00000000000..b5b25eb8938 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/classic.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13-pve and cmss13 at https://github.com/cmss13-devs/cmss13-pve/blob/f076c9bf9842c04af6ba0904fb09da72faeb9ee2/icons/mob/humans/onmob/suit_1.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_lefthand_0.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_righthand_0.dmi, https://github.com/cmss13-devs/cmss13-pve/blob/f076c9bf9842c04af6ba0904fb09da72faeb9ee2/icons/obj/items/clothing/cm_suits.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/desert.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/desert.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..6bdad742a10 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/desert.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/desert.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/desert.rsi/icon.png new file mode 100644 index 00000000000..0814ea586a9 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/desert.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/desert.rsi/inhand-left.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/desert.rsi/inhand-left.png new file mode 100644 index 00000000000..f41da970943 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/desert.rsi/inhand-left.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/desert.rsi/inhand-right.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/desert.rsi/inhand-right.png new file mode 100644 index 00000000000..872d28849ce Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/desert.rsi/inhand-right.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/desert.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/desert.rsi/meta.json new file mode 100644 index 00000000000..b5b25eb8938 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/desert.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13-pve and cmss13 at https://github.com/cmss13-devs/cmss13-pve/blob/f076c9bf9842c04af6ba0904fb09da72faeb9ee2/icons/mob/humans/onmob/suit_1.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_lefthand_0.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_righthand_0.dmi, https://github.com/cmss13-devs/cmss13-pve/blob/f076c9bf9842c04af6ba0904fb09da72faeb9ee2/icons/obj/items/clothing/cm_suits.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/jungle.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/jungle.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..4e796d72dad Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/jungle.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/jungle.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/jungle.rsi/icon.png new file mode 100644 index 00000000000..7a278a7f9b6 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/jungle.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/jungle.rsi/inhand-left.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/jungle.rsi/inhand-left.png new file mode 100644 index 00000000000..4950d0772cf Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/jungle.rsi/inhand-left.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/jungle.rsi/inhand-right.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/jungle.rsi/inhand-right.png new file mode 100644 index 00000000000..e6ead17a706 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/jungle.rsi/inhand-right.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/jungle.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/jungle.rsi/meta.json new file mode 100644 index 00000000000..b5b25eb8938 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/jungle.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13-pve and cmss13 at https://github.com/cmss13-devs/cmss13-pve/blob/f076c9bf9842c04af6ba0904fb09da72faeb9ee2/icons/mob/humans/onmob/suit_1.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_lefthand_0.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_righthand_0.dmi, https://github.com/cmss13-devs/cmss13-pve/blob/f076c9bf9842c04af6ba0904fb09da72faeb9ee2/icons/obj/items/clothing/cm_suits.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/snow.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/snow.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..fbbf0276afe Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/snow.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/snow.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/snow.rsi/icon.png new file mode 100644 index 00000000000..a884e4085cf Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/snow.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/snow.rsi/inhand-left.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/snow.rsi/inhand-left.png new file mode 100644 index 00000000000..cc5ca9d6cc5 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/snow.rsi/inhand-left.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/snow.rsi/inhand-right.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/snow.rsi/inhand-right.png new file mode 100644 index 00000000000..db22d216cd2 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/snow.rsi/inhand-right.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/snow.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/snow.rsi/meta.json new file mode 100644 index 00000000000..dc656eeb46d --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/snow.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13-pve and cmss13 at https://github.com/cmss13-devs/cmss13-pve/blob/f076c9bf9842c04af6ba0904fb09da72faeb9ee2/icons/mob/humans/onmob/suit_1.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_lefthand_0.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_righthand_0.dmi, https://github.com/cmss13-devs/cmss13-pve/blob/f076c9bf9842c04af6ba0904fb09da72faeb9ee2/icons/obj/items/clothing/cm_suits.dmi, icon and worn sprites modified by github noctyrnal", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/urban.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/urban.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..31b1bbf27e9 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/urban.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/urban.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/urban.rsi/icon.png new file mode 100644 index 00000000000..f3f157f61a4 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/urban.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/urban.rsi/inhand-left.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/urban.rsi/inhand-left.png new file mode 100644 index 00000000000..81a2a6c80b3 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/urban.rsi/inhand-left.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/urban.rsi/inhand-right.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/urban.rsi/inhand-right.png new file mode 100644 index 00000000000..9c8e4c20bc5 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/urban.rsi/inhand-right.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/urban.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/urban.rsi/meta.json new file mode 100644 index 00000000000..dc656eeb46d --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Marines/standard/urban.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13-pve and cmss13 at https://github.com/cmss13-devs/cmss13-pve/blob/f076c9bf9842c04af6ba0904fb09da72faeb9ee2/icons/mob/humans/onmob/suit_1.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_lefthand_0.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_righthand_0.dmi, https://github.com/cmss13-devs/cmss13-pve/blob/f076c9bf9842c04af6ba0904fb09da72faeb9ee2/icons/obj/items/clothing/cm_suits.dmi, icon and worn sprites modified by github noctyrnal", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Royal/kestrelharness.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Royal/kestrelharness.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..c07e3a5d2fd Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Royal/kestrelharness.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Royal/kestrelharness.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Royal/kestrelharness.rsi/icon.png new file mode 100644 index 00000000000..d96fa68f92b Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Royal/kestrelharness.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Royal/kestrelharness.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Royal/kestrelharness.rsi/meta.json new file mode 100644 index 00000000000..218ba367814 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Royal/kestrelharness.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Created for RMC-14/RMC-14 by @TadJohnson00 (GitHub).", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Royal/kestrelheavy.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Royal/kestrelheavy.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..b6401078e95 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Royal/kestrelheavy.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Royal/kestrelheavy.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Royal/kestrelheavy.rsi/icon.png new file mode 100644 index 00000000000..4749dc9f78f Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Royal/kestrelheavy.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Royal/kestrelheavy.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Royal/kestrelheavy.rsi/meta.json new file mode 100644 index 00000000000..218ba367814 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Royal/kestrelheavy.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Created for RMC-14/RMC-14 by @TadJohnson00 (GitHub).", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Royal/kestrellight.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Royal/kestrellight.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..1375929e072 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Royal/kestrellight.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Royal/kestrellight.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Royal/kestrellight.rsi/icon.png new file mode 100644 index 00000000000..d3b3699f285 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Royal/kestrellight.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Royal/kestrellight.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Royal/kestrellight.rsi/meta.json new file mode 100644 index 00000000000..218ba367814 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Royal/kestrellight.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Created for RMC-14/RMC-14 by @TadJohnson00 (GitHub).", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Royal/kestrelmedium.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Royal/kestrelmedium.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..b320c66cda2 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Royal/kestrelmedium.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Royal/kestrelmedium.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Royal/kestrelmedium.rsi/icon.png new file mode 100644 index 00000000000..9d32ddbd0c9 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Royal/kestrelmedium.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Royal/kestrelmedium.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Royal/kestrelmedium.rsi/meta.json new file mode 100644 index 00000000000..218ba367814 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/PVE/Royal/kestrelmedium.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Created for RMC-14/RMC-14 by @TadJohnson00 (GitHub).", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Royal/eiaf_vest.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Royal/eiaf_vest.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..1a03b7d5c4b Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Royal/eiaf_vest.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Royal/eiaf_vest.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Royal/eiaf_vest.rsi/icon.png new file mode 100644 index 00000000000..d341680428e Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Royal/eiaf_vest.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Royal/eiaf_vest.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Royal/eiaf_vest.rsi/meta.json new file mode 100644 index 00000000000..0c04ea940fb --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Royal/eiaf_vest.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/9e46a4af63818ec5c627c77624a0a9904491f90b/icons/mob/humans/onmob/clothing/suits/suits_by_faction/TWE.dmi, https://github.com/cmss13-devs/cmss13/blob/9e46a4af63818ec5c627c77624a0a9904491f90b/icons/obj/items/clothing/suits/suits_by_faction/TWE.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/SPP/army.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/SPP/army.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..babbb5e8e7a Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/SPP/army.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/SPP/army.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/SPP/army.rsi/icon.png new file mode 100644 index 00000000000..328c08b7b20 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/SPP/army.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/SPP/army.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/SPP/army.rsi/meta.json new file mode 100644 index 00000000000..22636bd877b --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/SPP/army.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/master/icons/obj/items/clothing/suits/suits_by_faction/UPP.dmi, https://github.com/cmss13-devs/cmss13/blob/master/icons/mob/humans/onmob/suits/suits_by_faction/UPP.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/SPP/firefighter.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/SPP/firefighter.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..bcaf36177d9 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/SPP/firefighter.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/SPP/firefighter.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/SPP/firefighter.rsi/icon.png new file mode 100644 index 00000000000..b48997898c9 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/SPP/firefighter.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/SPP/firefighter.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/SPP/firefighter.rsi/meta.json new file mode 100644 index 00000000000..cea44b61067 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/SPP/firefighter.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/obj/items/clothing/cm_suits.dmi, https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/mob/humans/onmob/suit_1.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/SPP/pap.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/SPP/pap.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..ca0a1a62d8c Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/SPP/pap.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/SPP/pap.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/SPP/pap.rsi/icon.png new file mode 100644 index 00000000000..7585c1defc2 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/SPP/pap.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/SPP/pap.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/SPP/pap.rsi/meta.json new file mode 100644 index 00000000000..a43b6ea6211 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/SPP/pap.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/master/icons/obj/items/clothing/suits.dmi, https://github.com/cmss13-devs/cmss13/blob/master/icons/mob/humans/onmob/suit_0.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/SPP/support.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/SPP/support.rsi/meta.json index cea44b61067..22636bd877b 100644 --- a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/SPP/support.rsi/meta.json +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/SPP/support.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/obj/items/clothing/cm_suits.dmi, https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/mob/humans/onmob/suit_1.dmi", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/master/icons/obj/items/clothing/suits/suits_by_faction/UPP.dmi, https://github.com/cmss13-devs/cmss13/blob/master/icons/mob/humans/onmob/suits/suits_by_faction/UPP.dmi", "size": { "x": 32, "y": 32 @@ -15,4 +15,4 @@ "directions": 4 } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Synthetic/synth_utility.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Synthetic/synth_utility.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..ec5587a53e8 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Synthetic/synth_utility.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Synthetic/synth_utility.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Synthetic/synth_utility.rsi/icon.png new file mode 100644 index 00000000000..5083c2836f1 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Synthetic/synth_utility.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Synthetic/synth_utility.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Synthetic/synth_utility.rsi/meta.json new file mode 100644 index 00000000000..b1d0f9c1894 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/Synthetic/synth_utility.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/789a362bc55d2d6331bc89699bb4f9f792695853/icons/mob/humans/onmob/clothing/suits/vests_aprons.dmi, https://github.com/cmss13-devs/cmss13/blob/789a362bc55d2d6331bc89699bb4f9f792695853/icons/obj/items/clothing/suits/vests_aprons.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "icon" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/TSEPA/formal_jacket.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/TSEPA/formal_jacket.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..da99d827f1c Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/TSEPA/formal_jacket.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/TSEPA/formal_jacket.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/TSEPA/formal_jacket.rsi/icon.png new file mode 100644 index 00000000000..3bf43e5395a Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/TSEPA/formal_jacket.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/TSEPA/formal_jacket.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/TSEPA/formal_jacket.rsi/meta.json new file mode 100644 index 00000000000..dacf3f0b994 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/TSEPA/formal_jacket.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/master/icons/obj/items/clothing/suits/suits_by_faction/TWE.dmi, https://github.com/cmss13-devs/cmss13/blob/master/icons/mob/humans/onmob/clothing/suits/suits_by_faction/TWE.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/TSEPA/highvis_jacket.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/TSEPA/highvis_jacket.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..6fc112f8916 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/TSEPA/highvis_jacket.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/TSEPA/highvis_jacket.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/TSEPA/highvis_jacket.rsi/icon.png new file mode 100644 index 00000000000..1e2727f75d8 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/TSEPA/highvis_jacket.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/TSEPA/highvis_jacket.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/TSEPA/highvis_jacket.rsi/meta.json new file mode 100644 index 00000000000..dacf3f0b994 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/TSEPA/highvis_jacket.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/master/icons/obj/items/clothing/suits/suits_by_faction/TWE.dmi, https://github.com/cmss13-devs/cmss13/blob/master/icons/mob/humans/onmob/clothing/suits/suits_by_faction/TWE.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/TSEPA/highvis_vest.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/TSEPA/highvis_vest.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..32329fc1138 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/TSEPA/highvis_vest.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/TSEPA/highvis_vest.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/TSEPA/highvis_vest.rsi/icon.png new file mode 100644 index 00000000000..dfe198af6ca Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/TSEPA/highvis_vest.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/TSEPA/highvis_vest.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/TSEPA/highvis_vest.rsi/meta.json new file mode 100644 index 00000000000..dacf3f0b994 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/TSEPA/highvis_vest.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/master/icons/obj/items/clothing/suits/suits_by_faction/TWE.dmi, https://github.com/cmss13-devs/cmss13/blob/master/icons/mob/humans/onmob/clothing/suits/suits_by_faction/TWE.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/TSEPA/jacket.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/TSEPA/jacket.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..67e17e4b16f Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/TSEPA/jacket.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/TSEPA/jacket.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/TSEPA/jacket.rsi/icon.png new file mode 100644 index 00000000000..da515d56723 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/TSEPA/jacket.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/TSEPA/jacket.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/TSEPA/jacket.rsi/meta.json new file mode 100644 index 00000000000..dacf3f0b994 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/TSEPA/jacket.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/master/icons/obj/items/clothing/suits/suits_by_faction/TWE.dmi, https://github.com/cmss13-devs/cmss13/blob/master/icons/mob/humans/onmob/clothing/suits/suits_by_faction/TWE.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/TSEPA/marshal.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/TSEPA/marshal.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..7d11ede42d1 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/TSEPA/marshal.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/TSEPA/marshal.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/TSEPA/marshal.rsi/icon.png new file mode 100644 index 00000000000..fe9fdbfa073 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/TSEPA/marshal.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/TSEPA/marshal.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/TSEPA/marshal.rsi/meta.json new file mode 100644 index 00000000000..96e711ad2ed --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/TSEPA/marshal.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Sprites by github noctyrnal", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/TSEPA/standard.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/TSEPA/standard.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..c4e69e1f965 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/TSEPA/standard.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/TSEPA/standard.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/TSEPA/standard.rsi/icon.png new file mode 100644 index 00000000000..a31668fc139 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/TSEPA/standard.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/TSEPA/standard.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/TSEPA/standard.rsi/meta.json new file mode 100644 index 00000000000..96e711ad2ed --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/TSEPA/standard.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Sprites by github noctyrnal", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/TSEPA/tsepa_police_vest.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/TSEPA/tsepa_police_vest.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..845121c15cb Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/TSEPA/tsepa_police_vest.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/TSEPA/tsepa_police_vest.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/TSEPA/tsepa_police_vest.rsi/icon.png new file mode 100644 index 00000000000..8b6838fe9e8 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/TSEPA/tsepa_police_vest.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/TSEPA/tsepa_police_vest.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/TSEPA/tsepa_police_vest.rsi/meta.json new file mode 100644 index 00000000000..82bcef1fcf3 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/TSEPA/tsepa_police_vest.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/41b3798435ee57263bb67fa694ea944d6698c062/icons/mob/humans/onmob/clothing/suits/suits_by_faction/TWE.dmi, https://github.com/cmss13-devs/cmss13/blob/41b3798435ee57263bb67fa694ea944d6698c062/icons/obj/items/clothing/suits/suits_by_faction/TWE.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/eiaf.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/eiaf.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..a0f62ed49af Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/eiaf.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/eiaf.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/eiaf.rsi/icon.png new file mode 100644 index 00000000000..fc976f735fb Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/eiaf.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/eiaf.rsi/jacket-equipped-OUTERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/eiaf.rsi/jacket-equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..48959a66518 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/eiaf.rsi/jacket-equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/eiaf.rsi/jacket-icon.png b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/eiaf.rsi/jacket-icon.png new file mode 100644 index 00000000000..ae0a300baad Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/eiaf.rsi/jacket-icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/eiaf.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/eiaf.rsi/meta.json new file mode 100644 index 00000000000..4fe64b88a47 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/OuterClothing/TSE/eiaf.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/9e46a4af63818ec5c627c77624a0a9904491f90b/icons/mob/humans/onmob/clothing/suits/suits_by_faction/TWE.dmi, https://github.com/cmss13-devs/cmss13/blob/9e46a4af63818ec5c627c77624a0a9904491f90b/icons/obj/items/clothing/suits/suits_by_faction/TWE.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "jacket-equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "icon" + }, + { + "name": "jacket-icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Auxiliary/crewchief.rsi/sleeveless-equipped-INNERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Auxiliary/crewchief.rsi/sleeveless-equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..f2728338354 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Auxiliary/crewchief.rsi/sleeveless-equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Auxiliary/crewchief.rsi/sleeves-equipped-INNERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Auxiliary/crewchief.rsi/sleeves-equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..6179268f3e1 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Auxiliary/crewchief.rsi/sleeves-equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Auxiliary/pilot_alt.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Auxiliary/pilot_alt.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..4e4edf042d2 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Auxiliary/pilot_alt.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Auxiliary/pilot_alt.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Auxiliary/pilot_alt.rsi/icon.png new file mode 100644 index 00000000000..a1c6d57c923 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Auxiliary/pilot_alt.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Auxiliary/pilot_alt.rsi/jacket-equipped-INNERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Auxiliary/pilot_alt.rsi/jacket-equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..470c006c612 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Auxiliary/pilot_alt.rsi/jacket-equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Auxiliary/pilot_alt.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Auxiliary/pilot_alt.rsi/meta.json new file mode 100644 index 00000000000..89a040a755c --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Auxiliary/pilot_alt.rsi/meta.json @@ -0,0 +1,22 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/443f5d2810e6d955594bc1c6b46a5887dbf3351d/icons/mob/humans/onmob/clothing/uniforms/uniforms_by_faction/UA.dmi, https://github.com/cmss13-devs/cmss13/blob/443f5d2810e6d955594bc1c6b46a5887dbf3351d/icons/obj/items/clothing/uniforms/uniforms_by_faction/UA.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "icon" + }, + { + "name": "jacket-equipped-INNERCLOTHING", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Marine/standard.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Marine/standard.rsi/meta.json index 132c6518a89..855ad549bd1 100644 --- a/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Marine/standard.rsi/meta.json +++ b/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Marine/standard.rsi/meta.json @@ -7,9 +7,6 @@ "y": 32 }, "states": [ - { - "name": "icon" - }, { "name": "equipped-INNERCLOTHING", "directions": 4 @@ -25,6 +22,9 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "icon" } ] -} +} \ No newline at end of file diff --git a/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Synthetic/joe.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Synthetic/joe.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..00b103dedd9 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Synthetic/joe.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Synthetic/joe.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Synthetic/joe.rsi/icon.png new file mode 100644 index 00000000000..9cf14e5e7fe Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Synthetic/joe.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Synthetic/joe.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Synthetic/joe.rsi/meta.json new file mode 100644 index 00000000000..7ed606f0472 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Synthetic/joe.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/0525b5ada7da1afcd9b260e76d5fea01500d9c8d/icons/obj/items/clothing/uniforms/uniforms_by_faction/SEEGSON.dmi, https://github.com/cmss13-devs/cmss13/blob/0525b5ada7da1afcd9b260e76d5fea01500d9c8d/icons/mob/humans/onmob/clothing/uniforms/uniforms_by_faction/SEEGSON.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Synthetic/outdated_synth.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Synthetic/outdated_synth.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..56d760f04cd Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Synthetic/outdated_synth.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Synthetic/outdated_synth.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Synthetic/outdated_synth.rsi/icon.png new file mode 100644 index 00000000000..d45b03e3d1d Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Synthetic/outdated_synth.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Synthetic/outdated_synth.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Synthetic/outdated_synth.rsi/meta.json new file mode 100644 index 00000000000..22c8e48cb65 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Synthetic/outdated_synth.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/789a362bc55d2d6331bc89699bb4f9f792695853/icons/obj/items/clothing/uniforms/uniforms_by_department/research.dmi, https://github.com/cmss13-devs/cmss13/blob/789a362bc55d2d6331bc89699bb4f9f792695853/icons/mob/humans/onmob/clothing/uniforms/uniforms_by_department/research.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Synthetic/pristine.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Synthetic/pristine.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..ac5c7ebdb0c Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Synthetic/pristine.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Synthetic/pristine.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Synthetic/pristine.rsi/icon.png new file mode 100644 index 00000000000..e7f36a56c96 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Synthetic/pristine.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Synthetic/pristine.rsi/jacket-equipped-INNERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Synthetic/pristine.rsi/jacket-equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..859e2a6d40b Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Synthetic/pristine.rsi/jacket-equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Synthetic/pristine.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Synthetic/pristine.rsi/meta.json new file mode 100644 index 00000000000..d48ac94440b --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Synthetic/pristine.rsi/meta.json @@ -0,0 +1,22 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/e7e2fe8c7d4dc0d322745ae5c2fa190b2e010897/icons/mob/humans/onmob/clothing/uniforms/synthetic_uniforms.dmi, https://github.com/cmss13-devs/cmss13/blob/e7e2fe8c7d4dc0d322745ae5c2fa190b2e010897/icons/obj/items/clothing/uniforms/synthetic_uniforms.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "jacket-equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Synthetic/synthetic_support.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Synthetic/synthetic_support.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..2b482359451 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Synthetic/synthetic_support.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Synthetic/synthetic_support.rsi/icon.png b/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Synthetic/synthetic_support.rsi/icon.png new file mode 100644 index 00000000000..b4c920baac5 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Synthetic/synthetic_support.rsi/icon.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Synthetic/synthetic_support.rsi/jacket-equipped-INNERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Synthetic/synthetic_support.rsi/jacket-equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..74324a05f0c Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Synthetic/synthetic_support.rsi/jacket-equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Synthetic/synthetic_support.rsi/meta.json b/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Synthetic/synthetic_support.rsi/meta.json new file mode 100644 index 00000000000..09c1c8271c7 --- /dev/null +++ b/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Synthetic/synthetic_support.rsi/meta.json @@ -0,0 +1,30 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/8d2ee2746ce1b8aa5a876266951a8d9f92499aff/icons/mob/humans/onmob/uniform_0.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_lefthand_0.dmi, https://github.com/cmss13-devs/cmss13/blob/a50253802b9d56391f7b857684e345119a207f43/icons/mob/humans/onmob/items_righthand_0.dmi, https://github.com/cmss13-devs/cmss13/blob/06d35efb20e830eacc57d3c77fea047dadbcdee3/icons/obj/items/clothing/uniforms.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "sleeves-equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "sleeveless-equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "jacket-equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Synthetic/synthetic_support.rsi/sleeveless-equipped-INNERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Synthetic/synthetic_support.rsi/sleeveless-equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..182f11fdc30 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Synthetic/synthetic_support.rsi/sleeveless-equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Synthetic/synthetic_support.rsi/sleeves-equipped-INNERCLOTHING.png b/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Synthetic/synthetic_support.rsi/sleeves-equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..8390b7fe716 Binary files /dev/null and b/Resources/Textures/_RMC14/Objects/Clothing/Uniforms/Synthetic/synthetic_support.rsi/sleeves-equipped-INNERCLOTHING.png differ