diff --git a/Content.Server/Chat/Systems/ChatSystem.cs b/Content.Server/Chat/Systems/ChatSystem.cs index 8c18993723..6e80d5d9ff 100644 --- a/Content.Server/Chat/Systems/ChatSystem.cs +++ b/Content.Server/Chat/Systems/ChatSystem.cs @@ -524,7 +524,7 @@ private void SendEntityWhisper( // Result is the intermediate message derived from the perceived one via obfuscation // Wrapped message is the result wrapped in an "x says y" string string result, wrappedMessage; - if (data.Range <= (TryComp(listener, out var modifier) ? modifier.WhisperListeningRange : WhisperClearRange)) // WWDP-Edit + if (data.Range <= WhisperClearRange) { // Scenario 1: the listener can clearly understand the message result = perceivedMessage; diff --git a/Content.Server/Flash/FlashSystem.cs b/Content.Server/Flash/FlashSystem.cs index 75ba5f5f88..647f082708 100644 --- a/Content.Server/Flash/FlashSystem.cs +++ b/Content.Server/Flash/FlashSystem.cs @@ -135,13 +135,6 @@ public void Flash(EntityUid target, if (!Resolve(target, ref flashable, false)) return; - // WWDP-Start - if (TryComp(target, out var flashModifier)) - { - flashDuration *= flashModifier.Modifier; - } - // WWDP-End - var attempt = new FlashAttemptEvent(target, user, used); RaiseLocalEvent(target, attempt, true); diff --git a/Content.Server/_White/Resomi/Abilities/AgillitySkillSystem.cs b/Content.Server/_White/Resomi/Abilities/AgillitySkillSystem.cs deleted file mode 100644 index dd614087b6..0000000000 --- a/Content.Server/_White/Resomi/Abilities/AgillitySkillSystem.cs +++ /dev/null @@ -1,108 +0,0 @@ -using Content.Shared.Actions; -using Content.Shared.Alert; -using Content.Shared.Maps; -using Robust.Shared.Containers; -using Robust.Shared.Map; -using Robust.Shared.Timing; -using Content.Shared._White.Resomi; -using Content.Shared.Movement.Components; -using Content.Shared.Movement.Systems; -using Content.Shared._White.Resomi.Abilities; -using Content.Shared.Damage.Components; -using Robust.Shared.Physics; - -namespace Content.Server._White.Resomi.Abilities; - -public sealed class AgillitySkillSystem : SharedAgillitySkillSystem -{ - [Dependency] private readonly SharedActionsSystem _actionsSystem = default!; - [Dependency] private readonly MovementSpeedModifierSystem _movementSpeedModifier = default!; - - private Entity _action = default!; - - public override void Initialize() - { - base.Initialize(); - SubscribeLocalEvent(OnComponentInit); - SubscribeLocalEvent(SwitchAgility); - SubscribeLocalEvent(OnRefreshMovespeed); - } - - private void OnComponentInit(Entity ent, ref ComponentInit args) - { - _actionsSystem.AddAction(ent.Owner, ref ent.Comp.SwitchAgilityActionEntity, ent.Comp.SwitchAgilityAction, ent.Owner); - } - - private void SwitchAgility(Entity ent, ref SwitchAgillityActionEvent args) - { - _action = args.Action!; - - if (!ent.Comp.Active) - { - ActivateAgility(ent, _action!); - } - else - { - DeactivateAgility(ent.Owner, ent.Comp, _action!); - } - } - - private void ActivateAgility(Entity ent, Entity action) - { - if (!TryComp(ent.Owner, out var comp)) - return; - - _popup.PopupEntity(Loc.GetString("agility-activated-massage"), ent.Owner, ent.Owner); - - ent.Comp.SprintSpeedCurrent += ent.Comp.SprintSpeedModifier; // adding a modifier to the base running speed - _movementSpeedModifier.RefreshMovementSpeedModifiers(ent.Owner); - - ent.Comp.Active = !ent.Comp.Active; - - var ev = new SwitchAgillity(action, ent.Comp.Active); - RaiseLocalEvent(ent.Owner, ref ev); - } - - private void DeactivateAgility(EntityUid uid, AgillitySkillComponent component, Entity action) - { - if (!TryComp(uid, out var comp)) - return; - - _popup.PopupEntity(Loc.GetString("agility-deactivated-massage"), uid, uid); - - component.SprintSpeedCurrent = 1f; // return the base running speed to normal - _movementSpeedModifier.RefreshMovementSpeedModifiers(uid); - - _actions.SetCooldown(action.Owner, component.CooldownDelay); - - component.Active = !component.Active; - - var ev = new SwitchAgillity(action, component.Active); - RaiseLocalEvent(uid, ref ev); - } - - private void OnRefreshMovespeed(Entity ent, ref RefreshMovementSpeedModifiersEvent args) - { - args.ModifySpeed(1f, ent.Comp.SprintSpeedCurrent); - } - - public override void Update(float frameTime) - { - base.Update(frameTime); - - var query = EntityQueryEnumerator(); - while (query.MoveNext(out var uid, out var resomiComp)) - { - if (!TryComp(uid, out var stamina) - || !resomiComp.Active - || Timing.CurTime < resomiComp.NextUpdateTime) - continue; - - resomiComp.NextUpdateTime = Timing.CurTime + resomiComp.UpdateRate; - - _stamina.TryTakeStamina(uid, resomiComp.StaminaDamagePassive); - if (stamina.StaminaDamage > stamina.CritThreshold * 0.50f) - DeactivateAgility(uid, resomiComp, _action!); - } - } -} diff --git a/Content.Server/_White/Speech/Components/ResomiAccentComponent.cs b/Content.Server/_White/Speech/Components/ResomiAccentComponent.cs deleted file mode 100644 index e142673bf1..0000000000 --- a/Content.Server/_White/Speech/Components/ResomiAccentComponent.cs +++ /dev/null @@ -1,4 +0,0 @@ -namespace Content.Server._White.Speech.Components; - -[RegisterComponent] -public sealed partial class ResomiAccentComponent : Component; diff --git a/Content.Server/_White/Speech/EntitySystems/ResomiAccentSystem.cs b/Content.Server/_White/Speech/EntitySystems/ResomiAccentSystem.cs deleted file mode 100644 index 73fed32282..0000000000 --- a/Content.Server/_White/Speech/EntitySystems/ResomiAccentSystem.cs +++ /dev/null @@ -1,61 +0,0 @@ -using System.Text.RegularExpressions; -using Content.Server._White.Speech.Components; -using Content.Server.Speech; -using Robust.Shared.Random; - -namespace Content.Server._White.Speech.EntitySystems; - -public sealed class ResomiAccentSystem : EntitySystem -{ - - [Dependency] private readonly IRobustRandom _random = default!; - - public override void Initialize() - { - base.Initialize(); - SubscribeLocalEvent(OnAccent); - } - - private void OnAccent(EntityUid uid, ResomiAccentComponent component, AccentGetEvent args) - { - var message = args.Message; - - // ш => шшш - message = Regex.Replace( - message, - "ш+", - _random.Pick(new List() { "шш", "шшш" }) - ); - // Ш => ШШШ - message = Regex.Replace( - message, - "Ш+", - _random.Pick(new List() { "ШШ", "ШШШ" }) - ); - // ч => щщщ - message = Regex.Replace( - message, - "ч+", - _random.Pick(new List() { "щщ", "щщщ" }) - ); - // Ч => ЩЩЩ - message = Regex.Replace( - message, - "Ч+", - _random.Pick(new List() { "ЩЩ", "ЩЩЩ" }) - ); - // р => ррр - message = Regex.Replace( - message, - "р+", - _random.Pick(new List() { "рр", "ррр" }) - ); - // Р => РРР - message = Regex.Replace( - message, - "Р+", - _random.Pick(new List() { "РР", "РРР" }) - ); - args.Message = message; - } -} diff --git a/Content.Shared/Weapons/Ranged/Events/GunRefreshModifiersEvent.cs b/Content.Shared/Weapons/Ranged/Events/GunRefreshModifiersEvent.cs index 488124ece5..0ad79bd74a 100644 --- a/Content.Shared/Weapons/Ranged/Events/GunRefreshModifiersEvent.cs +++ b/Content.Shared/Weapons/Ranged/Events/GunRefreshModifiersEvent.cs @@ -1,4 +1,4 @@ -using Content.Shared.Weapons.Ranged.Components; +using Content.Shared.Weapons.Ranged.Components; using Content.Shared.Weapons.Ranged.Systems; using Robust.Shared.Audio; diff --git a/Content.Shared/Wieldable/Components/WieldableComponent.cs b/Content.Shared/Wieldable/Components/WieldableComponent.cs index 41b74355f2..46b6463c5a 100644 --- a/Content.Shared/Wieldable/Components/WieldableComponent.cs +++ b/Content.Shared/Wieldable/Components/WieldableComponent.cs @@ -43,8 +43,6 @@ public sealed partial class WieldableComponent : Component /// [DataField] public bool AltUseInHand = false; - - public EntityUid? User = null; // WD EDIT END } diff --git a/Content.Shared/Wieldable/WieldableSystem.cs b/Content.Shared/Wieldable/WieldableSystem.cs index 35723dffac..0a46369787 100644 --- a/Content.Shared/Wieldable/WieldableSystem.cs +++ b/Content.Shared/Wieldable/WieldableSystem.cs @@ -18,7 +18,6 @@ using Content.Shared.Wieldable.Components; using Robust.Shared.Audio.Systems; using Robust.Shared.Timing; -using Content.Shared._White.Resomi.Abilities; namespace Content.Shared.Wieldable; @@ -107,7 +106,7 @@ private void OnDeselectWieldable(EntityUid uid, WieldableComponent component, Ha private void OnGunRefreshModifiers(Entity bonus, ref GunRefreshModifiersEvent args) { if (TryComp(bonus, out WieldableComponent? wield) && - wield.Wielded && !HasComp(wield.User)) // WWDP-Edit + wield.Wielded) { args.MinAngle += bonus.Comp.MinAngle; args.MaxAngle += bonus.Comp.MaxAngle; @@ -270,8 +269,6 @@ public bool TryWield(EntityUid used, WieldableComponent component, EntityUid use var othersMessage = Loc.GetString("wieldable-component-successful-wield-other", ("user", user), ("item", used)); _popupSystem.PopupPredicted(selfMessage, othersMessage, user, user); - component.User = user; // WWDP - var targEv = new ItemWieldedEvent(); RaiseLocalEvent(used, ref targEv); diff --git a/Content.Shared/_White/Chat/ChatModifierComponent.cs b/Content.Shared/_White/Chat/ChatModifierComponent.cs deleted file mode 100644 index 13243ad785..0000000000 --- a/Content.Shared/_White/Chat/ChatModifierComponent.cs +++ /dev/null @@ -1,12 +0,0 @@ -namespace Content.Shared.Chat; - -/// -/// WWDP -/// - -[RegisterComponent] -public sealed partial class ChatModifierComponent : Component -{ - [DataField("whisperListeningRange")] - public int WhisperListeningRange = SharedChatSystem.WhisperClearRange; -} diff --git a/Content.Shared/_White/Flash/Components/FlashModifierComponent.cs b/Content.Shared/_White/Flash/Components/FlashModifierComponent.cs deleted file mode 100644 index f8283fee8e..0000000000 --- a/Content.Shared/_White/Flash/Components/FlashModifierComponent.cs +++ /dev/null @@ -1,12 +0,0 @@ - namespace Content.Shared.Flash.Components; - -/// -/// WWDP -/// - -[RegisterComponent] -public sealed partial class FlashModifierComponent : Component -{ - [DataField] - public float Modifier = 1f; -} diff --git a/Content.Shared/_White/Resomi/Abilities/SharedAgillitySkillComponent.cs b/Content.Shared/_White/Resomi/Abilities/SharedAgillitySkillComponent.cs deleted file mode 100644 index f561be70c4..0000000000 --- a/Content.Shared/_White/Resomi/Abilities/SharedAgillitySkillComponent.cs +++ /dev/null @@ -1,60 +0,0 @@ -using Robust.Shared.GameStates; -using Robust.Shared.Prototypes; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; - -namespace Content.Shared._White.Resomi.Abilities; - -[RegisterComponent, NetworkedComponent] -[AutoGenerateComponentState] -public sealed partial class AgillitySkillComponent : Component -{ - [AutoNetworkedField, DataField] - public Dictionary DisabledJumpUpFixtureMasks = new(); - [AutoNetworkedField, DataField] - public Dictionary DisabledJumpDownFixtureMasks = new(); - - [DataField("active")] - public bool Active = false; - - /// - /// if we want the ability to not give the opportunity to jump on the tables and only accelerate - /// - [DataField("jumpEnabled")] - public bool JumpEnabled = true; - - [DataField("switchAgilityAction", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string? SwitchAgilityAction = "SwitchAgilityAction"; - - [DataField("switchAgilityActionEntity")] public EntityUid? SwitchAgilityActionEntity; - - /// - /// how much stamina will be spent for each jump - /// - [DataField("staminaDamageOnJump")] - public float StaminaDamageOnJump = 10f; - - /// - /// how much stamina will be passive spent while abilitty is activated - /// - [DataField("staminaDamagePassive")] - public float StaminaDamagePassive = 3f; - - [DataField("sprintSpeedModifier")] - public float SprintSpeedModifier = 0.1f; //+10% - public float SprintSpeedCurrent = 1f; - - /// - /// once in how many seconds is our stamina taken away while the ability is on - /// - [DataField("delay")] - public double Delay = 1.0; - public TimeSpan UpdateRate => TimeSpan.FromSeconds(Delay); - public TimeSpan NextUpdateTime; - - /// - /// cooldown of ability. Called when the ability is disabled - /// - [DataField("cooldown")] - public double Cooldown = 20.0; - public TimeSpan CooldownDelay => TimeSpan.FromSeconds(Cooldown); -} diff --git a/Content.Shared/_White/Resomi/Abilities/SharedAgillitySkillSystem.cs b/Content.Shared/_White/Resomi/Abilities/SharedAgillitySkillSystem.cs deleted file mode 100644 index a7ac5182dc..0000000000 --- a/Content.Shared/_White/Resomi/Abilities/SharedAgillitySkillSystem.cs +++ /dev/null @@ -1,45 +0,0 @@ -using Robust.Shared.Timing; -using Robust.Shared.Physics.Systems; -using Robust.Shared.Physics; -using Content.Shared.Physics; -using Content.Shared.Popups; -using Robust.Shared.Physics.Events; -using Robust.Shared.Log; -using Content.Shared.Climbing.Systems; -using Content.Shared.Damage.Systems; -using Content.Shared.Actions; - -namespace Content.Shared._White.Resomi.Abilities; - -public abstract class SharedAgillitySkillSystem : EntitySystem -{ - [Dependency] protected readonly IGameTiming Timing = default!; - [Dependency] protected readonly SharedPopupSystem _popup = default!; - [Dependency] protected readonly ClimbSystem _climb = default!; - [Dependency] protected readonly StaminaSystem _stamina = default!; - [Dependency] protected readonly SharedActionsSystem _actions = default!; - - protected const int BaseCollisionGroup = (int)(CollisionGroup.MobMask); - - public override void Initialize() - { - SubscribeLocalEvent(DoJump); - SubscribeLocalEvent(OnHandleStateChange); - } - - private void DoJump(Entity ent, ref StartCollideEvent args) - { - if (!ent.Comp.Active || !ent.Comp.JumpEnabled - || args.OurFixture.CollisionMask != BaseCollisionGroup - || args.OtherFixture.CollisionMask != (int)CollisionGroup.TableMask) - return; - - _stamina.TryTakeStamina(ent.Owner, ent.Comp.StaminaDamageOnJump); - _climb.ForciblySetClimbing(ent.Owner, args.OtherEntity); - } - - private void OnHandleStateChange(Entity ent, ref SwitchAgillity args) - { - _actions.SetToggled(args.action.Owner, args.toggled); - } -} diff --git a/Content.Shared/_White/Resomi/Abilities/WeaponsUseInabilityComponent.cs b/Content.Shared/_White/Resomi/Abilities/WeaponsUseInabilityComponent.cs deleted file mode 100644 index a77a155c10..0000000000 --- a/Content.Shared/_White/Resomi/Abilities/WeaponsUseInabilityComponent.cs +++ /dev/null @@ -1,9 +0,0 @@ -namespace Content.Shared._White.Resomi.Abilities; - - -/// -/// It does not allow you to fire a weapon that requires two hands. -/// Increases the spread, as if shooting was conducted from one hand. -/// -[RegisterComponent] -public sealed partial class WeaponsUseInabilityComponent : Component; diff --git a/Content.Shared/_White/Resomi/SharedResomi.cs b/Content.Shared/_White/Resomi/SharedResomi.cs deleted file mode 100644 index 70c99f28b9..0000000000 --- a/Content.Shared/_White/Resomi/SharedResomi.cs +++ /dev/null @@ -1,15 +0,0 @@ -using Content.Shared.Actions; -using Content.Shared.DoAfter; -using Robust.Shared.Serialization; - -namespace Content.Shared._White.Resomi; - -public sealed partial class SwitchAgillityActionEvent : InstantActionEvent; - -/// -/// Rises when the action state changes -/// -/// Entity of Action that we want change the state -/// -[ByRefEvent] -public readonly record struct SwitchAgillity(Entity action, bool toggled); diff --git a/Resources/Audio/_White/Voice/Resomi/resomi_cough.ogg b/Resources/Audio/_White/Voice/Resomi/resomi_cough.ogg deleted file mode 100644 index 8e947ccb56..0000000000 Binary files a/Resources/Audio/_White/Voice/Resomi/resomi_cough.ogg and /dev/null differ diff --git a/Resources/Audio/_White/Voice/Resomi/resomi_laught.ogg b/Resources/Audio/_White/Voice/Resomi/resomi_laught.ogg deleted file mode 100644 index 47abcbd9ea..0000000000 Binary files a/Resources/Audio/_White/Voice/Resomi/resomi_laught.ogg and /dev/null differ diff --git a/Resources/Audio/_White/Voice/Resomi/resomi_scream.ogg b/Resources/Audio/_White/Voice/Resomi/resomi_scream.ogg deleted file mode 100644 index 77e37d6577..0000000000 Binary files a/Resources/Audio/_White/Voice/Resomi/resomi_scream.ogg and /dev/null differ diff --git a/Resources/Audio/_White/Voice/Resomi/resomi_sneeze.ogg b/Resources/Audio/_White/Voice/Resomi/resomi_sneeze.ogg deleted file mode 100644 index 76381ee8b8..0000000000 Binary files a/Resources/Audio/_White/Voice/Resomi/resomi_sneeze.ogg and /dev/null differ diff --git a/Resources/Locale/ru-RU/_white/abilitties/agillity.ftl b/Resources/Locale/ru-RU/_white/abilitties/agillity.ftl deleted file mode 100644 index 8de32edc57..0000000000 --- a/Resources/Locale/ru-RU/_white/abilitties/agillity.ftl +++ /dev/null @@ -1,2 +0,0 @@ -agility-activated-massage = Способность включена. -agility-deactivated-massage = Способность выключена. diff --git a/Resources/Locale/ru-RU/_white/accessories/resomi-hair.ftl b/Resources/Locale/ru-RU/_white/accessories/resomi-hair.ftl deleted file mode 100644 index f573106d6a..0000000000 --- a/Resources/Locale/ru-RU/_white/accessories/resomi-hair.ftl +++ /dev/null @@ -1,18 +0,0 @@ -marking-HairResomiBackstrafe = Резоми Завихренья -marking-HairResomiBurstShort = Резоми Всклокоченные короткие -marking-HairResomiDefault = Резоми Обычные -marking-HairResomiDroopy = Резоми Обвисшие -marking-HairResomiEars = Резоми Уши -marking-HairResomiFluffymohawk = Резоми Пушистый ирокез -marking-HairResomiHedge = Резоми Плетень -marking-HairResomiLongway = Резоми Коса -marking-HairResomiMane = Резоми Грива -marking-HairResomiManeBeardless = Резоми Грива (без бороды) -marking-HairResomiMohawk = Резоми Ирокез -marking-HairResomiMushroom = Резоми Грибная -marking-HairResomiNotree = Резоми Благородная -marking-HairResomiSpiky = Резоми Колючая -marking-HairResomiPointy = Резоми Заостренный -marking-HairResomiTwies = Резоми Двойная -marking-HairResomiUpright = Резоми Ровная -marking-HairResomiLong = Резоми Длинная diff --git a/Resources/Locale/ru-RU/_white/markings/resomi.ftl b/Resources/Locale/ru-RU/_white/markings/resomi.ftl deleted file mode 100644 index f020232fb2..0000000000 --- a/Resources/Locale/ru-RU/_white/markings/resomi.ftl +++ /dev/null @@ -1,26 +0,0 @@ -marking-ResomiTail = Резоми Хвост -marking-ResomiTail-tail = Резоми Хвост - -marking-ResomiTailFeathers = Хвостовое оперенье -marking-ResomiTailFeathers-tail_feathers = Хвостовое оперенье - -marking-ResomiLArmFeathers = Резоми Оперение левой руки -marking-ResomiLArmFeathers-l_hand_feathers = Резоми Оперение левой руки - -marking-ResomiLLegFeathers = Резоми Оперение левой ноги -marking-ResomiLLegFeathers-l_foot_feathers = Резоми Оперение левой ноги - -marking-ResomiRArmFeathers = Резоми Оперение правой руки -marking-ResomiRArmFeathers-r_hand_feathers = Резоми Оперение правой руки - -marking-ResomiRLegFeathers = Резоми Оперение правой ноги -marking-ResomiRLegFeathers-r_foot_feathers = Резоми Оперение правой ноги - -marking-ResomiFluff = Резоми Пух тела -marking-ResomiFluff-fluff = Резоми Пух тела - -marking-ResomiFluffHead = Резоми Пух на голове -marking-ResomiFluffHead-fluff_head = Резоми Пух на голове - -marking-ResomiFluffHeadUp = Резоми Пух на голове (верхний) -marking-ResomiFluffHeadUp-fluff_head_up = Резоми Пух на голове(верхний) diff --git a/Resources/Locale/ru-RU/_white/prototypes/actions/agility.ftl b/Resources/Locale/ru-RU/_white/prototypes/actions/agility.ftl deleted file mode 100644 index fc54892081..0000000000 --- a/Resources/Locale/ru-RU/_white/prototypes/actions/agility.ftl +++ /dev/null @@ -1,2 +0,0 @@ -ent-SwitchAgilityAction = Переключить ловкость. - .desc = Переключает способность к активному перемещению. diff --git a/Resources/Locale/ru-RU/_white/prototypes/body/parts/resomi.ftl b/Resources/Locale/ru-RU/_white/prototypes/body/parts/resomi.ftl deleted file mode 100644 index e727983d0e..0000000000 --- a/Resources/Locale/ru-RU/_white/prototypes/body/parts/resomi.ftl +++ /dev/null @@ -1,22 +0,0 @@ -ent-PartResomi = часть тела резоми - .desc = { ent-BaseItem.desc } -ent-TorsoResomi = туловище резоми - .desc = { ent-PartResomi.desc } -ent-HeadResomi = голова резоми - .desc = { ent-PartResomi.desc } -ent-LeftArmResomi = левая рука резоми - .desc = { ent-PartResomi.desc } -ent-RightArmResomi = правая рука резоми - .desc = { ent-PartResomi.desc } -ent-LeftHandResomi = левая кисть резоми - .desc = { ent-PartResomi.desc } -ent-RightHandResomi = правая кисть резоми - .desc = { ent-PartResomi.desc } -ent-LeftLegResomi = левая нога резоми - .desc = { ent-PartResomi.desc } -ent-RightLegResomi = правая нога резоми - .desc = { ent-PartResomi.desc } -ent-LeftFootResomi = левая стопа резоми - .desc = { ent-PartResomi.desc } -ent-RightFootResomi = правая стопа резоми - .desc = { ent-PartResomi.desc } diff --git a/Resources/Locale/ru-RU/_white/prototypes/entities/mobs/player/resomi.ftl b/Resources/Locale/ru-RU/_white/prototypes/entities/mobs/player/resomi.ftl deleted file mode 100644 index b44d1501aa..0000000000 --- a/Resources/Locale/ru-RU/_white/prototypes/entities/mobs/player/resomi.ftl +++ /dev/null @@ -1,2 +0,0 @@ -ent-MobResomi = Урист МакРезоми - .desc = { ent-BaseMobResomi.desc } diff --git a/Resources/Locale/ru-RU/_white/prototypes/entities/mobs/species/resomi.ftl b/Resources/Locale/ru-RU/_white/prototypes/entities/mobs/species/resomi.ftl deleted file mode 100644 index 2b8f181773..0000000000 --- a/Resources/Locale/ru-RU/_white/prototypes/entities/mobs/species/resomi.ftl +++ /dev/null @@ -1,5 +0,0 @@ -ent-BaseMobResomi = Урист МакРезоми - .desc = { ent-BaseMobSpeciesOrganic.desc } - .suffix = { "" } -ent-MobResomiDummy = { ent-BaseMobResomi } - .desc = { ent-BaseSpeciesDummy.desc } diff --git a/Resources/Locale/ru-RU/_white/reagents/biological.ftl b/Resources/Locale/ru-RU/_white/reagents/biological.ftl deleted file mode 100644 index 87c05a76ab..0000000000 --- a/Resources/Locale/ru-RU/_white/reagents/biological.ftl +++ /dev/null @@ -1,2 +0,0 @@ -reagent-name-resomi-blood = Фиолетовая кровь -reagent-desc-resomi-blood = Густая жидкость с резким аммиачным запахом diff --git a/Resources/Locale/ru-RU/_white/species/species.ftl b/Resources/Locale/ru-RU/_white/species/species.ftl deleted file mode 100644 index 4c52cdb828..0000000000 --- a/Resources/Locale/ru-RU/_white/species/species.ftl +++ /dev/null @@ -1 +0,0 @@ -species-name-resomi = Резоми diff --git a/Resources/Prototypes/_White/Actions/resomi.yml b/Resources/Prototypes/_White/Actions/resomi.yml deleted file mode 100644 index f793ce68b7..0000000000 --- a/Resources/Prototypes/_White/Actions/resomi.yml +++ /dev/null @@ -1,9 +0,0 @@ -- type: entity - id: SwitchAgilityAction - name: Switch agility - description: Switching agility - components: - - type: InstantAction - icon: _White/Mobs/Species/Resomi/Abilities/AgilityOff.png - iconOn: _White/Mobs/Species/Resomi/Abilities/AgilityOn.png - event: !type:SwitchAgillityActionEvent diff --git a/Resources/Prototypes/_White/Body/Parts/resomi.yml b/Resources/Prototypes/_White/Body/Parts/resomi.yml deleted file mode 100644 index 4701a7c4cf..0000000000 --- a/Resources/Prototypes/_White/Body/Parts/resomi.yml +++ /dev/null @@ -1,118 +0,0 @@ -- type: entity - id: PartResomi - parent: [BaseItem, BasePart] - name: "resomi body part" - abstract: true - components: - - type: Extractable - juiceSolution: - reagents: - - ReagentId: Fat - Quantity: 3 - - ReagentId: Blood - Quantity: 10 - -- type: entity - id: TorsoResomi - name: "resomi torso" - parent: [PartHuman, BaseTorso] - components: - - type: Sprite - sprite: _White/Mobs/Species/Resomi/parts.rsi - state: "torso_m" - - type: Extractable - juiceSolution: - reagents: - - ReagentId: Fat - Quantity: 10 - - ReagentId: Blood - Quantity: 20 - - -- type: entity - id: HeadResomi - name: "resomi head" - parent: [PartHuman, BaseHead] - components: - - type: Sprite - sprite: _White/Mobs/Species/Resomi/parts.rsi - state: "head_m" - - type: Extractable - juiceSolution: - reagents: - - ReagentId: Fat - Quantity: 5 - - ReagentId: Blood - Quantity: 10 - -- type: entity - id: LeftArmResomi - name: "left resomi arm" - parent: [PartHuman, BaseLeftArm] - components: - - type: Sprite - sprite: _White/Mobs/Species/Resomi/parts.rsi - state: "l_arm" - -- type: entity - id: RightArmResomi - name: "right resomi arm" - parent: [PartHuman, BaseRightArm] - components: - - type: Sprite - sprite: _White/Mobs/Species/Resomi/parts.rsi - state: "r_arm" - -- type: entity - id: LeftHandResomi - name: "left resomi hand" - parent: [PartHuman, BaseLeftHand] - components: - - type: Sprite - sprite: _White/Mobs/Species/Resomi/parts.rsi - state: "l_hand" - -- type: entity - id: RightHandResomi - name: "right resomi hand" - parent: [PartHuman, BaseRightHand] - components: - - type: Sprite - sprite: _White/Mobs/Species/Resomi/parts.rsi - state: "r_hand" - -- type: entity - id: LeftLegResomi - name: "left resomi leg" - parent: [PartHuman, BaseLeftLeg] - components: - - type: Sprite - sprite: _White/Mobs/Species/Resomi/parts.rsi - state: "l_leg" - -- type: entity - id: RightLegResomi - name: "right resomi leg" - parent: [PartHuman, BaseRightLeg] - components: - - type: Sprite - sprite: _White/Mobs/Species/Resomi/parts.rsi - state: "r_leg" - -- type: entity - id: LeftFootResomi - name: "left resomi foot" - parent: [PartHuman, BaseLeftFoot] - components: - - type: Sprite - sprite: _White/Mobs/Species/Resomi/parts.rsi - state: "l_foot" - -- type: entity - id: RightFootResomi - name: "right resomi foot" - parent: [PartHuman, BaseRightFoot] - components: - - type: Sprite - sprite: _White/Mobs/Species/Resomi/parts.rsi - state: "r_foot" diff --git a/Resources/Prototypes/_White/Body/Prototypes/resomi.yml b/Resources/Prototypes/_White/Body/Prototypes/resomi.yml deleted file mode 100644 index e05f759162..0000000000 --- a/Resources/Prototypes/_White/Body/Prototypes/resomi.yml +++ /dev/null @@ -1,49 +0,0 @@ -- type: body - id: Resomi - name: "resomi" - root: torso - slots: - head: - part: HeadResomi - connections: - - torso - organs: - brain: OrganHumanBrain - eyes: OrganHumanEyes - torso: - part: TorsoResomi - connections: - - right_arm - - left_arm - - right_leg - - left_leg - organs: - heart: OrganHumanHeart - lungs: OrganHumanLungs - stomach: OrganHumanStomach - liver: OrganHumanLiver - kidneys: OrganHumanKidneys - right_arm: - part: RightArmResomi - connections: - - right_hand - left_arm: - part: LeftArmResomi - connections: - - left_hand - right_hand: - part: RightHandResomi - left_hand: - part: LeftHandResomi - right_leg: - part: RightLegResomi - connections: - - right_foot - left_leg: - part: LeftLegResomi - connections: - - left_foot - right_foot: - part: RightFootResomi - left_foot: - part: LeftFootResomi diff --git a/Resources/Prototypes/_White/Damage/modifier_sets.yml b/Resources/Prototypes/_White/Damage/modifier_sets.yml deleted file mode 100644 index 3622ca9d8e..0000000000 --- a/Resources/Prototypes/_White/Damage/modifier_sets.yml +++ /dev/null @@ -1,9 +0,0 @@ -- type: damageModifierSet - id: Resomi # because they are weak in everything, but they are good against the cold - coefficients: - Cold: 0.6 - Heat: 1.3 - Blunt: 1.3 - Slash: 1.3 - Piercing: 1.3 - Shock: 1.3 diff --git a/Resources/Prototypes/_White/Datasets/Names/resomi_female.yml b/Resources/Prototypes/_White/Datasets/Names/resomi_female.yml deleted file mode 100644 index 9b2148ba71..0000000000 --- a/Resources/Prototypes/_White/Datasets/Names/resomi_female.yml +++ /dev/null @@ -1,55 +0,0 @@ -- type: dataset - id: names_resomi_female - values: - - Ялиа - - Тефани - - Натхани - - Ксилиа - - Лииши - - Реания - - Найша - - Юнзери - - Нашира - - Ташени - - Мелира - - Рилиа - - Инцера - - Ниареса - - Лирика - - Ширели - - Кали - - Месира - - Канира - - Лишейн - - Янира - - Ташхейл - - Ралима - - Шилера - - Ситилиан - - Яшани - - Лишика - - Ринира - - Шаениа - - Мелисс - - Тишиа - - Релен - - Зекрия - - Накира - - Яшира - - Леанс - - Милия - - Сульмия - - Ешщери - - Туалиси - - Ташира - - Нифлерия - - Рализа - - Шелия - - Насима - - Цениза - - Лешира - - Релика - - Ширима - - Ниалия - - Рири - - Лири diff --git a/Resources/Prototypes/_White/Datasets/Names/resomi_male.yml b/Resources/Prototypes/_White/Datasets/Names/resomi_male.yml deleted file mode 100644 index 2e68986b52..0000000000 --- a/Resources/Prototypes/_White/Datasets/Names/resomi_male.yml +++ /dev/null @@ -1,53 +0,0 @@ -- type: dataset - id: names_resomi_male - values: - - Теван - - Ниалор - - Марик - - Ауарис - - Исшар - - Латон - - Зарион - - Терви - - Аенири - - Церан - - Айтор - - Ризар - - Тевар - - Ниален - - Марис - - Аурок - - Хирант - - Латим - - Мерек - - Минар - - Аени - - Цетан - - Айсен - - Ситар - - Тензар - - Ниалус - - Марион - - Аурик - - Ровек - - Латир - - Менар - - Оксиус - - Аенор - - Целон - - Айдер - - Дюран - - Тевон - - Ниалун - - Марик - - Аурар - - Ишхам - - Латир - - Менис - - Минок - - Аеним - - Циран - - Ровек - - Синар - - Тевор - - Ниалом diff --git a/Resources/Prototypes/_White/Entities/Mobs/Customization/Markings/resomi.yml b/Resources/Prototypes/_White/Entities/Mobs/Customization/Markings/resomi.yml deleted file mode 100644 index 33acf1e7db..0000000000 --- a/Resources/Prototypes/_White/Entities/Mobs/Customization/Markings/resomi.yml +++ /dev/null @@ -1,82 +0,0 @@ -- type: marking - id: ResomiTail - bodyPart: Chest - markingCategory: Tail - speciesRestriction: [Resomi] - forcedColoring: true - sprites: - - sprite: _White/Mobs/Customization/resomi_parts.rsi - state: tail - -- type: marking - id: ResomiTailFeathers - bodyPart: Chest - markingCategory: Tail - speciesRestriction: [Resomi] - sprites: - - sprite: _White/Mobs/Customization/resomi_parts.rsi - state: tail_feathers - -- type: marking - id: ResomiLArmFeathers - bodyPart: LHand - markingCategory: LeftArm - speciesRestriction: [Resomi] - sprites: - - sprite: _White/Mobs/Customization/resomi_parts.rsi - state: l_hand_feathers - -- type: marking - id: ResomiLLegFeathers - bodyPart: LFoot - markingCategory: LeftLeg - speciesRestriction: [Resomi] - sprites: - - sprite: _White/Mobs/Customization/resomi_parts.rsi - state: l_foot_feathers - -- type: marking - id: ResomiRArmFeathers - bodyPart: RHand - markingCategory: RightArm - speciesRestriction: [Resomi] - sprites: - - sprite: _White/Mobs/Customization/resomi_parts.rsi - state: r_hand_feathers - -- type: marking - id: ResomiRLegFeathers - bodyPart: RFoot - markingCategory: RightLeg - speciesRestriction: [Resomi] - sprites: - - sprite: _White/Mobs/Customization/resomi_parts.rsi - state: r_foot_feathers - -- type: marking - id: ResomiFluff - bodyPart: Chest - markingCategory: Chest - speciesRestriction: [Resomi] - sprites: - - sprite: _White/Mobs/Customization/resomi_parts.rsi - state: fluff - -- type: marking - id: ResomiFluffHead - bodyPart: Head - markingCategory: Head - speciesRestriction: [Resomi] - sprites: - - sprite: _White/Mobs/Customization/resomi_parts.rsi - state: fluff_head - -- type: marking - id: ResomiFluffHeadUp - bodyPart: Head - markingCategory: Head - speciesRestriction: [Resomi] - sprites: - - sprite: _White/Mobs/Customization/resomi_parts.rsi - state: fluff_head_up - diff --git a/Resources/Prototypes/_White/Entities/Mobs/Customization/Markings/resomi_hair.yml b/Resources/Prototypes/_White/Entities/Mobs/Customization/Markings/resomi_hair.yml deleted file mode 100644 index 55865a96da..0000000000 --- a/Resources/Prototypes/_White/Entities/Mobs/Customization/Markings/resomi_hair.yml +++ /dev/null @@ -1,161 +0,0 @@ -- type: marking - id: HairResomiBackstrafe - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [Resomi] - sprites: - - sprite: _White/Mobs/Customization/resomi_hair.rsi - state: ResomiBackstrafe - -- type: marking - id: HairResomiBurstShort - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [Resomi] - sprites: - - sprite: _White/Mobs/Customization/resomi_hair.rsi - state: ResomiBurstShort - -- type: marking - id: HairResomiDefault - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [Resomi] - sprites: - - sprite: _White/Mobs/Customization/resomi_hair.rsi - state: ResomiDefault - -- type: marking - id: HairResomiDroopy - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [Resomi] - sprites: - - sprite: _White/Mobs/Customization/resomi_hair.rsi - state: ResomiDroopy - -- type: marking - id: HairResomiEars - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [Resomi] - sprites: - - sprite: _White/Mobs/Customization/resomi_hair.rsi - state: ResomiEars - -- type: marking - id: HairResomiFluffymohawk - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [Resomi] - sprites: - - sprite: _White/Mobs/Customization/resomi_hair.rsi - state: ResomiFluffymohawk - -- type: marking - id: HairResomiHedge - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [Resomi] - sprites: - - sprite: _White/Mobs/Customization/resomi_hair.rsi - state: ResomiHedge - -- type: marking - id: HairResomiLongway - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [Resomi] - sprites: - - sprite: _White/Mobs/Customization/resomi_hair.rsi - state: ResomiLongway - -- type: marking - id: HairResomiMane - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [Resomi] - sprites: - - sprite: _White/Mobs/Customization/resomi_hair.rsi - state: ResomiMane - -- type: marking - id: HairResomiManeBeardless - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [Resomi] - sprites: - - sprite: _White/Mobs/Customization/resomi_hair.rsi - state: ResomiManeBeardless - -- type: marking - id: HairResomiMohawk - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [Resomi] - sprites: - - sprite: _White/Mobs/Customization/resomi_hair.rsi - state: ResomiMohawk - -- type: marking - id: HairResomiMushroom - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [Resomi] - sprites: - - sprite: _White/Mobs/Customization/resomi_hair.rsi - state: ResomiMushroom - -- type: marking - id: HairResomiNotree - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [Resomi] - sprites: - - sprite: _White/Mobs/Customization/resomi_hair.rsi - state: ResomiNotree - -- type: marking - id: HairResomiSpiky - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [Resomi] - sprites: - - sprite: _White/Mobs/Customization/resomi_hair.rsi - state: ResomiSpiky - -- type: marking - id: HairResomiPointy - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [Resomi] - sprites: - - sprite: _White/Mobs/Customization/resomi_hair.rsi - state: ResomiPointy - -- type: marking - id: HairResomiTwies - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [Resomi] - sprites: - - sprite: _White/Mobs/Customization/resomi_hair.rsi - state: ResomiTwies - -- type: marking - id: HairResomiUpright - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [Resomi] - sprites: - - sprite: _White/Mobs/Customization/resomi_hair.rsi - state: ResomiUpright - -- type: marking - id: HairResomiLong - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [Resomi] - sprites: - - sprite: _White/Mobs/Customization/resomi_hair.rsi - state: ResomiLong diff --git a/Resources/Prototypes/_White/Entities/Player/resomi.yml b/Resources/Prototypes/_White/Entities/Player/resomi.yml deleted file mode 100644 index 24da066ca4..0000000000 --- a/Resources/Prototypes/_White/Entities/Player/resomi.yml +++ /dev/null @@ -1,5 +0,0 @@ -- type: entity - save: false - name: Urist McRaptor - parent: BaseMobResomi - id: MobResomi diff --git a/Resources/Prototypes/_White/Entities/Species/resomi.yml b/Resources/Prototypes/_White/Entities/Species/resomi.yml deleted file mode 100644 index 669a6ead2e..0000000000 --- a/Resources/Prototypes/_White/Entities/Species/resomi.yml +++ /dev/null @@ -1,232 +0,0 @@ -- type: entity - save: false - name: Urist McRaptor - parent: BaseMobSpeciesOrganic - id: BaseMobResomi - abstract: true - components: - - type: WeaponsUseInability - - type: AgillitySkill - - type: ChatModifier - whisperListeningRange: 4 - - type: ResomiAccent - - type: FootPrints - leftBarePrint: "footprint-left-bare-lizard" - rightBarePrint: "footprint-right-bare-lizard" - - type: DamageVisuals - thresholds: [ 10, 30, 50, 70] - targetLayers: - - "enum.HumanoidVisualLayers.Chest" - - "enum.HumanoidVisualLayers.Head" - - "enum.HumanoidVisualLayers.LArm" - - "enum.HumanoidVisualLayers.LLeg" - - "enum.HumanoidVisualLayers.RArm" - - "enum.HumanoidVisualLayers.RLeg" - damageOverlayGroups: - Brute: - sprite: _White/Mobs/Effects/Resomi/brute_damage.rsi - color: "#C048C2" - Burn: - sprite: _White/Mobs/Effects/Resomi/burn_damage.rsi - - type: FireVisuals - sprite: _White/Mobs/Effects/onfire.rsi - normalState: Resomi_minor_burning - alternateState: Resomi_burning - - type: Fixtures - fixtures: # TODO: This needs a second fixture just for mob collisions. - fix1: - shape: - !type:PhysShapeCircle - radius: 0.35 - # they r smaller - density: 120 - restitution: 0.0 - mask: - - MobMask - layer: - - MobLayer - - type: HumanoidAppearance - species: Resomi - - type: Hunger - - type: Puller - needsHands: false - - type: Thirst - - type: Icon - sprite: _White/Mobs/Species/Resomi/parts.rsi - state: full - - type: Damageable - damageContainer: Biological - damageModifierSet: Resomi - - type: Body - prototype: Resomi - requiredLegs: 2 - - type: Bloodstream - bloodReagent: ResomiBlood - - type: MeleeWeapon - soundHit: - collection: AlienClaw - angle: 30 - animation: WeaponArcClaw - damage: - types: - Slash: 5 - - type: Temperature - heatDamageThreshold: 325 - coldDamageThreshold: 230 - currentTemperature: 310.15 - specificHeat: 42 - coldDamage: - types: - Cold : 0.1 #per second, scales with temperature & other constants - heatDamage: - types: - Heat : 1.5 #per second, scales with temperature & other constants -# - type: TemperatureSpeed # Because dont have Temperature Speed System -# thresholds: -# 260: 0.8 -# 250: 0.6 -# 230: 0.4 - - type: ThermalRegulator - normalBodyTemperature: 300.15 - - type: Vocal - sounds: - Male: MaleResomi - Female: FemaleResomi - Unsexed: MaleResomi - - type: FlashModifier - modifier: 2 - - type: Hands - handDisplacement: - sizeMaps: - 32: - sprite: _White/Mobs/Species/Resomi/displacement.rsi - state: inHand - - type: Inventory - speciesId: resomi - displacements: - jumpsuit: - sizeMaps: - 32: - sprite: _White/Mobs/Species/Resomi/displacement.rsi - state: jumpsuit - eyes: - sizeMaps: - 32: - sprite: _White/Mobs/Species/Resomi/displacement.rsi - state: eyes - gloves: - sizeMaps: - 32: - sprite: _White/Mobs/Species/Resomi/displacement.rsi - state: hands - head: - sizeMaps: - 32: - sprite: _White/Mobs/Species/Resomi/displacement.rsi - state: head - back: - sizeMaps: - 32: - sprite: _White/Mobs/Species/Resomi/displacement.rsi - state: back - ears: - sizeMaps: - 32: - sprite: _White/Mobs/Species/Resomi/displacement.rsi - state: ears - shoes: - sizeMaps: - 32: - sprite: _White/Mobs/Species/Resomi/displacement.rsi - state: feet - neck: - sizeMaps: - 32: - sprite: _White/Mobs/Species/Resomi/displacement.rsi - state: neck - mask: - sizeMaps: - 32: - sprite: _White/Mobs/Species/Resomi/displacement.rsi - state: mask - suitstorage: - sizeMaps: - 32: - sprite: _White/Mobs/Species/Resomi/displacement.rsi - state: suitStorage - belt: - sizeMaps: - 32: - sprite: _White/Mobs/Species/Resomi/displacement.rsi - state: belt -- type: entity - parent: BaseSpeciesDummy - id: MobResomiDummy - categories: [ HideSpawnMenu ] - components: - - type: HumanoidAppearance - species: Resomi - - type: Hands - handDisplacement: - sizeMaps: - 32: - sprite: _White/Mobs/Species/Resomi/displacement.rsi - state: inHand - - type: Inventory - speciesId: resomi - displacements: - jumpsuit: - sizeMaps: - 32: - sprite: _White/Mobs/Species/Resomi/displacement.rsi - state: jumpsuit - eyes: - sizeMaps: - 32: - sprite: _White/Mobs/Species/Resomi/displacement.rsi - state: eyes - gloves: - sizeMaps: - 32: - sprite: _White/Mobs/Species/Resomi/displacement.rsi - state: hands - head: - sizeMaps: - 32: - sprite: _White/Mobs/Species/Resomi/displacement.rsi - state: head - back: - sizeMaps: - 32: - sprite: _White/Mobs/Species/Resomi/displacement.rsi - state: back - ears: - sizeMaps: - 32: - sprite: _White/Mobs/Species/Resomi/displacement.rsi - state: ears - shoes: - sizeMaps: - 32: - sprite: _White/Mobs/Species/Resomi/displacement.rsi - state: feet - neck: - sizeMaps: - 32: - sprite: _White/Mobs/Species/Resomi/displacement.rsi - state: neck - mask: - sizeMaps: - 32: - sprite: _White/Mobs/Species/Resomi/displacement.rsi - state: mask - suitstorage: - sizeMaps: - 32: - sprite: _White/Mobs/Species/Resomi/displacement.rsi - state: suitStorage - belt: - sizeMaps: - 32: - sprite: _White/Mobs/Species/Resomi/displacement.rsi - state: belt diff --git a/Resources/Prototypes/_White/Reagents/biological.yml b/Resources/Prototypes/_White/Reagents/biological.yml deleted file mode 100644 index 8bb24db5ee..0000000000 --- a/Resources/Prototypes/_White/Reagents/biological.yml +++ /dev/null @@ -1,11 +0,0 @@ -- type: reagent - parent: Blood - id: ResomiBlood - name: reagent-name-resomi-blood - group: Biological - desc: reagent-desc-resomi-blood - flavor: horrible - color: "#c048c2" - recognizable: true - physicalDesc: reagent-physical-desc-slimy - slippery: false diff --git a/Resources/Prototypes/_White/Recipes/Reactions/biological.yml b/Resources/Prototypes/_White/Recipes/Reactions/biological.yml deleted file mode 100644 index 0b84123035..0000000000 --- a/Resources/Prototypes/_White/Recipes/Reactions/biological.yml +++ /dev/null @@ -1,15 +0,0 @@ -- type: reaction - id: ResomiBloodBreakdown - source: true - requiredMixerCategories: - - Centrifuge - reactants: - ResomiBlood: - amount: 30 - products: - Water: 9 - Iron: 2 - Sugar: 1 - Nitrogen: 4 - CarbonDioxide: 3 - Protein: 4 diff --git a/Resources/Prototypes/_White/Species/resomi.yml b/Resources/Prototypes/_White/Species/resomi.yml deleted file mode 100644 index 047498d80c..0000000000 --- a/Resources/Prototypes/_White/Species/resomi.yml +++ /dev/null @@ -1,169 +0,0 @@ -- type: species - id: Resomi - name: species-name-resomi - roundStart: true - prototype: MobResomi - sprites: MobResomiSprites - defaultSkinTone: "#faf7f7" - markingLimits: MobResomiMarkingLimits - maleFirstNames: names_resomi_male - femaleFirstNames: names_resomi_female - naming: First - dollPrototype: MobResomiDummy - skinColoration: Hues - -- type: speciesBaseSprites - id: MobResomiSprites - sprites: - Head: MobResomiHead - Hair: MobResomiHair - Chest: MobResomiTorso - Eyes: MobResomiEyes - LArm: MobResomiLArm - RArm: MobResomiRArm - LHand: MobResomiLHand - RHand: MobResomiRHand - LLeg: MobResomiLLeg - RLeg: MobResomiRLeg - LFoot: MobResomiLFoot - RFoot: MobResomiRFoot - Tail: MobHumanoidAnyMarking - -- type: markingPoints - id: MobResomiMarkingLimits - onlyWhitelisted: true - points: - Hair: - points: 1 - required: false - Tail: - points: 2 - required: true - defaultMarkings: [ ResomiTail, ResomiTailFeathers ] - Head: - points: 2 - required: false - Chest: - points: 1 - required: false - RightLeg: - points: 2 - required: false - defaultMarkings: [ ResomiRLegFeathers ] - RightFoot: - points: 2 - required: false - LeftLeg: - points: 2 - required: false - defaultMarkings: [ ResomiLLegFeathers ] - LeftFoot: - points: 2 - required: false - RightArm: - points: 2 - required: false - defaultMarkings: [ ResomiRArmFeathers ] - RightHand: - points: 2 - required: false - LeftArm: - points: 2 - required: false - defaultMarkings: [ ResomiLArmFeathers ] - LeftHand: - points: 2 - required: false - -- type: humanoidBaseSprite - id: MobResomiEyes - baseSprite: - sprite: _White/Mobs/Customization/eyes.rsi - state: resomi - -- type: humanoidBaseSprite - id: MobResomiHair - -- type: humanoidBaseSprite - id: MobResomiHead - baseSprite: - sprite: _White/Mobs/Species/Resomi/parts.rsi - state: head_m - -- type: humanoidBaseSprite - id: MobResomiHeadMale - baseSprite: - sprite: _White/Mobs/Species/Resomi/parts.rsi - state: head_m - -- type: humanoidBaseSprite - id: MobResomiHeadFemale - baseSprite: - sprite: _White/Mobs/Species/Resomi/parts.rsi - state: head_f - -- type: humanoidBaseSprite - id: MobResomiTorso - baseSprite: - sprite: _White/Mobs/Species/Resomi/parts.rsi - state: torso_m - -- type: humanoidBaseSprite - id: MobResomiTorsoMale - baseSprite: - sprite: _White/Mobs/Species/Resomi/parts.rsi - state: torso_m - -- type: humanoidBaseSprite - id: MobResomiTorsoFemale - baseSprite: - sprite: _White/Mobs/Species/Resomi/parts.rsi - state: torso_f - -- type: humanoidBaseSprite - id: MobResomiLLeg - baseSprite: - sprite: _White/Mobs/Species/Resomi/parts.rsi - state: l_leg - -- type: humanoidBaseSprite - id: MobResomiLArm - baseSprite: - sprite: _White/Mobs/Species/Resomi/parts.rsi - state: l_arm - -- type: humanoidBaseSprite - id: MobResomiLHand - baseSprite: - sprite: _White/Mobs/Species/Resomi/parts.rsi - state: l_hand - -- type: humanoidBaseSprite - id: MobResomiLFoot - baseSprite: - sprite: _White/Mobs/Species/Resomi/parts.rsi - state: l_foot - -- type: humanoidBaseSprite - id: MobResomiRLeg - baseSprite: - sprite: _White/Mobs/Species/Resomi/parts.rsi - state: r_leg - -- type: humanoidBaseSprite - id: MobResomiRArm - baseSprite: - sprite: _White/Mobs/Species/Resomi/parts.rsi - state: r_arm - -- type: humanoidBaseSprite - id: MobResomiRHand - baseSprite: - sprite: _White/Mobs/Species/Resomi/parts.rsi - state: r_hand - -- type: humanoidBaseSprite - id: MobResomiRFoot - baseSprite: - sprite: _White/Mobs/Species/Resomi/parts.rsi - state: r_foot diff --git a/Resources/Prototypes/_White/Voice/speech_emote_sounds.yml b/Resources/Prototypes/_White/Voice/speech_emote_sounds.yml deleted file mode 100644 index 83cbdb08e2..0000000000 --- a/Resources/Prototypes/_White/Voice/speech_emote_sounds.yml +++ /dev/null @@ -1,56 +0,0 @@ -- type: emoteSounds - id: MaleResomi - params: - variation: 0.125 - sounds: - Scream: - path: /Audio/_White/Voice/Resomi/resomi_scream.ogg - Laugh: - path: /Audio/_White/Voice/Resomi/resomi_laught.ogg - Sneeze: - path: /Audio/_White/Voice/Resomi/resomi_sneeze.ogg - Cough: - path: /Audio/_White/Voice/Resomi/resomi_sneeze.ogg - Honk: - collection: BikeHorn - Whistle: - collection: Whistles - Crying: - collection: MaleCry - Weh: - collection: Weh - Yawn: - collection: MaleYawn - Snore: - collection: Snores - Sigh: - collection: MaleSigh - -- type: emoteSounds - id: FemaleResomi - params: - variation: 0.125 - sounds: - Scream: - path: /Audio/_White/Voice/Resomi/resomi_scream.ogg - Laugh: - path: /Audio/_White/Voice/Resomi/resomi_laught.ogg - Sneeze: - path: /Audio/_White/Voice/Resomi/resomi_sneeze.ogg - Cough: - path: /Audio/_White/Voice/Resomi/resomi_cough.ogg - Honk: - collection: BikeHorn - Whistle: - collection: Whistles - Crying: - collection: FemaleCry - Weh: - collection: Weh - Yawn: - collection: FemaleYawn - Snore: - collection: Snores - Sigh: - collection: FemaleSigh - diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/armor_reflec.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Armor/armor_reflec.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 25f4c8b77e..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Armor/armor_reflec.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/armor_reflec.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Armor/armor_reflec.rsi/meta.json index ccbe3ad399..5f95573206 100644 --- a/Resources/Textures/Clothing/OuterClothing/Armor/armor_reflec.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Armor/armor_reflec.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/dbc2435fa562f4ef130a7112d2a4cc9c80099894. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79, equipped-OUTERCLOTHING-resomi made by svarshiksatanist (Discord)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/dbc2435fa562f4ef130a7112d2a4cc9c80099894. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/bone_armor.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Armor/bone_armor.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 45d628e6c3..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Armor/bone_armor.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/bone_armor.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Armor/bone_armor.rsi/meta.json index 27ac504b36..e482264df5 100644 --- a/Resources/Textures/Clothing/OuterClothing/Armor/bone_armor.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Armor/bone_armor.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, equipped-OUTERCLOTHING-resomi made by svarshiksatanist (Discord)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/bulletproof.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Armor/bulletproof.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index ec73822d0f..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Armor/bulletproof.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/bulletproof.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Armor/bulletproof.rsi/meta.json index 102ff4f932..8b7a929fcd 100644 --- a/Resources/Textures/Clothing/OuterClothing/Armor/bulletproof.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Armor/bulletproof.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/ParadiseSS13/Paradise. Vox states by Flareguy for Space Station 14, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from https://github.com/ParadiseSS13/Paradise. Vox states by Flareguy for Space Station 14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/captain_carapace.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Armor/captain_carapace.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 197eb4e266..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Armor/captain_carapace.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/captain_carapace.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Armor/captain_carapace.rsi/meta.json index 338e76b429..db4b5ca121 100644 --- a/Resources/Textures/Clothing/OuterClothing/Armor/captain_carapace.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Armor/captain_carapace.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-4.0", - "copyright": "Made by WWDP Team, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 @@ -22,10 +22,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/cult_armour.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Armor/cult_armour.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 24de03ff2b..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Armor/cult_armour.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/cult_armour.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Armor/cult_armour.rsi/meta.json index 17aadd799d..5c326232e4 100644 --- a/Resources/Textures/Clothing/OuterClothing/Armor/cult_armour.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Armor/cult_armour.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-OUTERCLOTHING-vox state taken from Paradise at https://github.com/ParadiseSS13/Paradise/blob/fce54deb01d465957691ba2907218d4af4830db2/icons/mob/clothing/species/vox/suit.dmi and north sprite modified, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-OUTERCLOTHING-vox state taken from Paradise at https://github.com/ParadiseSS13/Paradise/blob/fce54deb01d465957691ba2907218d4af4830db2/icons/mob/clothing/species/vox/suit.dmi and north sprite modified", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/heavy.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Armor/heavy.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 3a4f2fa79a..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Armor/heavy.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/heavy.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Armor/heavy.rsi/meta.json index 7c88c10c4a..e482264df5 100644 --- a/Resources/Textures/Clothing/OuterClothing/Armor/heavy.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Armor/heavy.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/heavygreen.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Armor/heavygreen.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index dd971052ca..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Armor/heavygreen.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/heavygreen.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Armor/heavygreen.rsi/meta.json index 354ac244f5..232bec9c0a 100644 --- a/Resources/Textures/Clothing/OuterClothing/Armor/heavygreen.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Armor/heavygreen.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/heavyred.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Armor/heavyred.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 7aec1745d8..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Armor/heavyred.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/heavyred.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Armor/heavyred.rsi/meta.json index 354ac244f5..232bec9c0a 100644 --- a/Resources/Textures/Clothing/OuterClothing/Armor/heavyred.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Armor/heavyred.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/lingarmor.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Armor/lingarmor.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 6dcc3aaace..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Armor/lingarmor.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/lingarmor.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Armor/lingarmor.rsi/meta.json index 80e92f17c7..0249e35995 100644 --- a/Resources/Textures/Clothing/OuterClothing/Armor/lingarmor.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Armor/lingarmor.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/blob/master/icons/mob/clothing/suit.dmi, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/blob/master/icons/mob/clothing/suit.dmi", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/magusblue.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Armor/magusblue.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 45c0f6606d..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Armor/magusblue.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/magusblue.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Armor/magusblue.rsi/meta.json index 7c88c10c4a..e482264df5 100644 --- a/Resources/Textures/Clothing/OuterClothing/Armor/magusblue.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Armor/magusblue.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/magusred.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Armor/magusred.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 8dfc5aac0e..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Armor/magusred.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/magusred.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Armor/magusred.rsi/meta.json index 7c88c10c4a..e482264df5 100644 --- a/Resources/Textures/Clothing/OuterClothing/Armor/magusred.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Armor/magusred.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/podwars_armor.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Armor/podwars_armor.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index aa7c94d900..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Armor/podwars_armor.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/podwars_armor.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Armor/podwars_armor.rsi/meta.json index 9e13a8131b..97c559cbdc 100644 --- a/Resources/Textures/Clothing/OuterClothing/Armor/podwars_armor.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Armor/podwars_armor.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by patogrone (ss14 discord), equipped-OUTERCLOTHING-resomi made by svarshiksatanist (Discord)", + "copyright": "Made by patogrone (ss14 discord)", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/riot.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Armor/riot.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 04074ad021..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Armor/riot.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/riot.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Armor/riot.rsi/meta.json index 61e6ab5b78..26631d0281 100644 --- a/Resources/Textures/Clothing/OuterClothing/Armor/riot.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Armor/riot.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/ParadiseSS13/Paradise. Vox state by Flareguy for Space Station 14, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from https://github.com/ParadiseSS13/Paradise. Vox state by Flareguy for Space Station 14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/security.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Armor/security.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 8e2a88ee0b..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Armor/security.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/security.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Armor/security.rsi/meta.json index 9c0916dfb3..00bef7108a 100644 --- a/Resources/Textures/Clothing/OuterClothing/Armor/security.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Armor/security.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/ParadiseSS13/Paradise. Vox state by Flareguy for Space Station 14, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from https://github.com/ParadiseSS13/Paradise. Vox state by Flareguy for Space Station 14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/security_slim.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Armor/security_slim.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 8e2a88ee0b..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Armor/security_slim.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/security_slim.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Armor/security_slim.rsi/meta.json index 61e6ab5b78..26631d0281 100644 --- a/Resources/Textures/Clothing/OuterClothing/Armor/security_slim.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Armor/security_slim.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/ParadiseSS13/Paradise. Vox state by Flareguy for Space Station 14, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from https://github.com/ParadiseSS13/Paradise. Vox state by Flareguy for Space Station 14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/cmo.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Bio/cmo.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index a640eb460e..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Bio/cmo.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/cmo.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Bio/cmo.rsi/meta.json index e570917b36..29bae36917 100644 --- a/Resources/Textures/Clothing/OuterClothing/Bio/cmo.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Bio/cmo.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-4.0", - "copyright": "Made by WWDP Team, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/general.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Bio/general.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index cfc4b279aa..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Bio/general.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/general.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Bio/general.rsi/meta.json index e570917b36..29bae36917 100644 --- a/Resources/Textures/Clothing/OuterClothing/Bio/general.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Bio/general.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-4.0", - "copyright": "Made by WWDP Team, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/janitor.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Bio/janitor.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index bc34403549..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Bio/janitor.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/janitor.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Bio/janitor.rsi/meta.json index e570917b36..29bae36917 100644 --- a/Resources/Textures/Clothing/OuterClothing/Bio/janitor.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Bio/janitor.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-4.0", - "copyright": "Made by WWDP Team, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/scientist.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Bio/scientist.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 51e8e65746..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Bio/scientist.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/scientist.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Bio/scientist.rsi/meta.json index e570917b36..29bae36917 100644 --- a/Resources/Textures/Clothing/OuterClothing/Bio/scientist.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Bio/scientist.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-4.0", - "copyright": "Made by WWDP Team, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 866b22d803..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/meta.json index e570917b36..29bae36917 100644 --- a/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-4.0", - "copyright": "Made by WWDP Team, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/virology.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Bio/virology.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 8071efc732..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Bio/virology.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/virology.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Bio/virology.rsi/meta.json index e570917b36..29bae36917 100644 --- a/Resources/Textures/Clothing/OuterClothing/Bio/virology.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Bio/virology.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-4.0", - "copyright": "Made by WWDP Team, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/bomber.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Coats/bomber.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 827634e4b2..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/bomber.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/bomber.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/bomber.rsi/meta.json index 4a9c7f3d69..b90db15ea4 100644 --- a/Resources/Textures/Clothing/OuterClothing/Coats/bomber.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Coats/bomber.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-4.0", - "copyright": "Made by WWDP Team, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 @@ -21,10 +21,6 @@ "name": "open-equipped-OUTERCLOTHING", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/brigmedic.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Coats/brigmedic.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index b862b2928a..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/brigmedic.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/brigmedic.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/brigmedic.rsi/meta.json index 355d1ff25c..13bf861137 100644 --- a/Resources/Textures/Clothing/OuterClothing/Coats/brigmedic.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Coats/brigmedic.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Sprited by Hülle#2562 (Discord) for Space Station 14, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Sprited by Hülle#2562 (Discord) for Space Station 14", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/clownpriest.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Coats/clownpriest.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index f333f91e98..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/clownpriest.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/clownpriest.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/clownpriest.rsi/meta.json index ea59900da3..5991bba2cb 100644 --- a/Resources/Textures/Clothing/OuterClothing/Coats/clownpriest.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Coats/clownpriest.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-4.0", - "copyright": "Made by Purka based on sprite from TG, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Made by Purka based on sprite from TG", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-OUTERCLOTHING-body-slim", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/detective.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Coats/detective.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 007e47564b..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/detective.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/detective.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/detective.rsi/meta.json index a8033f43e6..1e59d3fef6 100644 --- a/Resources/Textures/Clothing/OuterClothing/Coats/detective.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Coats/detective.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-4.0", - "copyright": "Made by WWDP Team, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/dogi.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Coats/dogi.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 6a25c4b0dc..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/dogi.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/dogi.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/dogi.rsi/meta.json index 8772432375..9ecf4115a9 100644 --- a/Resources/Textures/Clothing/OuterClothing/Coats/dogi.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Coats/dogi.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by PuroSlavKing (github) for SS14, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Made by PuroSlavKing (github) for SS14", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/expensive_coat.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Coats/expensive_coat.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 896991cada..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/expensive_coat.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/expensive_coat.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/expensive_coat.rsi/meta.json index 2390b016f7..cc68d97d37 100644 --- a/Resources/Textures/Clothing/OuterClothing/Coats/expensive_coat.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Coats/expensive_coat.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from Paradise at https://github.com/ParadiseSS13/Paradise/blob/cae6017c486dbadef2b2d86ddc58d7226c17597c/icons/mob/clothing/suit.dmi, https://github.com/ParadiseSS13/Paradise/blob/cab0fa52972c777ec3929cc2e03a74088349486f/icons/obj/clothing/suits.dmi, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from Paradise at https://github.com/ParadiseSS13/Paradise/blob/cae6017c486dbadef2b2d86ddc58d7226c17597c/icons/mob/clothing/suit.dmi, https://github.com/ParadiseSS13/Paradise/blob/cab0fa52972c777ec3929cc2e03a74088349486f/icons/obj/clothing/suits.dmi", "size": { "x": 32, "y": 32 @@ -15,10 +15,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "icon" } diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/gentlecoat.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Coats/gentlecoat.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index dfea7fbe9a..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/gentlecoat.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/gentlecoat.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/gentlecoat.rsi/meta.json index 7c88c10c4a..e482264df5 100644 --- a/Resources/Textures/Clothing/OuterClothing/Coats/gentlecoat.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Coats/gentlecoat.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 5ee842c8b7..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/meta.json index 61bf47f118..29bae36917 100644 --- a/Resources/Textures/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/meta.json @@ -18,10 +18,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/jensencoat.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Coats/jensencoat.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 81dea3acfb..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/jensencoat.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/jensencoat.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/jensencoat.rsi/meta.json index 354ac244f5..232bec9c0a 100644 --- a/Resources/Textures/Clothing/OuterClothing/Coats/jensencoat.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Coats/jensencoat.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 78b2840074..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/meta.json index daf1e26823..f98abcffd7 100644 --- a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-4.0", - "copyright": "Made by WWDP Team, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 @@ -21,10 +21,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "open-equipped-OUTERCLOTHING", "directions": 4 @@ -33,10 +29,6 @@ "name": "open-equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "open-equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/open-equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/open-equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 6bdf4a60d7..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/open-equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 9eac64bf20..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/meta.json index daf1e26823..f98abcffd7 100644 --- a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-4.0", - "copyright": "Made by WWDP Team, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 @@ -21,10 +21,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "open-equipped-OUTERCLOTHING", "directions": 4 @@ -33,10 +29,6 @@ "name": "open-equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "open-equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/open-equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/open-equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index c448875394..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/open-equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index da3cfc6d98..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/meta.json index daf1e26823..f98abcffd7 100644 --- a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-4.0", - "copyright": "Made by WWDP Team, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 @@ -21,10 +21,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "open-equipped-OUTERCLOTHING", "directions": 4 @@ -33,10 +29,6 @@ "name": "open-equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "open-equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/open-equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/open-equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index e2fad18087..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/open-equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_gene.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_gene.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 7bef73993f..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_gene.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_gene.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_gene.rsi/meta.json index 2e956d1a75..2311851853 100644 --- a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_gene.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_gene.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", "size": { "x": 32, "y": 32 @@ -29,14 +29,6 @@ "name": "open-equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, - { - "name": "open-equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_gene.rsi/open-equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_gene.rsi/open-equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index b7be0aae4a..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_gene.rsi/open-equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_robo.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_robo.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index d502ac0ec2..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_robo.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_robo.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_robo.rsi/meta.json index ac6868a34c..415d267995 100644 --- a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_robo.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_robo.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", "size": { "x": 32, "y": 32 @@ -21,14 +21,6 @@ "name": "open-equipped-OUTERCLOTHING", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, - { - "name": "open-equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_robo.rsi/open-equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_robo.rsi/open-equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index c9c475719b..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_robo.rsi/open-equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_senior_physician.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_senior_physician.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index ed7902c937..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_senior_physician.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_senior_physician.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_senior_physician.rsi/meta.json index de378ed4bb..46a5d33e01 100644 --- a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_senior_physician.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_senior_physician.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Edit by Nairodian (github) of labcoat.rsi from Space-Station-14 at pull request https://github.com/space-wizards/space-station-14/pull/10758, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Edit by Nairodian (github) of labcoat.rsi from Space-Station-14 at pull request https://github.com/space-wizards/space-station-14/pull/10758,", "size": { "x": 32, "y": 32 @@ -21,14 +21,6 @@ "name": "open-equipped-OUTERCLOTHING", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, - { - "name": "open-equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_senior_physician.rsi/open-equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_senior_physician.rsi/open-equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 6b2e461a58..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_senior_physician.rsi/open-equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_senior_researcher.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_senior_researcher.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index f15bdd5575..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_senior_researcher.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_senior_researcher.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_senior_researcher.rsi/meta.json index 1a41a2e323..dd16b8c78e 100644 --- a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_senior_researcher.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_senior_researcher.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Edit by Nairodian (github) of labcoat.rsi from Space-Station-14 at commit https://github.com/space-wizards/space-station-14/pull/10758, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Edit by Nairodian (github) of labcoat.rsi from Space-Station-14 at commit https://github.com/space-wizards/space-station-14/pull/10758", "size": { "x": 32, "y": 32 @@ -21,14 +21,6 @@ "name": "open-equipped-OUTERCLOTHING", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, - { - "name": "open-equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_senior_researcher.rsi/open-equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_senior_researcher.rsi/open-equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index b96b068408..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_senior_researcher.rsi/open-equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_viro.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_viro.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 290a4e07c6..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_viro.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_viro.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_viro.rsi/meta.json index efce88b523..f98abcffd7 100644 --- a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_viro.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_viro.rsi/meta.json @@ -29,14 +29,6 @@ "name": "open-equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, - { - "name": "open-equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_viro.rsi/open-equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_viro.rsi/open-equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index ed1a57009c..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_viro.rsi/open-equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/pirate.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Coats/pirate.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 55ebd32e77..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/pirate.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/pirate.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/pirate.rsi/meta.json index ab5a0f7454..232bec9c0a 100644 --- a/Resources/Textures/Clothing/OuterClothing/Coats/pirate.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Coats/pirate.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79, sprites for resomi made by Pofitlo", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/space_asshole.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Coats/space_asshole.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 1b2864960a..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/space_asshole.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/space_asshole.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/space_asshole.rsi/meta.json index 558856f528..70ee956fea 100644 --- a/Resources/Textures/Clothing/OuterClothing/Coats/space_asshole.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Coats/space_asshole.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC0-1.0", - "copyright": "Made by Github user Psychpsyo for Space Station 14, sprites for resomi made by Pofitlo", + "copyright": "Made by Github user Psychpsyo for Space Station 14", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/syndicate/coatsyndiecap.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Coats/syndicate/coatsyndiecap.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index c2d6487066..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/syndicate/coatsyndiecap.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/syndicate/coatsyndiecap.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/syndicate/coatsyndiecap.rsi/meta.json index 26546c72c1..eadf9c61d4 100644 --- a/Resources/Textures/Clothing/OuterClothing/Coats/syndicate/coatsyndiecap.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Coats/syndicate/coatsyndiecap.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Sprited by belay5 (Discord), sprites for resomi made by Pofitlo", + "copyright": "Sprited by belay5 (Discord)", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/syndicate/coatsyndiecaparmored.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Coats/syndicate/coatsyndiecaparmored.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 4d62774470..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/syndicate/coatsyndiecaparmored.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/syndicate/coatsyndiecaparmored.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/syndicate/coatsyndiecaparmored.rsi/meta.json index 26546c72c1..eadf9c61d4 100644 --- a/Resources/Textures/Clothing/OuterClothing/Coats/syndicate/coatsyndiecaparmored.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Coats/syndicate/coatsyndiecaparmored.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Sprited by belay5 (Discord), sprites for resomi made by Pofitlo", + "copyright": "Sprited by belay5 (Discord)", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/trenchcoat.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Coats/trenchcoat.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index e88ee65900..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/trenchcoat.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/trenchcoat.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/trenchcoat.rsi/meta.json index f2b9cb2b52..4028e552d3 100644 --- a/Resources/Textures/Clothing/OuterClothing/Coats/trenchcoat.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Coats/trenchcoat.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from paradise at commit https://github.com/ParadiseSS13/Paradise/pull/19491/commits/e9a900022ca1cf0fed0e320c7a0cce500287ab99, sprites for resomi made by Pofitlo", + "copyright": "Taken from paradise at commit https://github.com/ParadiseSS13/Paradise/pull/19491/commits/e9a900022ca1cf0fed0e320c7a0cce500287ab99", "size": { "x": 32, "y": 32 @@ -21,14 +21,6 @@ "name": "open-equipped-OUTERCLOTHING", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, - { - "name": "open-equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/trenchcoat.rsi/open-equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Coats/trenchcoat.rsi/open-equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index b6447e420d..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/trenchcoat.rsi/open-equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 7789bc785e..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/meta.json index e570917b36..29bae36917 100644 --- a/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-4.0", - "copyright": "Made by WWDP Team, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/windbreaker_paramedic.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Coats/windbreaker_paramedic.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 07fece3f22..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/windbreaker_paramedic.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/windbreaker_paramedic.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/windbreaker_paramedic.rsi/meta.json index cd809e7989..8e0b18f9a2 100644 --- a/Resources/Textures/Clothing/OuterClothing/Coats/windbreaker_paramedic.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Coats/windbreaker_paramedic.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by MagnusCrowe (Github) for SS14, sprites for resomi made by Pofitlo", + "copyright": "Made by MagnusCrowe (Github) for SS14", "size": { "x": 32, "y": 32 @@ -21,14 +21,6 @@ "name": "open-equipped-OUTERCLOTHING", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, - { - "name": "open-equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/windbreaker_paramedic.rsi/open-equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Coats/windbreaker_paramedic.rsi/open-equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 366f847bf3..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/windbreaker_paramedic.rsi/open-equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertengineer.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertengineer.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 9c464f9513..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertengineer.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertengineer.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertengineer.rsi/meta.json index 367bf84ec2..b7b0719efa 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertengineer.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertengineer.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from paradisestation at commit https://github.com/ParadiseSS13/Paradise/commit/12c21ced8432015485484b17e311dcceb7c458f6. Vox state by Flareguy for Space Station 14, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from paradisestation at commit https://github.com/ParadiseSS13/Paradise/commit/12c21ced8432015485484b17e311dcceb7c458f6. Vox state by Flareguy for Space Station 14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertjanitor.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertjanitor.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index dbc7d4480e..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertjanitor.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertjanitor.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertjanitor.rsi/meta.json index 05ceca6114..6de2d485b8 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertjanitor.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertjanitor.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from paradisestation at commit https://github.com/ParadiseSS13/Paradise/commit/12c21ced8432015485484b17e311dcceb7c458f6. Vox sprite by Flareguy for Space Station 14, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from paradisestation at commit https://github.com/ParadiseSS13/Paradise/commit/12c21ced8432015485484b17e311dcceb7c458f6. Vox sprite by Flareguy for Space Station 14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertleader.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertleader.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 000826a386..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertleader.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertleader.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertleader.rsi/meta.json index 05ceca6114..6de2d485b8 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertleader.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertleader.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from paradisestation at commit https://github.com/ParadiseSS13/Paradise/commit/12c21ced8432015485484b17e311dcceb7c458f6. Vox sprite by Flareguy for Space Station 14, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from paradisestation at commit https://github.com/ParadiseSS13/Paradise/commit/12c21ced8432015485484b17e311dcceb7c458f6. Vox sprite by Flareguy for Space Station 14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertmedical.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertmedical.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 8bd0b7c683..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertmedical.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertmedical.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertmedical.rsi/meta.json index cc998f0fc6..daa64b2f5c 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertmedical.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertmedical.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from paradisestation at commit https://github.com/ParadiseSS13/Paradise/commit/12c21ced8432015485484b17e311dcceb7c458f6. Vox sprite made by Flareguy, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from paradisestation at commit https://github.com/ParadiseSS13/Paradise/commit/12c21ced8432015485484b17e311dcceb7c458f6. Vox sprite made by Flareguy", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertsecurity.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertsecurity.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index c58e3fbad0..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertsecurity.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertsecurity.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertsecurity.rsi/meta.json index 05ceca6114..6de2d485b8 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertsecurity.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertsecurity.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from paradisestation at commit https://github.com/ParadiseSS13/Paradise/commit/12c21ced8432015485484b17e311dcceb7c458f6. Vox sprite by Flareguy for Space Station 14, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from paradisestation at commit https://github.com/ParadiseSS13/Paradise/commit/12c21ced8432015485484b17e311dcceb7c458f6. Vox sprite by Flareguy for Space Station 14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/atmospherics.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/atmospherics.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 4b2673d2a7..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/atmospherics.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/atmospherics.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/atmospherics.rsi/meta.json index 2ff91f2d32..5658fcde4e 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/atmospherics.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/atmospherics.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-4.0", - "copyright": "Made by WWDP team, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Made by WWDP team", "size": { "x": 32, "y": 32 @@ -22,10 +22,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "equipped-OUTERCLOTHING-unshaded", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/basic.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/basic.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 9fd8a97725..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/basic.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/basic.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/basic.rsi/meta.json index 48c846c4bb..3067907ba9 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/basic.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/basic.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/40d89d11ea4a5cb81d61dc1018b46f4e7d32c62a. Further modifications and derivate works (inhand-left and inhand-right) under same license, derivative monkey made by brainfood1183 (github) for ss14, harpy by VMSolidus, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/40d89d11ea4a5cb81d61dc1018b46f4e7d32c62a. Further modifications and derivate works (inhand-left and inhand-right) under same license, derivative monkey made by brainfood1183 (github) for ss14, harpy by VMSolidus", "size": { "x": 32, "y": 32 @@ -22,10 +22,6 @@ "name": "equipped-OUTERCLOTHING-harpy", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/brigmedic.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/brigmedic.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 2d516c93d0..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/brigmedic.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/brigmedic.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/brigmedic.rsi/meta.json index 74fd85e692..6cfe1ea214 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/brigmedic.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/brigmedic.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by PuroSlavKing (github) for SS14, harpy by VMSolidus, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Made by PuroSlavKing (github) for SS14, harpy by VMSolidus", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-OUTERCLOTHING-harpy", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 3d1fdaaba0..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/meta.json index 72ae6cd102..364b3c0e27 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-4.0", - "copyright": "Made by WWDP team, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Made by WWDP team", "size": { "x": 32, "y": 32 @@ -22,10 +22,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/clown.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/clown.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 50a635e360..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/clown.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/clown.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/clown.rsi/meta.json index aaea62785a..a89c02d404 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/clown.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/clown.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-4.0", - "copyright": "Made by Purka based on sprite from TG, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Made by Purka based on sprite from TG", "size": { "x": 32, "y": 32 @@ -22,10 +22,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/cybersun.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/cybersun.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 734b710f80..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/cybersun.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/cybersun.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/cybersun.rsi/meta.json index 826e652484..a361537679 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/cybersun.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/cybersun.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-4.0", - "copyright": "Made by WWDP team, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Made by WWDP team", "size": { "x": 32, "y": 32 @@ -22,10 +22,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/deathsquad.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/deathsquad.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 2d945174bc..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/deathsquad.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/deathsquad.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/deathsquad.rsi/meta.json index 72ae6cd102..364b3c0e27 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/deathsquad.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/deathsquad.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-4.0", - "copyright": "Made by WWDP team, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Made by WWDP team", "size": { "x": 32, "y": 32 @@ -22,10 +22,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-white.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-white.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index d41cfc309a..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-white.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-white.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-white.rsi/meta.json index 2ff91f2d32..5658fcde4e 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-white.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-white.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-4.0", - "copyright": "Made by WWDP team, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Made by WWDP team", "size": { "x": 32, "y": 32 @@ -22,10 +22,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "equipped-OUTERCLOTHING-unshaded", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 0a185bd59f..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering.rsi/meta.json index 2ff91f2d32..5658fcde4e 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-4.0", - "copyright": "Made by WWDP team, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Made by WWDP team", "size": { "x": 32, "y": 32 @@ -22,10 +22,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "equipped-OUTERCLOTHING-unshaded", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/lingspacesuit.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/lingspacesuit.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index cd1b7c5572..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/lingspacesuit.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/lingspacesuit.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/lingspacesuit.rsi/meta.json index 80e92f17c7..0249e35995 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/lingspacesuit.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/lingspacesuit.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/blob/master/icons/mob/clothing/suit.dmi, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/blob/master/icons/mob/clothing/suit.dmi", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/luxury.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/luxury.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index a1a0c61721..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/luxury.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/luxury.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/luxury.rsi/meta.json index 72ae6cd102..364b3c0e27 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/luxury.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/luxury.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-4.0", - "copyright": "Made by WWDP team, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Made by WWDP team", "size": { "x": 32, "y": 32 @@ -22,10 +22,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/maxim.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/maxim.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 26a3f75951..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/maxim.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/maxim.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/maxim.rsi/meta.json index 8f55625e72..9acde9a4de 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/maxim.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/maxim.rsi/meta.json @@ -1,34 +1,30 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/6b3f58d7de4d4e374282819a7001eaa9bde1676d, equipped-OUTERCLOTHING-resomi made by svarshiksatanist (Discord)", - "size": { - "x": 32, - "y": 32 + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/6b3f58d7de4d4e374282819a7001eaa9bde1676d. Vox state made by Flareguy for SS14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-vox", - "directions": 4 - } - ] -} + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/medical.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/medical.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index ae7c2c1d1d..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/medical.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/medical.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/medical.rsi/meta.json index 8504ace0b5..0a78966c1d 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/medical.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/medical.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox state made by Flareguy for SS14, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox state made by Flareguy for SS14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/mime.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/mime.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 7afb23d0ab..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/mime.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/mime.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/mime.rsi/meta.json index 67edb5bab3..a5f992108c 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/mime.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/mime.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, modified by brainfood1183 (github), sprited(resprited) by Fazansen(https://github.com/Fazansen), equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, modified by brainfood1183 (github), sprited(resprited) by Fazansen(https://github.com/Fazansen)", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/paramed.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/paramed.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 1707fd74df..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/paramed.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/paramed.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/paramed.rsi/meta.json index 72ae6cd102..364b3c0e27 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/paramed.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/paramed.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-4.0", - "copyright": "Made by WWDP team, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Made by WWDP team", "size": { "x": 32, "y": 32 @@ -22,10 +22,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/piratecaptain.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/piratecaptain.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index c440b11eb1..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/piratecaptain.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/piratecaptain.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/piratecaptain.rsi/meta.json index c279109169..8663673f5c 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/piratecaptain.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/piratecaptain.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by brainfood1183 (Github) for ss14. Vox state made by Flareguy for SS14, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Made by brainfood1183 (Github) for ss14. Vox state made by Flareguy for SS14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/pirateeva.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/pirateeva.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 7639085f20..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/pirateeva.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/pirateeva.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/pirateeva.rsi/meta.json index c279109169..8663673f5c 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/pirateeva.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/pirateeva.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by brainfood1183 (Github) for ss14. Vox state made by Flareguy for SS14, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Made by brainfood1183 (Github) for ss14. Vox state made by Flareguy for SS14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/rd.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/rd.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 42c4464263..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/rd.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/rd.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/rd.rsi/meta.json index 72ae6cd102..364b3c0e27 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/rd.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/rd.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-4.0", - "copyright": "Made by WWDP team, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Made by WWDP team", "size": { "x": 32, "y": 32 @@ -22,10 +22,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/salvage.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/salvage.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index d007548d09..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/salvage.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/salvage.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/salvage.rsi/meta.json index 72ae6cd102..364b3c0e27 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/salvage.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/salvage.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-4.0", - "copyright": "Made by WWDP team, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Made by WWDP team", "size": { "x": 32, "y": 32 @@ -22,10 +22,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/santahardsuit.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/santahardsuit.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 82260fda53..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/santahardsuit.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/santahardsuit.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/santahardsuit.rsi/meta.json index 3088adb1b2..eb28d4c8a1 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/santahardsuit.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/santahardsuit.rsi/meta.json @@ -1,34 +1,30 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Edited by StanTheCarpenter. Originally taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, equipped-OUTERCLOTHING-resomi made by svarshiksatanist (Discord)", - "size": { - "x": 32, - "y": 32 + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Edited by StanTheCarpenter. Originally taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox state made by Flareguy for SS14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-vox", - "directions": 4 - } - ] + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 42df082df3..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.rsi/meta.json index c8220d8ca9..2e0f6a298e 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-4.0", - "copyright": "Made by WWDP team, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Made by WWDP team", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index ad383d4368..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/meta.json index c8220d8ca9..2e0f6a298e 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-4.0", - "copyright": "Made by WWDP team, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Made by WWDP team", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 859dae8bde..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/meta.json index c8220d8ca9..2e0f6a298e 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-4.0", - "copyright": "Made by WWDP team, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Made by WWDP team", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/spatio.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/spatio.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index bb5cba1c4e..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/spatio.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/spatio.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/spatio.rsi/meta.json index 9fde7f5e46..eb56f9737d 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/spatio.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/spatio.rsi/meta.json @@ -2,7 +2,7 @@ { "version": 1, "license": "CC-BY-SA-4.0", - "copyright": "Made by WWDP team, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Made by WWDP team", "size": { "x": 32, @@ -24,10 +24,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index e97832c84a..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate.rsi/meta.json index 99e529262b..f57e352d87 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-4.0", - "copyright": "Made by WWDP team, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Made by WWDP team", "size": { "x": 32, "y": 32 @@ -26,10 +26,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndiecommander.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndiecommander.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index adc3727a93..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndiecommander.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndiecommander.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndiecommander.rsi/meta.json index 826e652484..a361537679 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndiecommander.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndiecommander.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-4.0", - "copyright": "Made by WWDP team, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Made by WWDP team", "size": { "x": 32, "y": 32 @@ -22,10 +22,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 93e51f0d88..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/meta.json index 826e652484..a361537679 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-4.0", - "copyright": "Made by WWDP team, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Made by WWDP team", "size": { "x": 32, "y": 32 @@ -22,10 +22,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndiemedic.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndiemedic.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index cb354b5360..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndiemedic.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndiemedic.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndiemedic.rsi/meta.json index 623f207bfc..2026bba893 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndiemedic.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndiemedic.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Based on tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, modified by EmoGarbage404 (github), harpy by VMSolidus. Vox state made by Flareguy for SS14, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Based on tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, modified by EmoGarbage404 (github), harpy by VMSolidus. Vox state made by Flareguy for SS14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/wizard.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/wizard.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index e97ee129fc..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/wizard.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/wizard.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/wizard.rsi/meta.json index 6d7071feb6..15aef26a56 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/wizard.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/wizard.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox state made by Flareguy for SS14, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox state made by Flareguy for SS14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/apron.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Misc/apron.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 4ff622fe9e..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Misc/apron.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/apron.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/apron.rsi/meta.json index 05b2c2562d..e482264df5 100644 --- a/Resources/Textures/Clothing/OuterClothing/Misc/apron.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Misc/apron.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, equipped-OUTERCLOTHING-resomi made by svarshiksatanist (Discord)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/apronbar.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Misc/apronbar.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 69e04500e3..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Misc/apronbar.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/apronbar.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/apronbar.rsi/meta.json index fcadafa74a..905cf722ce 100644 --- a/Resources/Textures/Clothing/OuterClothing/Misc/apronbar.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Misc/apronbar.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Edited from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, equipped-OUTERCLOTHING-resomi made by svarshiksatanist (Discord)", + "copyright": "Edited from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/apronbotanist.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Misc/apronbotanist.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index b82233aef2..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Misc/apronbotanist.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/apronbotanist.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/apronbotanist.rsi/meta.json index aec6f25b88..232bec9c0a 100644 --- a/Resources/Textures/Clothing/OuterClothing/Misc/apronbotanist.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Misc/apronbotanist.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79, equipped-OUTERCLOTHING-resomi made by svarshiksatanist (Discord)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/apronchef.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Misc/apronchef.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 6dfc6f1eba..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Misc/apronchef.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/apronchef.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/apronchef.rsi/meta.json index aec6f25b88..232bec9c0a 100644 --- a/Resources/Textures/Clothing/OuterClothing/Misc/apronchef.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Misc/apronchef.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79, equipped-OUTERCLOTHING-resomi made by svarshiksatanist (Discord)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/black_hoodie.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Misc/black_hoodie.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 7dca175fd9..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Misc/black_hoodie.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/black_hoodie.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/black_hoodie.rsi/meta.json index 5b5fa926c0..442bfb2920 100644 --- a/Resources/Textures/Clothing/OuterClothing/Misc/black_hoodie.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Misc/black_hoodie.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, equipped-OUTERCLOTHING-resomi made by svarshiksatanist (Discord)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", "size": { "x": 32, "y": 32 @@ -17,18 +17,10 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "open-equipped-OUTERCLOTHING", "directions": 4 }, - { - "name": "open-equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/black_hoodie.rsi/open-equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Misc/black_hoodie.rsi/open-equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 77feb1f60d..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Misc/black_hoodie.rsi/open-equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/cardborg.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Misc/cardborg.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 682eb15b71..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Misc/cardborg.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/cardborg.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/cardborg.rsi/meta.json index 6d7071feb6..15aef26a56 100644 --- a/Resources/Textures/Clothing/OuterClothing/Misc/cardborg.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Misc/cardborg.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox state made by Flareguy for SS14, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox state made by Flareguy for SS14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/chaplain_hoodie.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Misc/chaplain_hoodie.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index c731f482ea..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Misc/chaplain_hoodie.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/chaplain_hoodie.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/chaplain_hoodie.rsi/meta.json index 05b2c2562d..e482264df5 100644 --- a/Resources/Textures/Clothing/OuterClothing/Misc/chaplain_hoodie.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Misc/chaplain_hoodie.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, equipped-OUTERCLOTHING-resomi made by svarshiksatanist (Discord)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/chef.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Misc/chef.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 182dcbd273..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Misc/chef.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/chef.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/chef.rsi/meta.json index 354ac244f5..232bec9c0a 100644 --- a/Resources/Textures/Clothing/OuterClothing/Misc/chef.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Misc/chef.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/classicponcho.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Misc/classicponcho.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 17562514c0..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Misc/classicponcho.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/classicponcho.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/classicponcho.rsi/meta.json index 261f997190..21cd9257fd 100644 --- a/Resources/Textures/Clothing/OuterClothing/Misc/classicponcho.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Misc/classicponcho.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-OUTERCLOTHING-vox state taken from Paradise at https://github.com/ParadiseSS13/Paradise/blob/fce54deb01d465957691ba2907218d4af4830db2/icons/mob/clothing/species/vox/suit.dmi, equipped-OUTERCLOTHING-resomi made by svarshiksatanist (Discord)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-OUTERCLOTHING-vox state taken from Paradise at https://github.com/ParadiseSS13/Paradise/blob/fce54deb01d465957691ba2907218d4af4830db2/icons/mob/clothing/species/vox/suit.dmi", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/cultrobes.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Misc/cultrobes.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index c40977e091..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Misc/cultrobes.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/cultrobes.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/cultrobes.rsi/meta.json index 7c88c10c4a..e482264df5 100644 --- a/Resources/Textures/Clothing/OuterClothing/Misc/cultrobes.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Misc/cultrobes.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/flannel_jacket.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Misc/flannel_jacket.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index f5c78416d9..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Misc/flannel_jacket.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/flannel_jacket.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/flannel_jacket.rsi/meta.json index 5b8cdd12ca..7b4a51dfa4 100644 --- a/Resources/Textures/Clothing/OuterClothing/Misc/flannel_jacket.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Misc/flannel_jacket.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Sprites by nmajask (Github) for SS14, equipped-OUTERCLOTHING-resomi made by svarshiksatanist (Discord)", + "copyright": "Sprites by nmajask (Github) for SS14", "size": { "x": 32, "y": 32 @@ -17,10 +17,6 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "equipped-OUTERCLOTHING-lines", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/ghostsheet.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Misc/ghostsheet.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 0921a3bf4f..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Misc/ghostsheet.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/ghostsheet.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/ghostsheet.rsi/meta.json index b67022a3bd..ccfd0c0303 100644 --- a/Resources/Textures/Clothing/OuterClothing/Misc/ghostsheet.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Misc/ghostsheet.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/pull/38809, equipped-OUTERCLOTHING-resomi made by svarshiksatanist (Discord)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/pull/38809. Vox state by Flareguy for SS1", "size": { "x": 32, "y": 32 @@ -15,7 +15,7 @@ "directions": 4 }, { - "name": "equipped-OUTERCLOTHING-resomi", + "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, { @@ -25,10 +25,6 @@ { "name": "inhand-right", "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-vox", - "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/grey_hoodie.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Misc/grey_hoodie.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 279bf73c8b..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Misc/grey_hoodie.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/grey_hoodie.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/grey_hoodie.rsi/meta.json index 121800e7e5..b5f8619d65 100644 --- a/Resources/Textures/Clothing/OuterClothing/Misc/grey_hoodie.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Misc/grey_hoodie.rsi/meta.json @@ -1,53 +1,45 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, equipped-OUTERCLOTHING-resomi made by svarshiksatanist (Discord)", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "icon-open" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, - { - "name": "open-equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "open-equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "open-inhand-left", - "directions": 4 - }, - { - "name": "open-inhand-right", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-vox", - "directions": 4 - } - ] + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox state by Flareguy for SS14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-open" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, + { + "name": "open-equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "open-inhand-left", + "directions": 4 + }, + { + "name": "open-inhand-right", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/grey_hoodie.rsi/open-equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Misc/grey_hoodie.rsi/open-equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index e6f4bd301c..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Misc/grey_hoodie.rsi/open-equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/hospitalgown.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Misc/hospitalgown.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index c8898352b2..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Misc/hospitalgown.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/hospitalgown.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/hospitalgown.rsi/meta.json index 05b2c2562d..e482264df5 100644 --- a/Resources/Textures/Clothing/OuterClothing/Misc/hospitalgown.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Misc/hospitalgown.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, equipped-OUTERCLOTHING-resomi made by svarshiksatanist (Discord)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/judge.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Misc/judge.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index d53f87e92d..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Misc/judge.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/judge.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/judge.rsi/meta.json index 05b2c2562d..e482264df5 100644 --- a/Resources/Textures/Clothing/OuterClothing/Misc/judge.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Misc/judge.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, equipped-OUTERCLOTHING-resomi made by svarshiksatanist (Discord)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/nunrobe.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Misc/nunrobe.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 1d82b6240c..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Misc/nunrobe.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/nunrobe.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/nunrobe.rsi/meta.json index 737763c719..3fa2c7657c 100644 --- a/Resources/Textures/Clothing/OuterClothing/Misc/nunrobe.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Misc/nunrobe.rsi/meta.json @@ -18,10 +18,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/plaguedoctorsuit.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Misc/plaguedoctorsuit.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 55fcf309e3..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Misc/plaguedoctorsuit.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/plaguedoctorsuit.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/plaguedoctorsuit.rsi/meta.json index 60653cfe23..e39c53ebe1 100644 --- a/Resources/Textures/Clothing/OuterClothing/Misc/plaguedoctorsuit.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Misc/plaguedoctorsuit.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from TGstation github https://github.com/tgstation/tgstation/commit/e89db4dd4f42377b0adafb06806a763314a89034 , edited by Alekshhh, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from TGstation github https://github.com/tgstation/tgstation/commit/e89db4dd4f42377b0adafb06806a763314a89034 , edited by Alekshhh", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/poncho.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Misc/poncho.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 64cad6c498..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Misc/poncho.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/poncho.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/poncho.rsi/meta.json index 05b2c2562d..e482264df5 100644 --- a/Resources/Textures/Clothing/OuterClothing/Misc/poncho.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Misc/poncho.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, equipped-OUTERCLOTHING-resomi made by svarshiksatanist (Discord)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/red_racoon.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Misc/red_racoon.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index e183fcc8d3..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Misc/red_racoon.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/red_racoon.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/red_racoon.rsi/meta.json index 44b4842b3e..cd0053daea 100644 --- a/Resources/Textures/Clothing/OuterClothing/Misc/red_racoon.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Misc/red_racoon.rsi/meta.json @@ -1,34 +1,30 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Created by netwy(583844759429316618), equipped-OUTERCLOTHING-resomi made by svarshiksatanist (Discord)", - "size": { - "x": 32, - "y": 32 + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by netwy(583844759429316618). Vox state made by Flareguy for SS14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-vox", - "directions": 4 - } - ] + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/redwizard.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Misc/redwizard.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 064583d957..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Misc/redwizard.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/redwizard.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/redwizard.rsi/meta.json index 1ef4d9216f..15aef26a56 100644 --- a/Resources/Textures/Clothing/OuterClothing/Misc/redwizard.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Misc/redwizard.rsi/meta.json @@ -1,34 +1,30 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, equipped-OUTERCLOTHING-resomi made by svarshiksatanist (Discord)", - "size": { - "x": 32, - "y": 32 + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox state made by Flareguy for SS14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-vox", - "directions": 4 - } - ] + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/santa.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Misc/santa.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index d6dfcbe34e..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Misc/santa.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/santa.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/santa.rsi/meta.json index 7c88c10c4a..e482264df5 100644 --- a/Resources/Textures/Clothing/OuterClothing/Misc/santa.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Misc/santa.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/skubbody.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Misc/skubbody.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index a5d7a154c8..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Misc/skubbody.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/skubbody.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/skubbody.rsi/meta.json index 1ecd0342db..ed75ee470b 100644 --- a/Resources/Textures/Clothing/OuterClothing/Misc/skubbody.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Misc/skubbody.rsi/meta.json @@ -1,26 +1,22 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "EOBGames from tgstation, equipped-OUTERCLOTHING-resomi made by svarshiksatanist (Discord)", - "size": { - "x": 32, - "y": 32 + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "EOBGames from tgstation. Vox state made by Flareguy for SS14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-vox", - "directions": 4 - } - ] + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/straight_jacket.rsi/body-overlay-2-resomi.png b/Resources/Textures/Clothing/OuterClothing/Misc/straight_jacket.rsi/body-overlay-2-resomi.png deleted file mode 100644 index eaafa26dae..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Misc/straight_jacket.rsi/body-overlay-2-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/straight_jacket.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/straight_jacket.rsi/meta.json index 1025939bba..2eda10ef51 100644 --- a/Resources/Textures/Clothing/OuterClothing/Misc/straight_jacket.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Misc/straight_jacket.rsi/meta.json @@ -1,34 +1,30 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, body-overlay-2-resomi made by svarshiksatanist (Discord)", - "size": { - "x": 32, - "y": 32 + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox state made by Flareguy for SS14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" }, - "states": [ - { - "name": "icon" - }, - { - "name": "body-overlay-2", - "directions": 4 - }, - { - "name": "body-overlay-2-resomi", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "body-overlay-2-vox", - "directions": 4 - } - ] + { + "name": "body-overlay-2", + "directions": 4 + }, + { + "name": "body-overlay-2-vox", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/violetwizard.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Misc/violetwizard.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 3fcdde419b..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Misc/violetwizard.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/violetwizard.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/violetwizard.rsi/meta.json index 1ef4d9216f..15aef26a56 100644 --- a/Resources/Textures/Clothing/OuterClothing/Misc/violetwizard.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Misc/violetwizard.rsi/meta.json @@ -1,34 +1,30 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, equipped-OUTERCLOTHING-resomi made by svarshiksatanist (Discord)", - "size": { - "x": 32, - "y": 32 + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox state made by Flareguy for SS14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-vox", - "directions": 4 - } - ] + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/wizard.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Misc/wizard.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 322240a971..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Misc/wizard.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/wizard.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/wizard.rsi/meta.json index 1ef4d9216f..15aef26a56 100644 --- a/Resources/Textures/Clothing/OuterClothing/Misc/wizard.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Misc/wizard.rsi/meta.json @@ -1,34 +1,30 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, equipped-OUTERCLOTHING-resomi made by svarshiksatanist (Discord)", - "size": { - "x": 32, - "y": 32 + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox state made by Flareguy for SS14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-vox", - "directions": 4 - } - ] + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/ancient_voidsuit.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Suits/ancient_voidsuit.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index c302082a24..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Suits/ancient_voidsuit.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/ancient_voidsuit.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Suits/ancient_voidsuit.rsi/meta.json index 93c6c0b324..3a71879aff 100644 --- a/Resources/Textures/Clothing/OuterClothing/Suits/ancient_voidsuit.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Suits/ancient_voidsuit.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/tree/fb2d71495bfe81446159ef528534193d09dd8d34, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/tree/fb2d71495bfe81446159ef528534193d09dd8d34", "size": { "x": 32, "y": 32 @@ -40,10 +40,6 @@ ] ] }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/atmos_firesuit.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Suits/atmos_firesuit.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 436a89ee8b..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Suits/atmos_firesuit.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/atmos_firesuit.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Suits/atmos_firesuit.rsi/meta.json index 3cb09eab02..b05021b6c0 100644 --- a/Resources/Textures/Clothing/OuterClothing/Suits/atmos_firesuit.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Suits/atmos_firesuit.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation https://github.com/tgstation/tgstation/blob/master/icons/mob/clothing/suit.dmi, harpy edit by VMSolidus, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from tgstation https://github.com/tgstation/tgstation/blob/master/icons/mob/clothing/suit.dmi, harpy edit by VMSolidus", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-OUTERCLOTHING-harpy", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/bombsuit.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Suits/bombsuit.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index fd57964905..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Suits/bombsuit.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/bombsuit.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Suits/bombsuit.rsi/meta.json index 16cc21345d..669e1d9857 100644 --- a/Resources/Textures/Clothing/OuterClothing/Suits/bombsuit.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Suits/bombsuit.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from cev-eris at commit https://github.com/discordia-space/CEV-Eris/commit/760f0be7af33a31f5a08a3291864e91539d0ebb7. Vox state made by Flareguy for Space Station 14, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from cev-eris at commit https://github.com/discordia-space/CEV-Eris/commit/760f0be7af33a31f5a08a3291864e91539d0ebb7. Vox state made by Flareguy for Space Station 14", "size": { "x": 32, "y": 32 @@ -22,10 +22,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/carpsuit.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Suits/carpsuit.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index c6f035f12a..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Suits/carpsuit.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/carpsuit.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Suits/carpsuit.rsi/meta.json index 9c30f596af..542edf0002 100644 --- a/Resources/Textures/Clothing/OuterClothing/Suits/carpsuit.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Suits/carpsuit.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Modified by deltanedas (github), equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Modified by deltanedas (github).", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/chicken.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Suits/chicken.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 64be197737..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Suits/chicken.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/chicken.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Suits/chicken.rsi/meta.json index 7b0a23fe27..ca1146d007 100644 --- a/Resources/Textures/Clothing/OuterClothing/Suits/chicken.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Suits/chicken.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index f697ecc190..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/meta.json index 99e529262b..f57e352d87 100644 --- a/Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-4.0", - "copyright": "Made by WWDP team, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Made by WWDP team", "size": { "x": 32, "y": 32 @@ -26,10 +26,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 367b60ffe5..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/meta.json index 72ae6cd102..364b3c0e27 100644 --- a/Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-4.0", - "copyright": "Made by WWDP team, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Made by WWDP team", "size": { "x": 32, "y": 32 @@ -22,10 +22,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/eva_prisoner.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Suits/eva_prisoner.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index f22060ed08..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Suits/eva_prisoner.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/eva_prisoner.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Suits/eva_prisoner.rsi/meta.json index 99e529262b..f57e352d87 100644 --- a/Resources/Textures/Clothing/OuterClothing/Suits/eva_prisoner.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Suits/eva_prisoner.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-4.0", - "copyright": "Made by WWDP team, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Made by WWDP team", "size": { "x": 32, "y": 32 @@ -26,10 +26,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/eva_syndicate.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Suits/eva_syndicate.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 657314acfe..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Suits/eva_syndicate.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/eva_syndicate.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Suits/eva_syndicate.rsi/meta.json index 99e529262b..f57e352d87 100644 --- a/Resources/Textures/Clothing/OuterClothing/Suits/eva_syndicate.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Suits/eva_syndicate.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-4.0", - "copyright": "Made by WWDP team, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Made by WWDP team", "size": { "x": 32, "y": 32 @@ -26,10 +26,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/fire.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Suits/fire.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index e1f6044808..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Suits/fire.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/fire.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Suits/fire.rsi/meta.json index 72ae6cd102..364b3c0e27 100644 --- a/Resources/Textures/Clothing/OuterClothing/Suits/fire.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Suits/fire.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-4.0", - "copyright": "Made by WWDP team, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Made by WWDP team", "size": { "x": 32, "y": 32 @@ -22,10 +22,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/iansuit.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Suits/iansuit.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 7a34e8358d..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Suits/iansuit.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/iansuit.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Suits/iansuit.rsi/meta.json index 9c30f596af..542edf0002 100644 --- a/Resources/Textures/Clothing/OuterClothing/Suits/iansuit.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Suits/iansuit.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Modified by deltanedas (github), equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Modified by deltanedas (github).", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/monkey.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Suits/monkey.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index c8c9ef3079..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Suits/monkey.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/monkey.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Suits/monkey.rsi/meta.json index 14d6a71064..920eab5520 100644 --- a/Resources/Textures/Clothing/OuterClothing/Suits/monkey.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Suits/monkey.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox state made by Flareguy for Space Station 14, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox state made by Flareguy for Space Station 14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/rad.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Suits/rad.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 7bee0c2fdf..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Suits/rad.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/rad.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Suits/rad.rsi/meta.json index 72ae6cd102..364b3c0e27 100644 --- a/Resources/Textures/Clothing/OuterClothing/Suits/rad.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Suits/rad.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-4.0", - "copyright": "Made by WWDP team, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Made by WWDP team", "size": { "x": 32, "y": 32 @@ -22,10 +22,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/shrine-maiden.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Suits/shrine-maiden.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 8c38a89162..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Suits/shrine-maiden.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/shrine-maiden.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Suits/shrine-maiden.rsi/meta.json index f1d43f3026..af215f51ed 100644 --- a/Resources/Textures/Clothing/OuterClothing/Suits/shrine-maiden.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Suits/shrine-maiden.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/3d1a0a5b367a080c42fba0e85ce0382b2cbcb284 . Inhands were made for SS14 and available under the same license, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/3d1a0a5b367a080c42fba0e85ce0382b2cbcb284 . Inhands were made for SS14 and available under the same license.", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/spaceninja.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Suits/spaceninja.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 9b445f4bdb..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Suits/spaceninja.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/spaceninja.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Suits/spaceninja.rsi/meta.json index 501531f5ee..0174b889d2 100644 --- a/Resources/Textures/Clothing/OuterClothing/Suits/spaceninja.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Suits/spaceninja.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from paradise https://github.com/ParadiseSS13/Paradise/tree/master/icons (unknown commit), equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from paradise https://github.com/ParadiseSS13/Paradise/tree/master/icons (unknown commit)", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Vests/detvest.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Vests/detvest.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 2a4bc6db3a..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Vests/detvest.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Vests/detvest.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Vests/detvest.rsi/meta.json index 338e76b429..db4b5ca121 100644 --- a/Resources/Textures/Clothing/OuterClothing/Vests/detvest.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Vests/detvest.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-4.0", - "copyright": "Made by WWDP Team, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 @@ -22,10 +22,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index eed46ab83d..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/meta.json index e570917b36..29bae36917 100644 --- a/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-4.0", - "copyright": "Made by WWDP Team, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Vests/mercwebvest.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Vests/mercwebvest.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 37d86c0920..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Vests/mercwebvest.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Vests/mercwebvest.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Vests/mercwebvest.rsi/meta.json index 05b2c2562d..e482264df5 100644 --- a/Resources/Textures/Clothing/OuterClothing/Vests/mercwebvest.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Vests/mercwebvest.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, equipped-OUTERCLOTHING-resomi made by svarshiksatanist (Discord)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Vests/vest.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Vests/vest.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 003dffb9f8..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Vests/vest.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Vests/vest.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Vests/vest.rsi/meta.json index 1ef4d9216f..920eab5520 100644 --- a/Resources/Textures/Clothing/OuterClothing/Vests/vest.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Vests/vest.rsi/meta.json @@ -1,34 +1,30 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, equipped-OUTERCLOTHING-resomi made by svarshiksatanist (Discord)", - "size": { - "x": 32, - "y": 32 + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox state made by Flareguy for Space Station 14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-vox", - "directions": 4 - } - ] + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Clothing/OuterClothing/Vests/webvest.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/Vests/webvest.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 003dffb9f8..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Vests/webvest.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Vests/webvest.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Vests/webvest.rsi/meta.json index 1ef4d9216f..0e30ab4d3f 100644 --- a/Resources/Textures/Clothing/OuterClothing/Vests/webvest.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Vests/webvest.rsi/meta.json @@ -1,34 +1,30 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, equipped-OUTERCLOTHING-resomi made by svarshiksatanist (Discord)", - "size": { - "x": 32, - "y": 32 + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox state by Flareguy for SS14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-vox", - "directions": 4 - } - ] + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index bb0a013bcd..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/meta.json index 116843a95d..19f610cdfe 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatatmos.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatatmos.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index af5a73d9b5..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatatmos.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatatmos.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatatmos.rsi/meta.json index 3256561eb1..5d9e9636f7 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatatmos.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatatmos.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatbar.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatbar.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 44d2828863..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatbar.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatbar.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatbar.rsi/meta.json index 4a359441c6..19fcc6a935 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatbar.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatbar.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from vg at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from vg at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatcap.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatcap.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index b7d8a9d202..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatcap.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatcap.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatcap.rsi/meta.json index 88b04803a1..82fefd4918 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatcap.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatcap.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62 , edited by Skarletto (github), equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62 , edited by Skarletto (github)", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatcargo.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatcargo.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index ecd4c649a9..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatcargo.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatcargo.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatcargo.rsi/meta.json index 3256561eb1..5d9e9636f7 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatcargo.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatcargo.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatce.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatce.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index e364b2807a..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatce.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatce.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatce.rsi/meta.json index 3256561eb1..5d9e9636f7 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatce.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatce.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatcentcom.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatcentcom.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 43b123a45c..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatcentcom.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatcentcom.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatcentcom.rsi/meta.json index 9858267217..7752722477 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatcentcom.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatcentcom.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatchef.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatchef.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 3590e2b502..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatchef.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatchef.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatchef.rsi/meta.json index 6211858b61..146bd662b4 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatchef.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatchef.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatchem.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatchem.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 4901876fb9..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatchem.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatchem.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatchem.rsi/meta.json index 9858267217..7752722477 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatchem.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatchem.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatclown.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatclown.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index dd5b5c16f5..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatclown.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatclown.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatclown.rsi/meta.json index f9c4048894..07c27d0604 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatclown.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatclown.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-4.0", - "copyright": "Made by Purka based on sprite from TG, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Made by Purka based on sprite from TG", "size": { "x": 32, "y": 32 @@ -22,10 +22,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatcmo.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatcmo.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 3e8f2e7bd8..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatcmo.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatcmo.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatcmo.rsi/meta.json index 9858267217..7752722477 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatcmo.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatcmo.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatengi.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatengi.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index e0041df853..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatengi.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatengi.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatengi.rsi/meta.json index 3256561eb1..5d9e9636f7 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatengi.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatengi.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatgen.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatgen.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 0ee3169455..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatgen.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatgen.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatgen.rsi/meta.json index 9858267217..7752722477 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatgen.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatgen.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathop.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathop.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index b645418999..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathop.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathop.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathop.rsi/meta.json index 9858267217..7752722477 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathop.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathop.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathos.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathos.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index b78bb13e4d..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathos.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathos.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathos.rsi/meta.json index 9858267217..7752722477 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathos.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathos.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathosarmored.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathosarmored.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 75e03c8212..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathosarmored.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathosarmored.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathosarmored.rsi/meta.json index 00d1d21892..4010520850 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathosarmored.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathosarmored.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from vg at commit https://github.com/vgstation-coders/vgstation13/commit/a16e41020a93479e9a7e2af343b1b74f7f2a61bd, recolored by Github user PursuitinAshes, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from vg at commit https://github.com/vgstation-coders/vgstation13/commit/a16e41020a93479e9a7e2af343b1b74f7f2a61bd, recolored by Github user PursuitinAshes", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathydro.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathydro.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 0695194115..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathydro.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathydro.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathydro.rsi/meta.json index 3256561eb1..5d9e9636f7 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathydro.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathydro.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatjani.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatjani.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 31b7c1eaeb..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatjani.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatjani.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatjani.rsi/meta.json index 9858267217..7752722477 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatjani.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatjani.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatmed.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatmed.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index e5371c3ebc..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatmed.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatmed.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatmed.rsi/meta.json index 3256561eb1..5d9e9636f7 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatmed.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatmed.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatmime.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatmime.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 80843cad55..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatmime.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatmime.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatmime.rsi/meta.json index 4a359441c6..19fcc6a935 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatmime.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatmime.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from vg at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from vg at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatminer.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatminer.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 1f29c24186..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatminer.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatminer.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatminer.rsi/meta.json index 3256561eb1..5d9e9636f7 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatminer.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatminer.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatnomi.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatnomi.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 388205f286..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatnomi.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatnomi.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatnomi.rsi/meta.json index aa0e124907..af6075230c 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatnomi.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatnomi.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Sprited by Ian M. Burton, based on the iconic Klaus Nomi, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Sprited by Ian M. Burton, based on the iconic Klaus Nomi", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatparamed.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatparamed.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index ecf2e81045..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatparamed.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatparamed.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatparamed.rsi/meta.json index 3256561eb1..5d9e9636f7 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatparamed.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatparamed.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatqm.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatqm.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 158f4b6783..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatqm.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatqm.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatqm.rsi/meta.json index 9858267217..7752722477 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatqm.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatqm.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatrd.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatrd.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index cca821a68e..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatrd.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatrd.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatrd.rsi/meta.json index 9858267217..7752722477 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatrd.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatrd.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatrobo.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatrobo.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 8fba81a647..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatrobo.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatrobo.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatrobo.rsi/meta.json index 9858267217..7752722477 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatrobo.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatrobo.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatsci.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatsci.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index a5e7c35029..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatsci.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatsci.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatsci.rsi/meta.json index 3256561eb1..5d9e9636f7 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatsci.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatsci.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatsec.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatsec.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 278ea9c8f9..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatsec.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatsec.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatsec.rsi/meta.json index 3256561eb1..5d9e9636f7 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatsec.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatsec.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatviro.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatviro.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index efacf5ce4a..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatviro.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatviro.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatviro.rsi/meta.json index 9858267217..7752722477 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatviro.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatviro.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 16d1518dd8..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/meta.json index ef1fac6db1..ade0905fb8 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from vg at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79 / https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62, recolored by Github user Dutch-VanDerLinde, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from vg at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79 / https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62, recolored by Github user Dutch-VanDerLinde.", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 4f4e8d7bba..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/meta.json index 1ad8ae1299..c9f0d90ea1 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from vg at commit https://github.com/vgstation-coders/vgstation13/commit/a16e41020a93479e9a7e2af343b1b74f7f2a61bd, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from vg at commit https://github.com/vgstation-coders/vgstation13/commit/a16e41020a93479e9a7e2af343b1b74f7f2a61bd", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatweb.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatweb.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index b77652afee..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatweb.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatweb.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatweb.rsi/meta.json index aca1758471..5f1566a476 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatweb.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatweb.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by PixelTheKermit (github) for SS14, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Made by PixelTheKermit (github) for SS14", "size": {"x": 32, "y": 32}, "states": [ { @@ -11,10 +11,6 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/syndicate/coatsyndiecap.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/syndicate/coatsyndiecap.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 6355c1023e..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/WinterCoats/syndicate/coatsyndiecap.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/syndicate/coatsyndiecap.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/syndicate/coatsyndiecap.rsi/meta.json index bd8c3f940c..eadf9c61d4 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/syndicate/coatsyndiecap.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/syndicate/coatsyndiecap.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Sprited by belay5 (Discord), equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Sprited by belay5 (Discord)", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/syndicate/coatsyndiecaparmored.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/syndicate/coatsyndiecaparmored.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index 6754f75262..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/WinterCoats/syndicate/coatsyndiecaparmored.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/syndicate/coatsyndiecaparmored.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/syndicate/coatsyndiecaparmored.rsi/meta.json index bd8c3f940c..eadf9c61d4 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/syndicate/coatsyndiecaparmored.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/syndicate/coatsyndiecaparmored.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Sprited by belay5 (Discord), equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Sprited by belay5 (Discord)", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/syndicate/wintercoatsyndie.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/syndicate/wintercoatsyndie.rsi/equipped-OUTERCLOTHING-resomi.png deleted file mode 100644 index fffd653b54..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/WinterCoats/syndicate/wintercoatsyndie.rsi/equipped-OUTERCLOTHING-resomi.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/syndicate/wintercoatsyndie.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/syndicate/wintercoatsyndie.rsi/meta.json index bd8c3f940c..eadf9c61d4 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/syndicate/wintercoatsyndie.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/syndicate/wintercoatsyndie.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Sprited by belay5 (Discord), equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Sprited by belay5 (Discord)", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/_White/Mobs/Customization/eyes.rsi/meta.json b/Resources/Textures/_White/Mobs/Customization/eyes.rsi/meta.json deleted file mode 100644 index 47a1378110..0000000000 --- a/Resources/Textures/_White/Mobs/Customization/eyes.rsi/meta.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "resomi", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Mobs/Customization/eyes.rsi/resomi.png b/Resources/Textures/_White/Mobs/Customization/eyes.rsi/resomi.png deleted file mode 100644 index f6ee8cd7db..0000000000 Binary files a/Resources/Textures/_White/Mobs/Customization/eyes.rsi/resomi.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Customization/resomi_hair.rsi/ResomiBackstrafe.png b/Resources/Textures/_White/Mobs/Customization/resomi_hair.rsi/ResomiBackstrafe.png deleted file mode 100644 index 05cfb6c1a1..0000000000 Binary files a/Resources/Textures/_White/Mobs/Customization/resomi_hair.rsi/ResomiBackstrafe.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Customization/resomi_hair.rsi/ResomiBurstShort.png b/Resources/Textures/_White/Mobs/Customization/resomi_hair.rsi/ResomiBurstShort.png deleted file mode 100644 index 24abbfb010..0000000000 Binary files a/Resources/Textures/_White/Mobs/Customization/resomi_hair.rsi/ResomiBurstShort.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Customization/resomi_hair.rsi/ResomiDefault.png b/Resources/Textures/_White/Mobs/Customization/resomi_hair.rsi/ResomiDefault.png deleted file mode 100644 index 8eda85ab89..0000000000 Binary files a/Resources/Textures/_White/Mobs/Customization/resomi_hair.rsi/ResomiDefault.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Customization/resomi_hair.rsi/ResomiDroopy.png b/Resources/Textures/_White/Mobs/Customization/resomi_hair.rsi/ResomiDroopy.png deleted file mode 100644 index 7fab8e1fa1..0000000000 Binary files a/Resources/Textures/_White/Mobs/Customization/resomi_hair.rsi/ResomiDroopy.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Customization/resomi_hair.rsi/ResomiEars.png b/Resources/Textures/_White/Mobs/Customization/resomi_hair.rsi/ResomiEars.png deleted file mode 100644 index 9176e59ae5..0000000000 Binary files a/Resources/Textures/_White/Mobs/Customization/resomi_hair.rsi/ResomiEars.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Customization/resomi_hair.rsi/ResomiFluffymohawk.png b/Resources/Textures/_White/Mobs/Customization/resomi_hair.rsi/ResomiFluffymohawk.png deleted file mode 100644 index f94f4cee5e..0000000000 Binary files a/Resources/Textures/_White/Mobs/Customization/resomi_hair.rsi/ResomiFluffymohawk.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Customization/resomi_hair.rsi/ResomiHedge.png b/Resources/Textures/_White/Mobs/Customization/resomi_hair.rsi/ResomiHedge.png deleted file mode 100644 index fd238db92c..0000000000 Binary files a/Resources/Textures/_White/Mobs/Customization/resomi_hair.rsi/ResomiHedge.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Customization/resomi_hair.rsi/ResomiLong.png b/Resources/Textures/_White/Mobs/Customization/resomi_hair.rsi/ResomiLong.png deleted file mode 100644 index a59b700c6e..0000000000 Binary files a/Resources/Textures/_White/Mobs/Customization/resomi_hair.rsi/ResomiLong.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Customization/resomi_hair.rsi/ResomiLongway.png b/Resources/Textures/_White/Mobs/Customization/resomi_hair.rsi/ResomiLongway.png deleted file mode 100644 index 95f5695e58..0000000000 Binary files a/Resources/Textures/_White/Mobs/Customization/resomi_hair.rsi/ResomiLongway.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Customization/resomi_hair.rsi/ResomiMane.png b/Resources/Textures/_White/Mobs/Customization/resomi_hair.rsi/ResomiMane.png deleted file mode 100644 index d7c501bade..0000000000 Binary files a/Resources/Textures/_White/Mobs/Customization/resomi_hair.rsi/ResomiMane.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Customization/resomi_hair.rsi/ResomiManeBeardless.png b/Resources/Textures/_White/Mobs/Customization/resomi_hair.rsi/ResomiManeBeardless.png deleted file mode 100644 index 109b72a7b6..0000000000 Binary files a/Resources/Textures/_White/Mobs/Customization/resomi_hair.rsi/ResomiManeBeardless.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Customization/resomi_hair.rsi/ResomiMohawk.png b/Resources/Textures/_White/Mobs/Customization/resomi_hair.rsi/ResomiMohawk.png deleted file mode 100644 index 0bcbba6075..0000000000 Binary files a/Resources/Textures/_White/Mobs/Customization/resomi_hair.rsi/ResomiMohawk.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Customization/resomi_hair.rsi/ResomiMushroom.png b/Resources/Textures/_White/Mobs/Customization/resomi_hair.rsi/ResomiMushroom.png deleted file mode 100644 index 8cfb230967..0000000000 Binary files a/Resources/Textures/_White/Mobs/Customization/resomi_hair.rsi/ResomiMushroom.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Customization/resomi_hair.rsi/ResomiNotree.png b/Resources/Textures/_White/Mobs/Customization/resomi_hair.rsi/ResomiNotree.png deleted file mode 100644 index 684b53023e..0000000000 Binary files a/Resources/Textures/_White/Mobs/Customization/resomi_hair.rsi/ResomiNotree.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Customization/resomi_hair.rsi/ResomiPointy.png b/Resources/Textures/_White/Mobs/Customization/resomi_hair.rsi/ResomiPointy.png deleted file mode 100644 index eea806e57c..0000000000 Binary files a/Resources/Textures/_White/Mobs/Customization/resomi_hair.rsi/ResomiPointy.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Customization/resomi_hair.rsi/ResomiSpiky.png b/Resources/Textures/_White/Mobs/Customization/resomi_hair.rsi/ResomiSpiky.png deleted file mode 100644 index 799092689f..0000000000 Binary files a/Resources/Textures/_White/Mobs/Customization/resomi_hair.rsi/ResomiSpiky.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Customization/resomi_hair.rsi/ResomiTwies.png b/Resources/Textures/_White/Mobs/Customization/resomi_hair.rsi/ResomiTwies.png deleted file mode 100644 index 16da3222ca..0000000000 Binary files a/Resources/Textures/_White/Mobs/Customization/resomi_hair.rsi/ResomiTwies.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Customization/resomi_hair.rsi/ResomiUpright.png b/Resources/Textures/_White/Mobs/Customization/resomi_hair.rsi/ResomiUpright.png deleted file mode 100644 index 6e1070544c..0000000000 Binary files a/Resources/Textures/_White/Mobs/Customization/resomi_hair.rsi/ResomiUpright.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Customization/resomi_hair.rsi/meta.json b/Resources/Textures/_White/Mobs/Customization/resomi_hair.rsi/meta.json deleted file mode 100644 index cd0153f127..0000000000 --- a/Resources/Textures/_White/Mobs/Customization/resomi_hair.rsi/meta.json +++ /dev/null @@ -1,83 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/Skyrat-SS13/Skyrat-tg/tree/40e3cdbb15b8bc0d5ef2fb46133adf805bda5297, while Argali, Ayrshire, Myrsore and Bighorn are drawn by Ubaser, and Kobold Ears are drawn by Pigeonpeas. Body_underbelly made by Nairod(github) for SS14. Large drawn by Ubaser. Wagging tail by SonicDC. Splotch modified from Sharp by KittenColony(github). Frills neckfull come from: https://github.com/Bubberstation/Bubberstation/commit/8bc6b83404803466a560b694bf22ef3c0ac266a2", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "ResomiBackstrafe", - "directions": 4 - }, - { - "name": "ResomiBurstShort", - "directions": 4 - }, - { - "name": "ResomiDefault", - "directions": 4 - }, - { - "name": "ResomiDroopy", - "directions": 4 - }, - { - "name": "ResomiEars", - "directions": 4 - }, - { - "name": "ResomiFluffymohawk", - "directions": 4 - }, - { - "name": "ResomiHedge", - "directions": 4 - }, - { - "name": "ResomiLongway", - "directions": 4 - }, - { - "name": "ResomiMane", - "directions": 4 - }, - { - "name": "ResomiManeBeardless", - "directions": 4 - }, - { - "name": "ResomiMohawk", - "directions": 4 - }, - { - "name": "ResomiMushroom", - "directions": 4 - }, - { - "name": "ResomiNotree", - "directions": 4 - }, - { - "name": "ResomiPointy", - "directions": 4 - }, - { - "name": "ResomiSpiky", - "directions": 4 - }, - { - "name": "ResomiTwies", - "directions": 4 - }, - { - "name": "ResomiUpright", - "directions": 4 - }, - { - "name": "ResomiLong", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Mobs/Customization/resomi_parts.rsi/fluff.png b/Resources/Textures/_White/Mobs/Customization/resomi_parts.rsi/fluff.png deleted file mode 100644 index 8fde1c8b8f..0000000000 Binary files a/Resources/Textures/_White/Mobs/Customization/resomi_parts.rsi/fluff.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Customization/resomi_parts.rsi/fluff_head.png b/Resources/Textures/_White/Mobs/Customization/resomi_parts.rsi/fluff_head.png deleted file mode 100644 index 0a4fcbdf93..0000000000 Binary files a/Resources/Textures/_White/Mobs/Customization/resomi_parts.rsi/fluff_head.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Customization/resomi_parts.rsi/fluff_head_up.png b/Resources/Textures/_White/Mobs/Customization/resomi_parts.rsi/fluff_head_up.png deleted file mode 100644 index 3e4ea94d95..0000000000 Binary files a/Resources/Textures/_White/Mobs/Customization/resomi_parts.rsi/fluff_head_up.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Customization/resomi_parts.rsi/l_foot_feathers.png b/Resources/Textures/_White/Mobs/Customization/resomi_parts.rsi/l_foot_feathers.png deleted file mode 100644 index ccfe6db729..0000000000 Binary files a/Resources/Textures/_White/Mobs/Customization/resomi_parts.rsi/l_foot_feathers.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Customization/resomi_parts.rsi/l_hand_feathers.png b/Resources/Textures/_White/Mobs/Customization/resomi_parts.rsi/l_hand_feathers.png deleted file mode 100644 index a397efc200..0000000000 Binary files a/Resources/Textures/_White/Mobs/Customization/resomi_parts.rsi/l_hand_feathers.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Customization/resomi_parts.rsi/meta.json b/Resources/Textures/_White/Mobs/Customization/resomi_parts.rsi/meta.json deleted file mode 100644 index c2ece1c1b7..0000000000 --- a/Resources/Textures/_White/Mobs/Customization/resomi_parts.rsi/meta.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/Skyrat-SS13/Skyrat-tg/tree/40e3cdbb15b8bc0d5ef2fb46133adf805bda5297, while Argali, Ayrshire, Myrsore and Bighorn are drawn by Ubaser, and Kobold Ears are drawn by Pigeonpeas. Body_underbelly made by Nairod(github) for SS14. Large drawn by Ubaser. Wagging tail by SonicDC. Splotch modified from Sharp by KittenColony(github). Frills neckfull come from: https://github.com/Bubberstation/Bubberstation/commit/8bc6b83404803466a560b694bf22ef3c0ac266a2", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "l_foot_feathers", - "directions": 4 - }, - { - "name": "r_foot_feathers", - "directions": 4 - }, - { - "name": "l_hand_feathers", - "directions": 4 - }, - { - "name": "r_hand_feathers", - "directions": 4 - }, - { - "name": "tail", - "directions": 4 - }, - { - "name": "tail_feathers", - "directions": 4 - }, - { - "name": "fluff", - "directions": 4 - }, - { - "name": "fluff_head", - "directions": 4 - }, - { - "name": "fluff_head_up", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Mobs/Customization/resomi_parts.rsi/r_foot_feathers.png b/Resources/Textures/_White/Mobs/Customization/resomi_parts.rsi/r_foot_feathers.png deleted file mode 100644 index 4c6fbb8b88..0000000000 Binary files a/Resources/Textures/_White/Mobs/Customization/resomi_parts.rsi/r_foot_feathers.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Customization/resomi_parts.rsi/r_hand_feathers.png b/Resources/Textures/_White/Mobs/Customization/resomi_parts.rsi/r_hand_feathers.png deleted file mode 100644 index c8cb724e78..0000000000 Binary files a/Resources/Textures/_White/Mobs/Customization/resomi_parts.rsi/r_hand_feathers.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Customization/resomi_parts.rsi/tail.png b/Resources/Textures/_White/Mobs/Customization/resomi_parts.rsi/tail.png deleted file mode 100644 index 5535c2d525..0000000000 Binary files a/Resources/Textures/_White/Mobs/Customization/resomi_parts.rsi/tail.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Customization/resomi_parts.rsi/tail_feathers.png b/Resources/Textures/_White/Mobs/Customization/resomi_parts.rsi/tail_feathers.png deleted file mode 100644 index ac22a353b4..0000000000 Binary files a/Resources/Textures/_White/Mobs/Customization/resomi_parts.rsi/tail_feathers.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/Chest_Brute_10.png b/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/Chest_Brute_10.png deleted file mode 100644 index dcd3d2cb1e..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/Chest_Brute_10.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/Chest_Brute_30.png b/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/Chest_Brute_30.png deleted file mode 100644 index 78e6e9a5fb..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/Chest_Brute_30.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/Chest_Brute_50.png b/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/Chest_Brute_50.png deleted file mode 100644 index db8e65763a..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/Chest_Brute_50.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/Chest_Brute_70.png b/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/Chest_Brute_70.png deleted file mode 100644 index fd51a461b5..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/Chest_Brute_70.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/Head_Brute_10.png b/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/Head_Brute_10.png deleted file mode 100644 index bebf690989..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/Head_Brute_10.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/Head_Brute_30.png b/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/Head_Brute_30.png deleted file mode 100644 index 4a387f9a47..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/Head_Brute_30.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/Head_Brute_50.png b/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/Head_Brute_50.png deleted file mode 100644 index f8d8f02345..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/Head_Brute_50.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/Head_Brute_70.png b/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/Head_Brute_70.png deleted file mode 100644 index e66898b985..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/Head_Brute_70.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/LArm_Brute_10.png b/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/LArm_Brute_10.png deleted file mode 100644 index d0da20094d..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/LArm_Brute_10.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/LArm_Brute_30.png b/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/LArm_Brute_30.png deleted file mode 100644 index 5ec9ca988d..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/LArm_Brute_30.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/LArm_Brute_50.png b/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/LArm_Brute_50.png deleted file mode 100644 index 36532d7372..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/LArm_Brute_50.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/LArm_Brute_70.png b/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/LArm_Brute_70.png deleted file mode 100644 index 4d717d240b..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/LArm_Brute_70.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/LFoot_Brute_10.png b/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/LFoot_Brute_10.png deleted file mode 100644 index 270e33f851..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/LFoot_Brute_10.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/LFoot_Brute_30.png b/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/LFoot_Brute_30.png deleted file mode 100644 index b9a440d12b..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/LFoot_Brute_30.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/LFoot_Brute_50.png b/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/LFoot_Brute_50.png deleted file mode 100644 index e43f48fd00..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/LFoot_Brute_50.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/LFoot_Brute_70.png b/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/LFoot_Brute_70.png deleted file mode 100644 index 5d000fe5e2..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/LFoot_Brute_70.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/LHand_Brute_10.png b/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/LHand_Brute_10.png deleted file mode 100644 index 07f76ebade..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/LHand_Brute_10.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/LHand_Brute_30.png b/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/LHand_Brute_30.png deleted file mode 100644 index 85bb395b23..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/LHand_Brute_30.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/LHand_Brute_50.png b/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/LHand_Brute_50.png deleted file mode 100644 index 154c2b6f61..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/LHand_Brute_50.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/LHand_Brute_70.png b/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/LHand_Brute_70.png deleted file mode 100644 index 4d837f3162..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/LHand_Brute_70.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/LLeg_Brute_10.png b/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/LLeg_Brute_10.png deleted file mode 100644 index 4dd058c3c1..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/LLeg_Brute_10.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/LLeg_Brute_30.png b/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/LLeg_Brute_30.png deleted file mode 100644 index 1fa0fe723c..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/LLeg_Brute_30.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/LLeg_Brute_50.png b/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/LLeg_Brute_50.png deleted file mode 100644 index c1d75e3ae6..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/LLeg_Brute_50.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/LLeg_Brute_70.png b/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/LLeg_Brute_70.png deleted file mode 100644 index bc19f25796..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/LLeg_Brute_70.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/RArm_Brute_10.png b/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/RArm_Brute_10.png deleted file mode 100644 index 79eff56341..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/RArm_Brute_10.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/RArm_Brute_30.png b/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/RArm_Brute_30.png deleted file mode 100644 index b20a5b5f6f..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/RArm_Brute_30.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/RArm_Brute_50.png b/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/RArm_Brute_50.png deleted file mode 100644 index c81a723ba8..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/RArm_Brute_50.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/RArm_Brute_70.png b/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/RArm_Brute_70.png deleted file mode 100644 index 1496bc50f3..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/RArm_Brute_70.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/RFoot_Brute_10.png b/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/RFoot_Brute_10.png deleted file mode 100644 index 1d8ff51c7c..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/RFoot_Brute_10.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/RFoot_Brute_30.png b/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/RFoot_Brute_30.png deleted file mode 100644 index 9eca3da7a9..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/RFoot_Brute_30.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/RFoot_Brute_50.png b/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/RFoot_Brute_50.png deleted file mode 100644 index 386947656d..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/RFoot_Brute_50.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/RFoot_Brute_70.png b/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/RFoot_Brute_70.png deleted file mode 100644 index bae19d33b5..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/RFoot_Brute_70.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/RHand_Brute_10.png b/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/RHand_Brute_10.png deleted file mode 100644 index 168c23a1b0..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/RHand_Brute_10.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/RHand_Brute_30.png b/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/RHand_Brute_30.png deleted file mode 100644 index a8ebd45dd6..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/RHand_Brute_30.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/RHand_Brute_50.png b/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/RHand_Brute_50.png deleted file mode 100644 index 22193bcb3b..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/RHand_Brute_50.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/RHand_Brute_70.png b/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/RHand_Brute_70.png deleted file mode 100644 index b6744c14bc..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/RHand_Brute_70.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/RLeg_Brute_10.png b/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/RLeg_Brute_10.png deleted file mode 100644 index be27b8fe9e..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/RLeg_Brute_10.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/RLeg_Brute_30.png b/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/RLeg_Brute_30.png deleted file mode 100644 index 685129849a..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/RLeg_Brute_30.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/RLeg_Brute_50.png b/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/RLeg_Brute_50.png deleted file mode 100644 index 5af6ea7923..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/RLeg_Brute_50.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/RLeg_Brute_70.png b/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/RLeg_Brute_70.png deleted file mode 100644 index 003541d681..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/RLeg_Brute_70.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/meta.json b/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/meta.json deleted file mode 100644 index 979ee91215..0000000000 --- a/Resources/Textures/_White/Mobs/Effects/Resomi/brute_damage.rsi/meta.json +++ /dev/null @@ -1,168 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Drawn by Ubaser.", - "size": {"x": 32, "y": 32}, - "states": [ - { - "name": "Head_Brute_10", - "directions": 4 - }, - { - "name": "LArm_Brute_10", - "directions": 4 - }, - { - "name": "LLeg_Brute_10", - "directions": 4 - }, - { - "name": "RArm_Brute_10", - "directions": 4 - }, - { - "name": "RLeg_Brute_10", - "directions": 4 - }, - { - "name": "Chest_Brute_10", - "directions": 4 - }, - { - "name": "Head_Brute_30", - "directions": 4 - }, - { - "name": "LArm_Brute_30", - "directions": 4 - }, - { - "name": "LLeg_Brute_30", - "directions": 4 - }, - { - "name": "RArm_Brute_30", - "directions": 4 - }, - { - "name": "RLeg_Brute_30", - "directions": 4 - }, - { - "name": "Chest_Brute_30", - "directions": 4 - }, - { - "name": "Head_Brute_50", - "directions": 4 - }, - { - "name": "LArm_Brute_50", - "directions": 4 - }, - { - "name": "LLeg_Brute_50", - "directions": 4 - }, - { - "name": "RArm_Brute_50", - "directions": 4 - }, - { - "name": "RLeg_Brute_50", - "directions": 4 - }, - { - "name": "Chest_Brute_50", - "directions": 4 - }, - { - "name": "Head_Brute_70", - "directions": 4 - }, - { - "name": "LArm_Brute_70", - "directions": 4 - }, - { - "name": "LLeg_Brute_70", - "directions": 4 - }, - { - "name": "RArm_Brute_70", - "directions": 4 - }, - { - "name": "RLeg_Brute_70", - "directions": 4 - }, - { - "name": "Chest_Brute_70", - "directions": 4 - }, - { - "name": "LHand_Brute_10", - "directions": 4 - }, - { - "name": "LHand_Brute_30", - "directions": 4 - }, - { - "name": "LHand_Brute_50", - "directions": 4 - }, - { - "name": "LHand_Brute_70", - "directions": 4 - }, - { - "name": "LFoot_Brute_10", - "directions": 4 - }, - { - "name": "LFoot_Brute_30", - "directions": 4 - }, - { - "name": "LFoot_Brute_50", - "directions": 4 - }, - { - "name": "LFoot_Brute_70", - "directions": 4 - }, - { - "name": "RHand_Brute_10", - "directions": 4 - }, - { - "name": "RHand_Brute_30", - "directions": 4 - }, - { - "name": "RHand_Brute_50", - "directions": 4 - }, - { - "name": "RHand_Brute_70", - "directions": 4 - }, - { - "name": "RFoot_Brute_10", - "directions": 4 - }, - { - "name": "RFoot_Brute_30", - "directions": 4 - }, - { - "name": "RFoot_Brute_50", - "directions": 4 - }, - { - "name": "RFoot_Brute_70", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/Chest_Burn_10.png b/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/Chest_Burn_10.png deleted file mode 100644 index 9fca538c57..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/Chest_Burn_10.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/Chest_Burn_30.png b/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/Chest_Burn_30.png deleted file mode 100644 index 7dae1fbd75..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/Chest_Burn_30.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/Chest_Burn_50.png b/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/Chest_Burn_50.png deleted file mode 100644 index ee7bbc80e9..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/Chest_Burn_50.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/Chest_Burn_70.png b/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/Chest_Burn_70.png deleted file mode 100644 index 61e16cb756..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/Chest_Burn_70.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/Head_Burn_10.png b/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/Head_Burn_10.png deleted file mode 100644 index b2dce2291d..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/Head_Burn_10.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/Head_Burn_30.png b/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/Head_Burn_30.png deleted file mode 100644 index ef1e6a80cf..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/Head_Burn_30.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/Head_Burn_50.png b/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/Head_Burn_50.png deleted file mode 100644 index bc52a1a0e7..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/Head_Burn_50.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/Head_Burn_70.png b/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/Head_Burn_70.png deleted file mode 100644 index 95b5fa1f4d..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/Head_Burn_70.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/LArm_Burn_10.png b/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/LArm_Burn_10.png deleted file mode 100644 index 650ee5ec93..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/LArm_Burn_10.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/LArm_Burn_30.png b/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/LArm_Burn_30.png deleted file mode 100644 index c91b0c761b..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/LArm_Burn_30.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/LArm_Burn_50.png b/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/LArm_Burn_50.png deleted file mode 100644 index 6ea7a6c449..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/LArm_Burn_50.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/LArm_Burn_70.png b/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/LArm_Burn_70.png deleted file mode 100644 index 9409f5db76..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/LArm_Burn_70.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/LFoot_Burn_10.png b/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/LFoot_Burn_10.png deleted file mode 100644 index 088ea0f9cc..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/LFoot_Burn_10.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/LFoot_Burn_30.png b/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/LFoot_Burn_30.png deleted file mode 100644 index 717d5ab496..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/LFoot_Burn_30.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/LFoot_Burn_50.png b/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/LFoot_Burn_50.png deleted file mode 100644 index 33524c4bd8..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/LFoot_Burn_50.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/LFoot_Burn_70.png b/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/LFoot_Burn_70.png deleted file mode 100644 index 7a0d1744bc..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/LFoot_Burn_70.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/LHand_Burn_10.png b/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/LHand_Burn_10.png deleted file mode 100644 index 5725eee18e..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/LHand_Burn_10.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/LHand_Burn_30.png b/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/LHand_Burn_30.png deleted file mode 100644 index 1d7a525271..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/LHand_Burn_30.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/LHand_Burn_50.png b/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/LHand_Burn_50.png deleted file mode 100644 index 99b736f88f..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/LHand_Burn_50.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/LHand_Burn_70.png b/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/LHand_Burn_70.png deleted file mode 100644 index 71d644242d..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/LHand_Burn_70.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/LLeg_Burn_10.png b/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/LLeg_Burn_10.png deleted file mode 100644 index bd6d36681e..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/LLeg_Burn_10.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/LLeg_Burn_30.png b/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/LLeg_Burn_30.png deleted file mode 100644 index 112bfca8ac..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/LLeg_Burn_30.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/LLeg_Burn_50.png b/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/LLeg_Burn_50.png deleted file mode 100644 index 09482285e4..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/LLeg_Burn_50.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/LLeg_Burn_70.png b/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/LLeg_Burn_70.png deleted file mode 100644 index 569244c347..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/LLeg_Burn_70.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/RArm_Burn_10.png b/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/RArm_Burn_10.png deleted file mode 100644 index bd1c09e821..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/RArm_Burn_10.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/RArm_Burn_30.png b/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/RArm_Burn_30.png deleted file mode 100644 index 726b16661a..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/RArm_Burn_30.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/RArm_Burn_50.png b/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/RArm_Burn_50.png deleted file mode 100644 index c7ca646c8d..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/RArm_Burn_50.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/RArm_Burn_70.png b/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/RArm_Burn_70.png deleted file mode 100644 index e74cd61e51..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/RArm_Burn_70.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/RFoot_Burn_10.png b/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/RFoot_Burn_10.png deleted file mode 100644 index de8aec9fc2..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/RFoot_Burn_10.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/RFoot_Burn_30.png b/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/RFoot_Burn_30.png deleted file mode 100644 index 248f85cd7b..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/RFoot_Burn_30.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/RFoot_Burn_50.png b/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/RFoot_Burn_50.png deleted file mode 100644 index 418031e7fa..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/RFoot_Burn_50.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/RFoot_Burn_70.png b/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/RFoot_Burn_70.png deleted file mode 100644 index 62c182efe0..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/RFoot_Burn_70.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/RHand_Burn_10.png b/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/RHand_Burn_10.png deleted file mode 100644 index ffcfc4c6e0..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/RHand_Burn_10.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/RHand_Burn_30.png b/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/RHand_Burn_30.png deleted file mode 100644 index e3008073b1..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/RHand_Burn_30.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/RHand_Burn_50.png b/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/RHand_Burn_50.png deleted file mode 100644 index fc6836b1c1..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/RHand_Burn_50.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/RHand_Burn_70.png b/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/RHand_Burn_70.png deleted file mode 100644 index 7355df7e7e..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/RHand_Burn_70.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/RLeg_Burn_10.png b/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/RLeg_Burn_10.png deleted file mode 100644 index 2074110c37..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/RLeg_Burn_10.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/RLeg_Burn_30.png b/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/RLeg_Burn_30.png deleted file mode 100644 index 784a935146..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/RLeg_Burn_30.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/RLeg_Burn_50.png b/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/RLeg_Burn_50.png deleted file mode 100644 index 74f942269b..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/RLeg_Burn_50.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/RLeg_Burn_70.png b/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/RLeg_Burn_70.png deleted file mode 100644 index f533a8601b..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/RLeg_Burn_70.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/meta.json b/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/meta.json deleted file mode 100644 index ea17f30908..0000000000 --- a/Resources/Textures/_White/Mobs/Effects/Resomi/burn_damage.rsi/meta.json +++ /dev/null @@ -1,171 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from Bay Station SS13", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "RLeg_Burn_70", - "directions": 4 - }, - { - "name": "Chest_Burn_10", - "directions": 4 - }, - { - "name": "Chest_Burn_30", - "directions": 4 - }, - { - "name": "Chest_Burn_50", - "directions": 4 - }, - { - "name": "Chest_Burn_70", - "directions": 4 - }, - { - "name": "Head_Burn_10", - "directions": 4 - }, - { - "name": "Head_Burn_30", - "directions": 4 - }, - { - "name": "Head_Burn_50", - "directions": 4 - }, - { - "name": "Head_Burn_70", - "directions": 4 - }, - { - "name": "LArm_Burn_10", - "directions": 4 - }, - { - "name": "LArm_Burn_30", - "directions": 4 - }, - { - "name": "LArm_Burn_50", - "directions": 4 - }, - { - "name": "LArm_Burn_70", - "directions": 4 - }, - { - "name": "LFoot_Burn_10", - "directions": 4 - }, - { - "name": "LFoot_Burn_30", - "directions": 4 - }, - { - "name": "LFoot_Burn_50", - "directions": 4 - }, - { - "name": "LFoot_Burn_70", - "directions": 4 - }, - { - "name": "LHand_Burn_10", - "directions": 4 - }, - { - "name": "LHand_Burn_30", - "directions": 4 - }, - { - "name": "LHand_Burn_50", - "directions": 4 - }, - { - "name": "LHand_Burn_70", - "directions": 4 - }, - { - "name": "LLeg_Burn_10", - "directions": 4 - }, - { - "name": "LLeg_Burn_30", - "directions": 4 - }, - { - "name": "LLeg_Burn_50", - "directions": 4 - }, - { - "name": "LLeg_Burn_70", - "directions": 4 - }, - { - "name": "RArm_Burn_10", - "directions": 4 - }, - { - "name": "RArm_Burn_30", - "directions": 4 - }, - { - "name": "RArm_Burn_50", - "directions": 4 - }, - { - "name": "RArm_Burn_70", - "directions": 4 - }, - { - "name": "RFoot_Burn_10", - "directions": 4 - }, - { - "name": "RFoot_Burn_30", - "directions": 4 - }, - { - "name": "RFoot_Burn_50", - "directions": 4 - }, - { - "name": "RFoot_Burn_70", - "directions": 4 - }, - { - "name": "RHand_Burn_10", - "directions": 4 - }, - { - "name": "RHand_Burn_30", - "directions": 4 - }, - { - "name": "RHand_Burn_50", - "directions": 4 - }, - { - "name": "RHand_Burn_70", - "directions": 4 - }, - { - "name": "RLeg_Burn_10", - "directions": 4 - }, - { - "name": "RLeg_Burn_30", - "directions": 4 - }, - { - "name": "RLeg_Burn_50", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Mobs/Effects/onfire.rsi/Resomi_burning.png b/Resources/Textures/_White/Mobs/Effects/onfire.rsi/Resomi_burning.png deleted file mode 100644 index 84fbf0d4dc..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/onfire.rsi/Resomi_burning.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/onfire.rsi/Resomi_minor_burning.png b/Resources/Textures/_White/Mobs/Effects/onfire.rsi/Resomi_minor_burning.png deleted file mode 100644 index 3b6b50f476..0000000000 Binary files a/Resources/Textures/_White/Mobs/Effects/onfire.rsi/Resomi_minor_burning.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Effects/onfire.rsi/meta.json b/Resources/Textures/_White/Mobs/Effects/onfire.rsi/meta.json deleted file mode 100644 index 4df8e1b5a2..0000000000 --- a/Resources/Textures/_White/Mobs/Effects/onfire.rsi/meta.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "Created by aserovich (Discord)", - "states": [ - { - "name": "Resomi_burning", - "directions": 4, - "delays": [ - [ 0.1, 0.1, 0.1, 0.1 ], - [ 0.1, 0.1, 0.1, 0.1 ], - [ 0.1, 0.1, 0.1, 0.1 ], - [ 0.1, 0.1, 0.1, 0.1 ] - ] - }, - { - "name": "Resomi_minor_burning", - "directions": 4, - "delays": [ - [ 0.1, 0.1, 0.1, 0.1 ], - [ 0.1, 0.1, 0.1, 0.1 ], - [ 0.1, 0.1, 0.1, 0.1 ], - [ 0.1, 0.1, 0.1, 0.1 ] - ] - } - ] -} diff --git a/Resources/Textures/_White/Mobs/Species/Resomi/Abilities/AgilityOff.png b/Resources/Textures/_White/Mobs/Species/Resomi/Abilities/AgilityOff.png deleted file mode 100644 index d866605bd7..0000000000 Binary files a/Resources/Textures/_White/Mobs/Species/Resomi/Abilities/AgilityOff.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Species/Resomi/Abilities/AgilityOn.png b/Resources/Textures/_White/Mobs/Species/Resomi/Abilities/AgilityOn.png deleted file mode 100644 index 57419985cf..0000000000 Binary files a/Resources/Textures/_White/Mobs/Species/Resomi/Abilities/AgilityOn.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Species/Resomi/Abilities/meta.json b/Resources/Textures/_White/Mobs/Species/Resomi/Abilities/meta.json deleted file mode 100644 index febfcf5a84..0000000000 --- a/Resources/Textures/_White/Mobs/Species/Resomi/Abilities/meta.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Created by Pofitlo", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "AgilityOff" - }, - { - "name": "AgilityOn" - } - ] -} diff --git a/Resources/Textures/_White/Mobs/Species/Resomi/displacement.rsi/back.png b/Resources/Textures/_White/Mobs/Species/Resomi/displacement.rsi/back.png deleted file mode 100644 index f2f7b2e35e..0000000000 Binary files a/Resources/Textures/_White/Mobs/Species/Resomi/displacement.rsi/back.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Species/Resomi/displacement.rsi/belt.png b/Resources/Textures/_White/Mobs/Species/Resomi/displacement.rsi/belt.png deleted file mode 100644 index 46abece46b..0000000000 Binary files a/Resources/Textures/_White/Mobs/Species/Resomi/displacement.rsi/belt.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Species/Resomi/displacement.rsi/ears.png b/Resources/Textures/_White/Mobs/Species/Resomi/displacement.rsi/ears.png deleted file mode 100644 index 28cb986c95..0000000000 Binary files a/Resources/Textures/_White/Mobs/Species/Resomi/displacement.rsi/ears.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Species/Resomi/displacement.rsi/eyes.png b/Resources/Textures/_White/Mobs/Species/Resomi/displacement.rsi/eyes.png deleted file mode 100644 index 1335c60410..0000000000 Binary files a/Resources/Textures/_White/Mobs/Species/Resomi/displacement.rsi/eyes.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Species/Resomi/displacement.rsi/feet.png b/Resources/Textures/_White/Mobs/Species/Resomi/displacement.rsi/feet.png deleted file mode 100644 index e99cfb7585..0000000000 Binary files a/Resources/Textures/_White/Mobs/Species/Resomi/displacement.rsi/feet.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Species/Resomi/displacement.rsi/hands.png b/Resources/Textures/_White/Mobs/Species/Resomi/displacement.rsi/hands.png deleted file mode 100644 index 4b7ede0475..0000000000 Binary files a/Resources/Textures/_White/Mobs/Species/Resomi/displacement.rsi/hands.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Species/Resomi/displacement.rsi/head.png b/Resources/Textures/_White/Mobs/Species/Resomi/displacement.rsi/head.png deleted file mode 100644 index cd79c62e5e..0000000000 Binary files a/Resources/Textures/_White/Mobs/Species/Resomi/displacement.rsi/head.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Species/Resomi/displacement.rsi/inHand.png b/Resources/Textures/_White/Mobs/Species/Resomi/displacement.rsi/inHand.png deleted file mode 100644 index 7fbc76a824..0000000000 Binary files a/Resources/Textures/_White/Mobs/Species/Resomi/displacement.rsi/inHand.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Species/Resomi/displacement.rsi/jumpsuit.png b/Resources/Textures/_White/Mobs/Species/Resomi/displacement.rsi/jumpsuit.png deleted file mode 100644 index 6a6064f813..0000000000 Binary files a/Resources/Textures/_White/Mobs/Species/Resomi/displacement.rsi/jumpsuit.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Species/Resomi/displacement.rsi/mask.png b/Resources/Textures/_White/Mobs/Species/Resomi/displacement.rsi/mask.png deleted file mode 100644 index 0b870e2598..0000000000 Binary files a/Resources/Textures/_White/Mobs/Species/Resomi/displacement.rsi/mask.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Species/Resomi/displacement.rsi/meta.json b/Resources/Textures/_White/Mobs/Species/Resomi/displacement.rsi/meta.json deleted file mode 100644 index a7aabf6ccd..0000000000 --- a/Resources/Textures/_White/Mobs/Species/Resomi/displacement.rsi/meta.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "By Pofitlo", - "size": { - "x": 32, - "y": 32 - }, - "load": { - "srgb": false - }, - "states": [ - { - "name": "jumpsuit", - "directions": 4 - }, - { - "name": "ears", - "directions": 4 - }, - { - "name": "back", - "directions": 4 - }, - { - "name": "eyes", - "directions": 4 - }, - { - "name": "head", - "directions": 4 - }, - { - "name": "belt", - "directions": 4 - }, - { - "name": "hands", - "directions": 4 - }, - { - "name": "feet", - "directions": 4 - }, - { - "name": "neck", - "directions": 4 - }, - { - "name": "mask", - "directions": 4 - }, - { - "name": "inHand", - "directions": 4 - }, - { - "name": "suitStorage", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Mobs/Species/Resomi/displacement.rsi/neck.png b/Resources/Textures/_White/Mobs/Species/Resomi/displacement.rsi/neck.png deleted file mode 100644 index 4702d3da3d..0000000000 Binary files a/Resources/Textures/_White/Mobs/Species/Resomi/displacement.rsi/neck.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Species/Resomi/displacement.rsi/suitStorage.png b/Resources/Textures/_White/Mobs/Species/Resomi/displacement.rsi/suitStorage.png deleted file mode 100644 index 9c3144ccf4..0000000000 Binary files a/Resources/Textures/_White/Mobs/Species/Resomi/displacement.rsi/suitStorage.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Species/Resomi/parts.rsi/full.png b/Resources/Textures/_White/Mobs/Species/Resomi/parts.rsi/full.png deleted file mode 100644 index 944ce99250..0000000000 Binary files a/Resources/Textures/_White/Mobs/Species/Resomi/parts.rsi/full.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Species/Resomi/parts.rsi/groin.png b/Resources/Textures/_White/Mobs/Species/Resomi/parts.rsi/groin.png deleted file mode 100644 index daa4b2d6e1..0000000000 Binary files a/Resources/Textures/_White/Mobs/Species/Resomi/parts.rsi/groin.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Species/Resomi/parts.rsi/head_f.png b/Resources/Textures/_White/Mobs/Species/Resomi/parts.rsi/head_f.png deleted file mode 100644 index 2cb32df05e..0000000000 Binary files a/Resources/Textures/_White/Mobs/Species/Resomi/parts.rsi/head_f.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Species/Resomi/parts.rsi/head_m.png b/Resources/Textures/_White/Mobs/Species/Resomi/parts.rsi/head_m.png deleted file mode 100644 index 1d1566928d..0000000000 Binary files a/Resources/Textures/_White/Mobs/Species/Resomi/parts.rsi/head_m.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Species/Resomi/parts.rsi/l_arm.png b/Resources/Textures/_White/Mobs/Species/Resomi/parts.rsi/l_arm.png deleted file mode 100644 index 11e43d017c..0000000000 Binary files a/Resources/Textures/_White/Mobs/Species/Resomi/parts.rsi/l_arm.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Species/Resomi/parts.rsi/l_foot.png b/Resources/Textures/_White/Mobs/Species/Resomi/parts.rsi/l_foot.png deleted file mode 100644 index 431efddd67..0000000000 Binary files a/Resources/Textures/_White/Mobs/Species/Resomi/parts.rsi/l_foot.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Species/Resomi/parts.rsi/l_hand.png b/Resources/Textures/_White/Mobs/Species/Resomi/parts.rsi/l_hand.png deleted file mode 100644 index 92797d29a5..0000000000 Binary files a/Resources/Textures/_White/Mobs/Species/Resomi/parts.rsi/l_hand.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Species/Resomi/parts.rsi/l_leg.png b/Resources/Textures/_White/Mobs/Species/Resomi/parts.rsi/l_leg.png deleted file mode 100644 index bb653da08b..0000000000 Binary files a/Resources/Textures/_White/Mobs/Species/Resomi/parts.rsi/l_leg.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Species/Resomi/parts.rsi/meta.json b/Resources/Textures/_White/Mobs/Species/Resomi/parts.rsi/meta.json deleted file mode 100644 index fda56a1f8d..0000000000 --- a/Resources/Textures/_White/Mobs/Species/Resomi/parts.rsi/meta.json +++ /dev/null @@ -1,66 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Created by EmoGarbage", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "full" - }, - { - "name": "head_f", - "directions": 4 - }, - { - "name": "head_m", - "directions": 4 - }, - { - "name": "l_arm", - "directions": 4 - }, - { - "name": "l_foot", - "directions": 4 - }, - { - "name": "l_hand", - "directions": 4 - }, - { - "name": "l_leg", - "directions": 4 - }, - { - "name": "r_arm", - "directions": 4 - }, - { - "name": "r_foot", - "directions": 4 - }, - { - "name": "r_hand", - "directions": 4 - }, - { - "name": "r_leg", - "directions": 4 - }, - { - "name": "torso_f", - "directions": 4 - }, - { - "name": "torso_m", - "directions": 4 - }, - { - "name": "groin", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Mobs/Species/Resomi/parts.rsi/r_arm.png b/Resources/Textures/_White/Mobs/Species/Resomi/parts.rsi/r_arm.png deleted file mode 100644 index 33659a22b8..0000000000 Binary files a/Resources/Textures/_White/Mobs/Species/Resomi/parts.rsi/r_arm.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Species/Resomi/parts.rsi/r_foot.png b/Resources/Textures/_White/Mobs/Species/Resomi/parts.rsi/r_foot.png deleted file mode 100644 index 5eab7aaf96..0000000000 Binary files a/Resources/Textures/_White/Mobs/Species/Resomi/parts.rsi/r_foot.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Species/Resomi/parts.rsi/r_hand.png b/Resources/Textures/_White/Mobs/Species/Resomi/parts.rsi/r_hand.png deleted file mode 100644 index 0aa3dd18b3..0000000000 Binary files a/Resources/Textures/_White/Mobs/Species/Resomi/parts.rsi/r_hand.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Species/Resomi/parts.rsi/r_leg.png b/Resources/Textures/_White/Mobs/Species/Resomi/parts.rsi/r_leg.png deleted file mode 100644 index 988fb999af..0000000000 Binary files a/Resources/Textures/_White/Mobs/Species/Resomi/parts.rsi/r_leg.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Species/Resomi/parts.rsi/torso_f.png b/Resources/Textures/_White/Mobs/Species/Resomi/parts.rsi/torso_f.png deleted file mode 100644 index f84d8e389d..0000000000 Binary files a/Resources/Textures/_White/Mobs/Species/Resomi/parts.rsi/torso_f.png and /dev/null differ diff --git a/Resources/Textures/_White/Mobs/Species/Resomi/parts.rsi/torso_m.png b/Resources/Textures/_White/Mobs/Species/Resomi/parts.rsi/torso_m.png deleted file mode 100644 index f84d8e389d..0000000000 Binary files a/Resources/Textures/_White/Mobs/Species/Resomi/parts.rsi/torso_m.png and /dev/null differ