diff --git a/Content.Server/Chat/Systems/ChatSystem.cs b/Content.Server/Chat/Systems/ChatSystem.cs index 6e80d5d9ff..8c18993723 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 <= WhisperClearRange) + if (data.Range <= (TryComp(listener, out var modifier) ? modifier.WhisperListeningRange : WhisperClearRange)) // WWDP-Edit { // 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 647f082708..75ba5f5f88 100644 --- a/Content.Server/Flash/FlashSystem.cs +++ b/Content.Server/Flash/FlashSystem.cs @@ -135,6 +135,13 @@ 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/_CorvaxNext/Resomi/Abilities/AgillitySkillSystem.cs b/Content.Server/_CorvaxNext/Resomi/Abilities/AgillitySkillSystem.cs new file mode 100644 index 0000000000..0f59384103 --- /dev/null +++ b/Content.Server/_CorvaxNext/Resomi/Abilities/AgillitySkillSystem.cs @@ -0,0 +1,108 @@ +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._CorvaxNext.Resomi; +using Content.Shared.Movement.Components; +using Content.Shared.Movement.Systems; +using Content.Shared._CorvaxNext.Resomi.Abilities; +using Content.Shared.Damage.Components; +using Robust.Shared.Physics; + +namespace Content.Server._CorvaxNext.Resomi.Abilities; + +public sealed class AgillitySkillSystem : SharedAgillitySkillSystem +{ + [Dependency] private readonly SharedActionsSystem _actionsSystem = default!; + [Dependency] private readonly MovementSpeedModifierSystem _movementSpeedModifier = default!; + + private Entity action; + + 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.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); + + 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/_CorvaxNext/Speech/Components/ResomiAccentComponent.cs b/Content.Server/_CorvaxNext/Speech/Components/ResomiAccentComponent.cs new file mode 100644 index 0000000000..497171bb3c --- /dev/null +++ b/Content.Server/_CorvaxNext/Speech/Components/ResomiAccentComponent.cs @@ -0,0 +1,4 @@ +namespace Content.Server._CorvaxNext.Speech.Components; + +[RegisterComponent] +public sealed partial class ResomiAccentComponent : Component; diff --git a/Content.Server/_CorvaxNext/Speech/EntitySystems/ResomiAccentSystem.cs b/Content.Server/_CorvaxNext/Speech/EntitySystems/ResomiAccentSystem.cs new file mode 100644 index 0000000000..b6b6350045 --- /dev/null +++ b/Content.Server/_CorvaxNext/Speech/EntitySystems/ResomiAccentSystem.cs @@ -0,0 +1,61 @@ +using System.Text.RegularExpressions; +using Content.Server._CorvaxNext.Speech.Components; +using Content.Server.Speech; +using Robust.Shared.Random; + +namespace Content.Server._CorvaxNext.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/Chat/ChatModifierComponent.cs b/Content.Shared/Chat/ChatModifierComponent.cs new file mode 100644 index 0000000000..106f651c13 --- /dev/null +++ b/Content.Shared/Chat/ChatModifierComponent.cs @@ -0,0 +1,10 @@ +namespace Content.Shared.Chat; +/// +/// Corvax-Next-Resomi +/// +[RegisterComponent] +public sealed partial class ChatModifierComponent : Component +{ + [DataField("whisperListeningRange")] + public int WhisperListeningRange = SharedChatSystem.WhisperClearRange; +} diff --git a/Content.Shared/Flash/Components/FlashModifierComponent.cs b/Content.Shared/Flash/Components/FlashModifierComponent.cs new file mode 100644 index 0000000000..33afc99481 --- /dev/null +++ b/Content.Shared/Flash/Components/FlashModifierComponent.cs @@ -0,0 +1,13 @@ + namespace Content.Shared.Flash.Components; + + +/// +/// Corvax-Next-Resomi +/// + +[RegisterComponent] +public sealed partial class FlashModifierComponent : Component +{ + [DataField] + public float Modifier = 1f; +} diff --git a/Content.Shared/Weapons/Ranged/Events/GunRefreshModifiersEvent.cs b/Content.Shared/Weapons/Ranged/Events/GunRefreshModifiersEvent.cs index 0ad79bd74a..488124ece5 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 46b6463c5a..dabd4d59bc 100644 --- a/Content.Shared/Wieldable/Components/WieldableComponent.cs +++ b/Content.Shared/Wieldable/Components/WieldableComponent.cs @@ -44,6 +44,8 @@ public sealed partial class WieldableComponent : Component [DataField] public bool AltUseInHand = false; // WD EDIT END + + public EntityUid? User = null; } [Serializable, NetSerializable] diff --git a/Content.Shared/Wieldable/WieldableSystem.cs b/Content.Shared/Wieldable/WieldableSystem.cs index 0a46369787..0097253bbc 100644 --- a/Content.Shared/Wieldable/WieldableSystem.cs +++ b/Content.Shared/Wieldable/WieldableSystem.cs @@ -18,6 +18,7 @@ using Content.Shared.Wieldable.Components; using Robust.Shared.Audio.Systems; using Robust.Shared.Timing; +using Content.Shared._CorvaxNext.Resomi.Abilities; namespace Content.Shared.Wieldable; @@ -106,7 +107,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) + wield.Wielded && !HasComp(wield.User)) //Corvax-Next-Resomi { args.MinAngle += bonus.Comp.MinAngle; args.MaxAngle += bonus.Comp.MaxAngle; @@ -269,6 +270,8 @@ 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; //Corvax-Next-Resomi + var targEv = new ItemWieldedEvent(); RaiseLocalEvent(used, ref targEv); diff --git a/Content.Shared/_CorvaxNext/Resomi/Abilities/SharedAgillitySkillComponent.cs b/Content.Shared/_CorvaxNext/Resomi/Abilities/SharedAgillitySkillComponent.cs new file mode 100644 index 0000000000..4739ff1b18 --- /dev/null +++ b/Content.Shared/_CorvaxNext/Resomi/Abilities/SharedAgillitySkillComponent.cs @@ -0,0 +1,60 @@ +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; + +namespace Content.Shared._CorvaxNext.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/_CorvaxNext/Resomi/Abilities/SharedAgillitySkillSystem.cs b/Content.Shared/_CorvaxNext/Resomi/Abilities/SharedAgillitySkillSystem.cs new file mode 100644 index 0000000000..1bb354a677 --- /dev/null +++ b/Content.Shared/_CorvaxNext/Resomi/Abilities/SharedAgillitySkillSystem.cs @@ -0,0 +1,45 @@ +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._CorvaxNext.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/_CorvaxNext/Resomi/Abilities/WeaponsUseInabilityComponent.cs b/Content.Shared/_CorvaxNext/Resomi/Abilities/WeaponsUseInabilityComponent.cs new file mode 100644 index 0000000000..2a77a464f7 --- /dev/null +++ b/Content.Shared/_CorvaxNext/Resomi/Abilities/WeaponsUseInabilityComponent.cs @@ -0,0 +1,9 @@ +namespace Content.Shared._CorvaxNext.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/_CorvaxNext/Resomi/SharedResomi.cs b/Content.Shared/_CorvaxNext/Resomi/SharedResomi.cs new file mode 100644 index 0000000000..41324a1272 --- /dev/null +++ b/Content.Shared/_CorvaxNext/Resomi/SharedResomi.cs @@ -0,0 +1,15 @@ +using Content.Shared.Actions; +using Content.Shared.DoAfter; +using Robust.Shared.Serialization; + +namespace Content.Shared._CorvaxNext.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/_CorvaxNext/Voice/Resomi/resomi_scream.ogg b/Resources/Audio/_CorvaxNext/Voice/Resomi/resomi_scream.ogg new file mode 100644 index 0000000000..77e37d6577 Binary files /dev/null and b/Resources/Audio/_CorvaxNext/Voice/Resomi/resomi_scream.ogg differ diff --git a/Resources/Locale/ru-RU/_CorvaxNext/abilitties/agillity.ftl b/Resources/Locale/ru-RU/_CorvaxNext/abilitties/agillity.ftl new file mode 100644 index 0000000000..0d66248b22 --- /dev/null +++ b/Resources/Locale/ru-RU/_CorvaxNext/abilitties/agillity.ftl @@ -0,0 +1,4 @@ +agility-activated-massage = Способность включена. +agility-deactivated-massage = Способность выключена. + + diff --git a/Resources/Locale/ru-RU/_CorvaxNext/accessories/resomi-hair.ftl b/Resources/Locale/ru-RU/_CorvaxNext/accessories/resomi-hair.ftl new file mode 100644 index 0000000000..f573106d6a --- /dev/null +++ b/Resources/Locale/ru-RU/_CorvaxNext/accessories/resomi-hair.ftl @@ -0,0 +1,18 @@ +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/_CorvaxNext/markings/resomi.ftl b/Resources/Locale/ru-RU/_CorvaxNext/markings/resomi.ftl new file mode 100644 index 0000000000..942ef101b9 --- /dev/null +++ b/Resources/Locale/ru-RU/_CorvaxNext/markings/resomi.ftl @@ -0,0 +1,29 @@ +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/_CorvaxNext/reagents/biological.ftl b/Resources/Locale/ru-RU/_CorvaxNext/reagents/biological.ftl new file mode 100644 index 0000000000..09a5f4ebf3 --- /dev/null +++ b/Resources/Locale/ru-RU/_CorvaxNext/reagents/biological.ftl @@ -0,0 +1,4 @@ +reagent-name-resomi-blood = Фиолетовая кровь +reagent-desc-resomi-blood = Густая жидкость с резким аммиачным запахом + + diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_corvaxnext/actions/agility.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_corvaxnext/actions/agility.ftl new file mode 100644 index 0000000000..fc54892081 --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_corvaxnext/actions/agility.ftl @@ -0,0 +1,2 @@ +ent-SwitchAgilityAction = Переключить ловкость. + .desc = Переключает способность к активному перемещению. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_corvaxnext/body/parts/resomi.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_corvaxnext/body/parts/resomi.ftl new file mode 100644 index 0000000000..e727983d0e --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_corvaxnext/body/parts/resomi.ftl @@ -0,0 +1,22 @@ +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/ss14-ru/prototypes/_corvaxnext/entities/mobs/player/resomi.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_corvaxnext/entities/mobs/player/resomi.ftl new file mode 100644 index 0000000000..b44d1501aa --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_corvaxnext/entities/mobs/player/resomi.ftl @@ -0,0 +1,2 @@ +ent-MobResomi = Урист МакРезоми + .desc = { ent-BaseMobResomi.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_corvaxnext/entities/mobs/species/resomi.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_corvaxnext/entities/mobs/species/resomi.ftl new file mode 100644 index 0000000000..67571dc676 --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_corvaxnext/entities/mobs/species/resomi.ftl @@ -0,0 +1,5 @@ +ent-BaseMobResomi = { ent-BaseMobSpeciesOrganic } + .desc = { ent-BaseMobSpeciesOrganic.desc } + .suffix = Резоми +ent-MobResomiDummy = { ent-BaseSpeciesDummy } + .desc = { ent-BaseSpeciesDummy.desc } diff --git a/Resources/Prototypes/_CorvaxNext/Actions/resomi.yml b/Resources/Prototypes/_CorvaxNext/Actions/resomi.yml new file mode 100644 index 0000000000..8c3f61721a --- /dev/null +++ b/Resources/Prototypes/_CorvaxNext/Actions/resomi.yml @@ -0,0 +1,9 @@ +- type: entity + id: SwitchAgilityAction + name: Switch agility + description: Switching agility + components: + - type: InstantAction + icon: _CorvaxNext/Mobs/Species/Resomi/Abilities/AgilityOff.png + iconOn: _CorvaxNext/Mobs/Species/Resomi/Abilities/AgilityOn.png + event: !type:SwitchAgillityActionEvent diff --git a/Resources/Prototypes/_CorvaxNext/Body/Parts/resomi.yml b/Resources/Prototypes/_CorvaxNext/Body/Parts/resomi.yml new file mode 100644 index 0000000000..a3b03952e3 --- /dev/null +++ b/Resources/Prototypes/_CorvaxNext/Body/Parts/resomi.yml @@ -0,0 +1,118 @@ +- 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: _CorvaxNext/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: _CorvaxNext/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: _CorvaxNext/Mobs/Species/Resomi/parts.rsi + state: "l_arm" + +- type: entity + id: RightArmResomi + name: "right resomi arm" + parent: [PartHuman, BaseRightArm] + components: + - type: Sprite + sprite: _CorvaxNext/Mobs/Species/Resomi/parts.rsi + state: "r_arm" + +- type: entity + id: LeftHandResomi + name: "left resomi hand" + parent: [PartHuman, BaseLeftHand] + components: + - type: Sprite + sprite: _CorvaxNext/Mobs/Species/Resomi/parts.rsi + state: "l_hand" + +- type: entity + id: RightHandResomi + name: "right resomi hand" + parent: [PartHuman, BaseRightHand] + components: + - type: Sprite + sprite: _CorvaxNext/Mobs/Species/Resomi/parts.rsi + state: "r_hand" + +- type: entity + id: LeftLegResomi + name: "left resomi leg" + parent: [PartHuman, BaseLeftLeg] + components: + - type: Sprite + sprite: _CorvaxNext/Mobs/Species/Resomi/parts.rsi + state: "l_leg" + +- type: entity + id: RightLegResomi + name: "right resomi leg" + parent: [PartHuman, BaseRightLeg] + components: + - type: Sprite + sprite: _CorvaxNext/Mobs/Species/Resomi/parts.rsi + state: "r_leg" + +- type: entity + id: LeftFootResomi + name: "left resomi foot" + parent: [PartHuman, BaseLeftFoot] + components: + - type: Sprite + sprite: _CorvaxNext/Mobs/Species/Resomi/parts.rsi + state: "l_foot" + +- type: entity + id: RightFootResomi + name: "right resomi foot" + parent: [PartHuman, BaseRightFoot] + components: + - type: Sprite + sprite: _CorvaxNext/Mobs/Species/Resomi/parts.rsi + state: "r_foot" diff --git a/Resources/Prototypes/_CorvaxNext/Body/Prototypes/resomi.yml b/Resources/Prototypes/_CorvaxNext/Body/Prototypes/resomi.yml new file mode 100644 index 0000000000..e05f759162 --- /dev/null +++ b/Resources/Prototypes/_CorvaxNext/Body/Prototypes/resomi.yml @@ -0,0 +1,49 @@ +- 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/_CorvaxNext/Damage/modifier_sets.yml b/Resources/Prototypes/_CorvaxNext/Damage/modifier_sets.yml new file mode 100644 index 0000000000..d4868b0926 --- /dev/null +++ b/Resources/Prototypes/_CorvaxNext/Damage/modifier_sets.yml @@ -0,0 +1,21 @@ +- 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 + +# _CorvaxNext: surgery +# Change this if you want to alter how damage types affect part severing/integrity. +- type: damageModifierSet + id: PartDamage + coefficients: + Blunt: 0.8 + Slash: 1.2 + Piercing: 0.5 + Cold: 0.5 + Heat: 0.8 + Shock: 0.5 \ No newline at end of file diff --git a/Resources/Prototypes/_CorvaxNext/Datasets/Names/resomi_female.yml b/Resources/Prototypes/_CorvaxNext/Datasets/Names/resomi_female.yml new file mode 100644 index 0000000000..9b2148ba71 --- /dev/null +++ b/Resources/Prototypes/_CorvaxNext/Datasets/Names/resomi_female.yml @@ -0,0 +1,55 @@ +- type: dataset + id: names_resomi_female + values: + - Ялиа + - Тефани + - Натхани + - Ксилиа + - Лииши + - Реания + - Найша + - Юнзери + - Нашира + - Ташени + - Мелира + - Рилиа + - Инцера + - Ниареса + - Лирика + - Ширели + - Кали + - Месира + - Канира + - Лишейн + - Янира + - Ташхейл + - Ралима + - Шилера + - Ситилиан + - Яшани + - Лишика + - Ринира + - Шаениа + - Мелисс + - Тишиа + - Релен + - Зекрия + - Накира + - Яшира + - Леанс + - Милия + - Сульмия + - Ешщери + - Туалиси + - Ташира + - Нифлерия + - Рализа + - Шелия + - Насима + - Цениза + - Лешира + - Релика + - Ширима + - Ниалия + - Рири + - Лири diff --git a/Resources/Prototypes/_CorvaxNext/Datasets/Names/resomi_male.yml b/Resources/Prototypes/_CorvaxNext/Datasets/Names/resomi_male.yml new file mode 100644 index 0000000000..07d01e16fb --- /dev/null +++ b/Resources/Prototypes/_CorvaxNext/Datasets/Names/resomi_male.yml @@ -0,0 +1,53 @@ +- type: dataset + id: names_resomi_male + values: + - Теван + - Ниалор + - Марик + - Ауарис + - Исшар + - Латон + - Зарион + - Терви + - Аенири + - Церан + - Айтор + - Ризар + - Тевар + - Ниален + - Марис + - Аурок + - Хирант + - Латим + - Мерек + - Минар + - Аени + - Цетан + - Айсен + - Ситар + - Тензар + - Ниалус + - Марион + - Аурик + - Ровек + - Латир + - Менар + - Оксиус + - Аенор + - Целон + - Айдер + - Дюран + - Тевон + - Ниалун + - Марик + - Аурар + - Ишхам + - Латир + - Менис + - Минок + - Аеним + - Циран + - Ровек + - Синар + - Тевор + - Ниалом \ No newline at end of file diff --git a/Resources/Prototypes/_CorvaxNext/Entities/Player/resomi.yml b/Resources/Prototypes/_CorvaxNext/Entities/Player/resomi.yml new file mode 100644 index 0000000000..de4b346c4a --- /dev/null +++ b/Resources/Prototypes/_CorvaxNext/Entities/Player/resomi.yml @@ -0,0 +1,5 @@ +- type: entity + save: false + name: Urist McRaptor + parent: BaseMobResomi + id: MobResomi \ No newline at end of file diff --git a/Resources/Prototypes/_CorvaxNext/Entities/Species/resomi.yml b/Resources/Prototypes/_CorvaxNext/Entities/Species/resomi.yml new file mode 100644 index 0000000000..a6298b7a76 --- /dev/null +++ b/Resources/Prototypes/_CorvaxNext/Entities/Species/resomi.yml @@ -0,0 +1,210 @@ +- 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: FootprintVisualizer + - 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: _CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi + color: "#C048C2" + Burn: + sprite: _CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi + - type: FireVisuals + sprite: _CorvaxNext/Mobs/Effects/onfire.rsi + normalState: Resomi_minor_burning + alternateState: Resomi_burning + - type: HumanoidAppearance + species: Resomi + - type: Hunger + - type: Puller + needsHands: false + - type: Thirst + - type: Icon + sprite: _CorvaxNext/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: 315 + 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: Vocal + sounds: + Male: MaleResomi + Female: FemaleResomi + Unsexed: MaleResomi + - type: FlashModifier + modifier: 2 + - type: Hands + handDisplacement: + sizeMaps: + 32: + sprite: _CorvaxNext/Mobs/Species/Resomi/displacement.rsi + state: inHand + - type: Inventory + speciesId: resomi + displacements: + jumpsuit: + sizeMaps: + 32: + sprite: _CorvaxNext/Mobs/Species/Resomi/displacement.rsi + state: jumpsuit + eyes: + sizeMaps: + 32: + sprite: _CorvaxNext/Mobs/Species/Resomi/displacement.rsi + state: eyes + gloves: + sizeMaps: + 32: + sprite: _CorvaxNext/Mobs/Species/Resomi/displacement.rsi + state: hands + head: + sizeMaps: + 32: + sprite: _CorvaxNext/Mobs/Species/Resomi/displacement.rsi + state: head + back: + sizeMaps: + 32: + sprite: _CorvaxNext/Mobs/Species/Resomi/displacement.rsi + state: back + ears: + sizeMaps: + 32: + sprite: _CorvaxNext/Mobs/Species/Resomi/displacement.rsi + state: ears + shoes: + sizeMaps: + 32: + sprite: _CorvaxNext/Mobs/Species/Resomi/displacement.rsi + state: feet + neck: + sizeMaps: + 32: + sprite: _CorvaxNext/Mobs/Species/Resomi/displacement.rsi + state: neck + mask: + sizeMaps: + 32: + sprite: _CorvaxNext/Mobs/Species/Resomi/displacement.rsi + state: mask + suitstorage: + sizeMaps: + 32: + sprite: _CorvaxNext/Mobs/Species/Resomi/displacement.rsi + state: suitStorage + belt: + sizeMaps: + 32: + sprite: _CorvaxNext/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: _CorvaxNext/Mobs/Species/Resomi/displacement.rsi + state: inHand + - type: Inventory + speciesId: resomi + displacements: + jumpsuit: + sizeMaps: + 32: + sprite: _CorvaxNext/Mobs/Species/Resomi/displacement.rsi + state: jumpsuit + eyes: + sizeMaps: + 32: + sprite: _CorvaxNext/Mobs/Species/Resomi/displacement.rsi + state: eyes + gloves: + sizeMaps: + 32: + sprite: _CorvaxNext/Mobs/Species/Resomi/displacement.rsi + state: hands + head: + sizeMaps: + 32: + sprite: _CorvaxNext/Mobs/Species/Resomi/displacement.rsi + state: head + back: + sizeMaps: + 32: + sprite: _CorvaxNext/Mobs/Species/Resomi/displacement.rsi + state: back + ears: + sizeMaps: + 32: + sprite: _CorvaxNext/Mobs/Species/Resomi/displacement.rsi + state: ears + shoes: + sizeMaps: + 32: + sprite: _CorvaxNext/Mobs/Species/Resomi/displacement.rsi + state: feet + neck: + sizeMaps: + 32: + sprite: _CorvaxNext/Mobs/Species/Resomi/displacement.rsi + state: neck + mask: + sizeMaps: + 32: + sprite: _CorvaxNext/Mobs/Species/Resomi/displacement.rsi + state: mask + suitstorage: + sizeMaps: + 32: + sprite: _CorvaxNext/Mobs/Species/Resomi/displacement.rsi + state: suitStorage + belt: + sizeMaps: + 32: + sprite: _CorvaxNext/Mobs/Species/Resomi/displacement.rsi + state: belt \ No newline at end of file diff --git a/Resources/Prototypes/_CorvaxNext/Reagents/biological.yml b/Resources/Prototypes/_CorvaxNext/Reagents/biological.yml new file mode 100644 index 0000000000..8bb24db5ee --- /dev/null +++ b/Resources/Prototypes/_CorvaxNext/Reagents/biological.yml @@ -0,0 +1,11 @@ +- 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/_CorvaxNext/Species/resomi.yml b/Resources/Prototypes/_CorvaxNext/Species/resomi.yml new file mode 100644 index 0000000000..5614dfaff6 --- /dev/null +++ b/Resources/Prototypes/_CorvaxNext/Species/resomi.yml @@ -0,0 +1,149 @@ +- type: species + id: Resomi + name: species-name-resomi + roundStart: false + 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 ] + Legs: + points: 2 + required: false + defaultMarkings: [ ResomiLLegFeathers, ResomiRLegFeathers ] + Arms: + points: 2 + required: false + defaultMarkings: [ ResomiLArmFeathers, ResomiRArmFeathers ] + Head: + points: 2 + required: false + Chest: + points: 1 + required: false + +- type: humanoidBaseSprite + id: MobResomiEyes + baseSprite: + sprite: _CorvaxNext/Mobs/Customization/eyes.rsi + state: resomi + +- type: humanoidBaseSprite + id: MobResomiHair + +- type: humanoidBaseSprite + id: MobResomiHead + baseSprite: + sprite: _CorvaxNext/Mobs/Species/Resomi/parts.rsi + state: head_m + +- type: humanoidBaseSprite + id: MobResomiHeadMale + baseSprite: + sprite: _CorvaxNext/Mobs/Species/Resomi/parts.rsi + state: head_m + +- type: humanoidBaseSprite + id: MobResomiHeadFemale + baseSprite: + sprite: _CorvaxNext/Mobs/Species/Resomi/parts.rsi + state: head_f + +- type: humanoidBaseSprite + id: MobResomiTorso + baseSprite: + sprite: _CorvaxNext/Mobs/Species/Resomi/parts.rsi + state: torso_m + +- type: humanoidBaseSprite + id: MobResomiTorsoMale + baseSprite: + sprite: _CorvaxNext/Mobs/Species/Resomi/parts.rsi + state: torso_m + +- type: humanoidBaseSprite + id: MobResomiTorsoFemale + baseSprite: + sprite: _CorvaxNext/Mobs/Species/Resomi/parts.rsi + state: torso_f + +- type: humanoidBaseSprite + id: MobResomiLLeg + baseSprite: + sprite: _CorvaxNext/Mobs/Species/Resomi/parts.rsi + state: l_leg + +- type: humanoidBaseSprite + id: MobResomiLArm + baseSprite: + sprite: _CorvaxNext/Mobs/Species/Resomi/parts.rsi + state: l_arm + +- type: humanoidBaseSprite + id: MobResomiLHand + baseSprite: + sprite: _CorvaxNext/Mobs/Species/Resomi/parts.rsi + state: l_hand + +- type: humanoidBaseSprite + id: MobResomiLFoot + baseSprite: + sprite: _CorvaxNext/Mobs/Species/Resomi/parts.rsi + state: l_foot + +- type: humanoidBaseSprite + id: MobResomiRLeg + baseSprite: + sprite: _CorvaxNext/Mobs/Species/Resomi/parts.rsi + state: r_leg + +- type: humanoidBaseSprite + id: MobResomiRArm + baseSprite: + sprite: _CorvaxNext/Mobs/Species/Resomi/parts.rsi + state: r_arm + +- type: humanoidBaseSprite + id: MobResomiRHand + baseSprite: + sprite: _CorvaxNext/Mobs/Species/Resomi/parts.rsi + state: r_hand + +- type: humanoidBaseSprite + id: MobResomiRFoot + baseSprite: + sprite: _CorvaxNext/Mobs/Species/Resomi/parts.rsi + state: r_foot diff --git a/Resources/Prototypes/_CorvaxNext/Voice/speech_emote_sounds.yml b/Resources/Prototypes/_CorvaxNext/Voice/speech_emote_sounds.yml new file mode 100644 index 0000000000..fe171fe1b8 --- /dev/null +++ b/Resources/Prototypes/_CorvaxNext/Voice/speech_emote_sounds.yml @@ -0,0 +1,44 @@ +- type: emoteSounds + id: MaleResomi + params: + variation: 0.125 + sounds: + Scream: + path: /Audio/_CorvaxNext/Voice/Resomi/resomi_scream.ogg + Laugh: + collection: MaleLaugh + Honk: + collection: BikeHorn + Whistle: + collection: Whistles + Crying: + collection: MaleCry + Weh: + collection: Weh + Gasp: + collection: MaleGasp + DefaultDeathgasp: + collection: DeathGasp + +- type: emoteSounds + id: FemaleResomi + params: + variation: 0.125 + sounds: + Scream: + path: /Audio/_CorvaxNext/Voice/Resomi/resomi_scream.ogg + Laugh: + collection: FemaleLaugh + Honk: + collection: BikeHorn + Whistle: + collection: Whistles + Crying: + collection: FemaleCry + Weh: + collection: Weh + Gasp: + collection: FemaleGasp + DefaultDeathgasp: + collection: FemaleDeathGasp + diff --git a/Resources/Prototypes/_White/Entities/Mobs/Customization/Markings/resomi.yml b/Resources/Prototypes/_White/Entities/Mobs/Customization/Markings/resomi.yml new file mode 100644 index 0000000000..533ee70765 --- /dev/null +++ b/Resources/Prototypes/_White/Entities/Mobs/Customization/Markings/resomi.yml @@ -0,0 +1,82 @@ +- type: marking + id: ResomiTail + bodyPart: Chest + markingCategory: Tail + speciesRestriction: [Resomi] + forcedColoring: true + sprites: + - sprite: _CorvaxNext/Mobs/Customization/resomi_parts.rsi + state: tail + +- type: marking + id: ResomiTailFeathers + bodyPart: Chest + markingCategory: Tail + speciesRestriction: [Resomi] + sprites: + - sprite: _CorvaxNext/Mobs/Customization/resomi_parts.rsi + state: tail_feathers + +- type: marking + id: ResomiLArmFeathers + bodyPart: LHand + markingCategory: Arms + speciesRestriction: [Resomi] + sprites: + - sprite: _CorvaxNext/Mobs/Customization/resomi_parts.rsi + state: l_hand_feathers + +- type: marking + id: ResomiLLegFeathers + bodyPart: LFoot + markingCategory: Legs + speciesRestriction: [Resomi] + sprites: + - sprite: _CorvaxNext/Mobs/Customization/resomi_parts.rsi + state: l_foot_feathers + +- type: marking + id: ResomiRArmFeathers + bodyPart: RHand + markingCategory: Arms + speciesRestriction: [Resomi] + sprites: + - sprite: _CorvaxNext/Mobs/Customization/resomi_parts.rsi + state: r_hand_feathers + +- type: marking + id: ResomiRLegFeathers + bodyPart: RFoot + markingCategory: Legs + speciesRestriction: [Resomi] + sprites: + - sprite: _CorvaxNext/Mobs/Customization/resomi_parts.rsi + state: r_foot_feathers + +- type: marking + id: ResomiFluff + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [Resomi] + sprites: + - sprite: _CorvaxNext/Mobs/Customization/resomi_parts.rsi + state: fluff + +- type: marking + id: ResomiFluffHead + bodyPart: Head + markingCategory: Head + speciesRestriction: [Resomi] + sprites: + - sprite: _CorvaxNext/Mobs/Customization/resomi_parts.rsi + state: fluff_head + +- type: marking + id: ResomiFluffHeadUp + bodyPart: Head + markingCategory: Head + speciesRestriction: [Resomi] + sprites: + - sprite: _CorvaxNext/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 new file mode 100644 index 0000000000..a8c2eb8cb6 --- /dev/null +++ b/Resources/Prototypes/_White/Entities/Mobs/Customization/Markings/resomi_hair.yml @@ -0,0 +1,144 @@ +- type: marking + id: HairResomiBackstrafe + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [Resomi] + sprites: + - sprite: _CorvaxNext/Mobs/Customization/resomi_hair.rsi + state: ResomiBackstrafe +- type: marking + id: HairResomiBurstShort + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [Resomi] + sprites: + - sprite: _CorvaxNext/Mobs/Customization/resomi_hair.rsi + state: ResomiBurstShort +- type: marking + id: HairResomiDefault + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [Resomi] + sprites: + - sprite: _CorvaxNext/Mobs/Customization/resomi_hair.rsi + state: ResomiDefault +- type: marking + id: HairResomiDroopy + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [Resomi] + sprites: + - sprite: _CorvaxNext/Mobs/Customization/resomi_hair.rsi + state: ResomiDroopy +- type: marking + id: HairResomiEars + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [Resomi] + sprites: + - sprite: _CorvaxNext/Mobs/Customization/resomi_hair.rsi + state: ResomiEars +- type: marking + id: HairResomiFluffymohawk + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [Resomi] + sprites: + - sprite: _CorvaxNext/Mobs/Customization/resomi_hair.rsi + state: ResomiFluffymohawk +- type: marking + id: HairResomiHedge + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [Resomi] + sprites: + - sprite: _CorvaxNext/Mobs/Customization/resomi_hair.rsi + state: ResomiHedge +- type: marking + id: HairResomiLongway + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [Resomi] + sprites: + - sprite: _CorvaxNext/Mobs/Customization/resomi_hair.rsi + state: ResomiLongway +- type: marking + id: HairResomiMane + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [Resomi] + sprites: + - sprite: _CorvaxNext/Mobs/Customization/resomi_hair.rsi + state: ResomiMane +- type: marking + id: HairResomiManeBeardless + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [Resomi] + sprites: + - sprite: _CorvaxNext/Mobs/Customization/resomi_hair.rsi + state: ResomiManeBeardless +- type: marking + id: HairResomiMohawk + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [Resomi] + sprites: + - sprite: _CorvaxNext/Mobs/Customization/resomi_hair.rsi + state: ResomiMohawk +- type: marking + id: HairResomiMushroom + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [Resomi] + sprites: + - sprite: _CorvaxNext/Mobs/Customization/resomi_hair.rsi + state: ResomiMushroom +- type: marking + id: HairResomiNotree + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [Resomi] + sprites: + - sprite: _CorvaxNext/Mobs/Customization/resomi_hair.rsi + state: ResomiNotree +- type: marking + id: HairResomiSpiky + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [Resomi] + sprites: + - sprite: _CorvaxNext/Mobs/Customization/resomi_hair.rsi + state: ResomiSpiky +- type: marking + id: HairResomiPointy + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [Resomi] + sprites: + - sprite: _CorvaxNext/Mobs/Customization/resomi_hair.rsi + state: ResomiPointy +- type: marking + id: HairResomiTwies + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [Resomi] + sprites: + - sprite: _CorvaxNext/Mobs/Customization/resomi_hair.rsi + state: ResomiTwies +- type: marking + id: HairResomiUpright + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [Resomi] + sprites: + - sprite: _CorvaxNext/Mobs/Customization/resomi_hair.rsi + state: ResomiUpright +- type: marking + id: HairResomiLong + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [Resomi] + sprites: + - sprite: _CorvaxNext/Mobs/Customization/resomi_hair.rsi + state: ResomiLong \ No newline at end of file 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 new file mode 100644 index 0000000000..25f4c8b77e Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Armor/armor_reflec.rsi/equipped-OUTERCLOTHING-resomi.png 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 5f95573206..ccbe3ad399 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", + "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)", "size": { "x": 32, "y": 32 @@ -18,6 +18,10 @@ "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 new file mode 100644 index 0000000000..45d628e6c3 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Armor/bone_armor.rsi/equipped-OUTERCLOTHING-resomi.png 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 e482264df5..27ac504b36 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", + "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 @@ -14,6 +14,10 @@ "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 new file mode 100644 index 0000000000..ec73822d0f Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Armor/bulletproof.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..197eb4e266 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Armor/captain_carapace.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..24de03ff2b Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Armor/cult_armour.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..3a4f2fa79a Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Armor/heavy.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..dd971052ca Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Armor/heavygreen.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..7aec1745d8 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Armor/heavyred.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..6dcc3aaace Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Armor/lingarmor.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..45c0f6606d Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Armor/magusblue.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..8dfc5aac0e Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Armor/magusred.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..aa7c94d900 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Armor/podwars_armor.rsi/equipped-OUTERCLOTHING-resomi.png 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 97c559cbdc..9e13a8131b 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)", + "copyright": "Made by patogrone (ss14 discord), equipped-OUTERCLOTHING-resomi made by svarshiksatanist (Discord)", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "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 new file mode 100644 index 0000000000..04074ad021 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Armor/riot.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..8e2a88ee0b Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Armor/security.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..8e2a88ee0b Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Armor/security_slim.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..a640eb460e Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Bio/cmo.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..cfc4b279aa Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Bio/general.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..bc34403549 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Bio/janitor.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..51e8e65746 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Bio/scientist.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..866b22d803 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..8071efc732 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Bio/virology.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..827634e4b2 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/bomber.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..b862b2928a Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/brigmedic.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..f333f91e98 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/clownpriest.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..007e47564b Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/detective.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..6a25c4b0dc Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/dogi.rsi/equipped-OUTERCLOTHING-resomi.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/dogi.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/dogi.rsi/meta.json index 9ecf4115a9..8772432375 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", + "copyright": "Made by PuroSlavKing (github) for SS14, equipped-OUTERCLOTHING-resomi made by Pofitlo", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "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 new file mode 100644 index 0000000000..896991cada Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/expensive_coat.rsi/equipped-OUTERCLOTHING-resomi.png 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 cc68d97d37..2390b016f7 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", + "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", "size": { "x": 32, "y": 32 @@ -15,6 +15,10 @@ "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 new file mode 100644 index 0000000000..dfea7fbe9a Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/gentlecoat.rsi/equipped-OUTERCLOTHING-resomi.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/gentlecoat.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/gentlecoat.rsi/meta.json index e482264df5..7c88c10c4a 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", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, equipped-OUTERCLOTHING-resomi made by Pofitlo", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "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 new file mode 100644 index 0000000000..5ee842c8b7 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/equipped-OUTERCLOTHING-resomi.png 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 29bae36917..61bf47f118 100644 --- a/Resources/Textures/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/meta.json @@ -18,6 +18,10 @@ "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 new file mode 100644 index 0000000000..81dea3acfb Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/jensencoat.rsi/equipped-OUTERCLOTHING-resomi.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/jensencoat.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/jensencoat.rsi/meta.json index 232bec9c0a..354ac244f5 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", + "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", "size": { "x": 32, "y": 32 @@ -18,6 +18,10 @@ "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 new file mode 100644 index 0000000000..78b2840074 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..6bdf4a60d7 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/open-equipped-OUTERCLOTHING-resomi.png 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 new file mode 100644 index 0000000000..9eac64bf20 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..c448875394 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/open-equipped-OUTERCLOTHING-resomi.png 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 new file mode 100644 index 0000000000..da3cfc6d98 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..e2fad18087 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/open-equipped-OUTERCLOTHING-resomi.png 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 new file mode 100644 index 0000000000..7bef73993f Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_gene.rsi/equipped-OUTERCLOTHING-resomi.png 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 2311851853..2ba0be1cb7 100644 --- a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_gene.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_gene.rsi/meta.json @@ -29,6 +29,14 @@ "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 new file mode 100644 index 0000000000..b7be0aae4a Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_gene.rsi/open-equipped-OUTERCLOTHING-resomi.png 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 new file mode 100644 index 0000000000..d502ac0ec2 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_robo.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..c9c475719b Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_robo.rsi/open-equipped-OUTERCLOTHING-resomi.png 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 new file mode 100644 index 0000000000..ed7902c937 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_senior_physician.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..6b2e461a58 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_senior_physician.rsi/open-equipped-OUTERCLOTHING-resomi.png 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 new file mode 100644 index 0000000000..f15bdd5575 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_senior_researcher.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..b96b068408 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_senior_researcher.rsi/open-equipped-OUTERCLOTHING-resomi.png 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 new file mode 100644 index 0000000000..290a4e07c6 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_viro.rsi/equipped-OUTERCLOTHING-resomi.png 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 f98abcffd7..efce88b523 100644 --- a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_viro.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_viro.rsi/meta.json @@ -29,6 +29,14 @@ "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 new file mode 100644 index 0000000000..ed1a57009c Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_viro.rsi/open-equipped-OUTERCLOTHING-resomi.png 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 new file mode 100644 index 0000000000..55ebd32e77 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/pirate.rsi/equipped-OUTERCLOTHING-resomi.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/pirate.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/pirate.rsi/meta.json index 232bec9c0a..ab5a0f7454 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", + "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", "size": { "x": 32, "y": 32 @@ -18,6 +18,10 @@ "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 new file mode 100644 index 0000000000..1b2864960a Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/space_asshole.rsi/equipped-OUTERCLOTHING-resomi.png 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 70ee956fea..558856f528 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", + "copyright": "Made by Github user Psychpsyo for Space Station 14, sprites for resomi made by Pofitlo", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "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 new file mode 100644 index 0000000000..c2d6487066 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/syndicate/coatsyndiecap.rsi/equipped-OUTERCLOTHING-resomi.png 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 eadf9c61d4..26546c72c1 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)", + "copyright": "Sprited by belay5 (Discord), sprites for resomi made by Pofitlo", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "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 new file mode 100644 index 0000000000..4d62774470 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/syndicate/coatsyndiecaparmored.rsi/equipped-OUTERCLOTHING-resomi.png 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 eadf9c61d4..26546c72c1 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)", + "copyright": "Sprited by belay5 (Discord), sprites for resomi made by Pofitlo", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "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 new file mode 100644 index 0000000000..e88ee65900 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/trenchcoat.rsi/equipped-OUTERCLOTHING-resomi.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/trenchcoat.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/trenchcoat.rsi/meta.json index 4028e552d3..f2b9cb2b52 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", + "copyright": "Taken from paradise at commit https://github.com/ParadiseSS13/Paradise/pull/19491/commits/e9a900022ca1cf0fed0e320c7a0cce500287ab99, sprites for resomi made by Pofitlo", "size": { "x": 32, "y": 32 @@ -21,6 +21,14 @@ "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 new file mode 100644 index 0000000000..b6447e420d Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/trenchcoat.rsi/open-equipped-OUTERCLOTHING-resomi.png 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 new file mode 100644 index 0000000000..7789bc785e Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..07fece3f22 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/windbreaker_paramedic.rsi/equipped-OUTERCLOTHING-resomi.png 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 8e0b18f9a2..cd809e7989 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", + "copyright": "Made by MagnusCrowe (Github) for SS14, sprites for resomi made by Pofitlo", "size": { "x": 32, "y": 32 @@ -21,6 +21,14 @@ "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 new file mode 100644 index 0000000000..366f847bf3 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/windbreaker_paramedic.rsi/open-equipped-OUTERCLOTHING-resomi.png 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 new file mode 100644 index 0000000000..9c464f9513 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertengineer.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..dbc7d4480e Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertjanitor.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..000826a386 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertleader.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..8bd0b7c683 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertmedical.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..c58e3fbad0 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertsecurity.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..4b2673d2a7 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/atmospherics.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..9fd8a97725 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/basic.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..2d516c93d0 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/brigmedic.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..3d1fdaaba0 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..50a635e360 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/clown.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..734b710f80 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/cybersun.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..2d945174bc Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/deathsquad.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..d41cfc309a Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-white.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..0a185bd59f Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..cd1b7c5572 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/lingspacesuit.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..a1a0c61721 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/luxury.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..26a3f75951 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/maxim.rsi/equipped-OUTERCLOTHING-resomi.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/maxim.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/maxim.rsi/meta.json index 9acde9a4de..8f55625e72 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/maxim.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/maxim.rsi/meta.json @@ -1,30 +1,34 @@ { - "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" + "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 }, - { - "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 + "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 + } + ] +} 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 new file mode 100644 index 0000000000..ae7c2c1d1d Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/medical.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..7afb23d0ab Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/mime.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..1707fd74df Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/paramed.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..c440b11eb1 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/piratecaptain.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..7639085f20 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/pirateeva.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..42c4464263 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/rd.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..d007548d09 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/salvage.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..82260fda53 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/santahardsuit.rsi/equipped-OUTERCLOTHING-resomi.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/santahardsuit.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/santahardsuit.rsi/meta.json index eb28d4c8a1..3088adb1b2 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/santahardsuit.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/santahardsuit.rsi/meta.json @@ -1,30 +1,34 @@ { - "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" + "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 }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-vox", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] + "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 + } + ] } 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 new file mode 100644 index 0000000000..42df082df3 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..ad383d4368 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..859dae8bde Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..bb5cba1c4e Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/spatio.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..e97832c84a Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..adc3727a93 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndiecommander.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..93e51f0d88 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..cb354b5360 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndiemedic.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..e97ee129fc Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/wizard.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..4ff622fe9e Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/apron.rsi/equipped-OUTERCLOTHING-resomi.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/apron.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/apron.rsi/meta.json index e482264df5..05b2c2562d 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", + "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 @@ -14,6 +14,10 @@ "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 new file mode 100644 index 0000000000..69e04500e3 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/apronbar.rsi/equipped-OUTERCLOTHING-resomi.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/apronbar.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/apronbar.rsi/meta.json index 905cf722ce..fcadafa74a 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", + "copyright": "Edited from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, equipped-OUTERCLOTHING-resomi made by svarshiksatanist (Discord)", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "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 new file mode 100644 index 0000000000..b82233aef2 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/apronbotanist.rsi/equipped-OUTERCLOTHING-resomi.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/apronbotanist.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/apronbotanist.rsi/meta.json index 232bec9c0a..aec6f25b88 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", + "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)", "size": { "x": 32, "y": 32 @@ -18,6 +18,10 @@ "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 new file mode 100644 index 0000000000..6dfc6f1eba Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/apronchef.rsi/equipped-OUTERCLOTHING-resomi.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/apronchef.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/apronchef.rsi/meta.json index 232bec9c0a..aec6f25b88 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", + "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)", "size": { "x": 32, "y": 32 @@ -18,6 +18,10 @@ "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 new file mode 100644 index 0000000000..7dca175fd9 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/black_hoodie.rsi/equipped-OUTERCLOTHING-resomi.png 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 442bfb2920..5b5fa926c0 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", + "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 @@ -17,10 +17,18 @@ "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 new file mode 100644 index 0000000000..77feb1f60d Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/black_hoodie.rsi/open-equipped-OUTERCLOTHING-resomi.png 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 new file mode 100644 index 0000000000..682eb15b71 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/cardborg.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..c731f482ea Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/chaplain_hoodie.rsi/equipped-OUTERCLOTHING-resomi.png 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 e482264df5..05b2c2562d 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", + "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 @@ -14,6 +14,10 @@ "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 new file mode 100644 index 0000000000..182dcbd273 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/chef.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..17562514c0 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/classicponcho.rsi/equipped-OUTERCLOTHING-resomi.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/classicponcho.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/classicponcho.rsi/meta.json index 21cd9257fd..261f997190 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", + "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)", "size": { "x": 32, "y": 32 @@ -18,6 +18,10 @@ "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 new file mode 100644 index 0000000000..c40977e091 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/cultrobes.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..f5c78416d9 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/flannel_jacket.rsi/equipped-OUTERCLOTHING-resomi.png 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 7b4a51dfa4..5b8cdd12ca 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", + "copyright": "Sprites by nmajask (Github) for SS14, equipped-OUTERCLOTHING-resomi made by svarshiksatanist (Discord)", "size": { "x": 32, "y": 32 @@ -17,6 +17,10 @@ "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 new file mode 100644 index 0000000000..0921a3bf4f Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/ghostsheet.rsi/equipped-OUTERCLOTHING-resomi.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/ghostsheet.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/ghostsheet.rsi/meta.json index ccfd0c0303..b67022a3bd 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. Vox state by Flareguy for SS1", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/pull/38809, equipped-OUTERCLOTHING-resomi made by svarshiksatanist (Discord)", "size": { "x": 32, "y": 32 @@ -15,7 +15,7 @@ "directions": 4 }, { - "name": "equipped-OUTERCLOTHING-vox", + "name": "equipped-OUTERCLOTHING-resomi", "directions": 4 }, { @@ -25,6 +25,10 @@ { "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 new file mode 100644 index 0000000000..279bf73c8b Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/grey_hoodie.rsi/equipped-OUTERCLOTHING-resomi.png 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 b5f8619d65..121800e7e5 100644 --- a/Resources/Textures/Clothing/OuterClothing/Misc/grey_hoodie.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Misc/grey_hoodie.rsi/meta.json @@ -1,45 +1,53 @@ { - "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 - } - ] + "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 + } + ] } 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 new file mode 100644 index 0000000000..e6f4bd301c Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/grey_hoodie.rsi/open-equipped-OUTERCLOTHING-resomi.png 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 new file mode 100644 index 0000000000..c8898352b2 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/hospitalgown.rsi/equipped-OUTERCLOTHING-resomi.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/hospitalgown.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/hospitalgown.rsi/meta.json index e482264df5..05b2c2562d 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", + "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 @@ -14,6 +14,10 @@ "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 new file mode 100644 index 0000000000..d53f87e92d Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/judge.rsi/equipped-OUTERCLOTHING-resomi.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/judge.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/judge.rsi/meta.json index e482264df5..05b2c2562d 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", + "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 @@ -14,6 +14,10 @@ "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 new file mode 100644 index 0000000000..1d82b6240c Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/nunrobe.rsi/equipped-OUTERCLOTHING-resomi.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/nunrobe.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/nunrobe.rsi/meta.json index 3fa2c7657c..737763c719 100644 --- a/Resources/Textures/Clothing/OuterClothing/Misc/nunrobe.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Misc/nunrobe.rsi/meta.json @@ -18,6 +18,10 @@ "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 new file mode 100644 index 0000000000..55fcf309e3 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/plaguedoctorsuit.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..64cad6c498 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/poncho.rsi/equipped-OUTERCLOTHING-resomi.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/poncho.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/poncho.rsi/meta.json index e482264df5..05b2c2562d 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", + "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 @@ -14,6 +14,10 @@ "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 new file mode 100644 index 0000000000..e183fcc8d3 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/red_racoon.rsi/equipped-OUTERCLOTHING-resomi.png 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 cd0053daea..44b4842b3e 100644 --- a/Resources/Textures/Clothing/OuterClothing/Misc/red_racoon.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Misc/red_racoon.rsi/meta.json @@ -1,30 +1,34 @@ { - "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" + "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 }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-vox", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] + "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 + } + ] } 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 new file mode 100644 index 0000000000..064583d957 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/redwizard.rsi/equipped-OUTERCLOTHING-resomi.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/redwizard.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/redwizard.rsi/meta.json index 15aef26a56..1ef4d9216f 100644 --- a/Resources/Textures/Clothing/OuterClothing/Misc/redwizard.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Misc/redwizard.rsi/meta.json @@ -1,30 +1,34 @@ { - "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" + "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 }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-vox", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] + "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 + } + ] } 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 new file mode 100644 index 0000000000..d6dfcbe34e Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/santa.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..a5d7a154c8 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/skubbody.rsi/equipped-OUTERCLOTHING-resomi.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/skubbody.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/skubbody.rsi/meta.json index ed75ee470b..1ecd0342db 100644 --- a/Resources/Textures/Clothing/OuterClothing/Misc/skubbody.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Misc/skubbody.rsi/meta.json @@ -1,22 +1,26 @@ { - "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" + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "EOBGames from tgstation, equipped-OUTERCLOTHING-resomi made by svarshiksatanist (Discord)", + "size": { + "x": 32, + "y": 32 }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-vox", - "directions": 4 - } - ] + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-resomi", + "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 new file mode 100644 index 0000000000..eaafa26dae Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/straight_jacket.rsi/body-overlay-2-resomi.png 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 2eda10ef51..1025939bba 100644 --- a/Resources/Textures/Clothing/OuterClothing/Misc/straight_jacket.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Misc/straight_jacket.rsi/meta.json @@ -1,30 +1,34 @@ { - "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" + "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 }, - { - "name": "body-overlay-2", - "directions": 4 - }, - { - "name": "body-overlay-2-vox", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] + "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 + } + ] } 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 new file mode 100644 index 0000000000..3fcdde419b Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/violetwizard.rsi/equipped-OUTERCLOTHING-resomi.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/violetwizard.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/violetwizard.rsi/meta.json index 15aef26a56..1ef4d9216f 100644 --- a/Resources/Textures/Clothing/OuterClothing/Misc/violetwizard.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Misc/violetwizard.rsi/meta.json @@ -1,30 +1,34 @@ { - "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" + "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 }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-vox", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] + "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 + } + ] } 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 new file mode 100644 index 0000000000..322240a971 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/wizard.rsi/equipped-OUTERCLOTHING-resomi.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/wizard.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/wizard.rsi/meta.json index 15aef26a56..1ef4d9216f 100644 --- a/Resources/Textures/Clothing/OuterClothing/Misc/wizard.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Misc/wizard.rsi/meta.json @@ -1,30 +1,34 @@ { - "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" + "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 }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-vox", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] + "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 + } + ] } 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 new file mode 100644 index 0000000000..c302082a24 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Suits/ancient_voidsuit.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..436a89ee8b Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Suits/atmos_firesuit.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..fd57964905 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Suits/bombsuit.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..c6f035f12a Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Suits/carpsuit.rsi/equipped-OUTERCLOTHING-resomi.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/carpsuit.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Suits/carpsuit.rsi/meta.json index 542edf0002..9c30f596af 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).", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Modified by deltanedas (github), equipped-OUTERCLOTHING-resomi made by Pofitlo", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "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 new file mode 100644 index 0000000000..64be197737 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Suits/chicken.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..f697ecc190 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..367b60ffe5 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..f22060ed08 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Suits/eva_prisoner.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..657314acfe Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Suits/eva_syndicate.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..e1f6044808 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Suits/fire.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..7a34e8358d Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Suits/iansuit.rsi/equipped-OUTERCLOTHING-resomi.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/iansuit.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Suits/iansuit.rsi/meta.json index 542edf0002..9c30f596af 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).", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Modified by deltanedas (github), equipped-OUTERCLOTHING-resomi made by Pofitlo", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "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 new file mode 100644 index 0000000000..c8c9ef3079 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Suits/monkey.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..7bee0c2fdf Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Suits/rad.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..8c38a89162 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Suits/shrine-maiden.rsi/equipped-OUTERCLOTHING-resomi.png 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 af215f51ed..f1d43f3026 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.", + "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", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "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 new file mode 100644 index 0000000000..9b445f4bdb Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Suits/spaceninja.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..2a4bc6db3a Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Vests/detvest.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..eed46ab83d Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..37d86c0920 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Vests/mercwebvest.rsi/equipped-OUTERCLOTHING-resomi.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Vests/mercwebvest.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Vests/mercwebvest.rsi/meta.json index e482264df5..05b2c2562d 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", + "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 @@ -14,6 +14,10 @@ "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 new file mode 100644 index 0000000000..003dffb9f8 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Vests/vest.rsi/equipped-OUTERCLOTHING-resomi.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Vests/vest.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Vests/vest.rsi/meta.json index 920eab5520..1ef4d9216f 100644 --- a/Resources/Textures/Clothing/OuterClothing/Vests/vest.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Vests/vest.rsi/meta.json @@ -1,30 +1,34 @@ { - "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" + "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 }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-vox", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] + "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 + } + ] } 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 new file mode 100644 index 0000000000..003dffb9f8 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Vests/webvest.rsi/equipped-OUTERCLOTHING-resomi.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Vests/webvest.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Vests/webvest.rsi/meta.json index 0e30ab4d3f..1ef4d9216f 100644 --- a/Resources/Textures/Clothing/OuterClothing/Vests/webvest.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Vests/webvest.rsi/meta.json @@ -1,30 +1,34 @@ { - "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" + "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 }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-vox", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] + "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 + } + ] } diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/ARMOR-equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/ARMOR-equipped-OUTERCLOTHING-resomi.png new file mode 100644 index 0000000000..2fe90f54d6 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/ARMOR-equipped-OUTERCLOTHING-resomi.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/ATMOS-equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/ATMOS-equipped-OUTERCLOTHING-resomi.png new file mode 100644 index 0000000000..af5a73d9b5 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/ATMOS-equipped-OUTERCLOTHING-resomi.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/BAR-equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/BAR-equipped-OUTERCLOTHING-resomi.png new file mode 100644 index 0000000000..44d2828863 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/BAR-equipped-OUTERCLOTHING-resomi.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/CAP-equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/CAP-equipped-OUTERCLOTHING-resomi.png new file mode 100644 index 0000000000..b7d8a9d202 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/CAP-equipped-OUTERCLOTHING-resomi.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/CARGO-equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/CARGO-equipped-OUTERCLOTHING-resomi.png new file mode 100644 index 0000000000..ecd4c649a9 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/CARGO-equipped-OUTERCLOTHING-resomi.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/CE-equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/CE-equipped-OUTERCLOTHING-resomi.png new file mode 100644 index 0000000000..e364b2807a Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/CE-equipped-OUTERCLOTHING-resomi.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/CENTCOM-equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/CENTCOM-equipped-OUTERCLOTHING-resomi.png new file mode 100644 index 0000000000..43b123a45c Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/CENTCOM-equipped-OUTERCLOTHING-resomi.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/CHEF-equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/CHEF-equipped-OUTERCLOTHING-resomi.png new file mode 100644 index 0000000000..3590e2b502 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/CHEF-equipped-OUTERCLOTHING-resomi.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/CHEM-equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/CHEM-equipped-OUTERCLOTHING-resomi.png new file mode 100644 index 0000000000..4901876fb9 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/CHEM-equipped-OUTERCLOTHING-resomi.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/CMO-equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/CMO-equipped-OUTERCLOTHING-resomi.png new file mode 100644 index 0000000000..3e8f2e7bd8 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/CMO-equipped-OUTERCLOTHING-resomi.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/ENGI-equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/ENGI-equipped-OUTERCLOTHING-resomi.png new file mode 100644 index 0000000000..e0041df853 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/ENGI-equipped-OUTERCLOTHING-resomi.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/GENE-equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/GENE-equipped-OUTERCLOTHING-resomi.png new file mode 100644 index 0000000000..0ee3169455 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/GENE-equipped-OUTERCLOTHING-resomi.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/HOP-equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/HOP-equipped-OUTERCLOTHING-resomi.png new file mode 100644 index 0000000000..b645418999 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/HOP-equipped-OUTERCLOTHING-resomi.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/HOS-equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/HOS-equipped-OUTERCLOTHING-resomi.png new file mode 100644 index 0000000000..b78bb13e4d Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/HOS-equipped-OUTERCLOTHING-resomi.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/HYDRO-equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/HYDRO-equipped-OUTERCLOTHING-resomi.png new file mode 100644 index 0000000000..0695194115 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/HYDRO-equipped-OUTERCLOTHING-resomi.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/JANI-equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/JANI-equipped-OUTERCLOTHING-resomi.png new file mode 100644 index 0000000000..31b7c1eaeb Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/JANI-equipped-OUTERCLOTHING-resomi.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/MED-equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/MED-equipped-OUTERCLOTHING-resomi.png new file mode 100644 index 0000000000..e5371c3ebc Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/MED-equipped-OUTERCLOTHING-resomi.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/MIME-equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/MIME-equipped-OUTERCLOTHING-resomi.png new file mode 100644 index 0000000000..80843cad55 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/MIME-equipped-OUTERCLOTHING-resomi.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/MINER-equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/MINER-equipped-OUTERCLOTHING-resomi.png new file mode 100644 index 0000000000..1f29c24186 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/MINER-equipped-OUTERCLOTHING-resomi.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/PARA-equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/PARA-equipped-OUTERCLOTHING-resomi.png new file mode 100644 index 0000000000..ecf2e81045 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/PARA-equipped-OUTERCLOTHING-resomi.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/QM-equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/QM-equipped-OUTERCLOTHING-resomi.png new file mode 100644 index 0000000000..158f4b6783 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/QM-equipped-OUTERCLOTHING-resomi.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/RD-equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/RD-equipped-OUTERCLOTHING-resomi.png new file mode 100644 index 0000000000..cca821a68e Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/RD-equipped-OUTERCLOTHING-resomi.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/ROBO-equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/ROBO-equipped-OUTERCLOTHING-resomi.png new file mode 100644 index 0000000000..8fba81a647 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/ROBO-equipped-OUTERCLOTHING-resomi.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/SCI-equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/SCI-equipped-OUTERCLOTHING-resomi.png new file mode 100644 index 0000000000..a5e7c35029 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/SCI-equipped-OUTERCLOTHING-resomi.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/SEC-equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/SEC-equipped-OUTERCLOTHING-resomi.png new file mode 100644 index 0000000000..278ea9c8f9 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/SEC-equipped-OUTERCLOTHING-resomi.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/SYNDIE-equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/SYNDIE-equipped-OUTERCLOTHING-resomi.png new file mode 100644 index 0000000000..fffd653b54 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/SYNDIE-equipped-OUTERCLOTHING-resomi.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/SYNDIECAP-equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/SYNDIECAP-equipped-OUTERCLOTHING-resomi.png new file mode 100644 index 0000000000..6355c1023e Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/SYNDIECAP-equipped-OUTERCLOTHING-resomi.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/VIRO-equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/VIRO-equipped-OUTERCLOTHING-resomi.png new file mode 100644 index 0000000000..efacf5ce4a Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/VIRO-equipped-OUTERCLOTHING-resomi.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/WARD-equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/WARD-equipped-OUTERCLOTHING-resomi.png new file mode 100644 index 0000000000..16d1518dd8 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/WARD-equipped-OUTERCLOTHING-resomi.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/WEB-equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/WEB-equipped-OUTERCLOTHING-resomi.png new file mode 100644 index 0000000000..b77652afee Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/WEB-equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..bb0a013bcd Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/equipped-OUTERCLOTHING-resomi.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/winterbits-equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/winterbits-equipped-OUTERCLOTHING-resomi.png new file mode 100644 index 0000000000..bb24c7e821 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/winterbits-equipped-OUTERCLOTHING-resomi.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/winterbits-tan-equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/winterbits-tan-equipped-OUTERCLOTHING-resomi.png new file mode 100644 index 0000000000..95e2ab0d39 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/winterbits-tan-equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..dd5b5c16f5 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatclown.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..75e03c8212 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathosarmored.rsi/equipped-OUTERCLOTHING-resomi.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathosarmored.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathosarmored.rsi/meta.json index 4010520850..00d1d21892 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", + "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", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-OUTERCLOTHING", "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 new file mode 100644 index 0000000000..388205f286 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatnomi.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..4f4e8d7bba Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/equipped-OUTERCLOTHING-resomi.png differ 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 new file mode 100644 index 0000000000..6754f75262 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/syndicate/coatsyndiecaparmored.rsi/equipped-OUTERCLOTHING-resomi.png 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 eadf9c61d4..bd8c3f940c 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)", + "copyright": "Sprited by belay5 (Discord), equipped-OUTERCLOTHING-resomi made by Pofitlo", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-resomi", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/_CorvaxNext/Mobs/Customization/eyes.rsi/meta.json b/Resources/Textures/_CorvaxNext/Mobs/Customization/eyes.rsi/meta.json new file mode 100644 index 0000000000..47a1378110 --- /dev/null +++ b/Resources/Textures/_CorvaxNext/Mobs/Customization/eyes.rsi/meta.json @@ -0,0 +1,15 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "resomi", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_CorvaxNext/Mobs/Customization/eyes.rsi/resomi.png b/Resources/Textures/_CorvaxNext/Mobs/Customization/eyes.rsi/resomi.png new file mode 100644 index 0000000000..f6ee8cd7db Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Customization/eyes.rsi/resomi.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_hair.rsi/ResomiBackstrafe.png b/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_hair.rsi/ResomiBackstrafe.png new file mode 100644 index 0000000000..05cfb6c1a1 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_hair.rsi/ResomiBackstrafe.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_hair.rsi/ResomiBurstShort.png b/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_hair.rsi/ResomiBurstShort.png new file mode 100644 index 0000000000..24abbfb010 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_hair.rsi/ResomiBurstShort.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_hair.rsi/ResomiDefault.png b/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_hair.rsi/ResomiDefault.png new file mode 100644 index 0000000000..8eda85ab89 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_hair.rsi/ResomiDefault.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_hair.rsi/ResomiDroopy.png b/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_hair.rsi/ResomiDroopy.png new file mode 100644 index 0000000000..7fab8e1fa1 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_hair.rsi/ResomiDroopy.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_hair.rsi/ResomiEars.png b/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_hair.rsi/ResomiEars.png new file mode 100644 index 0000000000..9176e59ae5 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_hair.rsi/ResomiEars.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_hair.rsi/ResomiFluffymohawk.png b/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_hair.rsi/ResomiFluffymohawk.png new file mode 100644 index 0000000000..f94f4cee5e Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_hair.rsi/ResomiFluffymohawk.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_hair.rsi/ResomiHedge.png b/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_hair.rsi/ResomiHedge.png new file mode 100644 index 0000000000..fd238db92c Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_hair.rsi/ResomiHedge.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_hair.rsi/ResomiLong.png b/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_hair.rsi/ResomiLong.png new file mode 100644 index 0000000000..a59b700c6e Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_hair.rsi/ResomiLong.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_hair.rsi/ResomiLongway.png b/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_hair.rsi/ResomiLongway.png new file mode 100644 index 0000000000..95f5695e58 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_hair.rsi/ResomiLongway.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_hair.rsi/ResomiMane.png b/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_hair.rsi/ResomiMane.png new file mode 100644 index 0000000000..d7c501bade Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_hair.rsi/ResomiMane.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_hair.rsi/ResomiManeBeardless.png b/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_hair.rsi/ResomiManeBeardless.png new file mode 100644 index 0000000000..109b72a7b6 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_hair.rsi/ResomiManeBeardless.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_hair.rsi/ResomiMohawk.png b/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_hair.rsi/ResomiMohawk.png new file mode 100644 index 0000000000..0bcbba6075 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_hair.rsi/ResomiMohawk.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_hair.rsi/ResomiMushroom.png b/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_hair.rsi/ResomiMushroom.png new file mode 100644 index 0000000000..8cfb230967 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_hair.rsi/ResomiMushroom.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_hair.rsi/ResomiNotree.png b/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_hair.rsi/ResomiNotree.png new file mode 100644 index 0000000000..684b53023e Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_hair.rsi/ResomiNotree.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_hair.rsi/ResomiPointy.png b/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_hair.rsi/ResomiPointy.png new file mode 100644 index 0000000000..eea806e57c Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_hair.rsi/ResomiPointy.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_hair.rsi/ResomiSpiky.png b/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_hair.rsi/ResomiSpiky.png new file mode 100644 index 0000000000..799092689f Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_hair.rsi/ResomiSpiky.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_hair.rsi/ResomiTwies.png b/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_hair.rsi/ResomiTwies.png new file mode 100644 index 0000000000..16da3222ca Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_hair.rsi/ResomiTwies.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_hair.rsi/ResomiUpright.png b/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_hair.rsi/ResomiUpright.png new file mode 100644 index 0000000000..6e1070544c Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_hair.rsi/ResomiUpright.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_hair.rsi/meta.json b/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_hair.rsi/meta.json new file mode 100644 index 0000000000..cd0153f127 --- /dev/null +++ b/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_hair.rsi/meta.json @@ -0,0 +1,83 @@ +{ + "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/_CorvaxNext/Mobs/Customization/resomi_parts.rsi/fluff.png b/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_parts.rsi/fluff.png new file mode 100644 index 0000000000..8fde1c8b8f Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_parts.rsi/fluff.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_parts.rsi/fluff_head.png b/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_parts.rsi/fluff_head.png new file mode 100644 index 0000000000..0a4fcbdf93 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_parts.rsi/fluff_head.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_parts.rsi/fluff_head_up.png b/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_parts.rsi/fluff_head_up.png new file mode 100644 index 0000000000..3e4ea94d95 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_parts.rsi/fluff_head_up.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_parts.rsi/l_foot_feathers.png b/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_parts.rsi/l_foot_feathers.png new file mode 100644 index 0000000000..ccfe6db729 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_parts.rsi/l_foot_feathers.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_parts.rsi/l_hand_feathers.png b/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_parts.rsi/l_hand_feathers.png new file mode 100644 index 0000000000..a397efc200 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_parts.rsi/l_hand_feathers.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_parts.rsi/meta.json b/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_parts.rsi/meta.json new file mode 100644 index 0000000000..c2ece1c1b7 --- /dev/null +++ b/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_parts.rsi/meta.json @@ -0,0 +1,47 @@ +{ + "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/_CorvaxNext/Mobs/Customization/resomi_parts.rsi/r_foot_feathers.png b/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_parts.rsi/r_foot_feathers.png new file mode 100644 index 0000000000..4c6fbb8b88 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_parts.rsi/r_foot_feathers.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_parts.rsi/r_hand_feathers.png b/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_parts.rsi/r_hand_feathers.png new file mode 100644 index 0000000000..c8cb724e78 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_parts.rsi/r_hand_feathers.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_parts.rsi/tail.png b/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_parts.rsi/tail.png new file mode 100644 index 0000000000..c04f9723e0 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_parts.rsi/tail.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_parts.rsi/tail_feathers.png b/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_parts.rsi/tail_feathers.png new file mode 100644 index 0000000000..9d26d68249 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Customization/resomi_parts.rsi/tail_feathers.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/Chest_Brute_10.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/Chest_Brute_10.png new file mode 100644 index 0000000000..dcd3d2cb1e Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/Chest_Brute_10.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/Chest_Brute_30.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/Chest_Brute_30.png new file mode 100644 index 0000000000..78e6e9a5fb Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/Chest_Brute_30.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/Chest_Brute_50.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/Chest_Brute_50.png new file mode 100644 index 0000000000..db8e65763a Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/Chest_Brute_50.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/Chest_Brute_70.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/Chest_Brute_70.png new file mode 100644 index 0000000000..fd51a461b5 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/Chest_Brute_70.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/Head_Brute_10.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/Head_Brute_10.png new file mode 100644 index 0000000000..bebf690989 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/Head_Brute_10.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/Head_Brute_30.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/Head_Brute_30.png new file mode 100644 index 0000000000..4a387f9a47 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/Head_Brute_30.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/Head_Brute_50.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/Head_Brute_50.png new file mode 100644 index 0000000000..f8d8f02345 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/Head_Brute_50.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/Head_Brute_70.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/Head_Brute_70.png new file mode 100644 index 0000000000..e66898b985 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/Head_Brute_70.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/LArm_Brute_10.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/LArm_Brute_10.png new file mode 100644 index 0000000000..d0da20094d Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/LArm_Brute_10.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/LArm_Brute_30.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/LArm_Brute_30.png new file mode 100644 index 0000000000..5ec9ca988d Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/LArm_Brute_30.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/LArm_Brute_50.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/LArm_Brute_50.png new file mode 100644 index 0000000000..36532d7372 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/LArm_Brute_50.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/LArm_Brute_70.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/LArm_Brute_70.png new file mode 100644 index 0000000000..4d717d240b Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/LArm_Brute_70.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/LFoot_Brute_10.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/LFoot_Brute_10.png new file mode 100644 index 0000000000..270e33f851 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/LFoot_Brute_10.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/LFoot_Brute_30.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/LFoot_Brute_30.png new file mode 100644 index 0000000000..b9a440d12b Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/LFoot_Brute_30.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/LFoot_Brute_50.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/LFoot_Brute_50.png new file mode 100644 index 0000000000..e43f48fd00 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/LFoot_Brute_50.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/LFoot_Brute_70.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/LFoot_Brute_70.png new file mode 100644 index 0000000000..5d000fe5e2 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/LFoot_Brute_70.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/LHand_Brute_10.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/LHand_Brute_10.png new file mode 100644 index 0000000000..07f76ebade Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/LHand_Brute_10.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/LHand_Brute_30.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/LHand_Brute_30.png new file mode 100644 index 0000000000..85bb395b23 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/LHand_Brute_30.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/LHand_Brute_50.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/LHand_Brute_50.png new file mode 100644 index 0000000000..154c2b6f61 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/LHand_Brute_50.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/LHand_Brute_70.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/LHand_Brute_70.png new file mode 100644 index 0000000000..4d837f3162 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/LHand_Brute_70.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/LLeg_Brute_10.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/LLeg_Brute_10.png new file mode 100644 index 0000000000..4dd058c3c1 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/LLeg_Brute_10.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/LLeg_Brute_30.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/LLeg_Brute_30.png new file mode 100644 index 0000000000..1fa0fe723c Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/LLeg_Brute_30.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/LLeg_Brute_50.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/LLeg_Brute_50.png new file mode 100644 index 0000000000..c1d75e3ae6 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/LLeg_Brute_50.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/LLeg_Brute_70.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/LLeg_Brute_70.png new file mode 100644 index 0000000000..bc19f25796 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/LLeg_Brute_70.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/RArm_Brute_10.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/RArm_Brute_10.png new file mode 100644 index 0000000000..79eff56341 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/RArm_Brute_10.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/RArm_Brute_30.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/RArm_Brute_30.png new file mode 100644 index 0000000000..b20a5b5f6f Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/RArm_Brute_30.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/RArm_Brute_50.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/RArm_Brute_50.png new file mode 100644 index 0000000000..c81a723ba8 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/RArm_Brute_50.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/RArm_Brute_70.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/RArm_Brute_70.png new file mode 100644 index 0000000000..1496bc50f3 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/RArm_Brute_70.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/RFoot_Brute_10.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/RFoot_Brute_10.png new file mode 100644 index 0000000000..1d8ff51c7c Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/RFoot_Brute_10.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/RFoot_Brute_30.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/RFoot_Brute_30.png new file mode 100644 index 0000000000..9eca3da7a9 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/RFoot_Brute_30.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/RFoot_Brute_50.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/RFoot_Brute_50.png new file mode 100644 index 0000000000..386947656d Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/RFoot_Brute_50.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/RFoot_Brute_70.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/RFoot_Brute_70.png new file mode 100644 index 0000000000..bae19d33b5 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/RFoot_Brute_70.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/RHand_Brute_10.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/RHand_Brute_10.png new file mode 100644 index 0000000000..168c23a1b0 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/RHand_Brute_10.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/RHand_Brute_30.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/RHand_Brute_30.png new file mode 100644 index 0000000000..a8ebd45dd6 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/RHand_Brute_30.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/RHand_Brute_50.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/RHand_Brute_50.png new file mode 100644 index 0000000000..22193bcb3b Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/RHand_Brute_50.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/RHand_Brute_70.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/RHand_Brute_70.png new file mode 100644 index 0000000000..b6744c14bc Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/RHand_Brute_70.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/RLeg_Brute_10.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/RLeg_Brute_10.png new file mode 100644 index 0000000000..be27b8fe9e Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/RLeg_Brute_10.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/RLeg_Brute_30.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/RLeg_Brute_30.png new file mode 100644 index 0000000000..685129849a Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/RLeg_Brute_30.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/RLeg_Brute_50.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/RLeg_Brute_50.png new file mode 100644 index 0000000000..5af6ea7923 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/RLeg_Brute_50.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/RLeg_Brute_70.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/RLeg_Brute_70.png new file mode 100644 index 0000000000..003541d681 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/RLeg_Brute_70.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/meta.json b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/meta.json new file mode 100644 index 0000000000..979ee91215 --- /dev/null +++ b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/brute_damage.rsi/meta.json @@ -0,0 +1,168 @@ +{ + "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/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/Chest_Burn_10.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/Chest_Burn_10.png new file mode 100644 index 0000000000..9fca538c57 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/Chest_Burn_10.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/Chest_Burn_30.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/Chest_Burn_30.png new file mode 100644 index 0000000000..7dae1fbd75 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/Chest_Burn_30.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/Chest_Burn_50.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/Chest_Burn_50.png new file mode 100644 index 0000000000..ee7bbc80e9 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/Chest_Burn_50.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/Chest_Burn_70.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/Chest_Burn_70.png new file mode 100644 index 0000000000..61e16cb756 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/Chest_Burn_70.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/Head_Burn_10.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/Head_Burn_10.png new file mode 100644 index 0000000000..b2dce2291d Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/Head_Burn_10.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/Head_Burn_30.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/Head_Burn_30.png new file mode 100644 index 0000000000..ef1e6a80cf Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/Head_Burn_30.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/Head_Burn_50.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/Head_Burn_50.png new file mode 100644 index 0000000000..bc52a1a0e7 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/Head_Burn_50.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/Head_Burn_70.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/Head_Burn_70.png new file mode 100644 index 0000000000..95b5fa1f4d Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/Head_Burn_70.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/LArm_Burn_10.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/LArm_Burn_10.png new file mode 100644 index 0000000000..650ee5ec93 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/LArm_Burn_10.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/LArm_Burn_30.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/LArm_Burn_30.png new file mode 100644 index 0000000000..c91b0c761b Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/LArm_Burn_30.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/LArm_Burn_50.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/LArm_Burn_50.png new file mode 100644 index 0000000000..6ea7a6c449 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/LArm_Burn_50.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/LArm_Burn_70.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/LArm_Burn_70.png new file mode 100644 index 0000000000..9409f5db76 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/LArm_Burn_70.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/LFoot_Burn_10.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/LFoot_Burn_10.png new file mode 100644 index 0000000000..088ea0f9cc Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/LFoot_Burn_10.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/LFoot_Burn_30.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/LFoot_Burn_30.png new file mode 100644 index 0000000000..717d5ab496 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/LFoot_Burn_30.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/LFoot_Burn_50.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/LFoot_Burn_50.png new file mode 100644 index 0000000000..33524c4bd8 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/LFoot_Burn_50.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/LFoot_Burn_70.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/LFoot_Burn_70.png new file mode 100644 index 0000000000..7a0d1744bc Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/LFoot_Burn_70.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/LHand_Burn_10.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/LHand_Burn_10.png new file mode 100644 index 0000000000..5725eee18e Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/LHand_Burn_10.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/LHand_Burn_30.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/LHand_Burn_30.png new file mode 100644 index 0000000000..1d7a525271 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/LHand_Burn_30.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/LHand_Burn_50.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/LHand_Burn_50.png new file mode 100644 index 0000000000..99b736f88f Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/LHand_Burn_50.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/LHand_Burn_70.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/LHand_Burn_70.png new file mode 100644 index 0000000000..71d644242d Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/LHand_Burn_70.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/LLeg_Burn_10.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/LLeg_Burn_10.png new file mode 100644 index 0000000000..bd6d36681e Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/LLeg_Burn_10.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/LLeg_Burn_30.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/LLeg_Burn_30.png new file mode 100644 index 0000000000..112bfca8ac Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/LLeg_Burn_30.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/LLeg_Burn_50.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/LLeg_Burn_50.png new file mode 100644 index 0000000000..09482285e4 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/LLeg_Burn_50.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/LLeg_Burn_70.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/LLeg_Burn_70.png new file mode 100644 index 0000000000..569244c347 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/LLeg_Burn_70.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/RArm_Burn_10.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/RArm_Burn_10.png new file mode 100644 index 0000000000..bd1c09e821 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/RArm_Burn_10.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/RArm_Burn_30.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/RArm_Burn_30.png new file mode 100644 index 0000000000..726b16661a Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/RArm_Burn_30.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/RArm_Burn_50.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/RArm_Burn_50.png new file mode 100644 index 0000000000..c7ca646c8d Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/RArm_Burn_50.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/RArm_Burn_70.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/RArm_Burn_70.png new file mode 100644 index 0000000000..e74cd61e51 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/RArm_Burn_70.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/RFoot_Burn_10.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/RFoot_Burn_10.png new file mode 100644 index 0000000000..de8aec9fc2 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/RFoot_Burn_10.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/RFoot_Burn_30.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/RFoot_Burn_30.png new file mode 100644 index 0000000000..248f85cd7b Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/RFoot_Burn_30.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/RFoot_Burn_50.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/RFoot_Burn_50.png new file mode 100644 index 0000000000..418031e7fa Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/RFoot_Burn_50.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/RFoot_Burn_70.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/RFoot_Burn_70.png new file mode 100644 index 0000000000..62c182efe0 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/RFoot_Burn_70.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/RHand_Burn_10.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/RHand_Burn_10.png new file mode 100644 index 0000000000..ffcfc4c6e0 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/RHand_Burn_10.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/RHand_Burn_30.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/RHand_Burn_30.png new file mode 100644 index 0000000000..e3008073b1 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/RHand_Burn_30.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/RHand_Burn_50.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/RHand_Burn_50.png new file mode 100644 index 0000000000..fc6836b1c1 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/RHand_Burn_50.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/RHand_Burn_70.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/RHand_Burn_70.png new file mode 100644 index 0000000000..7355df7e7e Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/RHand_Burn_70.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/RLeg_Burn_10.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/RLeg_Burn_10.png new file mode 100644 index 0000000000..2074110c37 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/RLeg_Burn_10.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/RLeg_Burn_30.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/RLeg_Burn_30.png new file mode 100644 index 0000000000..784a935146 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/RLeg_Burn_30.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/RLeg_Burn_50.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/RLeg_Burn_50.png new file mode 100644 index 0000000000..74f942269b Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/RLeg_Burn_50.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/RLeg_Burn_70.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/RLeg_Burn_70.png new file mode 100644 index 0000000000..f533a8601b Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/RLeg_Burn_70.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/meta.json b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/meta.json new file mode 100644 index 0000000000..ea17f30908 --- /dev/null +++ b/Resources/Textures/_CorvaxNext/Mobs/Effects/Resomi/burn_damage.rsi/meta.json @@ -0,0 +1,171 @@ +{ + "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/_CorvaxNext/Mobs/Effects/onfire.rsi/Resomi_burning.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/onfire.rsi/Resomi_burning.png new file mode 100644 index 0000000000..84fbf0d4dc Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/onfire.rsi/Resomi_burning.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/onfire.rsi/Resomi_minor_burning.png b/Resources/Textures/_CorvaxNext/Mobs/Effects/onfire.rsi/Resomi_minor_burning.png new file mode 100644 index 0000000000..3b6b50f476 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Effects/onfire.rsi/Resomi_minor_burning.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Effects/onfire.rsi/meta.json b/Resources/Textures/_CorvaxNext/Mobs/Effects/onfire.rsi/meta.json new file mode 100644 index 0000000000..4df8e1b5a2 --- /dev/null +++ b/Resources/Textures/_CorvaxNext/Mobs/Effects/onfire.rsi/meta.json @@ -0,0 +1,31 @@ +{ + "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/_CorvaxNext/Mobs/Species/Resomi/Abilities/AgilityOff.png b/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/Abilities/AgilityOff.png new file mode 100644 index 0000000000..d866605bd7 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/Abilities/AgilityOff.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/Abilities/AgilityOn.png b/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/Abilities/AgilityOn.png new file mode 100644 index 0000000000..57419985cf Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/Abilities/AgilityOn.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/Abilities/meta.json b/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/Abilities/meta.json new file mode 100644 index 0000000000..febfcf5a84 --- /dev/null +++ b/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/Abilities/meta.json @@ -0,0 +1,17 @@ +{ + "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/_CorvaxNext/Mobs/Species/Resomi/displacement.rsi/back.png b/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/displacement.rsi/back.png new file mode 100644 index 0000000000..f2f7b2e35e Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/displacement.rsi/back.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/displacement.rsi/belt.png b/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/displacement.rsi/belt.png new file mode 100644 index 0000000000..3bfc191dba Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/displacement.rsi/belt.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/displacement.rsi/ears.png b/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/displacement.rsi/ears.png new file mode 100644 index 0000000000..28cb986c95 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/displacement.rsi/ears.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/displacement.rsi/eyes.png b/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/displacement.rsi/eyes.png new file mode 100644 index 0000000000..1335c60410 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/displacement.rsi/eyes.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/displacement.rsi/feet.png b/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/displacement.rsi/feet.png new file mode 100644 index 0000000000..e99cfb7585 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/displacement.rsi/feet.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/displacement.rsi/hands.png b/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/displacement.rsi/hands.png new file mode 100644 index 0000000000..4b7ede0475 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/displacement.rsi/hands.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/displacement.rsi/head.png b/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/displacement.rsi/head.png new file mode 100644 index 0000000000..6a451a2af8 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/displacement.rsi/head.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/displacement.rsi/inHand.png b/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/displacement.rsi/inHand.png new file mode 100644 index 0000000000..7fbc76a824 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/displacement.rsi/inHand.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/displacement.rsi/jumpsuit.png b/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/displacement.rsi/jumpsuit.png new file mode 100644 index 0000000000..6a6064f813 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/displacement.rsi/jumpsuit.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/displacement.rsi/mask.png b/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/displacement.rsi/mask.png new file mode 100644 index 0000000000..0b870e2598 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/displacement.rsi/mask.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/displacement.rsi/meta.json b/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/displacement.rsi/meta.json new file mode 100644 index 0000000000..a7aabf6ccd --- /dev/null +++ b/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/displacement.rsi/meta.json @@ -0,0 +1,62 @@ +{ + "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/_CorvaxNext/Mobs/Species/Resomi/displacement.rsi/neck.png b/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/displacement.rsi/neck.png new file mode 100644 index 0000000000..81037000cf Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/displacement.rsi/neck.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/displacement.rsi/suitStorage.png b/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/displacement.rsi/suitStorage.png new file mode 100644 index 0000000000..9c3144ccf4 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/displacement.rsi/suitStorage.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/parts.rsi/full.png b/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/parts.rsi/full.png new file mode 100644 index 0000000000..944ce99250 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/parts.rsi/full.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/parts.rsi/groin.png b/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/parts.rsi/groin.png new file mode 100644 index 0000000000..daa4b2d6e1 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/parts.rsi/groin.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/parts.rsi/head_f.png b/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/parts.rsi/head_f.png new file mode 100644 index 0000000000..2cb32df05e Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/parts.rsi/head_f.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/parts.rsi/head_m.png b/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/parts.rsi/head_m.png new file mode 100644 index 0000000000..1d1566928d Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/parts.rsi/head_m.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/parts.rsi/l_arm.png b/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/parts.rsi/l_arm.png new file mode 100644 index 0000000000..11e43d017c Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/parts.rsi/l_arm.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/parts.rsi/l_foot.png b/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/parts.rsi/l_foot.png new file mode 100644 index 0000000000..431efddd67 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/parts.rsi/l_foot.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/parts.rsi/l_hand.png b/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/parts.rsi/l_hand.png new file mode 100644 index 0000000000..92797d29a5 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/parts.rsi/l_hand.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/parts.rsi/l_leg.png b/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/parts.rsi/l_leg.png new file mode 100644 index 0000000000..bb653da08b Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/parts.rsi/l_leg.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/parts.rsi/meta.json b/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/parts.rsi/meta.json new file mode 100644 index 0000000000..fda56a1f8d --- /dev/null +++ b/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/parts.rsi/meta.json @@ -0,0 +1,66 @@ +{ + "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/_CorvaxNext/Mobs/Species/Resomi/parts.rsi/r_arm.png b/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/parts.rsi/r_arm.png new file mode 100644 index 0000000000..33659a22b8 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/parts.rsi/r_arm.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/parts.rsi/r_foot.png b/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/parts.rsi/r_foot.png new file mode 100644 index 0000000000..5eab7aaf96 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/parts.rsi/r_foot.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/parts.rsi/r_hand.png b/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/parts.rsi/r_hand.png new file mode 100644 index 0000000000..0aa3dd18b3 Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/parts.rsi/r_hand.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/parts.rsi/r_leg.png b/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/parts.rsi/r_leg.png new file mode 100644 index 0000000000..988fb999af Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/parts.rsi/r_leg.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/parts.rsi/torso_f.png b/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/parts.rsi/torso_f.png new file mode 100644 index 0000000000..f84d8e389d Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/parts.rsi/torso_f.png differ diff --git a/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/parts.rsi/torso_m.png b/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/parts.rsi/torso_m.png new file mode 100644 index 0000000000..f84d8e389d Binary files /dev/null and b/Resources/Textures/_CorvaxNext/Mobs/Species/Resomi/parts.rsi/torso_m.png differ