diff --git a/Content.Server/_Obelisk/Species/Systems/Components/HydrakinComponent.cs b/Content.Server/_Obelisk/Species/Systems/Components/HydrakinComponent.cs new file mode 100644 index 00000000000..bca6e51a4b8 --- /dev/null +++ b/Content.Server/_Obelisk/Species/Systems/Components/HydrakinComponent.cs @@ -0,0 +1,43 @@ +// SPDX-FileCopyrightText: 2025 sneb +// +// SPDX-License-Identifier: MPL-2.0 + +using Content.Shared.Atmos; +using Robust.Shared.Audio; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; + +namespace Content.Server.Species.Systems.Components; + +[RegisterComponent] +public sealed partial class HydrakinComponent : Component +{ + [DataField] + public float MinTemperature = Atmospherics.T20C; + + [DataField] + public float MaxTemperature = 340f; + + [DataField] + public float Buildup = 0f; + + [DataField] + public bool HeatBuildupEnabled = true; + + [DataField] + public float TemperatureProcessingCooldown = 0.5f; + + public TimeSpan CurrentTemperatureCooldown = TimeSpan.Zero; + + [DataField(customTypeSerializer: typeof(PrototypeIdSerializer))] + public string? CoolOffActionId = "ActionHydrakinCoolOff"; + + [DataField] + public SoundSpecifier? CoolOffSound = new SoundCollectionSpecifier("HydrakinFlap"); + + [DataField] + public EntityUid? CoolOffAction; + + [DataField] + public float CoolOffCoefficient = 0.9f; +} diff --git a/Content.Server/_Obelisk/Species/Systems/HydrakinSystem.cs b/Content.Server/_Obelisk/Species/Systems/HydrakinSystem.cs new file mode 100644 index 00000000000..b996feeb4ba --- /dev/null +++ b/Content.Server/_Obelisk/Species/Systems/HydrakinSystem.cs @@ -0,0 +1,102 @@ +// SPDX-FileCopyrightText: 2025 sneb +// +// SPDX-License-Identifier: MPL-2.0 + +using Content.Server.Actions; +using Content.Server.Popups; +using Content.Server.Spawners.Components; +using Content.Server.Species.Systems.Components; +using Content.Server.Temperature.Components; +using Content.Server.Temperature.Systems; +using Content.Shared._Mono.Species.Systems; +using Content.Shared.Actions; +using Content.Shared.Actions.Events; +using Content.Shared.Audio; +using Content.Shared.DoAfter; +using Content.Shared.IdentityManagement; +using Content.Shared.Mobs; +using Content.Shared.Mobs.Components; +using Content.Shared.Temperature.Systems; +using Robust.Shared.Audio.Systems; +using Robust.Shared.Serialization; + +namespace Content.Server.Species.Systems; + +public sealed class HydrakinSystem : EntitySystem +{ + [Dependency] private readonly SharedActionsSystem _actionsSystem = default!; + [Dependency] private readonly PopupSystem _popupSystem = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly TemperatureSystem _temp = default!; + [Dependency] private readonly SharedDoAfterSystem _doAfter = default!; + + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnInit); + SubscribeLocalEvent(OnCoolOff); + SubscribeLocalEvent(OnCoolOffDoAfter); + } + + public override void Update(float frameTime) + { + base.Update(frameTime); + + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var comp, out var temperature)) + { + if (comp.CurrentTemperatureCooldown > TimeSpan.Zero) + { + comp.CurrentTemperatureCooldown -= TimeSpan.FromSeconds(frameTime); + return; + } + + if (!comp.HeatBuildupEnabled) + continue; + + if (TryComp(uid, out var mobState) && + mobState.CurrentState != MobState.Alive) + return; + + if (temperature.CurrentTemperature < comp.MinTemperature || + temperature.CurrentTemperature > comp.MaxTemperature) + return; + + _temp.ChangeHeat(uid,comp.Buildup * comp.TemperatureProcessingCooldown * _temp.GetHeatCapacity(uid), true); + comp.CurrentTemperatureCooldown = TimeSpan.FromSeconds(comp.TemperatureProcessingCooldown); + } + } + + private void OnInit(EntityUid uid, HydrakinComponent component, ComponentInit args) + { + if (component.CoolOffAction != null) + return; + + _actionsSystem.AddAction(uid, ref component.CoolOffAction, component.CoolOffActionId); + } + + private void OnCoolOff(EntityUid uid, HydrakinComponent component, HydrakinCoolOffActionEvent args) + { + var doafter = new DoAfterArgs(EntityManager, uid, TimeSpan.FromSeconds(3), new CoolOffDoAfterEvent(), uid); + + if (!_doAfter.TryStartDoAfter(doafter)) + return; + + args.Handled = true; + } + + private void OnCoolOffDoAfter(Entity ent, ref CoolOffDoAfterEvent args) + { + _popupSystem.PopupEntity(Loc.GetString("hydrakin-cool-off-emote", ("name", Identity.Entity(ent, EntityManager))), ent); + _audio.PlayEntity(ent.Comp.CoolOffSound, ent, ent); + + if (!TryComp(ent, out var temp)) + return; + + _temp.ChangeHeat(ent, + (temp.CurrentTemperature * ent.Comp.CoolOffCoefficient - temp.CurrentTemperature) * _temp.GetHeatCapacity(ent), + true); + + args.Handled = true; + } +} diff --git a/Content.Shared/_Mono/Species/Systems/CoolOffDoAfterEvent.cs b/Content.Shared/_Mono/Species/Systems/CoolOffDoAfterEvent.cs new file mode 100644 index 00000000000..23687fabf09 --- /dev/null +++ b/Content.Shared/_Mono/Species/Systems/CoolOffDoAfterEvent.cs @@ -0,0 +1,8 @@ +using Content.Shared.DoAfter; +using Robust.Shared.Serialization; + +namespace Content.Shared._Mono.Species.Systems +{ + [Serializable, NetSerializable] + public sealed partial class CoolOffDoAfterEvent : SimpleDoAfterEvent { }; +} diff --git a/Content.Shared/_Obelisk/Actions/Events/HydrakinCoolOffActionEvent.cs b/Content.Shared/_Obelisk/Actions/Events/HydrakinCoolOffActionEvent.cs new file mode 100644 index 00000000000..09f35515402 --- /dev/null +++ b/Content.Shared/_Obelisk/Actions/Events/HydrakinCoolOffActionEvent.cs @@ -0,0 +1,7 @@ +// SPDX-FileCopyrightText: 2025 sneb +// +// SPDX-License-Identifier: MPL-2.0 + +namespace Content.Shared.Actions.Events; + +public sealed partial class HydrakinCoolOffActionEvent : InstantActionEvent { } diff --git a/Resources/Audio/_Mono/Voice/Hydrakin/hydrakin-cry-1.ogg b/Resources/Audio/_Mono/Voice/Hydrakin/hydrakin-cry-1.ogg new file mode 100644 index 00000000000..7e4616aaf4c Binary files /dev/null and b/Resources/Audio/_Mono/Voice/Hydrakin/hydrakin-cry-1.ogg differ diff --git a/Resources/Audio/_Mono/Voice/Hydrakin/hydrakin-flap1.ogg b/Resources/Audio/_Mono/Voice/Hydrakin/hydrakin-flap1.ogg new file mode 100644 index 00000000000..585b900f719 Binary files /dev/null and b/Resources/Audio/_Mono/Voice/Hydrakin/hydrakin-flap1.ogg differ diff --git a/Resources/Audio/_Mono/Voice/Hydrakin/hydrakin-flap2.ogg b/Resources/Audio/_Mono/Voice/Hydrakin/hydrakin-flap2.ogg new file mode 100644 index 00000000000..14e37c4dc74 Binary files /dev/null and b/Resources/Audio/_Mono/Voice/Hydrakin/hydrakin-flap2.ogg differ diff --git a/Resources/Audio/_Mono/Voice/Hydrakin/hydrakin-laugh-1.ogg b/Resources/Audio/_Mono/Voice/Hydrakin/hydrakin-laugh-1.ogg new file mode 100644 index 00000000000..11cdcba4562 Binary files /dev/null and b/Resources/Audio/_Mono/Voice/Hydrakin/hydrakin-laugh-1.ogg differ diff --git a/Resources/Audio/_Mono/Voice/Hydrakin/hydrakin-scream-1.ogg b/Resources/Audio/_Mono/Voice/Hydrakin/hydrakin-scream-1.ogg new file mode 100644 index 00000000000..a97dbcf9233 Binary files /dev/null and b/Resources/Audio/_Mono/Voice/Hydrakin/hydrakin-scream-1.ogg differ diff --git a/Resources/Audio/_Mono/Voice/Hydrakin/hydrakin-scream-2.ogg b/Resources/Audio/_Mono/Voice/Hydrakin/hydrakin-scream-2.ogg new file mode 100644 index 00000000000..43fd2c356b3 Binary files /dev/null and b/Resources/Audio/_Mono/Voice/Hydrakin/hydrakin-scream-2.ogg differ diff --git a/Resources/Audio/_Mono/Voice/Hydrakin/hydrakin-scream-3.ogg b/Resources/Audio/_Mono/Voice/Hydrakin/hydrakin-scream-3.ogg new file mode 100644 index 00000000000..1a4c86c89b7 Binary files /dev/null and b/Resources/Audio/_Mono/Voice/Hydrakin/hydrakin-scream-3.ogg differ diff --git a/Resources/Audio/_Mono/Voice/Hydrakin/hydrakin-sigh-1.ogg b/Resources/Audio/_Mono/Voice/Hydrakin/hydrakin-sigh-1.ogg new file mode 100644 index 00000000000..45479680335 Binary files /dev/null and b/Resources/Audio/_Mono/Voice/Hydrakin/hydrakin-sigh-1.ogg differ diff --git a/Resources/Audio/_Mono/Voice/Hydrakin/hydrakin-sigh-2.ogg b/Resources/Audio/_Mono/Voice/Hydrakin/hydrakin-sigh-2.ogg new file mode 100644 index 00000000000..3747271f161 Binary files /dev/null and b/Resources/Audio/_Mono/Voice/Hydrakin/hydrakin-sigh-2.ogg differ diff --git a/Resources/Audio/_Mono/Voice/Hydrakin/hydrakin-sigh-3.ogg b/Resources/Audio/_Mono/Voice/Hydrakin/hydrakin-sigh-3.ogg new file mode 100644 index 00000000000..49258ca020a Binary files /dev/null and b/Resources/Audio/_Mono/Voice/Hydrakin/hydrakin-sigh-3.ogg differ diff --git a/Resources/Audio/_Mono/Voice/Hydrakin/hydrakin-squeak1.ogg b/Resources/Audio/_Mono/Voice/Hydrakin/hydrakin-squeak1.ogg new file mode 100644 index 00000000000..5b5d4adec88 Binary files /dev/null and b/Resources/Audio/_Mono/Voice/Hydrakin/hydrakin-squeak1.ogg differ diff --git a/Resources/Audio/_Mono/Voice/Hydrakin/hydrakin-squeak2.ogg b/Resources/Audio/_Mono/Voice/Hydrakin/hydrakin-squeak2.ogg new file mode 100644 index 00000000000..f473ac1a07b Binary files /dev/null and b/Resources/Audio/_Mono/Voice/Hydrakin/hydrakin-squeak2.ogg differ diff --git a/Resources/Audio/_Mono/Voice/Hydrakin/hydrakin-squeak3.ogg b/Resources/Audio/_Mono/Voice/Hydrakin/hydrakin-squeak3.ogg new file mode 100644 index 00000000000..a58a710b8a0 Binary files /dev/null and b/Resources/Audio/_Mono/Voice/Hydrakin/hydrakin-squeak3.ogg differ diff --git a/Resources/Audio/_Mono/Voice/Hydrakin/hydrakin-squeak4.ogg b/Resources/Audio/_Mono/Voice/Hydrakin/hydrakin-squeak4.ogg new file mode 100644 index 00000000000..e10c4545318 Binary files /dev/null and b/Resources/Audio/_Mono/Voice/Hydrakin/hydrakin-squeak4.ogg differ diff --git a/Resources/Audio/_Mono/Voice/Hydrakin/hydrakin-squeak5.ogg b/Resources/Audio/_Mono/Voice/Hydrakin/hydrakin-squeak5.ogg new file mode 100644 index 00000000000..370cb592ba3 Binary files /dev/null and b/Resources/Audio/_Mono/Voice/Hydrakin/hydrakin-squeak5.ogg differ diff --git a/Resources/Audio/_Mono/Voice/Hydrakin/long1.ogg b/Resources/Audio/_Mono/Voice/Hydrakin/long1.ogg new file mode 100644 index 00000000000..015af3e878e Binary files /dev/null and b/Resources/Audio/_Mono/Voice/Hydrakin/long1.ogg differ diff --git a/Resources/Audio/_Mono/Voice/Hydrakin/yelp1.ogg b/Resources/Audio/_Mono/Voice/Hydrakin/yelp1.ogg new file mode 100644 index 00000000000..5aa69fa31f6 Binary files /dev/null and b/Resources/Audio/_Mono/Voice/Hydrakin/yelp1.ogg differ diff --git a/Resources/Audio/_Mono/Voice/Hydrakin/yelp2.ogg b/Resources/Audio/_Mono/Voice/Hydrakin/yelp2.ogg new file mode 100644 index 00000000000..187e613982c Binary files /dev/null and b/Resources/Audio/_Mono/Voice/Hydrakin/yelp2.ogg differ diff --git a/Resources/Fonts/unifont-17.0.03.otf b/Resources/Fonts/unifont-17.0.03.otf new file mode 100644 index 00000000000..91400539752 Binary files /dev/null and b/Resources/Fonts/unifont-17.0.03.otf differ diff --git a/Resources/Locale/en-US/_EinsteinEngines/chat/managers/chat-language.ftl b/Resources/Locale/en-US/_EinsteinEngines/chat/managers/chat-language.ftl index 6afce22bdb0..2b85cdc79f0 100644 --- a/Resources/Locale/en-US/_EinsteinEngines/chat/managers/chat-language.ftl +++ b/Resources/Locale/en-US/_EinsteinEngines/chat/managers/chat-language.ftl @@ -21,6 +21,7 @@ chat-language-Sign-name = Sign chat-language-Marish-name = Marish chat-language-Chittin-name = Chittin chat-language-Xeeplian-name = Xeeplian +chat-language-Hydraspeak-name = Hy'drav'tha # Additional languges diff --git a/Resources/Locale/en-US/_EinsteinEngines/language/languages.ftl b/Resources/Locale/en-US/_EinsteinEngines/language/languages.ftl index 8901a07336b..cc8c7ebb52d 100644 --- a/Resources/Locale/en-US/_EinsteinEngines/language/languages.ftl +++ b/Resources/Locale/en-US/_EinsteinEngines/language/languages.ftl @@ -10,6 +10,11 @@ language-Bubblish-description = The language of Slimes. Being a mixture of bubbl language-RootSpeak-name = Rootspeak language-RootSpeak-description = The strange whistling-style language spoken by the Diona. +language-Hydraspeak-name = Hy'drav'tha +language-Hydraspeak-description = + A Mix of warbles, trills and chirps, with heavy tonal shifts and pitch changes make up this unusual language. + Due to the avian nature of hydrakin, one word can mean a million other things at the same time, which makes this language next to incomprehensible for even other birdlike races to figure out. + language-Nekomimetic-name = Nekomimetic language-Nekomimetic-description = To the casual observer, this language is an incomprehensible mess of broken Japanese. To the Felinids and Oni, it's somehow comprehensible. diff --git a/Resources/Locale/en-US/_Mono/metabolizer-types.ftl b/Resources/Locale/en-US/_Mono/metabolizer-types.ftl index bc8708089ec..8d1820334aa 100644 --- a/Resources/Locale/en-US/_Mono/metabolizer-types.ftl +++ b/Resources/Locale/en-US/_Mono/metabolizer-types.ftl @@ -1 +1,2 @@ metabolizer-type-chimera = Chimera +metabolizer-type-hydrakin = Hydrakin diff --git a/Resources/Locale/en-US/_Obelisk/abilities/hydrakin.ftl b/Resources/Locale/en-US/_Obelisk/abilities/hydrakin.ftl new file mode 100644 index 00000000000..aea11a71be3 --- /dev/null +++ b/Resources/Locale/en-US/_Obelisk/abilities/hydrakin.ftl @@ -0,0 +1,4 @@ +hydrakin-action-name-cool-off = Cool Off +hydrakin-action-description-cool-off = Dispel some of your body heat. + +hydrakin-cool-off-emote = {CAPITALIZE(THE($name))} begins to radiate out heat. \ No newline at end of file diff --git a/Resources/Locale/en-US/_Obelisk/markings/hydrakin.ftl b/Resources/Locale/en-US/_Obelisk/markings/hydrakin.ftl new file mode 100644 index 00000000000..3f7267810ee --- /dev/null +++ b/Resources/Locale/en-US/_Obelisk/markings/hydrakin.ftl @@ -0,0 +1,32 @@ +marking-HydrakinEyesDefault = Default Eyes +marking-HydrakinEyesHex = Hex Eyes +marking-HydrakinEyesOmega = Omega Eyes +marking-HydrakinEyesQuad = Quad Eyes +marking-HydrakinEyesRing = Ring Eyes +marking-HydrakinEyesSaint = Saint Eyes + +marking-HydrakinTailDefault = Tail +marking-HydrakinTailBig = Big +marking-HydrakinTailFeathers = Feathered +marking-HydrakinTailSpiny = Spiny +marking-HydrakinTailFins = Fins + +marking-HydrakinEarsDefault = Default Ears +marking-HydrakinEarsOld = Thin Ears +marking-HydrakinEarsFin = Fin Ears +marking-HydrakinEarsFrilled = Frilled Ears + +marking-HydrakinProtoChest = Cyberkin + +marking-HydrakinProtoLeftArm = Cyberkin Left +marking-HydrakinProtoRightArm = Cyberkin Right + +marking-HydrakinProtoLeftLeg = Cyberkin Left +marking-HydrakinProtoRightLeg = Cyberkin Right + +marking-HydrakinProtoVisor = Visor +marking-HydrakinProtoFace1 = Ring Display +marking-HydrakinProtoFace2 = Serious Display +marking-HydrakinProtoFace3 = Devilish Display +marking-HydrakinProtoFace4 = Sad Display +marking-HydrakinProtoFace5 = Chill Display diff --git a/Resources/Locale/en-US/_Obelisk/species/species.ftl b/Resources/Locale/en-US/_Obelisk/species/species.ftl new file mode 100644 index 00000000000..e234a40339d --- /dev/null +++ b/Resources/Locale/en-US/_Obelisk/species/species.ftl @@ -0,0 +1 @@ +species-name-hydrakin = Hydrakin \ No newline at end of file diff --git a/Resources/Prototypes/Guidebook/species.yml b/Resources/Prototypes/Guidebook/species.yml index 1592d4e91e2..f492ec62ac3 100644 --- a/Resources/Prototypes/Guidebook/species.yml +++ b/Resources/Prototypes/Guidebook/species.yml @@ -22,6 +22,7 @@ - IPC # EE - Rodentia # DeltaV - Tajaran # Goobstation + - Hydrakin # Monolith/Obelisk - type: guideEntry id: Arachnid @@ -82,3 +83,8 @@ id: Tajaran name: species-name-tajaran text: "/ServerInfo/Guidebook/Mobs/Tajaran.xml" + +- type: guideEntry + id: Hydrakin + name: species-name-hydrakin + text: "/ServerInfo/Guidebook/Mobs/Hydrakin.xml" diff --git a/Resources/Prototypes/InventoryTemplates/hydrakin_inventory_template.yml b/Resources/Prototypes/InventoryTemplates/hydrakin_inventory_template.yml new file mode 100644 index 00000000000..483431c24de --- /dev/null +++ b/Resources/Prototypes/InventoryTemplates/hydrakin_inventory_template.yml @@ -0,0 +1,172 @@ +- type: inventoryTemplate + id: hydrakin + slots: + - name: shoes + slotTexture: shoes + slotFlags: FEET + stripTime: 3 + uiWindowPos: 1,1 + strippingWindowPos: 1,3 + displayName: Shoes + - name: jumpsuit + slotTexture: uniform + slotFlags: INNERCLOTHING + stripTime: 6 + uiWindowPos: 0,1 + strippingWindowPos: 0,2 + displayName: Jumpsuit + - name: outerClothing + slotTexture: suit + slotFlags: OUTERCLOTHING + stripTime: 6 + uiWindowPos: 1,2 + strippingWindowPos: 1,2 + displayName: Suit + - name: gloves + slotTexture: gloves + slotFlags: GLOVES + uiWindowPos: 2,1 + strippingWindowPos: 2,2 + displayName: Gloves + - name: neck + slotTexture: neck + slotFlags: NECK + uiWindowPos: 0,3 + strippingWindowPos: 0,1 + displayName: Neck + - name: mask + slotTexture: mask + slotFlags: MASK + uiWindowPos: 1,3 + strippingWindowPos: 1,1 + displayName: Mask +# - name: eyes +# slotTexture: glasses +# slotFlags: EYES +# stripTime: 3 +# uiWindowPos: 0,4 +# strippingWindowPos: 0,0 +# displayName: Eyes + - name: ears + slotTexture: ears + slotFlags: EARS + stripTime: 3 + uiWindowPos: 2,3 + strippingWindowPos: 2,0 + displayName: Ears + - name: head + slotTexture: head + slotFlags: HEAD + uiWindowPos: 1,4 + strippingWindowPos: 1,0 + displayName: Head + - name: pocket1 + slotTexture: pocket + fullTextureName: template_small + slotFlags: POCKET + slotGroup: MainHotbar + stripTime: 3 + uiWindowPos: 0,4 + strippingWindowPos: 0,4 + dependsOn: jumpsuit + displayName: Pocket 1 + stripHidden: true + - name: pocket2 + slotTexture: pocket + fullTextureName: template_small + slotFlags: POCKET + slotGroup: MainHotbar + stripTime: 3 + uiWindowPos: 2,4 + strippingWindowPos: 1,4 + dependsOn: jumpsuit + displayName: Pocket 2 + stripHidden: true + - name: suitstorage + slotTexture: suit_storage + slotFlags: SUITSTORAGE + slotGroup: MainHotbar + stripTime: 3 + uiWindowPos: 2,1 + strippingWindowPos: 2,5 +# dependsOn: outerClothing #Mono: Disable shoulder slot restrictions +# dependsOnComponents: +# - type: AllowSuitStorage + displayName: Suit Storage + - name: id + slotTexture: id + fullTextureName: template_small + slotFlags: IDCARD + slotGroup: SecondHotbar + stripTime: 6 + uiWindowPos: 2,2 + strippingWindowPos: 2,4 + dependsOn: jumpsuit + displayName: ID + - name: belt + slotTexture: belt + fullTextureName: template_small + slotFlags: BELT + slotGroup: SecondHotbar + stripTime: 6 + uiWindowPos: 3,2 + strippingWindowPos: 1,5 + displayName: Belt + - name: back + slotTexture: back + fullTextureName: template_small + slotFlags: BACK + slotGroup: SecondHotbar + stripTime: 6 + uiWindowPos: 3,1 + strippingWindowPos: 0,5 + displayName: Back + # Frontier: wallet slot + - name: wallet + slotTexture: wallet + slotFlags: WALLET + stripTime: 6 + uiWindowPos: 1,0 + strippingWindowPos: 3,5 + dependsOn: jumpsuit + displayName: Wallet + # End Frontier: wallet slot + #Mono slots + - name: balaclava + slotTexture: balaclava + slotFlags: BALACLAVA + stripTime: 6 + uiWindowPos: 2,4 + strippingWindowPos: 3,0 + displayName: Balaclava + - name: leftarmband + slotTexture: armband_left + slotFlags: ARMBANDLEFT + stripTime: 6 + uiWindowPos: 2,2 + strippingWindowPos: 3,1 + displayName: Left_armband + - name: rightarmband + slotTexture: armband_right + slotFlags: ARMBANDRIGHT + stripTime: 6 + uiWindowPos: 0,2 + strippingWindowPos: 3,2 + displayName: Right_armband + - name: helmetcover + slotTexture: helmet_cover + slotFlags: HELMETCOVER + stripTime: 3 + uiWindowPos: 1,5 + strippingWindowPos: 3,3 + dependsOn: head + displayName: Helmet cover + - name: helmetattachment + slotTexture: helmet_attachment + slotFlags: HELMETATTACHMENT + stripTime: 3 + uiWindowPos: 0,5 + strippingWindowPos: 3,4 + dependsOn: head + displayName: Helmet_attachment + #End Mono diff --git a/Resources/Prototypes/Reagents/gases.yml b/Resources/Prototypes/Reagents/gases.yml index dd897d5ec87..bced2b71b0e 100644 --- a/Resources/Prototypes/Reagents/gases.yml +++ b/Resources/Prototypes/Reagents/gases.yml @@ -15,6 +15,10 @@ conditions: - !type:OrganType type: Human + - !type:Oxygenate # Mono - Hydrakin + conditions: + - !type:OrganType + type: Hydrakin - !type:Oxygenate conditions: - !type:OrganType # Goobstation - Yowie @@ -90,11 +94,18 @@ amount: -2.0 Gas: effects: + - !type:Oxygenate # Mono - Hydrakin + conditions: + - !type:OrganType + type: Hydrakin - !type:HealthChange conditions: - !type:OrganType # Goobstation - Yowie type: Yowie shouldHave: false + - !type:OrganType + type: Hydrakin + shouldHave: false scaleByQuantity: true ignoreResistances: true damage: @@ -109,6 +120,16 @@ min: 1.5 clear: True time: 5 + - !type:HealthChange # Mono + conditions: + - !type:OrganType + type: Hydrakin + - !type:ReagentThreshold + reagent: Plasma + min: 0.5 + damage: + types: + Heat: -0.5 reactiveEffects: Flammable: methods: [ Touch ] @@ -141,6 +162,10 @@ Radiation: 3 Gas: effects: + - !type:Oxygenate # Mono - Hydrakin + conditions: + - !type:OrganType + type: Hydrakin - !type:HealthChange scaleByQuantity: true ignoreResistances: true @@ -156,6 +181,17 @@ min: 1.5 clear: True time: 5 + - !type:HealthChange # Mono + conditions: + - !type:OrganType + type: Hydrakin + - !type:ReagentThreshold + reagent: Tritium + min: 0.5 + damage: + types: + Heat: -0.5 + Poison: -0.5 - type: reagent id: CarbonDioxide @@ -171,6 +207,10 @@ conditions: - !type:OrganType type: Plant + - !type:Oxygenate # Mono - Hydrakin + conditions: + - !type:OrganType + type: Hydrakin - !type:HealthChange conditions: - !type:OrganType @@ -179,6 +219,9 @@ - !type:OrganType type: Vox shouldHave: false + - !type:OrganType + type: Hydrakin + shouldHave: false - !type:OrganType # Goobstation - Yowie type: Yowie shouldHave: false @@ -224,6 +267,10 @@ conditions: - !type:OrganType type: Vox + - !type:Oxygenate # Mono - Hydrakin + conditions: + - !type:OrganType + type: Hydrakin - !type:Oxygenate conditions: - !type:OrganType @@ -256,6 +303,19 @@ metabolisms: Gas: effects: + - !type:Oxygenate # Mono - Hydrakin + conditions: + - !type:OrganType + type: Hydrakin + - !type:MovespeedModifier # Mono - Hydrakin + walkSpeedModifier: 1.15 + sprintSpeedModifier: 1.15 + conditions: + - !type:OrganType + type: Hydrakin + - !type:ReagentThreshold + reagent: NitrousOxide + min: 0.75 - !type:Emote conditions: - !type:ReagentThreshold @@ -288,6 +348,9 @@ - !type:OrganType type: Slime shouldHave: false + - !type:OrganType # Mono - Hydrakin + type: Hydrakin + shouldHave: false walkSpeedModifier: 0.65 sprintSpeedModifier: 0.65 - !type:GenericStatusEffect @@ -301,6 +364,9 @@ - !type:OrganType type: Slime shouldHave: false + - !type:OrganType # Mono - Hydrakin + type: Hydrakin + shouldHave: false key: ForcedSleep component: ForcedSleeping time: 200 # This reeks, but I guess it works LMAO @@ -316,6 +382,9 @@ - !type:OrganType type: Slime shouldHave: false + - !type:OrganType # Mono - Hydrakin + type: Hydrakin + shouldHave: false ignoreResistances: true damage: types: @@ -333,6 +402,10 @@ metabolisms: Gas: effects: + - !type:Oxygenate # Mono - Hydrakin + conditions: + - !type:OrganType + type: Hydrakin - !type:HealthChange conditions: - !type:OrganType # Goobstation - Yowie @@ -350,6 +423,9 @@ - !type:OrganType # Goobstation - Yowie type: Yowie shouldHave: false + - !type:OrganType # Mono - Hydrakin + type: Hydrakin + shouldHave: false - !type:ReagentThreshold reagent: Frezon min: 0.5 @@ -391,4 +467,14 @@ - !type:ReagentThreshold reagent: Frezon min: 1 + - !type:AdjustTemperature # Mono - Hydrakin + conditions: + - !type:ReagentThreshold + reagent: Frezon + min: 0.25 + - !type:Temperature + min: 215.15 + - !type:OrganType + type: Hydrakin + amount: -10000 diff --git a/Resources/Prototypes/Reagents/medicine.yml b/Resources/Prototypes/Reagents/medicine.yml index 66a736afc72..e5cb1e4b57f 100644 --- a/Resources/Prototypes/Reagents/medicine.yml +++ b/Resources/Prototypes/Reagents/medicine.yml @@ -541,11 +541,17 @@ conditions: - !type:Temperature max: 293.15 + - !type:OrganType + type: Hydrakin + shouldHave: false amount: 100000 # thermal energy, not temperature! - !type:AdjustTemperature conditions: - !type:Temperature min: 293.15 + - !type:OrganType + type: Hydrakin + shouldHave: false amount: -10000 - !type:PopupMessage type: Local @@ -555,6 +561,13 @@ - !type:AdjustReagent reagent: Fresium amount: -5 + - !type:AdjustTemperature + conditions: + - !type:Temperature + min: 215.15 + - !type:OrganType + type: Hydrakin + amount: -75000 - type: reagent id: Barozine diff --git a/Resources/Prototypes/_EinsteinEngines/Language/Species-Specific/hydrakin.yml b/Resources/Prototypes/_EinsteinEngines/Language/Species-Specific/hydrakin.yml new file mode 100644 index 00000000000..11abbc353fd --- /dev/null +++ b/Resources/Prototypes/_EinsteinEngines/Language/Species-Specific/hydrakin.yml @@ -0,0 +1,53 @@ +# Spoken by Hydrakin. Have fun. +- type: language + id: Hydraspeak + isVisibleLanguage: true + speech: + color: "#6e6cfedd" + fontId: MinecraftEnchantment + obfuscation: + !type:SyllableObfuscation + minSyllables: 2 + maxSyllables: 4 + replacement: + - ᔑᔑ + - ʖ↸ + - ╎⍑ + - ꖎꖎリ + - ∷∴ + - ⋮∷ + - ⨅⍊ + - ᓵʖ + - ᒲ↸ + - ʖ↸ + - ᔑ↸ + - ᑑ↸ + - ʖᒲ + - ⊣ᒷ + - ᒲᒷ + - リᔑʖ + - ╎╎ᑑ + - ⎓∴ + - ᔑ + - ʖ + - ᓵ + - ↸ + - ᒷ + - ⎓ + - ⊣ + - ⍑ + - ╎ + - ⋮ + - ꖌ + - ꖎ + - ᒲ + - リ + - 𝙹 + - ᑑ + - ∷ + - ᓭ + - ℸ ̣ + - ⚍ + - ⍊ + - ∴ + - ⨅ diff --git a/Resources/Prototypes/_Funkystation/Reagents/gases.yml b/Resources/Prototypes/_Funkystation/Reagents/gases.yml index 6579a168436..61e79e42326 100644 --- a/Resources/Prototypes/_Funkystation/Reagents/gases.yml +++ b/Resources/Prototypes/_Funkystation/Reagents/gases.yml @@ -10,6 +10,10 @@ metabolisms: Gas: effects: + - !type:Oxygenate # Mono - Hydrakin + conditions: + - !type:OrganType + type: Hydrakin - !type:Emote conditions: - !type:ReagentThreshold @@ -18,6 +22,9 @@ - !type:OrganType type: Slime shouldHave: false + - !type:OrganType + type: Hydrakin + shouldHave: false emote: Cough showInChat: true probability: 0.1 @@ -29,6 +36,9 @@ - !type:OrganType type: Slime shouldHave: false + - !type:OrganType + type: Hydrakin + shouldHave: false scaleByQuantity: true ignoreResistances: true damage: @@ -104,6 +114,18 @@ component: ForcedSleeping time: 10 type: Add + - !type:HealthChange + conditions: + - !type:ReagentThreshold + reagent: BZ + min: 0.5 + - !type:OrganType + type: Hydrakin + ignoreResistances: true + damage: + types: + Poison: -2 + Cellular: -0.5 - type: reagent id: Healium @@ -115,6 +137,10 @@ metabolisms: Gas: effects: + - !type:Oxygenate # Mono - Hydrakin + conditions: + - !type:OrganType + type: Hydrakin - !type:HealthChange conditions: - !type:ReagentThreshold @@ -127,6 +153,20 @@ Burn: -2 Toxin: -5 Brute: -2 + - !type:HealthChange + conditions: + - !type:ReagentThreshold + reagent: Healium + max: 24 + - !type:OrganType + type: Hydrakin + scaleByQuantity: true + ignoreResistances: true + damage: + groups: + Burn: -2 + Toxin: -1 + Brute: -2 - !type:HealthChange conditions: - !type:ReagentThreshold @@ -200,6 +240,10 @@ metabolisms: Gas: effects: + - !type:Oxygenate # Mono - Hydrakin + conditions: + - !type:OrganType + type: Hydrakin - !type:NitriumMovespeedModifier conditions: - !type:ReagentThreshold @@ -212,6 +256,9 @@ - !type:ReagentThreshold reagent: Nitrium min: 6 + - !type:OrganType + type: Hydrakin + shouldHave: false reagent: NitrosylPlasmide amount: 2.5 - !type:GenericStatusEffect @@ -227,6 +274,9 @@ - !type:ReagentThreshold reagent: Nitrium min: 10 + - !type:OrganType + type: Hydrakin + shouldHave: false ignoreResistances: true damage: types: @@ -242,11 +292,16 @@ metabolisms: Gas: effects: - - !type:Oxygenate + - !type:Oxygenate # Mono factor: 8 conditions: - !type:OrganType type: Human + - !type:Oxygenate + factor: 8 + conditions: + - !type:OrganType + type: Hydrakin - !type:Oxygenate factor: 8 conditions: diff --git a/Resources/Prototypes/_Goobstation/fonts.yml b/Resources/Prototypes/_Goobstation/fonts.yml index 4304ac0a5e1..fb2c5e6f68c 100644 --- a/Resources/Prototypes/_Goobstation/fonts.yml +++ b/Resources/Prototypes/_Goobstation/fonts.yml @@ -2,6 +2,10 @@ id: NotoSansSC path: /Fonts/NotoSans/NotoSansSC-Regular.ttf +- type: font + id: MinecraftEnchantment + path: /Fonts/unifont-17.0.03.otf + #- type: font # Bubblish (Slimes) # id: SourGummy # path: /Fonts/_Goobstation/Sour_Gummy/SourGummy-Regular.ttf diff --git a/Resources/Prototypes/_Mono/Body/Organs/hydra.yml b/Resources/Prototypes/_Mono/Body/Organs/hydra.yml new file mode 100644 index 00000000000..dc5b54b5a84 --- /dev/null +++ b/Resources/Prototypes/_Mono/Body/Organs/hydra.yml @@ -0,0 +1,120 @@ +- type: metabolizerType + id: Hydrakin + name: metabolizer-type-hydrakin + +- type: entity + id: BaseHydrakinOrgan + name: hydrakin organ + parent: [BaseItem] + abstract: true + components: + - type: Sprite + sprite: Mobs/Species/Human/organs.rsi # Placeholder. + - type: SolutionContainerManager + solutions: + organ: + reagents: + - ReagentId: Fat + Quantity: 10 + food: + maxVol: 10 + reagents: + - ReagentId: Fat + Quantity: 5 + - ReagentId: AmmoniaBlood + Quantity: 5 + +- type: entity + id: OrganHydrakinStomach + parent: BaseHydrakinOrgan + name: hydrakin stomach + components: + - type: Sprite + state: stomach + - type: Stomach + - type: Organ + slotId: stomach + - type: Metabolizer + maxReagents: 3 + metabolizerTypes: [ Animal ] + removeEmpty: true + - type: SolutionContainerManager + solutions: + stomach: + maxVol: 30 # Their body is thin as fuck. + - type: Item + size: Small + heldPrefix: stomach + +- type: entity + id: OrganHydrakinBrain + parent: [ BaseHydrakinOrgan, OrganHumanBrain ] + name: hydrakin brain + components: + - type: Sprite + state: brain + - type: Item + size: Small + heldPrefix: brain + +- type: entity + id: OrganHydrakinLiver + parent: BaseHydrakinOrgan + name: hydrakin liver + components: + - type: Sprite + layers: + - state: kidney-l + - state: kidney-r + - type: Item + size: Small + heldPrefix: liver + - type: Liver # Shitmed Change + - type: Organ # Shitmed Change + slotId: liver # Shitmed Change + +- type: entity + id: OrganHydrakinHeart + parent: [ BaseHydrakinOrgan , OrganHumanHeart ] + name: hydrakin heart + +- type: entity + id: OrganHydrakinLungs + parent: BaseHydrakinOrgan + name: hydrakin lungs + description: "Hydrakin lungs, capable of processing any gas without negative effects." + components: + - type: Sprite + layers: + - state: lung-l + - state: lung-r + - type: Item + size: Small + heldPrefix: lungs + - type: Organ + slotId: lungs + - type: Lung + - type: Metabolizer + removeEmpty: true + solutionOnBody: false + solution: "Lung" + metabolizerTypes: [ Hydrakin ] + groups: + - id: Gas + rateModifier: 100.0 + - type: SolutionContainerManager + solutions: + Lung: + maxVol: 100.0 + canReact: false + organ: + reagents: + - ReagentId: Fat + Quantity: 10 + food: + maxVol: 10 + reagents: + - ReagentId: Fat + Quantity: 5 + - ReagentId: AmmoniaBlood + Quantity: 5 \ No newline at end of file diff --git a/Resources/Prototypes/_Mono/SoundCollections/hydrakin.yml b/Resources/Prototypes/_Mono/SoundCollections/hydrakin.yml new file mode 100644 index 00000000000..a7f0c4d8a6a --- /dev/null +++ b/Resources/Prototypes/_Mono/SoundCollections/hydrakin.yml @@ -0,0 +1,29 @@ +- type: soundCollection + id: HydrakinScream + files: + - /Audio/_Mono/Voice/Hydrakin/hydrakin-scream-1.ogg + - /Audio/_Mono/Voice/Hydrakin/hydrakin-scream-2.ogg + - /Audio/_Mono/Voice/Hydrakin/hydrakin-scream-3.ogg + +- type: soundCollection + id: HydrakinCry + files: + - /Audio/_Mono/Voice/Hydrakin/hydrakin-cry-1.ogg + +- type: soundCollection + id: HydrakinSigh + files: + - /Audio/_Mono/Voice/Hydrakin/hydrakin-sigh-1.ogg + - /Audio/_Mono/Voice/Hydrakin/hydrakin-sigh-2.ogg + - /Audio/_Mono/Voice/Hydrakin/hydrakin-sigh-3.ogg + +- type: soundCollection + id: HydrakinLaugh + files: + - /Audio/_Mono/Voice/Hydrakin/hydrakin-laugh-1.ogg + +- type: soundCollection + id: HydrakinFlap + files: + - /Audio/_Mono/Voice/Hydrakin/hydrakin-flap1.ogg + - /Audio/_Mono/Voice/Hydrakin/hydrakin-flap2.ogg \ No newline at end of file diff --git a/Resources/Prototypes/_Mono/Voice/speech_emote_sounds.yml b/Resources/Prototypes/_Mono/Voice/speech_emote_sounds.yml new file mode 100644 index 00000000000..0276468dd17 --- /dev/null +++ b/Resources/Prototypes/_Mono/Voice/speech_emote_sounds.yml @@ -0,0 +1,18 @@ +- type: emoteSounds + id: UnisexHydrakin + params: + variation: 0.125 + volume: -8 + sounds: + Scream: + collection: HydrakinScream + Laugh: + collection: HydrakinLaugh + Crying: + collection: HydrakinCry + Sigh: + collection: HydrakinSigh + Gasp: + collection: MaleGasp + DefaultDeathgasp: + collection: DeathGasp diff --git a/Resources/Prototypes/_Obelisk/Actions/types.yml b/Resources/Prototypes/_Obelisk/Actions/types.yml new file mode 100644 index 00000000000..7f875381532 --- /dev/null +++ b/Resources/Prototypes/_Obelisk/Actions/types.yml @@ -0,0 +1,14 @@ +# SPDX-FileCopyrightText: 2025 sneb +# +# SPDX-License-Identifier: MPL-2.0 + +- type: entity + id: ActionHydrakinCoolOff + name: hydrakin-action-name-cool-off + description: hydrakin-action-description-cool-off + categories: [ HideSpawnMenu ] # Frontier + components: + - type: InstantAction + icon: { sprite: Structures/Piping/Atmospherics/heatexchanger.rsi, state: heStraight } + useDelay: 5 + event: !type:HydrakinCoolOffActionEvent \ No newline at end of file diff --git a/Resources/Prototypes/_Obelisk/Body/Parts/hydrakin.yml b/Resources/Prototypes/_Obelisk/Body/Parts/hydrakin.yml new file mode 100644 index 00000000000..fb95531e253 --- /dev/null +++ b/Resources/Prototypes/_Obelisk/Body/Parts/hydrakin.yml @@ -0,0 +1,128 @@ +# SPDX-FileCopyrightText: 2025 sneb +# +# SPDX-License-Identifier: MPL-2.0 + +# TODO: Add descriptions (many) +# TODO BODY: Part damage +- type: entity + id: PartHydrakin + parent: [BaseItem, BasePart] + name: "hydrakin body part" + abstract: true + components: + - type: Icon # Shitmed Change + sprite: _Obelisk/Mobs/Species/Hydrakin/parts.rsi + - type: BodyPart # Shitmed Change + species: Hydrakin + - type: Extractable + juiceSolution: + reagents: + - ReagentId: Fat + Quantity: 3 + - ReagentId: AmmoniaBlood + Quantity: 10 + +- type: entity + id: TorsoHydrakin + name: "hydrakin torso" + parent: [PartHydrakin, BaseTorso] + components: + - type: Sprite + sprite: _Obelisk/Mobs/Species/Hydrakin/parts.rsi + state: "torso_m" + - type: Extractable + juiceSolution: + reagents: + - ReagentId: Fat + Quantity: 10 + - ReagentId: AmmoniaBlood + Quantity: 20 + + +- type: entity + id: HeadHydrakin + name: "hydrakin head" + parent: [PartHydrakin, BaseHead] + components: + - type: Sprite + sprite: _Obelisk/Mobs/Species/Hydrakin/parts.rsi + state: "head_m" + - type: Extractable + juiceSolution: + reagents: + - ReagentId: Fat + Quantity: 5 + - ReagentId: AmmoniaBlood + Quantity: 10 + +- type: entity + id: LeftArmHydrakin + name: "left hydrakin arm" + parent: [PartHydrakin, BaseLeftArm] + components: + - type: Sprite + sprite: _Obelisk/Mobs/Species/Hydrakin/parts.rsi + state: "l_arm" + +- type: entity + id: RightArmHydrakin + name: "right hydrakin arm" + parent: [PartHydrakin, BaseRightArm] + components: + - type: Sprite + sprite: _Obelisk/Mobs/Species/Hydrakin/parts.rsi + state: "r_arm" + +- type: entity + id: LeftHandHydrakin + name: "left hydrakin hand" + parent: [PartHydrakin, BaseLeftHand] + components: + - type: Sprite + sprite: _Obelisk/Mobs/Species/Hydrakin/parts.rsi + state: "l_hand" + +- type: entity + id: RightHandHydrakin + name: "right hydrakin hand" + parent: [PartHydrakin, BaseRightHand] + components: + - type: Sprite + sprite: _Obelisk/Mobs/Species/Hydrakin/parts.rsi + state: "r_hand" + +- type: entity + id: LeftLegHydrakin + name: "left Hydrakin leg" + parent: [PartHydrakin, BaseLeftLeg] + components: + - type: Sprite + sprite: _Obelisk/Mobs/Species/Hydrakin/parts.rsi + state: "l_leg" + +- type: entity + id: RightLegHydrakin + name: "right hydrakin leg" + parent: [PartHydrakin, BaseRightLeg] + components: + - type: Sprite + sprite: _Obelisk/Mobs/Species/Hydrakin/parts.rsi + state: "r_leg" + +- type: entity + id: LeftFootHydrakin + name: "left hydrakin foot" + parent: [PartHydrakin, BaseLeftFoot] + components: + - type: Sprite + sprite: _Obelisk/Mobs/Species/Hydrakin/parts.rsi + state: "l_foot" + +- type: entity + id: RightFootHydrakin + name: "right hydrakin foot" + parent: [PartHydrakin, BaseRightFoot] + components: + - type: Sprite + sprite: _Obelisk/Mobs/Species/Hydrakin/parts.rsi + state: "r_foot" diff --git a/Resources/Prototypes/_Obelisk/Body/Prototypes/hydrakin.yml b/Resources/Prototypes/_Obelisk/Body/Prototypes/hydrakin.yml new file mode 100644 index 00000000000..d7174eeb7e6 --- /dev/null +++ b/Resources/Prototypes/_Obelisk/Body/Prototypes/hydrakin.yml @@ -0,0 +1,58 @@ +# SPDX-FileCopyrightText: 2022 DrSmugleaf +# SPDX-FileCopyrightText: 2022 Jezithyr +# SPDX-FileCopyrightText: 2023 Nemanja +# SPDX-FileCopyrightText: 2025 Ark +# SPDX-FileCopyrightText: 2025 sneb +# +# SPDX-License-Identifier: MPL-2.0 + +- type: body + id: Hydrakin + name: "hydrakin" + root: torso + slots: + head: + part: HeadHydrakin + connections: + - torso + organs: + brain: OrganHydrakinBrain + eyes: OrganHumanEyes + torso: + part: TorsoHydrakin + connections: + - right arm + - left arm + - right leg + - left leg + - head # Shitmed + organs: + heart: OrganHydrakinHeart + lungs: OrganHydrakinLungs + stomach: OrganHydrakinStomach + liver: OrganHydrakinLiver + kidneys: OrganHumanKidneys + right arm: + part: RightArmHydrakin + connections: + - right hand + left arm: + part: LeftArmHydrakin + connections: + - left hand + right hand: + part: RightHandHydrakin + left hand: + part: LeftHandHydrakin + right leg: + part: RightLegHydrakin + connections: + - right foot + left leg: + part: LeftLegHydrakin + connections: + - left foot + right foot: + part: RightFootHydrakin + left foot: + part: LeftFootHydrakin diff --git a/Resources/Prototypes/_Obelisk/Damage/modifier_sets.yml b/Resources/Prototypes/_Obelisk/Damage/modifier_sets.yml new file mode 100644 index 00000000000..d4853689131 --- /dev/null +++ b/Resources/Prototypes/_Obelisk/Damage/modifier_sets.yml @@ -0,0 +1,14 @@ +# SPDX-FileCopyrightText: 2025 sneb +# +# SPDX-License-Identifier: MPL-2.0 + +- type: damageModifierSet # Mono + id: Hydrakin + coefficients: + Heat: 1.25 + Cold: 0.0 # Total cold immunity + Radiation: 1.0 + Shock: 1.0 + Blunt: 0.9 + Slash: 1.15 + Piercing: 0.9 diff --git a/Resources/Prototypes/_Obelisk/Entities/Mobs/Customization/Markings/hydrakin.yml b/Resources/Prototypes/_Obelisk/Entities/Mobs/Customization/Markings/hydrakin.yml new file mode 100644 index 00000000000..5720477c8fd --- /dev/null +++ b/Resources/Prototypes/_Obelisk/Entities/Mobs/Customization/Markings/hydrakin.yml @@ -0,0 +1,242 @@ +# SPDX-FileCopyrightText: 2025 sneb +# +# SPDX-License-Identifier: MPL-2.0 + +- type: marking + id: HydrakinEyesDefault + bodyPart: Head + markingCategory: Head + speciesRestriction: [Hydrakin] + sprites: + - sprite: _Obelisk/Mobs/Customization/hydrakin_parts.rsi + state: eyes_default + +- type: marking + id: HydrakinEyesOmega + bodyPart: Head + markingCategory: Head + speciesRestriction: [Hydrakin] + sprites: + - sprite: _Obelisk/Mobs/Customization/hydrakin_parts.rsi + state: eyes_omega + +- type: marking + id: HydrakinEyesQuad + bodyPart: Head + markingCategory: Head + speciesRestriction: [Hydrakin] + sprites: + - sprite: _Obelisk/Mobs/Customization/hydrakin_parts.rsi + state: eyes_quad + +- type: marking + id: HydrakinEyesSaint + bodyPart: Head + markingCategory: Head + speciesRestriction: [Hydrakin] + sprites: + - sprite: _Obelisk/Mobs/Customization/hydrakin_parts.rsi + state: eyes_saint + +- type: marking + id: HydrakinEyesHex + bodyPart: Head + markingCategory: Head + speciesRestriction: [Hydrakin] + sprites: + - sprite: _Obelisk/Mobs/Customization/hydrakin_parts.rsi + state: eyes_hex + +- type: marking + id: HydrakinEyesRing + bodyPart: Head + markingCategory: Head + speciesRestriction: [Hydrakin] + sprites: + - sprite: _Obelisk/Mobs/Customization/hydrakin_parts.rsi + state: eyes_ring + + +- type: marking + id: HydrakinTailDefault + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Hydrakin] + sprites: + - sprite: _Obelisk/Mobs/Customization/hydrakin_parts.rsi + state: tail_default + +- type: marking + id: HydrakinTailBig + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Hydrakin] + sprites: + - sprite: _Obelisk/Mobs/Customization/hydrakin_parts.rsi + state: tail_big + +- type: marking + id: HydrakinTailFeathers + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Hydrakin] + sprites: + - sprite: _Obelisk/Mobs/Customization/hydrakin_parts.rsi + state: tail_feathers + +- type: marking + id: HydrakinTailSpiny + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Hydrakin] + sprites: + - sprite: _Obelisk/Mobs/Customization/hydrakin_parts.rsi + state: tail_spiny + +- type: marking + id: HydrakinTailFins + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Hydrakin] + sprites: + - sprite: _Obelisk/Mobs/Customization/hydrakin_parts.rsi + state: tail_fins + + +- type: marking + id: HydrakinEarsDefault + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Hydrakin] + sprites: + - sprite: _Obelisk/Mobs/Customization/hydrakin_parts.rsi + state: ears_default + +- type: marking + id: HydrakinEarsOld + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Hydrakin] + sprites: + - sprite: _Obelisk/Mobs/Customization/hydrakin_parts.rsi + state: ears_old + +- type: marking + id: HydrakinEarsFin + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Hydrakin] + sprites: + - sprite: _Obelisk/Mobs/Customization/hydrakin_parts.rsi + state: ears_fin + +- type: marking + id: HydrakinEarsFrilled + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Hydrakin] + sprites: + - sprite: _Obelisk/Mobs/Customization/hydrakin_parts.rsi + state: ears_frilled + +# Cyber-proto-esque sprites + +- type: marking + id: HydrakinProtoFace1 + bodyPart: Head + markingCategory: Overlay + speciesRestriction: [Hydrakin] + sprites: + - sprite: _Obelisk/Mobs/Customization/hydraproto_parts.rsi + state: face_1 + +- type: marking + id: HydrakinProtoFace2 + bodyPart: Head + markingCategory: Overlay + speciesRestriction: [Hydrakin] + sprites: + - sprite: _Obelisk/Mobs/Customization/hydraproto_parts.rsi + state: face_2 + +- type: marking + id: HydrakinProtoFace3 + bodyPart: Head + markingCategory: Overlay + speciesRestriction: [Hydrakin] + sprites: + - sprite: _Obelisk/Mobs/Customization/hydraproto_parts.rsi + state: face_3 + +- type: marking + id: HydrakinProtoFace4 + bodyPart: Head + markingCategory: Overlay + speciesRestriction: [Hydrakin] + sprites: + - sprite: _Obelisk/Mobs/Customization/hydraproto_parts.rsi + state: face_4 + +- type: marking + id: HydrakinProtoFace5 + bodyPart: Head + markingCategory: Overlay + speciesRestriction: [Hydrakin] + sprites: + - sprite: _Obelisk/Mobs/Customization/hydraproto_parts.rsi + state: face_5 + + +- type: marking + id: HydrakinProtoVisor + bodyPart: Head + markingCategory: Overlay + speciesRestriction: [Hydrakin] + sprites: + - sprite: _Obelisk/Mobs/Customization/hydraproto_parts.rsi + state: visor + +- type: marking + id: HydrakinProtoChest + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [Hydrakin] + sprites: + - sprite: _Obelisk/Mobs/Customization/hydraproto_parts.rsi + state: chest + +- type: marking + id: HydrakinProtoLeftArm + bodyPart: LArm + markingCategory: Arms + speciesRestriction: [Hydrakin] + sprites: + - sprite: _Obelisk/Mobs/Customization/hydraproto_parts.rsi + state: arm_left + +- type: marking + id: HydrakinProtoRightArm + bodyPart: RArm + markingCategory: Arms + speciesRestriction: [Hydrakin] + sprites: + - sprite: _Obelisk/Mobs/Customization/hydraproto_parts.rsi + state: arm_right + +- type: marking + id: HydrakinProtoLeftLeg + bodyPart: LLeg + markingCategory: Legs + speciesRestriction: [Hydrakin] + sprites: + - sprite: _Obelisk/Mobs/Customization/hydraproto_parts.rsi + state: leg_left + +- type: marking + id: HydrakinProtoRightLeg + bodyPart: RLeg + markingCategory: Legs + speciesRestriction: [Hydrakin] + sprites: + - sprite: _Obelisk/Mobs/Customization/hydraproto_parts.rsi + state: leg_right diff --git a/Resources/Prototypes/_Obelisk/Entities/Mobs/Player/hydrakin.yml b/Resources/Prototypes/_Obelisk/Entities/Mobs/Player/hydrakin.yml new file mode 100644 index 00000000000..a74f8482081 --- /dev/null +++ b/Resources/Prototypes/_Obelisk/Entities/Mobs/Player/hydrakin.yml @@ -0,0 +1,19 @@ +# SPDX-FileCopyrightText: 2025 sneb +# +# SPDX-License-Identifier: MPL-2.0 + +- type: entity + save: false + name: Urist McHydra + parent: BaseMobHydrakin + id: MobHydrakin + components: + - type: LanguageKnowledge + speaks: + - TauCetiBasic + - Canilunzt + - Hydraspeak + understands: + - TauCetiBasic + - Canilunzt + - Hydraspeak diff --git a/Resources/Prototypes/_Obelisk/Entities/Mobs/Species/hydrakin.yml b/Resources/Prototypes/_Obelisk/Entities/Mobs/Species/hydrakin.yml new file mode 100644 index 00000000000..fbd823ebfe0 --- /dev/null +++ b/Resources/Prototypes/_Obelisk/Entities/Mobs/Species/hydrakin.yml @@ -0,0 +1,110 @@ +# SPDX-FileCopyrightText: 2025 sneb +# +# SPDX-License-Identifier: MPL-2.0 + +- type: entity + parent: BaseMobSpeciesOrganic + id: BaseMobHydrakin + name: Urist McHydra + abstract: true + components: + - type: UserInterface # Mono + interfaces: + enum.HumanoidMarkingModifierKey.Key: + type: HumanoidMarkingModifierBoundUserInterface + enum.StrippingUiKey.Key: + type: StrippableBoundUserInterface + enum.SurgeryUIKey.Key: # Shitmed + type: SurgeryBui + - type: Hunger + - type: Icon + sprite: _Obelisk/Mobs/Species/Hydrakin/parts.rsi + state: full + - type: BodyEmotes + soundsId: ReptilianBodyEmotes + - type: Damageable + damageContainer: Biological + damageModifierSet: Hydrakin + - type: Thirst + - type: Butcherable + butcheringType: Spike + spawned: + - id: FoodMeatChicken + amount: 5 + - type: Bloodstream + bloodReagent: AmmoniaBlood + - type: MeleeWeapon + soundHit: + collection: AlienClaw + angle: 30 + animation: WeaponArcClaw + damage: + types: + Slash: 5 + - type: Body + prototype: Hydrakin + requiredLegs: 2 + - type: Temperature + coldDamageThreshold: 10 # Mono - Absurd cold resistance + heatDamageThreshold: 330 # no. just no. suffer. + coldDamage: + types: + Cold : 0.01 #per second, scales with temperature & other constants + - type: TemperatureSpeed + thresholds: + 90: 0.9 + 40: 0.75 + 10: 0.6 + - type: HumanoidAppearance + species: Hydrakin + - type: ThermalRegulator #Todo, implement hydrakin thermal movement generation + - type: PressureProtection + lowPressureMultiplier: 1.2 + - type: Inventory + speciesId: hydrakin + templateId: hydrakin + displacements: + jumpsuit: + sizeMaps: + 32: + sprite: _Obelisk/Mobs/Species/Hydrakin/displacement.rsi + state: jumpsuit + gloves: + sizeMaps: + 32: + sprite: _Obelisk/Mobs/Species/Hydrakin/displacement.rsi + state: gloves + shoes: + sizeMaps: + 32: + sprite: _Obelisk/Mobs/Species/Hydrakin/displacement.rsi + state: shoes + head: + sizeMaps: + 32: + sprite: _Obelisk/Mobs/Species/Hydrakin/displacement.rsi + state: head + - type: Carriable # Frontier: Carrying system from nyanotrasen. + - type: Speech + speechSounds: Lizard + speechVerb: Reptilian + - type: Vocal + sounds: + Male: UnisexHydrakin + Female: UnisexHydrakin + Unsexed: UnisexHydrakin + - type: TypingIndicator + proto: robot + - type: Hydrakin + buildup: 2 + maxTemperature: 350 + +- type: entity + parent: BaseSpeciesDummy + id: MobHydrakinDummy + categories: [ HideSpawnMenu ] + components: + # - type: HumanoidAppearance + # species: Hydrakin + - type: Inventory + speciesId: hydrakin diff --git a/Resources/Prototypes/_Obelisk/Species/hydrakin.yml b/Resources/Prototypes/_Obelisk/Species/hydrakin.yml new file mode 100644 index 00000000000..864bec71d5d --- /dev/null +++ b/Resources/Prototypes/_Obelisk/Species/hydrakin.yml @@ -0,0 +1,168 @@ +# SPDX-FileCopyrightText: 2025 sneb +# +# SPDX-License-Identifier: MPL-2.0 + +- type: species + id: Hydrakin + name: species-name-hydrakin + roundStart: true + prototype: MobHydrakin + sprites: MobHydrakinSprites + defaultSkinTone: "#ffffff" + markingLimits: MobHydrakinMarkingLimits + dollPrototype: MobHydrakinDummy + skinColoration: Hues + +- type: speciesBaseSprites + id: MobHydrakinSprites + sprites: + Head: MobHydrakinHead + Hair: MobHumanoidAnyMarking + Snout: MobHumanoidAnyMarking + Chest: MobHydrakinTorso + HeadTop: MobHumanoidAnyMarking + HeadSide: MobHumanoidAnyMarking + Tail: MobHumanoidAnyMarking + # Eyes: MobHydrakinEyes + LArm: MobHydrakinLArm + RArm: MobHydrakinRArm + LHand: MobHydrakinLHand + RHand: MobHydrakinRHand + LLeg: MobHydrakinLLeg + RLeg: MobHydrakinRLeg + LFoot: MobHydrakinLFoot + RFoot: MobHydrakinRFoot + +- type: markingPoints + id: MobHydrakinMarkingLimits + points: + Hair: + points: 0 + required: false + FacialHair: + points: 0 + required: false + Snout: + points: 0 + required: false + Head: + points: 1 + required: true + defaultMarkings: [ HydrakinEyesDefault] + Tail: + points: 1 + required: true + defaultMarkings: [ HydrakinTailDefault ] + HeadTop: + points: 1 + required: true + defaultMarkings: [ HydrakinEarsDefault ] + Chest: + points: 4 + required: false + Legs: + points: 8 # imp 2<8 + required: false + Arms: + points: 8 # imp 2<8 + required: false + Overlay: + points: 2 + required: false + +- type: humanoidBaseSprite + id: MobHydrakinEyes + baseSprite: + sprite: _Obelisk/Mobs/Customization/hydrakin_parts.rsi + state: eyes_none + +- type: humanoidBaseSprite + id: MobHydrakinAnyMarking + +# - type: humanoidBaseSprite +# id: MobHydrakinMarkingMatchSkin +# markingsMatchSkin: true + +- type: humanoidBaseSprite + id: MobHydrakinHead + baseSprite: + sprite: _Obelisk/Mobs/Species/Hydrakin/parts.rsi + state: head_m + +- type: humanoidBaseSprite + id: MobHydrakinHeadMale + baseSprite: + sprite: _Obelisk/Mobs/Species/Hydrakin/parts.rsi + state: head_m + +- type: humanoidBaseSprite + id: MobHydrakinHeadFemale + baseSprite: + sprite: _Obelisk/Mobs/Species/Hydrakin/parts.rsi + state: head_f + +- type: humanoidBaseSprite + id: MobHydrakinTorso + baseSprite: + sprite: _Obelisk/Mobs/Species/Hydrakin/parts.rsi + state: torso_m + +- type: humanoidBaseSprite + id: MobHydrakinTorsoMale + baseSprite: + sprite: _Obelisk/Mobs/Species/Hydrakin/parts.rsi + state: torso_m + +- type: humanoidBaseSprite + id: MobHydrakinTorsoFemale + baseSprite: + sprite: _Obelisk/Mobs/Species/Hydrakin/parts.rsi + state: torso_f + +- type: humanoidBaseSprite + id: MobHydrakinLLeg + baseSprite: + sprite: _Obelisk/Mobs/Species/Hydrakin/parts.rsi + state: l_leg + +- type: humanoidBaseSprite + id: MobHydrakinLArm + baseSprite: + sprite: _Obelisk/Mobs/Species/Hydrakin/parts.rsi + state: l_arm + +- type: humanoidBaseSprite + id: MobHydrakinLHand + baseSprite: + sprite: _Obelisk/Mobs/Species/Hydrakin/parts.rsi + state: l_hand + +- type: humanoidBaseSprite + id: MobHydrakinLFoot + baseSprite: + sprite: _Obelisk/Mobs/Species/Hydrakin/parts.rsi + state: l_foot + +- type: humanoidBaseSprite + id: MobHydrakinRLeg + baseSprite: + sprite: _Obelisk/Mobs/Species/Hydrakin/parts.rsi + state: r_leg + +- type: humanoidBaseSprite + id: MobHydrakinRArm + baseSprite: + sprite: _Obelisk/Mobs/Species/Hydrakin/parts.rsi + state: r_arm + +- type: humanoidBaseSprite + id: MobHydrakinRHand + baseSprite: + sprite: _Obelisk/Mobs/Species/Hydrakin/parts.rsi + state: r_hand + +- type: humanoidBaseSprite + id: MobHydrakinRFoot + baseSprite: + sprite: _Obelisk/Mobs/Species/Hydrakin/parts.rsi + state: r_foot diff --git a/Resources/ServerInfo/Guidebook/Mobs/Hydrakin.xml b/Resources/ServerInfo/Guidebook/Mobs/Hydrakin.xml new file mode 100644 index 00000000000..2830d58f46d --- /dev/null +++ b/Resources/ServerInfo/Guidebook/Mobs/Hydrakin.xml @@ -0,0 +1,38 @@ + + # Hydrakin + + + + + + Hydrakin are avian creatures with an odd appearance and an extreme tolerance for cold. Fluffy, exceptionally warm, and notoriously noisy, these birds originate from a desolate iceworld far beyond the normal limits of habitable space. Their home planet is locked in perpetual ice storms, dimly lit, and surrounded by liquid oxygen oceans beneath a frezon-heavy atmosphere—once thought entirely lifeless. + + Previously not meeting qualifications for sentience, the species was uplifted by Ullman Industries. Instead of being uplifted for integration or labor, Ullman pursued uplift as a proof-of-concept experiment to demonstrate its technological capability to investors. Once sapience and communication benchmarks were met, the project was declared a success, but the uplifted species itself was considered uneconomical to corporate interests. + + Transport disruptions, bluespace storms, and corporate negligence scattered Hydrakin shipments and colonies across the Colossus, leaving many outside Ullman control. Today, the Hydrakin exist as a partially uplifted, displaced species, struggling to adapt to a sector they were never meant to inhabit. + + + Hydrakin bodies overheat extremely quickly in hot environments due to highly heat generating adaptations. + + Due to their unusual cheese shaped heads, they cannot wear glasses, both as a product of not having any visible eyes, and because its impossible to give prescription to a hydrakin. + + Hydrakin benefit from a sturdy frame and a dense cost of feathers, which makes them 10% more resistant to piercing damage and blunt damage. + + However, they do not do so well when sliced, taking 15% more slash damage. + + They severely dislike heat, taking 25% more heat damage, as it overheats them, and their dense coat does not do well with venting heat they gain. + + They are extremely resistant and highly adapted to cold environments, as well as mild resistance to low pressures. + + Hydrakin tails tend to vary, but most have hooks or prehensile strength. They are able to tail pull similarly to lizards, freeing a hand while dragging things. + + Hydrakin lungs have unique interactions with various exotic atmospheric gases, especially Frezon. + + Hydrakin have a special mix of semi-anaerobic blood which tolerates high cold, but gives them high heat production. + + Hydrakin can only eat raw foods, and have an allergy to onions or chocolatey food. + + When using or ingesting leporazine, Hydrakin bodies instead enter a state of cooling, and will lose body heat rather than stabilize from it, an unintended side effect of the drug. + + + diff --git a/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/meta.json index 46559269864..0da67440021 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/capspace.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 Emisse for SS14. Vox states by Flareguy for SS14", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, modified by Emisse for SS14. Vox states by Flareguy for SS14. hydrakin sprite by Zethine / @synthetic_086 (discord).", "size": { "x": 32, "y": 32 @@ -28,6 +28,14 @@ { "name": "on-equipped-HELMET-vox", "directions": 4 + }, + { + "name": "off-equipped-HELMET-hydrakin", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/off-equipped-HELMET-hydrakin.png b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/off-equipped-HELMET-hydrakin.png new file mode 100644 index 00000000000..6d68d264318 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/off-equipped-HELMET-hydrakin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/on-equipped-HELMET-hydrakin.png b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/on-equipped-HELMET-hydrakin.png new file mode 100644 index 00000000000..95e68dee08f Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/on-equipped-HELMET-hydrakin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/meta.json index 76b761d8c50..989e93e33ba 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.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/97ec5ed1a0fc8263df5df5a5afbb653d4684992e & light version made by github:Morb0. Vox states by Flareguy for Space Station 14", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/97ec5ed1a0fc8263df5df5a5afbb653d4684992e & light version made by github:Morb0. Vox states by Flareguy for Space Station 14. hydrakin sprite by Zethine / @synthetic_086 (discord).", "size": { "x": 32, "y": 32 @@ -28,6 +28,14 @@ { "name": "on-equipped-HELMET-vox", "directions": 4 + }, + { + "name": "off-equipped-HELMET-hydrakin", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/off-equipped-HELMET-hydrakin.png b/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/off-equipped-HELMET-hydrakin.png new file mode 100644 index 00000000000..a4119996b3a Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/off-equipped-HELMET-hydrakin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/on-equipped-HELMET-hydrakin.png b/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/on-equipped-HELMET-hydrakin.png new file mode 100644 index 00000000000..e0d9a4d505f Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/on-equipped-HELMET-hydrakin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/meta.json index 32549616e7a..5756bf5a2bc 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/engineering.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/97ec5ed1a0fc8263df5df5a5afbb653d4684992e & light version made by github:Morb0. Vox states by Flareguy for Space Station 14", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/97ec5ed1a0fc8263df5df5a5afbb653d4684992e & light version made by github:Morb0. Vox states by Flareguy for Space Station 14. hydrakin sprite by Zethine / @synthetic_086 (discord).", "size": { "x": 32, "y": 32 @@ -28,6 +28,14 @@ { "name": "on-equipped-HELMET-vox", "directions": 4 + }, + { + "name": "off-equipped-HELMET-hydrakin", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/off-equipped-HELMET-hydrakin.png b/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/off-equipped-HELMET-hydrakin.png new file mode 100644 index 00000000000..e2986def42a Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/off-equipped-HELMET-hydrakin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/on-equipped-HELMET-hydrakin.png b/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/on-equipped-HELMET-hydrakin.png new file mode 100644 index 00000000000..d42f516164d Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/on-equipped-HELMET-hydrakin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/meta.json index 76b761d8c50..989e93e33ba 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/luxury.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/97ec5ed1a0fc8263df5df5a5afbb653d4684992e & light version made by github:Morb0. Vox states by Flareguy for Space Station 14", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/97ec5ed1a0fc8263df5df5a5afbb653d4684992e & light version made by github:Morb0. Vox states by Flareguy for Space Station 14. hydrakin sprite by Zethine / @synthetic_086 (discord).", "size": { "x": 32, "y": 32 @@ -28,6 +28,14 @@ { "name": "on-equipped-HELMET-vox", "directions": 4 + }, + { + "name": "off-equipped-HELMET-hydrakin", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/off-equipped-HELMET-hydrakin.png b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/off-equipped-HELMET-hydrakin.png new file mode 100644 index 00000000000..bb73ef509ee Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/off-equipped-HELMET-hydrakin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/on-equipped-HELMET-hydrakin.png b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/on-equipped-HELMET-hydrakin.png new file mode 100644 index 00000000000..9228d676636 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/on-equipped-HELMET-hydrakin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/meta.json index 76b761d8c50..989e93e33ba 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/97ec5ed1a0fc8263df5df5a5afbb653d4684992e & light version made by github:Morb0. Vox states by Flareguy for Space Station 14", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/97ec5ed1a0fc8263df5df5a5afbb653d4684992e & light version made by github:Morb0. Vox states by Flareguy for Space Station 14. hydrakin sprite by Zethine / @synthetic_086 (discord).", "size": { "x": 32, "y": 32 @@ -28,6 +28,14 @@ { "name": "on-equipped-HELMET-vox", "directions": 4 + }, + { + "name": "off-equipped-HELMET-hydrakin", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/off-equipped-HELMET-hydrakin.png b/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/off-equipped-HELMET-hydrakin.png new file mode 100644 index 00000000000..73536d891e3 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/off-equipped-HELMET-hydrakin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/on-equipped-HELMET-hydrakin.png b/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/on-equipped-HELMET-hydrakin.png new file mode 100644 index 00000000000..16ec9a05cb1 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/on-equipped-HELMET-hydrakin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/meta.json index 020ed1afb89..6fa04dd1741 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from paradise station at commit https://github.com/ParadiseSS13/Paradise/commit/e5e584804b4b0b373a6a69d23afb73fd3c094365, redrawn by Ubaser. vox state by Flareguy, icon-flash and light-overlay states by Velken", + "copyright": "Taken from paradise station at commit https://github.com/ParadiseSS13/Paradise/commit/e5e584804b4b0b373a6a69d23afb73fd3c094365, redrawn by Ubaser. vox state by Flareguy, icon-flash and light-overlay states by Velken. hydrakin sprite by Zethine / @synthetic_086 (discord).", "size": { "x": 32, "y": 32 @@ -39,6 +39,14 @@ { "name": "equipped-head-light-vulpkanin", "directions": 4 + }, + { + "name": "off-equipped-HELMET-hydrakin", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/off-equipped-HELMET-hydrakin.png b/Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/off-equipped-HELMET-hydrakin.png new file mode 100644 index 00000000000..5f14ef1cf66 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/off-equipped-HELMET-hydrakin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/on-equipped-HELMET-hydrakin.png b/Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/on-equipped-HELMET-hydrakin.png new file mode 100644 index 00000000000..55bcfa0e098 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/on-equipped-HELMET-hydrakin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/equipped-HELMET-hydrakin.png b/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/equipped-HELMET-hydrakin.png new file mode 100644 index 00000000000..f6f7383e361 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/equipped-HELMET-hydrakin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/meta.json index 40387f85829..170f436cd84 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from shiptest-ss13/Shiptest. Vox states made by Flareguy for SS14", + "copyright": "Taken from shiptest-ss13/Shiptest. Vox states made by Flareguy for SS14. hydrakin sprite by Zethine / @synthetic_086 (discord).", "size": { "x": 32, "y": 32 @@ -17,6 +17,10 @@ { "name": "equipped-HELMET", "directions": 4 + }, + { + "name": "equipped-HELMET-hydrakin", + "directions": 4 } ] } \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/meta.json index cdeee2001bb..140b8e9f3ce 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.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/3b364b1cea497ccf414539719b6b79f39d42cb1b, modified by whateverusername0. Vox states by Flareguy for Space Station 14", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/3b364b1cea497ccf414539719b6b79f39d42cb1b, modified by whateverusername0. Vox states by Flareguy for Space Station 14. hydrakin sprite by Zethine / @synthetic_086 (discord).", "size": { "x": 32, "y": 32 @@ -32,6 +32,14 @@ { "name": "on-equipped-HELMET-vox", "directions": 4 + }, + { + "name": "off-equipped-HELMET-hydrakin", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/off-equipped-HELMET-hydrakin.png b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/off-equipped-HELMET-hydrakin.png new file mode 100644 index 00000000000..8f6b6a78dab Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/off-equipped-HELMET-hydrakin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/on-equipped-HELMET-hydrakin.png b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/on-equipped-HELMET-hydrakin.png new file mode 100644 index 00000000000..8f6b6a78dab Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/on-equipped-HELMET-hydrakin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/meta.json index 62ddd236026..9367a679e42 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tg at commit https://github.com/tgstation/tgstation/commit/3b364b1cea497ccf414539719b6b79f39d42cb1b, modified by whateverusername0. Vox states by Flareguy for Space Station 14", + "copyright": "Taken from tg at commit https://github.com/tgstation/tgstation/commit/3b364b1cea497ccf414539719b6b79f39d42cb1b, modified by whateverusername0. Vox states by Flareguy for Space Station 14. hydrakin sprite by Zethine / @synthetic_086 (discord).", "size": { "x": 32, @@ -29,6 +29,14 @@ { "name": "on-equipped-HELMET-vox", "directions": 4 + }, + { + "name": "off-equipped-HELMET-hydrakin", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-hydrakin", + "directions": 4 } ] } \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/off-equipped-HELMET-hydrakin.png b/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/off-equipped-HELMET-hydrakin.png new file mode 100644 index 00000000000..f5c23cb13a5 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/off-equipped-HELMET-hydrakin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/on-equipped-HELMET-hydrakin.png b/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/on-equipped-HELMET-hydrakin.png new file mode 100644 index 00000000000..f5c23cb13a5 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/on-equipped-HELMET-hydrakin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/meta.json index 5c1cb9dfaa6..806d00ddb6b 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tg at commit https://github.com/tgstation/tgstation/commit/3b364b1cea497ccf414539719b6b79f39d42cb1b. Vox states by Flareguy for Space Station 14, color tweaked by InfinityRedPanda", + "copyright": "Taken from tg at commit https://github.com/tgstation/tgstation/commit/3b364b1cea497ccf414539719b6b79f39d42cb1b. Vox states by Flareguy for Space Station 14, color tweaked by InfinityRedPanda, hydrakin states by Zethine07 (github)", "size": { "x": 32, @@ -29,6 +29,14 @@ { "name": "on-equipped-HELMET-vox", "directions": 4 + }, + { + "name": "off-equipped-HELMET-hydrakin", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-hydrakin", + "directions": 4 } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/off-equipped-HELMET-hydrakin.png b/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/off-equipped-HELMET-hydrakin.png new file mode 100644 index 00000000000..67388855a00 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/off-equipped-HELMET-hydrakin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/on-equipped-HELMET-hydrakin.png b/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/on-equipped-HELMET-hydrakin.png new file mode 100644 index 00000000000..ee6070a91e3 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/on-equipped-HELMET-hydrakin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndiemedic.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/syndiemedic.rsi/meta.json index 013465dd25a..d9961a6cc87 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/syndiemedic.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/syndiemedic.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Based on tgstation at commit https://github.com/tgstation/tgstation/commit/3b364b1cea497ccf414539719b6b79f39d42cb1b, modified by EmoGarbage404 (github). Vox states by Flareguy for Space Station 14", + "copyright": "Based on tgstation at commit https://github.com/tgstation/tgstation/commit/3b364b1cea497ccf414539719b6b79f39d42cb1b, modified by EmoGarbage404 (github). Vox states by Flareguy for Space Station 14. hydrakin sprite by Zethine / @synthetic_086 (discord).", "size": { "x": 32, "y": 32 @@ -28,6 +28,14 @@ { "name": "on-equipped-HELMET-vox", "directions": 4 + }, + { + "name": "off-equipped-HELMET-hydrakin", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndiemedic.rsi/off-equipped-HELMET-hydrakin.png b/Resources/Textures/Clothing/Head/Hardsuits/syndiemedic.rsi/off-equipped-HELMET-hydrakin.png new file mode 100644 index 00000000000..1d163079261 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndiemedic.rsi/off-equipped-HELMET-hydrakin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndiemedic.rsi/on-equipped-HELMET-hydrakin.png b/Resources/Textures/Clothing/Head/Hardsuits/syndiemedic.rsi/on-equipped-HELMET-hydrakin.png new file mode 100644 index 00000000000..1d163079261 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndiemedic.rsi/on-equipped-HELMET-hydrakin.png differ diff --git a/Resources/Textures/Clothing/Mask/breath.rsi/equipped-MASK-hydrakin.png b/Resources/Textures/Clothing/Mask/breath.rsi/equipped-MASK-hydrakin.png new file mode 100644 index 00000000000..736921a6e22 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/breath.rsi/equipped-MASK-hydrakin.png differ diff --git a/Resources/Textures/Clothing/Mask/breath.rsi/meta.json b/Resources/Textures/Clothing/Mask/breath.rsi/meta.json index 654b8824dc5..13a79e2d10b 100644 --- a/Resources/Textures/Clothing/Mask/breath.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/breath.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. Reptilian edit by Nairod(Github). equipped-MASK-vox & up-equipped-MASK-vox state in /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github). equipped-MASK-vox & up-equipped-MASK-vox state in /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e. hydrakin sprite by Zethine / @synthetic_086 (discord).", "size": { "x": 32, "y": 32 @@ -73,6 +73,10 @@ { "name": "equipped-MASK-reptilian", "directions": 4 + }, + { + "name": "equipped-MASK-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/clown.rsi/equipped-MASK-hydrakin.png b/Resources/Textures/Clothing/Mask/clown.rsi/equipped-MASK-hydrakin.png new file mode 100644 index 00000000000..9a4a1aaab3b Binary files /dev/null and b/Resources/Textures/Clothing/Mask/clown.rsi/equipped-MASK-hydrakin.png differ diff --git a/Resources/Textures/Clothing/Mask/clown.rsi/meta.json b/Resources/Textures/Clothing/Mask/clown.rsi/meta.json index cffdb50b4b2..60f5fa4b14c 100644 --- a/Resources/Textures/Clothing/Mask/clown.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/clown.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. Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e and slightly modified by Flareguy, edited by InfinityRedPanda(github)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e and slightly modified by Flareguy, edited by InfinityRedPanda(github). hydrakin sprite by Zethine / @synthetic_086 (discord).", "size": { "x": 32, "y": 32 @@ -33,6 +33,10 @@ { "name": "equipped-MASK-vox", "directions": 4 + }, + { + "name": "equipped-MASK-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/gas.rsi/equipped-MASK-hydrakin.png b/Resources/Textures/Clothing/Mask/gas.rsi/equipped-MASK-hydrakin.png new file mode 100644 index 00000000000..e6de7bdb8a8 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/gas.rsi/equipped-MASK-hydrakin.png differ diff --git a/Resources/Textures/Clothing/Mask/gas.rsi/meta.json b/Resources/Textures/Clothing/Mask/gas.rsi/meta.json index ae1156c2f33..32493cc65d5 100644 --- a/Resources/Textures/Clothing/Mask/gas.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/gas.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. Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e and modified by Flareguy", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e and modified by Flareguy. hydrakin sprite by Zethine / @synthetic_086 (discord).", "size": { "x": 32, "y": 32 @@ -33,6 +33,10 @@ { "name": "equipped-MASK-vox", "directions": 4 + }, + { + "name": "equipped-MASK-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/gasatmos.rsi/equipped-MASK-hydrakin.png b/Resources/Textures/Clothing/Mask/gasatmos.rsi/equipped-MASK-hydrakin.png new file mode 100644 index 00000000000..078827a1c97 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/gasatmos.rsi/equipped-MASK-hydrakin.png differ diff --git a/Resources/Textures/Clothing/Mask/gasatmos.rsi/meta.json b/Resources/Textures/Clothing/Mask/gasatmos.rsi/meta.json index f0d269dcd49..b21c15f5e72 100644 --- a/Resources/Textures/Clothing/Mask/gasatmos.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/gasatmos.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. Reptilian edit by Nairod(Github). equipped-MASK-vox state modified by Flareguy from 'gas-alt' state in /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github). equipped-MASK-vox state modified by Flareguy from 'gas-alt' state in /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e. hydrakin sprite by Zethine / @synthetic_086 (discord).", "size": { "x": 32, "y": 32 @@ -29,6 +29,10 @@ { "name": "equipped-MASK-vox", "directions": 4 + }, + { + "name": "equipped-MASK-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/gascaptain.rsi/equipped-MASK-hydrakin.png b/Resources/Textures/Clothing/Mask/gascaptain.rsi/equipped-MASK-hydrakin.png new file mode 100644 index 00000000000..379d3a220fd Binary files /dev/null and b/Resources/Textures/Clothing/Mask/gascaptain.rsi/equipped-MASK-hydrakin.png differ diff --git a/Resources/Textures/Clothing/Mask/gascaptain.rsi/meta.json b/Resources/Textures/Clothing/Mask/gascaptain.rsi/meta.json index e226532d6fc..ba8883db952 100644 --- a/Resources/Textures/Clothing/Mask/gascaptain.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/gascaptain.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, remade by 𝚆𝚊𝚛𝚝𝚊𝚐𝚕𝚎𝚡#0912. Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from 'gas-alt' state in /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e, and modified by Flareguy", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, remade by 𝚆𝚊𝚛𝚝𝚊𝚐𝚕𝚎𝚡#0912. Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from 'gas-alt' state in /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e, and modified by Flareguy. hydrakin sprite by Zethine / @synthetic_086 (discord).", "size": { "x": 32, "y": 32 @@ -29,6 +29,10 @@ { "name": "equipped-MASK-vox", "directions": 4 + }, + { + "name": "equipped-MASK-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/gascentcom.rsi/equipped-MASK-hydrakin.png b/Resources/Textures/Clothing/Mask/gascentcom.rsi/equipped-MASK-hydrakin.png new file mode 100644 index 00000000000..61e69c49c50 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/gascentcom.rsi/equipped-MASK-hydrakin.png differ diff --git a/Resources/Textures/Clothing/Mask/gascentcom.rsi/meta.json b/Resources/Textures/Clothing/Mask/gascentcom.rsi/meta.json index dc99f7504b5..7d1c2d0fe3c 100644 --- a/Resources/Textures/Clothing/Mask/gascentcom.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/gascentcom.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. Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e and modified by Flareguy", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e and modified by Flareguy. hydrakin sprite by Zethine / @synthetic_086 (discord).", "size": { "x": 32, "y": 32 @@ -22,6 +22,10 @@ "name": "equipped-MASK-vox", "directions": 4 }, + { + "name": "equipped-MASK-hydrakin", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Mask/gasexplorer.rsi/equipped-MASK-hydrakin.png b/Resources/Textures/Clothing/Mask/gasexplorer.rsi/equipped-MASK-hydrakin.png new file mode 100644 index 00000000000..268c1b62a1f Binary files /dev/null and b/Resources/Textures/Clothing/Mask/gasexplorer.rsi/equipped-MASK-hydrakin.png differ diff --git a/Resources/Textures/Clothing/Mask/gasexplorer.rsi/meta.json b/Resources/Textures/Clothing/Mask/gasexplorer.rsi/meta.json index 021dcf76b70..2b0a5a48f7b 100644 --- a/Resources/Textures/Clothing/Mask/gasexplorer.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/gasexplorer.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. Reptilian edit by Nairod(Github). Vox state by Flareguy for SS14", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github). Vox state by Flareguy for SS14. hydrakin sprite by Zethine / @synthetic_086 (discord).", "size": { "x": 32, "y": 32 @@ -33,6 +33,10 @@ { "name": "equipped-MASK-reptilian", "directions": 4 + }, + { + "name": "equipped-MASK-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/gassecurity.rsi/equipped-MASK-hydrakin.png b/Resources/Textures/Clothing/Mask/gassecurity.rsi/equipped-MASK-hydrakin.png new file mode 100644 index 00000000000..8f856d542e6 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/gassecurity.rsi/equipped-MASK-hydrakin.png differ diff --git a/Resources/Textures/Clothing/Mask/gassecurity.rsi/meta.json b/Resources/Textures/Clothing/Mask/gassecurity.rsi/meta.json index 9c1b597c1d3..bf58a8a90b7 100644 --- a/Resources/Textures/Clothing/Mask/gassecurity.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/gassecurity.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. Reptilian edit by Nairod(Github). equipped-MASK-vox & up-equipped-MASK-vox states taken from Paradise at https://github.com/ParadiseSS13/Paradise/blob/bc095ad398790a2b718b2bab4f2157cdd80a51da/icons/mob/clothing/species/vox/mask.dmi", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github). equipped-MASK-vox & up-equipped-MASK-vox states taken from Paradise at https://github.com/ParadiseSS13/Paradise/blob/bc095ad398790a2b718b2bab4f2157cdd80a51da/icons/mob/clothing/species/vox/mask.dmi. hydrakin sprite by Zethine / @synthetic_086 (discord).", "size": { "x": 32, "y": 32 @@ -22,6 +22,10 @@ "name": "equipped-MASK-vox", "directions": 4 }, + { + "name": "equipped-MASK-hydrakin", + "directions": 4 + }, { "name": "up-equipped-MASK", "directions": 4 diff --git a/Resources/Textures/Clothing/Mask/italian_moustache.rsi/equipped-MASK-hydrakin.png b/Resources/Textures/Clothing/Mask/italian_moustache.rsi/equipped-MASK-hydrakin.png new file mode 100644 index 00000000000..4ea46997810 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/italian_moustache.rsi/equipped-MASK-hydrakin.png differ diff --git a/Resources/Textures/Clothing/Mask/italian_moustache.rsi/meta.json b/Resources/Textures/Clothing/Mask/italian_moustache.rsi/meta.json index d47388b0762..21a2cbc2f84 100644 --- a/Resources/Textures/Clothing/Mask/italian_moustache.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/italian_moustache.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/6665eec76c98a4f3f89bebcd10b34b47dcc0b8ae. equipped-MASK-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/6665eec76c98a4f3f89bebcd10b34b47dcc0b8ae. equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79. hydrakin sprite by Zethine / @synthetic_086 (discord).", "size": { "x": 32, "y": 32 @@ -18,6 +18,10 @@ "name": "equipped-MASK-vox", "directions": 4 }, + { + "name": "equipped-MASK-hydrakin", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Mask/medical.rsi/equipped-MASK-hydrakin.png b/Resources/Textures/Clothing/Mask/medical.rsi/equipped-MASK-hydrakin.png new file mode 100644 index 00000000000..c49b36894ee Binary files /dev/null and b/Resources/Textures/Clothing/Mask/medical.rsi/equipped-MASK-hydrakin.png differ diff --git a/Resources/Textures/Clothing/Mask/medical.rsi/meta.json b/Resources/Textures/Clothing/Mask/medical.rsi/meta.json index 6d0cf06eee4..e92b88f4fe1 100644 --- a/Resources/Textures/Clothing/Mask/medical.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/medical.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github). equipped-MASK-vox & up-equipped-MASK-vox states taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github). equipped-MASK-vox & up-equipped-MASK-vox states taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e. hydrakin sprite by Zethine / @synthetic_086 (discord).", "size": { "x": 32, "y": 32 @@ -75,6 +75,10 @@ { "name": "up-equipped-MASK-vox", "directions": 4 + }, + { + "name": "equipped-MASK-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/medicalsecurity.rsi/equipped-MASK-hydrakin.png b/Resources/Textures/Clothing/Mask/medicalsecurity.rsi/equipped-MASK-hydrakin.png new file mode 100644 index 00000000000..745f7771949 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/medicalsecurity.rsi/equipped-MASK-hydrakin.png differ diff --git a/Resources/Textures/Clothing/Mask/medicalsecurity.rsi/meta.json b/Resources/Textures/Clothing/Mask/medicalsecurity.rsi/meta.json index 9f566f23b9f..c32a6507fd9 100644 --- a/Resources/Textures/Clothing/Mask/medicalsecurity.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/medicalsecurity.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Sprited by LinkUyx#6557. Reptilian edit by Nairod(Github)", + "copyright": "Sprited by LinkUyx#6557. Reptilian edit by Nairod(Github). hydrakin sprite by Zethine / @synthetic_086 (discord).", "size": { "x": 32, "y": 32 @@ -57,6 +57,10 @@ { "name": "equipped-MASK-reptilian", "directions": 4 + }, + { + "name": "equipped-MASK-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/merc.rsi/equipped-MASK-hydrakin.png b/Resources/Textures/Clothing/Mask/merc.rsi/equipped-MASK-hydrakin.png new file mode 100644 index 00000000000..958a84875e8 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/merc.rsi/equipped-MASK-hydrakin.png differ diff --git a/Resources/Textures/Clothing/Mask/merc.rsi/meta.json b/Resources/Textures/Clothing/Mask/merc.rsi/meta.json index 5b745bcfd0a..6b76bd366af 100644 --- a/Resources/Textures/Clothing/Mask/merc.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/merc.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "modified sprite from Jackal298 based on the sprite from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github), equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e and modified to look like mercenary gas mask by Flareguy", + "copyright": "modified sprite from Jackal298 based on the sprite from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github), equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e and modified to look like mercenary gas mask by Flareguy. hydrakin sprite by Zethine / @synthetic_086 (discord).", "size": { "x": 32, "y": 32 @@ -22,6 +22,10 @@ "name": "equipped-MASK-vox", "directions": 4 }, + { + "name": "equipped-MASK-hydrakin", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Mask/muzzle.rsi/equipped-MASK-hydrakin.png b/Resources/Textures/Clothing/Mask/muzzle.rsi/equipped-MASK-hydrakin.png new file mode 100644 index 00000000000..d466d98efd3 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/muzzle.rsi/equipped-MASK-hydrakin.png differ diff --git a/Resources/Textures/Clothing/Mask/muzzle.rsi/meta.json b/Resources/Textures/Clothing/Mask/muzzle.rsi/meta.json index 19aa5ab8593..ff3aa770cb2 100644 --- a/Resources/Textures/Clothing/Mask/muzzle.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/muzzle.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. Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e. hydrakin sprite by Zethine / @synthetic_086 (discord).", "size": { "x": 32, "y": 32 @@ -29,6 +29,10 @@ { "name": "equipped-MASK-vox", "directions": 4 - } + }, + { + "name": "equipped-MASK-hydrakin", + "directions": 4 + } ] } diff --git a/Resources/Textures/Clothing/Mask/neckgaiter.rsi/equipped-MASK-hydrakin.png b/Resources/Textures/Clothing/Mask/neckgaiter.rsi/equipped-MASK-hydrakin.png new file mode 100644 index 00000000000..154d583de3e Binary files /dev/null and b/Resources/Textures/Clothing/Mask/neckgaiter.rsi/equipped-MASK-hydrakin.png differ diff --git a/Resources/Textures/Clothing/Mask/neckgaiter.rsi/meta.json b/Resources/Textures/Clothing/Mask/neckgaiter.rsi/meta.json index 4da74959ddc..1c4e8d7442e 100644 --- a/Resources/Textures/Clothing/Mask/neckgaiter.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/neckgaiter.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Sprited by belay5 (Discord) | equipped-MASK-vox sprited by PuroSlavKing (Github)", + "copyright": "Sprited by belay5 (Discord) | equipped-MASK-vox sprited by PuroSlavKing (Github) | hydrakin sprite by Zethine / @synthetic_086 (discord).", "size": { "x": 32, "y": 32 @@ -22,6 +22,10 @@ "name": "equipped-MASK-reptilian", "directions": 4 }, + { + "name": "equipped-MASK-hydrakin", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Mask/ninja.rsi/equipped-MASK-hydrakin.png b/Resources/Textures/Clothing/Mask/ninja.rsi/equipped-MASK-hydrakin.png new file mode 100644 index 00000000000..7b5985c21d0 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/ninja.rsi/equipped-MASK-hydrakin.png differ diff --git a/Resources/Textures/Clothing/Mask/ninja.rsi/meta.json b/Resources/Textures/Clothing/Mask/ninja.rsi/meta.json index a8d15a80adb..e3a8805889e 100644 --- a/Resources/Textures/Clothing/Mask/ninja.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/ninja.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/commit/33f7c1ef477fa67db5dda48078b469ab59aa7997. equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e", + "copyright": "Taken from paradise at commit https://github.com/ParadiseSS13/Paradise/commit/33f7c1ef477fa67db5dda48078b469ab59aa7997. equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e. hydrakin sprite by Zethine / @synthetic_086 (discord).", "size": { "x": 32, "y": 32 @@ -18,6 +18,10 @@ "name": "equipped-MASK-vox", "directions": 4 }, + { + "name": "equipped-MASK-hydrakin", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Mask/sadmime.rsi/equipped-MASK-hydrakin.png b/Resources/Textures/Clothing/Mask/sadmime.rsi/equipped-MASK-hydrakin.png new file mode 100644 index 00000000000..e0ec4345863 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/sadmime.rsi/equipped-MASK-hydrakin.png differ diff --git a/Resources/Textures/Clothing/Mask/sadmime.rsi/meta.json b/Resources/Textures/Clothing/Mask/sadmime.rsi/meta.json index c43909e6a9f..682c430d7ba 100644 --- a/Resources/Textures/Clothing/Mask/sadmime.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/sadmime.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/harmonyn/-tg-station/blob/11043a07f6136d3d196b0378c31deb3dc1a9532f/icons/obj/clothing/masks.dmi. Reptilian edit by Nairod(Github).Vox edit by foboscheshir (github)", + "copyright": "Taken from tgstation at commit https://github.com/harmonyn/-tg-station/blob/11043a07f6136d3d196b0378c31deb3dc1a9532f/icons/obj/clothing/masks.dmi. Reptilian edit by Nairod(Github).Vox edit by foboscheshir (github). hydrakin sprite by Zethine / @synthetic_086 (discord).", "size": { "x": 32, "y": 32 @@ -21,6 +21,10 @@ { "name":"equipped-MASK-vox", "directions": 4 + }, + { + "name": "equipped-MASK-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/scaredmime.rsi/equipped-MASK-hydrakin.png b/Resources/Textures/Clothing/Mask/scaredmime.rsi/equipped-MASK-hydrakin.png new file mode 100644 index 00000000000..e0ec4345863 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/scaredmime.rsi/equipped-MASK-hydrakin.png differ diff --git a/Resources/Textures/Clothing/Mask/scaredmime.rsi/meta.json b/Resources/Textures/Clothing/Mask/scaredmime.rsi/meta.json index 413a7181543..55dfc93d425 100644 --- a/Resources/Textures/Clothing/Mask/scaredmime.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/scaredmime.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/harmonyn/-tg-station/blob/11043a07f6136d3d196b0378c31deb3dc1a9532f/icons/obj/clothing/masks.dmi. Reptilian edit by Nairod(Github). . Vox edit by foboscheshir (github)", + "copyright": "Taken from tgstation at commit https://github.com/harmonyn/-tg-station/blob/11043a07f6136d3d196b0378c31deb3dc1a9532f/icons/obj/clothing/masks.dmi. Reptilian edit by Nairod(Github). . Vox edit by foboscheshir (github). hydrakin sprite by Zethine / @synthetic_086 (discord).", "size": { "x": 32, "y": 32 @@ -21,6 +21,10 @@ { "name":"equipped-MASK-vox", "directions": 4 + }, + { + "name": "equipped-MASK-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/sterile.rsi/equipped-MASK-hydrakin.png b/Resources/Textures/Clothing/Mask/sterile.rsi/equipped-MASK-hydrakin.png new file mode 100644 index 00000000000..fd96192264e Binary files /dev/null and b/Resources/Textures/Clothing/Mask/sterile.rsi/equipped-MASK-hydrakin.png differ diff --git a/Resources/Textures/Clothing/Mask/sterile.rsi/meta.json b/Resources/Textures/Clothing/Mask/sterile.rsi/meta.json index 7af2fde86ef..edce464ad0a 100644 --- a/Resources/Textures/Clothing/Mask/sterile.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/sterile.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/blob/ed466a4c67828b44ddb9d9550366be5c2d745955/icons/obj/clothing/masks.dmi. Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/blob/ed466a4c67828b44ddb9d9550366be5c2d745955/icons/obj/clothing/masks.dmi. Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e. hydrakin sprite by Zethine / @synthetic_086 (discord).", "size": { "x": 32, "y": 32 @@ -22,6 +22,10 @@ "name": "equipped-MASK-vox", "directions": 4 }, + { + "name": "equipped-MASK-hydrakin", + "directions": 4 + }, { "name": "up-equipped-MASK", "directions": 4 diff --git a/Resources/Textures/Clothing/Mask/swat.rsi/equipped-MASK-hydrakin.png b/Resources/Textures/Clothing/Mask/swat.rsi/equipped-MASK-hydrakin.png new file mode 100644 index 00000000000..dd34ced6883 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/swat.rsi/equipped-MASK-hydrakin.png differ diff --git a/Resources/Textures/Clothing/Mask/swat.rsi/meta.json b/Resources/Textures/Clothing/Mask/swat.rsi/meta.json index 2d5073b988f..131edfc50b3 100644 --- a/Resources/Textures/Clothing/Mask/swat.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/swat.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/RemieRichards/-tg-station/blob/f8c05e21694cd3cb703e40edc5cfc375017944b1/icons/obj/clothing/masks.dmi. Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from Paradise at https://github.com/ParadiseSS13/Paradise/blob/bc095ad398790a2b718b2bab4f2157cdd80a51da/icons/mob/clothing/species/vox/mask.dmi", + "copyright": "Taken from tgstation at commit https://github.com/RemieRichards/-tg-station/blob/f8c05e21694cd3cb703e40edc5cfc375017944b1/icons/obj/clothing/masks.dmi. Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from Paradise at https://github.com/ParadiseSS13/Paradise/blob/bc095ad398790a2b718b2bab4f2157cdd80a51da/icons/mob/clothing/species/vox/mask.dmi. hydrakin sprite by Zethine / @synthetic_086 (discord).", "size": { "x": 32, "y": 32 @@ -22,6 +22,10 @@ "name": "equipped-MASK-vox", "directions": 4 }, + { + "name": "equipped-MASK-hydrakin", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Mask/welding-gas.rsi/equipped-MASK-hydrakin.png b/Resources/Textures/Clothing/Mask/welding-gas.rsi/equipped-MASK-hydrakin.png new file mode 100644 index 00000000000..749cfe859b6 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/welding-gas.rsi/equipped-MASK-hydrakin.png differ diff --git a/Resources/Textures/Clothing/Mask/welding-gas.rsi/meta.json b/Resources/Textures/Clothing/Mask/welding-gas.rsi/meta.json index 8e9b8573250..76d2fb50c80 100644 --- a/Resources/Textures/Clothing/Mask/welding-gas.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/welding-gas.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/6f5ca45e3ac06b30fb1957042214a888d8c01722. Inhands, worn sprites, and vox sprites created by EmoGarbage404 (github)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/6f5ca45e3ac06b30fb1957042214a888d8c01722. Inhands, worn sprites, and vox sprites created by EmoGarbage404 (github). hydrakin sprite by Zethine / @synthetic_086 (discord).", "size": { "x": 32, "y": 32 @@ -25,6 +25,10 @@ "name": "equipped-MASK-vox", "directions": 4 }, + { + "name": "equipped-MASK-hydrakin", + "directions": 4 + }, { "name": "up-equipped-MASK-vox", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/equipped-OUTERCLOTHING-hydrakin.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/equipped-OUTERCLOTHING-hydrakin.png new file mode 100644 index 00000000000..e3ef0ddf1d4 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/equipped-OUTERCLOTHING-hydrakin.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/meta.json index a15703eafa6..90cfc238cdd 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/97ec5ed1a0fc8263df5df5a5afbb653d4684992e & icon made by github:Morb0, reptilian made by kuro(388673708753027083). Vox state made by Flareguy for SS14, harpy made by VMSolidus, equipped-OUTERCLOTHING-resomi made by svarshiksatanist (Discord), reptilian made by kuro(388673708753027083)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/97ec5ed1a0fc8263df5df5a5afbb653d4684992e & icon made by github:Morb0, reptilian made by kuro(388673708753027083). Vox state made by Flareguy for SS14, harpy made by VMSolidus, equipped-OUTERCLOTHING-resomi made by svarshiksatanist (Discord), reptilian made by kuro(388673708753027083), equipped-OUTERCLOTHING-hydrakin sprite by Zethine / @synthetic_086 (discord)", "size": { "x": 32, "y": 32 @@ -37,6 +37,10 @@ { "name": "equipped-OUTERCLOTHING-harpy", "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-white.rsi/equipped-OUTERCLOTHING-hydrakin.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-white.rsi/equipped-OUTERCLOTHING-hydrakin.png new file mode 100644 index 00000000000..f8bbbd81caf Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-white.rsi/equipped-OUTERCLOTHING-hydrakin.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-white.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-white.rsi/meta.json index bcc8f9e4184..08b19f2db2d 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-white.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-white.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/97ec5ed1a0fc8263df5df5a5afbb653d4684992e & icon made by github:Morb0, reptilian made by kuro(388673708753027083). Vox state made by Flareguy for SS14, harpy made by VMSolidus, equipped-OUTERCLOTHING-resomi made by svarshiksatanist (Discord), reptilian made by kuro(388673708753027083)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/97ec5ed1a0fc8263df5df5a5afbb653d4684992e & icon made by github:Morb0, reptilian made by kuro(388673708753027083). Vox state made by Flareguy for SS14, harpy made by VMSolidus, equipped-OUTERCLOTHING-resomi made by svarshiksatanist (Discord), reptilian made by kuro(388673708753027083), equipped-OUTERCLOTHING-hydrakin sprite by Zethine / @synthetic_086 (discord)", "size": { "x": 32, "y": 32 @@ -37,6 +37,10 @@ { "name": "equipped-OUTERCLOTHING-resomi", "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering.rsi/equipped-OUTERCLOTHING-hydrakin.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering.rsi/equipped-OUTERCLOTHING-hydrakin.png new file mode 100644 index 00000000000..e59ec394b25 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering.rsi/equipped-OUTERCLOTHING-hydrakin.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering.rsi/meta.json index bcc8f9e4184..08b19f2db2d 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/97ec5ed1a0fc8263df5df5a5afbb653d4684992e & icon made by github:Morb0, reptilian made by kuro(388673708753027083). Vox state made by Flareguy for SS14, harpy made by VMSolidus, equipped-OUTERCLOTHING-resomi made by svarshiksatanist (Discord), reptilian made by kuro(388673708753027083)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/97ec5ed1a0fc8263df5df5a5afbb653d4684992e & icon made by github:Morb0, reptilian made by kuro(388673708753027083). Vox state made by Flareguy for SS14, harpy made by VMSolidus, equipped-OUTERCLOTHING-resomi made by svarshiksatanist (Discord), reptilian made by kuro(388673708753027083), equipped-OUTERCLOTHING-hydrakin sprite by Zethine / @synthetic_086 (discord)", "size": { "x": 32, "y": 32 @@ -37,6 +37,10 @@ { "name": "equipped-OUTERCLOTHING-resomi", "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/luxury.rsi/equipped-OUTERCLOTHING-hydrakin.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/luxury.rsi/equipped-OUTERCLOTHING-hydrakin.png new file mode 100644 index 00000000000..71b5675ff07 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/luxury.rsi/equipped-OUTERCLOTHING-hydrakin.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/luxury.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/luxury.rsi/meta.json index b9bf1e06ad5..2870230ec75 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/luxury.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/luxury.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/97ec5ed1a0fc8263df5df5a5afbb653d4684992e & icon made by github:Morb0. Vox state made by Flareguy for SS14, harpy made by VMSolidus, equipped-OUTERCLOTHING-resomi made by svarshiksatanist (Discord), reptilian made by kuro(388673708753027083)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/97ec5ed1a0fc8263df5df5a5afbb653d4684992e & icon made by github:Morb0. Vox state made by Flareguy for SS14, harpy made by VMSolidus, equipped-OUTERCLOTHING-resomi made by svarshiksatanist (Discord), reptilian made by kuro(388673708753027083), equipped-OUTERCLOTHING-hydrakin sprite by Zethine / @synthetic_086 (discord)", "size": { "x": 32, "y": 32 @@ -37,6 +37,10 @@ { "name": "equipped-OUTERCLOTHING-harpy", "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/medical.rsi/equipped-OUTERCLOTHING-hydrakin.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/medical.rsi/equipped-OUTERCLOTHING-hydrakin.png new file mode 100644 index 00000000000..d9fbfb87fa3 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/medical.rsi/equipped-OUTERCLOTHING-hydrakin.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/medical.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/medical.rsi/meta.json index 24c99b67b78..057427f9154 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/medical.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/medical.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/97ec5ed1a0fc8263df5df5a5afbb653d4684992e & icon made by github:Morb0. Vox state made by Flareguy for SS14, harpy made by VMSolidus, equipped-OUTERCLOTHING-resomi made by svarshiksatanist (Discord), reptilian made by kuro(388673708753027083)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/97ec5ed1a0fc8263df5df5a5afbb653d4684992e & icon made by github:Morb0. Vox state made by Flareguy for SS14, harpy made by VMSolidus, equipped-OUTERCLOTHING-resomi made by svarshiksatanist (Discord), reptilian made by kuro(388673708753027083), equipped-OUTERCLOTHING-hydrakin sprite by Zethine / @synthetic_086 (discord)", "size": { "x": 32, "y": 32 @@ -37,6 +37,10 @@ { "name": "equipped-OUTERCLOTHING-harpy", "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/paramed.rsi/equipped-OUTERCLOTHING-hydrakin.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/paramed.rsi/equipped-OUTERCLOTHING-hydrakin.png new file mode 100644 index 00000000000..7352247692e Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/paramed.rsi/equipped-OUTERCLOTHING-hydrakin.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/paramed.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/paramed.rsi/meta.json index eb8e477aa02..916b2fd176b 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/paramed.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/paramed.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/97ec5ed1a0fc8263df5df5a5afbb653d4684992e & icon made by github:Morb0, reptilian made by kuro(388673708753027083). Vox state made by Flareguy for SS14, harpy made by VMSolidus, equipped-OUTERCLOTHING-resomi made by svarshiksatanist (Discord)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/97ec5ed1a0fc8263df5df5a5afbb653d4684992e & icon made by github:Morb0, reptilian made by kuro(388673708753027083). Vox state made by Flareguy for SS14, harpy made by VMSolidus, equipped-OUTERCLOTHING-resomi made by svarshiksatanist (Discord), equipped-OUTERCLOTHING-hydrakin sprite by Zethine / @synthetic_086 (discord)", "size": { "x": 32, "y": 32 @@ -37,6 +37,10 @@ { "name": "equipped-OUTERCLOTHING-harpy", "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/rd.rsi/equipped-OUTERCLOTHING-hydrakin.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/rd.rsi/equipped-OUTERCLOTHING-hydrakin.png new file mode 100644 index 00000000000..d4c68f9c8ac Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/rd.rsi/equipped-OUTERCLOTHING-hydrakin.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/rd.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/rd.rsi/meta.json index 8f55f92d412..390f6be758e 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/rd.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/rd.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from shiptest-ss13/Shiptest. Vox state made by Flareguy for SS14, harpy edit by VMSolidus, equipped-OUTERCLOTHING-resomi made by svarshiksatanist (Discord), reptilian made by kuro(388673708753027083), en from shiptest-ss13/Shiptest. Vox states made by Flareguy for SS14", + "copyright": "Taken from shiptest-ss13/Shiptest. Vox state made by Flareguy for SS14, harpy edit by VMSolidus, equipped-OUTERCLOTHING-resomi made by svarshiksatanist (Discord), reptilian made by kuro(388673708753027083), en from shiptest-ss13/Shiptest. Vox states made by Flareguy for SS14, equipped-OUTERCLOTHING-hydrakin sprite by Zethine / @synthetic_086 (discord)", "size": { "x": 32, "y": 32 @@ -23,6 +23,10 @@ "name": "equipped-OUTERCLOTHING-harpy", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-hydrakin", + "directions": 4 + }, { "name": "equipped-OUTERCLOTHING", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/salvage.rsi/equipped-OUTERCLOTHING-hydrakin.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/salvage.rsi/equipped-OUTERCLOTHING-hydrakin.png new file mode 100644 index 00000000000..a25463315f3 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/salvage.rsi/equipped-OUTERCLOTHING-hydrakin.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/salvage.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/salvage.rsi/meta.json index b9bf1e06ad5..2870230ec75 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/salvage.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/salvage.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/97ec5ed1a0fc8263df5df5a5afbb653d4684992e & icon made by github:Morb0. Vox state made by Flareguy for SS14, harpy made by VMSolidus, equipped-OUTERCLOTHING-resomi made by svarshiksatanist (Discord), reptilian made by kuro(388673708753027083)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/97ec5ed1a0fc8263df5df5a5afbb653d4684992e & icon made by github:Morb0. Vox state made by Flareguy for SS14, harpy made by VMSolidus, equipped-OUTERCLOTHING-resomi made by svarshiksatanist (Discord), reptilian made by kuro(388673708753027083), equipped-OUTERCLOTHING-hydrakin sprite by Zethine / @synthetic_086 (discord)", "size": { "x": 32, "y": 32 @@ -37,6 +37,10 @@ { "name": "equipped-OUTERCLOTHING-harpy", "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate.rsi/equipped-OUTERCLOTHING-hydrakin.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate.rsi/equipped-OUTERCLOTHING-hydrakin.png new file mode 100644 index 00000000000..e588e2a8740 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate.rsi/equipped-OUTERCLOTHING-hydrakin.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate.rsi/meta.json index 4e3430843ff..64f18552669 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/3b364b1cea497ccf414539719b6b79f39d42cb1b, equipped-OUTERCLOTHING-monkey made by Dutch-VanDerLinde, vox state made by Flareguy for SS14. Grinch by SarahON, harpy made by VMSolidus, equipped-OUTERCLOTHING-resomi made by svarshiksatanist (Discord), reptilian made by kuro(388673708753027083)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/3b364b1cea497ccf414539719b6b79f39d42cb1b, equipped-OUTERCLOTHING-monkey made by Dutch-VanDerLinde, vox state made by Flareguy for SS14. Grinch by SarahON, harpy made by VMSolidus, equipped-OUTERCLOTHING-resomi made by svarshiksatanist (Discord), reptilian made by kuro(388673708753027083), equipped-OUTERCLOTHING-hydrakin sprite by Zethine / @synthetic_086 (discord)", "size": { "x": 32, "y": 32 @@ -41,6 +41,10 @@ { "name": "equipped-OUTERCLOTHING-harpy", "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/equipped-OUTERCLOTHING-hydrakin.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/equipped-OUTERCLOTHING-hydrakin.png new file mode 100644 index 00000000000..b8862366b8f Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/equipped-OUTERCLOTHING-hydrakin.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/meta.json index 2a3de155653..ae93846c8f6 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tg at commit https://github.com/tgstation/tgstation/commit/3b364b1cea497ccf414539719b6b79f39d42cb1b. Vox state made by Flareguy for SS14, color tweaked by InfinityRedPanda. Grinch by SarahON, harpy by VMSolidus, equipped-OUTERCLOTHING-resomi made by svarshiksatanist (Discord), reptilian made by kuro(388673708753027083)", + "copyright": "Taken from tg at commit https://github.com/tgstation/tgstation/commit/3b364b1cea497ccf414539719b6b79f39d42cb1b. Vox state made by Flareguy for SS14, color tweaked by InfinityRedPanda. Grinch by SarahON, harpy by VMSolidus, equipped-OUTERCLOTHING-resomi made by svarshiksatanist (Discord), reptilian made by kuro(388673708753027083), hydrakin by Zethine07 (github)", "size": { "x": 32, "y": 32 @@ -37,6 +37,10 @@ { "name": "equipped-OUTERCLOTHING-harpy", "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndiemedic.rsi/equipped-OUTERCLOTHING-hydrakin.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndiemedic.rsi/equipped-OUTERCLOTHING-hydrakin.png new file mode 100644 index 00000000000..fbc58a48b3e Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndiemedic.rsi/equipped-OUTERCLOTHING-hydrakin.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndiemedic.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndiemedic.rsi/meta.json index 2f741c468b1..5fcb77532ac 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndiemedic.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndiemedic.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Based on tgstation at commit https://github.com/tgstation/tgstation/commit/3b364b1cea497ccf414539719b6b79f39d42cb1b, modified by whateverusername0, EmoGarbage404 (github). Vox state made by Flareguy for SS14. Grinch by SarahON, harpy by VMSolidus, equipped-OUTERCLOTHING-resomi made by svarshiksatanist (Discord)", + "copyright": "Based on tgstation at commit https://github.com/tgstation/tgstation/commit/3b364b1cea497ccf414539719b6b79f39d42cb1b, modified by whateverusername0, EmoGarbage404 (github). Vox state made by Flareguy for SS14. Grinch by SarahON, harpy by VMSolidus, equipped-OUTERCLOTHING-resomi made by svarshiksatanist (Discord), equipped-OUTERCLOTHING-hydrakin sprite by Zethine / @synthetic_086 (discord)", "size": { "x": 32, "y": 32 @@ -33,6 +33,10 @@ { "name": "equipped-OUTERCLOTHING-harpy", "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/_Mono/Clothing/Head/Hardsuits/m82.rsi/equipped-HELMET-hydrakin.png b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/m82.rsi/equipped-HELMET-hydrakin.png new file mode 100644 index 00000000000..9eeaceb4423 Binary files /dev/null and b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/m82.rsi/equipped-HELMET-hydrakin.png differ diff --git a/Resources/Textures/_Mono/Clothing/Head/Hardsuits/m82.rsi/meta.json b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/m82.rsi/meta.json index ee993895f83..478dd7ad1c5 100644 --- a/Resources/Textures/_Mono/Clothing/Head/Hardsuits/m82.rsi/meta.json +++ b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/m82.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 2, "license": "CC-BY-SA-3.0", - "copyright": "Taken from NSV-13, -reptilian sprite by Zethine / @synthetic_086 (discord).", + "copyright": "Taken from NSV-13, -reptilian/hydrakin sprite by Zethine / @synthetic_086 (discord).", "size": { "x": 32, "y": 32 @@ -17,6 +17,10 @@ { "name": "equipped-HELMET-reptilian", "directions": 4 + }, + { + "name": "equipped-HELMET-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/_Mono/Clothing/Head/Hardsuits/m86.rsi/equipped-HELMET-hydrakin.png b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/m86.rsi/equipped-HELMET-hydrakin.png new file mode 100644 index 00000000000..8fe20368f22 Binary files /dev/null and b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/m86.rsi/equipped-HELMET-hydrakin.png differ diff --git a/Resources/Textures/_Mono/Clothing/Head/Hardsuits/m86.rsi/meta.json b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/m86.rsi/meta.json index ee993895f83..478dd7ad1c5 100644 --- a/Resources/Textures/_Mono/Clothing/Head/Hardsuits/m86.rsi/meta.json +++ b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/m86.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 2, "license": "CC-BY-SA-3.0", - "copyright": "Taken from NSV-13, -reptilian sprite by Zethine / @synthetic_086 (discord).", + "copyright": "Taken from NSV-13, -reptilian/hydrakin sprite by Zethine / @synthetic_086 (discord).", "size": { "x": 32, "y": 32 @@ -17,6 +17,10 @@ { "name": "equipped-HELMET-reptilian", "directions": 4 + }, + { + "name": "equipped-HELMET-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/_Mono/Clothing/Head/Hardsuits/merc_warlordsuit.rsi/meta.json b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/merc_warlordsuit.rsi/meta.json index a82a730e4f7..78829e548cf 100644 --- a/Resources/Textures/_Mono/Clothing/Head/Hardsuits/merc_warlordsuit.rsi/meta.json +++ b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/merc_warlordsuit.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 2, "license": "CC-BY-SA-3.0", - "copyright": "Made by WarlordToby in discord, -reptilian sprite by Zethine / @synthetic_086 (discord).", + "copyright": "Made by WarlordToby in discord, -reptilian/hydrakin sprite by Zethine / @synthetic_086 (discord).", "size": { "x": 32, "y": 32 @@ -28,6 +28,14 @@ { "name": "on-equipped-HELMET-reptilian", "directions": 4 + }, + { + "name": "off-equipped-HELMET-hydrakin", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/_Mono/Clothing/Head/Hardsuits/merc_warlordsuit.rsi/off-equipped-HELMET-hydrakin.png b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/merc_warlordsuit.rsi/off-equipped-HELMET-hydrakin.png new file mode 100644 index 00000000000..8ff9bb05c50 Binary files /dev/null and b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/merc_warlordsuit.rsi/off-equipped-HELMET-hydrakin.png differ diff --git a/Resources/Textures/_Mono/Clothing/Head/Hardsuits/merc_warlordsuit.rsi/on-equipped-HELMET-hydrakin.png b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/merc_warlordsuit.rsi/on-equipped-HELMET-hydrakin.png new file mode 100644 index 00000000000..96f72945e71 Binary files /dev/null and b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/merc_warlordsuit.rsi/on-equipped-HELMET-hydrakin.png differ diff --git a/Resources/Textures/_Mono/Clothing/Head/Hardsuits/scaf_pirate.rsi/equipped-HELMET-hydrakin.png b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/scaf_pirate.rsi/equipped-HELMET-hydrakin.png new file mode 100644 index 00000000000..021952bbc4e Binary files /dev/null and b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/scaf_pirate.rsi/equipped-HELMET-hydrakin.png differ diff --git a/Resources/Textures/_Mono/Clothing/Head/Hardsuits/scaf_pirate.rsi/meta.json b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/scaf_pirate.rsi/meta.json index 6a3adc9f2c6..b06c8bb06ac 100644 --- a/Resources/Textures/_Mono/Clothing/Head/Hardsuits/scaf_pirate.rsi/meta.json +++ b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/scaf_pirate.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 2, "license": "CC-BY-SA-3.0", - "copyright": "Made by _starch_ (discord), -reptilian sprite by Zethine / @synthetic_086 (discord).", + "copyright": "Made by _starch_ (discord), -reptilian/hydrakin sprite by Zethine / @synthetic_086 (discord).", "size": { "x": 32, "y": 32 @@ -17,6 +17,10 @@ { "name": "equipped-HELMET-reptilian", "directions": 4 + }, + { + "name": "equipped-HELMET-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/_Mono/Clothing/Head/Hardsuits/syndicate.rsi/meta.json b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/syndicate.rsi/meta.json index 9a3c3bf756d..2260233fe50 100644 --- a/Resources/Textures/_Mono/Clothing/Head/Hardsuits/syndicate.rsi/meta.json +++ b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/syndicate.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 2, "license": "CC-BY-SA-3.0", - "copyright": "Taken from NEV-CITRP. Edited by _starch_ (discord), -reptilian sprite by Zethine / @synthetic_086 (discord).", + "copyright": "Taken from NEV-CITRP. Edited by _starch_ (discord), -reptilian/hydrakin sprite by Zethine / @synthetic_086 (discord).", "size": { "x": 32, "y": 32 @@ -28,6 +28,14 @@ { "name": "on-equipped-HELMET-reptilian", "directions": 4 + }, + { + "name": "off-equipped-HELMET-hydrakin", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/_Mono/Clothing/Head/Hardsuits/syndicate.rsi/off-equipped-HELMET-hydrakin.png b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/syndicate.rsi/off-equipped-HELMET-hydrakin.png new file mode 100644 index 00000000000..96b797601f9 Binary files /dev/null and b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/syndicate.rsi/off-equipped-HELMET-hydrakin.png differ diff --git a/Resources/Textures/_Mono/Clothing/Head/Hardsuits/syndicate.rsi/on-equipped-HELMET-hydrakin.png b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/syndicate.rsi/on-equipped-HELMET-hydrakin.png new file mode 100644 index 00000000000..72224584ae2 Binary files /dev/null and b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/syndicate.rsi/on-equipped-HELMET-hydrakin.png differ diff --git a/Resources/Textures/_Mono/Clothing/Head/Hardsuits/syndieelite.rsi/meta.json b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/syndieelite.rsi/meta.json index 9a3c3bf756d..2260233fe50 100644 --- a/Resources/Textures/_Mono/Clothing/Head/Hardsuits/syndieelite.rsi/meta.json +++ b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/syndieelite.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 2, "license": "CC-BY-SA-3.0", - "copyright": "Taken from NEV-CITRP. Edited by _starch_ (discord), -reptilian sprite by Zethine / @synthetic_086 (discord).", + "copyright": "Taken from NEV-CITRP. Edited by _starch_ (discord), -reptilian/hydrakin sprite by Zethine / @synthetic_086 (discord).", "size": { "x": 32, "y": 32 @@ -28,6 +28,14 @@ { "name": "on-equipped-HELMET-reptilian", "directions": 4 + }, + { + "name": "off-equipped-HELMET-hydrakin", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/_Mono/Clothing/Head/Hardsuits/syndieelite.rsi/off-equipped-HELMET-hydrakin.png b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/syndieelite.rsi/off-equipped-HELMET-hydrakin.png new file mode 100644 index 00000000000..d881c411ea7 Binary files /dev/null and b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/syndieelite.rsi/off-equipped-HELMET-hydrakin.png differ diff --git a/Resources/Textures/_Mono/Clothing/Head/Hardsuits/syndieelite.rsi/on-equipped-HELMET-hydrakin.png b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/syndieelite.rsi/on-equipped-HELMET-hydrakin.png new file mode 100644 index 00000000000..f9db541a40b Binary files /dev/null and b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/syndieelite.rsi/on-equipped-HELMET-hydrakin.png differ diff --git a/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ullman_industries_director.rsi/equipped-HELMET-hydrakin.png b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ullman_industries_director.rsi/equipped-HELMET-hydrakin.png new file mode 100644 index 00000000000..abf9739664c Binary files /dev/null and b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ullman_industries_director.rsi/equipped-HELMET-hydrakin.png differ diff --git a/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ullman_industries_director.rsi/meta.json b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ullman_industries_director.rsi/meta.json index c1515e7a9ff..7a8675a7ec9 100644 --- a/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ullman_industries_director.rsi/meta.json +++ b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ullman_industries_director.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by kyres1, modified by Arcticular1", + "copyright": "Made by kyres1, modified by Arcticular1, hydrakin sprite by Zethine / @synthetic_086 (discord).", "size": { "x": 32, "y": 32 @@ -13,6 +13,10 @@ { "name": "equipped-HELMET", "directions": 4 + }, + { + "name": "equipped-HELMET-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ullman_industries_enforcer.rsi/equipped-HELMET-hydrakin.png b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ullman_industries_enforcer.rsi/equipped-HELMET-hydrakin.png new file mode 100644 index 00000000000..85bf2cc06a0 Binary files /dev/null and b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ullman_industries_enforcer.rsi/equipped-HELMET-hydrakin.png differ diff --git a/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ullman_industries_enforcer.rsi/meta.json b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ullman_industries_enforcer.rsi/meta.json index 61eb852c2dc..5eed0af83d2 100644 --- a/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ullman_industries_enforcer.rsi/meta.json +++ b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ullman_industries_enforcer.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by kyres1.", + "copyright": "Made by kyres1. hydrakin sprite by Zethine / @synthetic_086 (discord).", "size": { "x": 32, "y": 32 @@ -13,6 +13,10 @@ { "name": "equipped-HELMET", "directions": 4 + }, + { + "name": "equipped-HELMET-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ullman_industries_enforcermkii.rsi/equipped-HELMET-hydrakin.png b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ullman_industries_enforcermkii.rsi/equipped-HELMET-hydrakin.png new file mode 100644 index 00000000000..d388f5f552c Binary files /dev/null and b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ullman_industries_enforcermkii.rsi/equipped-HELMET-hydrakin.png differ diff --git a/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ullman_industries_enforcermkii.rsi/meta.json b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ullman_industries_enforcermkii.rsi/meta.json index 61eb852c2dc..5eed0af83d2 100644 --- a/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ullman_industries_enforcermkii.rsi/meta.json +++ b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ullman_industries_enforcermkii.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by kyres1.", + "copyright": "Made by kyres1. hydrakin sprite by Zethine / @synthetic_086 (discord).", "size": { "x": 32, "y": 32 @@ -13,6 +13,10 @@ { "name": "equipped-HELMET", "directions": 4 + }, + { + "name": "equipped-HELMET-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ullman_industries_engineer.rsi/equipped-HELMET-hydrakin.png b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ullman_industries_engineer.rsi/equipped-HELMET-hydrakin.png new file mode 100644 index 00000000000..acdf851bacd Binary files /dev/null and b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ullman_industries_engineer.rsi/equipped-HELMET-hydrakin.png differ diff --git a/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ullman_industries_engineer.rsi/meta.json b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ullman_industries_engineer.rsi/meta.json index 61eb852c2dc..5eed0af83d2 100644 --- a/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ullman_industries_engineer.rsi/meta.json +++ b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ullman_industries_engineer.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by kyres1.", + "copyright": "Made by kyres1. hydrakin sprite by Zethine / @synthetic_086 (discord).", "size": { "x": 32, "y": 32 @@ -13,6 +13,10 @@ { "name": "equipped-HELMET", "directions": 4 + }, + { + "name": "equipped-HELMET-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ullman_industries_pilot.rsi/equipped-HELMET-hydrakin.png b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ullman_industries_pilot.rsi/equipped-HELMET-hydrakin.png new file mode 100644 index 00000000000..1485bed8c92 Binary files /dev/null and b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ullman_industries_pilot.rsi/equipped-HELMET-hydrakin.png differ diff --git a/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ullman_industries_pilot.rsi/meta.json b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ullman_industries_pilot.rsi/meta.json index 61eb852c2dc..5eed0af83d2 100644 --- a/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ullman_industries_pilot.rsi/meta.json +++ b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ullman_industries_pilot.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by kyres1.", + "copyright": "Made by kyres1. hydrakin sprite by Zethine / @synthetic_086 (discord).", "size": { "x": 32, "y": 32 @@ -13,6 +13,10 @@ { "name": "equipped-HELMET", "directions": 4 + }, + { + "name": "equipped-HELMET-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ussp_combat.rsi/meta.json b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ussp_combat.rsi/meta.json index edff3145f80..19eb6879d5b 100644 --- a/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ussp_combat.rsi/meta.json +++ b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ussp_combat.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 2, "license": "CC-BY-SA-3.0", - "copyright": "Taken from shiptest-ss13 spacesuits.dmi at mob/clothing/head, obj/clothing/head, mob/clothing/suits, and obj/clothing/suits, -reptilian sprite by Zethine / @synthetic_086 (discord).", + "copyright": "Taken from shiptest-ss13 spacesuits.dmi at mob/clothing/head, obj/clothing/head, mob/clothing/suits, and obj/clothing/suits, -reptilian/hydrakin sprite by Zethine / @synthetic_086 (discord).", "size": { "x": 32, "y": 32 @@ -28,6 +28,14 @@ { "name": "on-equipped-HELMET-reptilian", "directions": 4 + }, + { + "name": "off-equipped-HELMET-hydrakin", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ussp_combat.rsi/off-equipped-HELMET-hydrakin.png b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ussp_combat.rsi/off-equipped-HELMET-hydrakin.png new file mode 100644 index 00000000000..66910eb3dd1 Binary files /dev/null and b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ussp_combat.rsi/off-equipped-HELMET-hydrakin.png differ diff --git a/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ussp_combat.rsi/on-equipped-HELMET-hydrakin.png b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ussp_combat.rsi/on-equipped-HELMET-hydrakin.png new file mode 100644 index 00000000000..66910eb3dd1 Binary files /dev/null and b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ussp_combat.rsi/on-equipped-HELMET-hydrakin.png differ diff --git a/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ussp_combat_light.rsi/meta.json b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ussp_combat_light.rsi/meta.json index 499567d0509..2d1dfebb1a6 100644 --- a/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ussp_combat_light.rsi/meta.json +++ b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ussp_combat_light.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 2, "license": "CC-BY-SA-3.0", - "copyright": "Taken from paradise-ss13 hats.dmi at mob/clothing/hats, obj/clothing/hats, mob/clothing/suits, and obj/clothing/suits.(https://github.com/ParadiseSS13/Paradise/blob/master/icons/obj/clothing/hats.dmi), -reptilian sprite by Zethine / @synthetic_086 (discord).", + "copyright": "Taken from paradise-ss13 hats.dmi at mob/clothing/hats, obj/clothing/hats, mob/clothing/suits, and obj/clothing/suits.(https://github.com/ParadiseSS13/Paradise/blob/master/icons/obj/clothing/hats.dmi), -reptilian/hydrakin sprite by Zethine / @synthetic_086 (discord).", "size": { "x": 32, "y": 32 @@ -28,6 +28,14 @@ { "name": "on-equipped-HELMET-reptilian", "directions": 4 + }, + { + "name": "off-equipped-HELMET-hydrakin", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ussp_combat_light.rsi/off-equipped-HELMET-hydrakin.png b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ussp_combat_light.rsi/off-equipped-HELMET-hydrakin.png new file mode 100644 index 00000000000..0f6dfa0c514 Binary files /dev/null and b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ussp_combat_light.rsi/off-equipped-HELMET-hydrakin.png differ diff --git a/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ussp_combat_light.rsi/on-equipped-HELMET-hydrakin.png b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ussp_combat_light.rsi/on-equipped-HELMET-hydrakin.png new file mode 100644 index 00000000000..0f6dfa0c514 Binary files /dev/null and b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ussp_combat_light.rsi/on-equipped-HELMET-hydrakin.png differ diff --git a/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ussp_combat_light_officer.rsi/meta.json b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ussp_combat_light_officer.rsi/meta.json index 499567d0509..2d1dfebb1a6 100644 --- a/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ussp_combat_light_officer.rsi/meta.json +++ b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ussp_combat_light_officer.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 2, "license": "CC-BY-SA-3.0", - "copyright": "Taken from paradise-ss13 hats.dmi at mob/clothing/hats, obj/clothing/hats, mob/clothing/suits, and obj/clothing/suits.(https://github.com/ParadiseSS13/Paradise/blob/master/icons/obj/clothing/hats.dmi), -reptilian sprite by Zethine / @synthetic_086 (discord).", + "copyright": "Taken from paradise-ss13 hats.dmi at mob/clothing/hats, obj/clothing/hats, mob/clothing/suits, and obj/clothing/suits.(https://github.com/ParadiseSS13/Paradise/blob/master/icons/obj/clothing/hats.dmi), -reptilian/hydrakin sprite by Zethine / @synthetic_086 (discord).", "size": { "x": 32, "y": 32 @@ -28,6 +28,14 @@ { "name": "on-equipped-HELMET-reptilian", "directions": 4 + }, + { + "name": "off-equipped-HELMET-hydrakin", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ussp_combat_light_officer.rsi/off-equipped-HELMET-hydrakin.png b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ussp_combat_light_officer.rsi/off-equipped-HELMET-hydrakin.png new file mode 100644 index 00000000000..8abc5a05be7 Binary files /dev/null and b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ussp_combat_light_officer.rsi/off-equipped-HELMET-hydrakin.png differ diff --git a/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ussp_combat_light_officer.rsi/on-equipped-HELMET-hydrakin.png b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ussp_combat_light_officer.rsi/on-equipped-HELMET-hydrakin.png new file mode 100644 index 00000000000..8abc5a05be7 Binary files /dev/null and b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ussp_combat_light_officer.rsi/on-equipped-HELMET-hydrakin.png differ diff --git a/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ussp_combat_lightmk2.rsi/meta.json b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ussp_combat_lightmk2.rsi/meta.json index 7993d6c2af1..d3deac570fc 100644 --- a/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ussp_combat_lightmk2.rsi/meta.json +++ b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ussp_combat_lightmk2.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 2, "license": "CC-BY-SA-3.0", - "copyright": "Taken from shiptest-ss13 head.dmi at mob/clothing/faction/frontiersman/head, mob/clothing/faction/frontiersman/suits, obj/clothing/faction/frontiersman/head, obj/clothing/faction/frontiersman/suits.(https://github.com/shiptest-ss13/Shiptest/blob/master/icons/mob/clothing/faction/frontiersmen/head.dmi), -reptilian sprite by Zethine / @synthetic_086 (discord).", + "copyright": "Taken from shiptest-ss13 head.dmi at mob/clothing/faction/frontiersman/head, mob/clothing/faction/frontiersman/suits, obj/clothing/faction/frontiersman/head, obj/clothing/faction/frontiersman/suits.(https://github.com/shiptest-ss13/Shiptest/blob/master/icons/mob/clothing/faction/frontiersmen/head.dmi), -reptilian/hydrakin sprite by Zethine / @synthetic_086 (discord).", "size": { "x": 32, "y": 32 @@ -28,6 +28,14 @@ { "name": "on-equipped-HELMET-reptilian", "directions": 4 + }, + { + "name": "off-equipped-HELMET-hydrakin", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ussp_combat_lightmk2.rsi/off-equipped-HELMET-hydrakin.png b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ussp_combat_lightmk2.rsi/off-equipped-HELMET-hydrakin.png new file mode 100644 index 00000000000..f10c8174423 Binary files /dev/null and b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ussp_combat_lightmk2.rsi/off-equipped-HELMET-hydrakin.png differ diff --git a/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ussp_combat_lightmk2.rsi/on-equipped-HELMET-hydrakin.png b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ussp_combat_lightmk2.rsi/on-equipped-HELMET-hydrakin.png new file mode 100644 index 00000000000..c63a67a1d74 Binary files /dev/null and b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ussp_combat_lightmk2.rsi/on-equipped-HELMET-hydrakin.png differ diff --git a/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ussp_commissar_parade.rsi/meta.json b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ussp_commissar_parade.rsi/meta.json index 109dbb3072c..96ab07a836a 100644 --- a/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ussp_commissar_parade.rsi/meta.json +++ b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ussp_commissar_parade.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 2, "license": "CC-BY-SA-3.0", - "copyright": "made by zeranov, -reptilian sprite by Zethine / @synthetic_086 (discord), changed the canvas size cause it wasnt according to conventions (androidonator)", + "copyright": "made by zeranov, -reptilian/hydrakin sprite by Zethine / @synthetic_086 (discord), changed the canvas size cause it wasnt according to conventions (androidonator)", "size": { "x": 32, "y": 32 @@ -28,6 +28,14 @@ { "name": "on-equipped-HELMET-reptilian", "directions": 4 + }, + { + "name": "off-equipped-HELMET-hydrakin", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ussp_commissar_parade.rsi/off-equipped-HELMET-hydrakin.png b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ussp_commissar_parade.rsi/off-equipped-HELMET-hydrakin.png new file mode 100644 index 00000000000..effcd964628 Binary files /dev/null and b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ussp_commissar_parade.rsi/off-equipped-HELMET-hydrakin.png differ diff --git a/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ussp_commissar_parade.rsi/on-equipped-HELMET-hydrakin.png b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ussp_commissar_parade.rsi/on-equipped-HELMET-hydrakin.png new file mode 100644 index 00000000000..3fc8b0c663b Binary files /dev/null and b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ussp_commissar_parade.rsi/on-equipped-HELMET-hydrakin.png differ diff --git a/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ussp_officer_combat.rsi/meta.json b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ussp_officer_combat.rsi/meta.json index 556e777d1a9..c298fe914d6 100644 --- a/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ussp_officer_combat.rsi/meta.json +++ b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ussp_officer_combat.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 2, "license": "CC-BY-SA-3.0", - "copyright": "Made by BluHNT for Monolith, -reptilian sprite by Zethine / @synthetic_086 (discord).", + "copyright": "Made by BluHNT for Monolith, -reptilian/hydrakin sprite by Zethine / @synthetic_086 (discord).", "size": { "x": 32, "y": 32 @@ -28,6 +28,14 @@ { "name": "on-equipped-HELMET-reptilian", "directions": 4 + }, + { + "name": "off-equipped-HELMET-hydrakin", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ussp_officer_combat.rsi/off-equipped-HELMET-hydrakin.png b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ussp_officer_combat.rsi/off-equipped-HELMET-hydrakin.png new file mode 100644 index 00000000000..b3d0c11e40b Binary files /dev/null and b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ussp_officer_combat.rsi/off-equipped-HELMET-hydrakin.png differ diff --git a/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ussp_officer_combat.rsi/on-equipped-HELMET-hydrakin.png b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ussp_officer_combat.rsi/on-equipped-HELMET-hydrakin.png new file mode 100644 index 00000000000..a7e59b75ea4 Binary files /dev/null and b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/ussp_officer_combat.rsi/on-equipped-HELMET-hydrakin.png differ diff --git a/Resources/Textures/_Mono/Clothing/Head/Hardsuits/viper_group_medic.rsi/meta.json b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/viper_group_medic.rsi/meta.json index 9b94d0332c8..b48d566de18 100644 --- a/Resources/Textures/_Mono/Clothing/Head/Hardsuits/viper_group_medic.rsi/meta.json +++ b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/viper_group_medic.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 2, "license": "CC-BY-SA-3.0", - "copyright": "Made by Ghost581 (discord), -reptilian sprite by Zethine / @synthetic_086 (discord).", + "copyright": "Made by Ghost581 (discord), -reptilian/hydrakin sprite by Zethine / @synthetic_086 (discord).", "size": { "x": 32, "y": 32 @@ -28,6 +28,14 @@ { "name": "on-equipped-HELMET-reptilian", "directions": 4 + }, + { + "name": "off-equipped-HELMET-hydrakin", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/_Mono/Clothing/Head/Hardsuits/viper_group_medic.rsi/off-equipped-HELMET-hydrakin.png b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/viper_group_medic.rsi/off-equipped-HELMET-hydrakin.png new file mode 100644 index 00000000000..3b1e3d5c9fc Binary files /dev/null and b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/viper_group_medic.rsi/off-equipped-HELMET-hydrakin.png differ diff --git a/Resources/Textures/_Mono/Clothing/Head/Hardsuits/viper_group_medic.rsi/on-equipped-HELMET-hydrakin.png b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/viper_group_medic.rsi/on-equipped-HELMET-hydrakin.png new file mode 100644 index 00000000000..3e60c3083b7 Binary files /dev/null and b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/viper_group_medic.rsi/on-equipped-HELMET-hydrakin.png differ diff --git a/Resources/Textures/_Mono/Clothing/Head/Hardsuits/viper_group_standard.rsi/meta.json b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/viper_group_standard.rsi/meta.json index 9b94d0332c8..b48d566de18 100644 --- a/Resources/Textures/_Mono/Clothing/Head/Hardsuits/viper_group_standard.rsi/meta.json +++ b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/viper_group_standard.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 2, "license": "CC-BY-SA-3.0", - "copyright": "Made by Ghost581 (discord), -reptilian sprite by Zethine / @synthetic_086 (discord).", + "copyright": "Made by Ghost581 (discord), -reptilian/hydrakin sprite by Zethine / @synthetic_086 (discord).", "size": { "x": 32, "y": 32 @@ -28,6 +28,14 @@ { "name": "on-equipped-HELMET-reptilian", "directions": 4 + }, + { + "name": "off-equipped-HELMET-hydrakin", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/_Mono/Clothing/Head/Hardsuits/viper_group_standard.rsi/off-equipped-HELMET-hydrakin.png b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/viper_group_standard.rsi/off-equipped-HELMET-hydrakin.png new file mode 100644 index 00000000000..13ee0d1b75c Binary files /dev/null and b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/viper_group_standard.rsi/off-equipped-HELMET-hydrakin.png differ diff --git a/Resources/Textures/_Mono/Clothing/Head/Hardsuits/viper_group_standard.rsi/on-equipped-HELMET-hydrakin.png b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/viper_group_standard.rsi/on-equipped-HELMET-hydrakin.png new file mode 100644 index 00000000000..e68164effdb Binary files /dev/null and b/Resources/Textures/_Mono/Clothing/Head/Hardsuits/viper_group_standard.rsi/on-equipped-HELMET-hydrakin.png differ diff --git a/Resources/Textures/_Mono/Clothing/Mask/gasdi-watchdog.rsi/equipped-MASK-hydrakin.png b/Resources/Textures/_Mono/Clothing/Mask/gasdi-watchdog.rsi/equipped-MASK-hydrakin.png new file mode 100644 index 00000000000..0c169719e40 Binary files /dev/null and b/Resources/Textures/_Mono/Clothing/Mask/gasdi-watchdog.rsi/equipped-MASK-hydrakin.png differ diff --git a/Resources/Textures/_Mono/Clothing/Mask/gasdi-watchdog.rsi/meta.json b/Resources/Textures/_Mono/Clothing/Mask/gasdi-watchdog.rsi/meta.json index 235cca6e485..a8eb4937552 100644 --- a/Resources/Textures/_Mono/Clothing/Mask/gasdi-watchdog.rsi/meta.json +++ b/Resources/Textures/_Mono/Clothing/Mask/gasdi-watchdog.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Sprite by UnicornOnLSD (GitHub)", + "copyright": "Sprite by UnicornOnLSD (GitHub). hydrakin sprite by Zethine / @synthetic_086 (discord).", "size": { "x": 32, "y": 32 @@ -37,6 +37,14 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-MASK-hydrakin", + "directions": 4 + }, + { + "name": "up-equipped-MASK-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/_Mono/Clothing/Mask/gasdi-watchdog.rsi/up-equipped-MASK-hydrakin.png b/Resources/Textures/_Mono/Clothing/Mask/gasdi-watchdog.rsi/up-equipped-MASK-hydrakin.png new file mode 100644 index 00000000000..70152519c49 Binary files /dev/null and b/Resources/Textures/_Mono/Clothing/Mask/gasdi-watchdog.rsi/up-equipped-MASK-hydrakin.png differ diff --git a/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/m82b.rsi/equipped-OUTERCLOTHING-hydrakin.png b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/m82b.rsi/equipped-OUTERCLOTHING-hydrakin.png new file mode 100644 index 00000000000..2c9b1e35bc1 Binary files /dev/null and b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/m82b.rsi/equipped-OUTERCLOTHING-hydrakin.png differ diff --git a/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/m82b.rsi/meta.json b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/m82b.rsi/meta.json index f37ad37e146..2a0eb0a0eed 100644 --- a/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/m82b.rsi/meta.json +++ b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/m82b.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 2, "license": "CC-BY-SA-3.0", - "copyright": "Taken from NSV-13, equipped-OUTERCLOTHING-reptilian sprite by Zethine / @synthetic_086 (discord)", + "copyright": "Taken from NSV-13, equipped-OUTERCLOTHING-reptilian/hydrakin sprite by Zethine / @synthetic_086 (discord)", "size": { "x": 32, "y": 32 @@ -25,6 +25,10 @@ { "name": "equipped-OUTERCLOTHING-reptilian", "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/m82c.rsi/equipped-OUTERCLOTHING-hydrakin.png b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/m82c.rsi/equipped-OUTERCLOTHING-hydrakin.png new file mode 100644 index 00000000000..97979b189ff Binary files /dev/null and b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/m82c.rsi/equipped-OUTERCLOTHING-hydrakin.png differ diff --git a/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/m82c.rsi/meta.json b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/m82c.rsi/meta.json index f37ad37e146..2a0eb0a0eed 100644 --- a/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/m82c.rsi/meta.json +++ b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/m82c.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 2, "license": "CC-BY-SA-3.0", - "copyright": "Taken from NSV-13, equipped-OUTERCLOTHING-reptilian sprite by Zethine / @synthetic_086 (discord)", + "copyright": "Taken from NSV-13, equipped-OUTERCLOTHING-reptilian/hydrakin sprite by Zethine / @synthetic_086 (discord)", "size": { "x": 32, "y": 32 @@ -25,6 +25,10 @@ { "name": "equipped-OUTERCLOTHING-reptilian", "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/m86.rsi/equipped-OUTERCLOTHING-hydrakin.png b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/m86.rsi/equipped-OUTERCLOTHING-hydrakin.png new file mode 100644 index 00000000000..0c322449d89 Binary files /dev/null and b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/m86.rsi/equipped-OUTERCLOTHING-hydrakin.png differ diff --git a/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/m86.rsi/meta.json b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/m86.rsi/meta.json index 9e4129ddb02..1275fd71066 100644 --- a/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/m86.rsi/meta.json +++ b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/m86.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 2, "license": "CC-BY-SA-3.0", - "copyright": "Inhands taken from NSV-13, icon and outerclothing taken from SS13 White Dream, equipped-OUTERCLOTHING-reptilian sprite by Zethine / @synthetic_086 (discord)", + "copyright": "Inhands taken from NSV-13, icon and outerclothing taken from SS13 White Dream, equipped-OUTERCLOTHING-reptilian/hydrakin sprite by Zethine / @synthetic_086 (discord)", "size": { "x": 32, "y": 32 @@ -25,6 +25,10 @@ { "name": "equipped-OUTERCLOTHING-reptilian", "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/merc_warlordsuit.rsi/equipped-OUTERCLOTHING-hydrakin.png b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/merc_warlordsuit.rsi/equipped-OUTERCLOTHING-hydrakin.png new file mode 100644 index 00000000000..060b079a0c4 Binary files /dev/null and b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/merc_warlordsuit.rsi/equipped-OUTERCLOTHING-hydrakin.png differ diff --git a/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/merc_warlordsuit.rsi/meta.json b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/merc_warlordsuit.rsi/meta.json index e5b56293631..1ef271ae57e 100644 --- a/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/merc_warlordsuit.rsi/meta.json +++ b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/merc_warlordsuit.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 2, "license": "CC-BY-SA-3.0", - "copyright": "Made by WarlordToby in discord, equipped-OUTERCLOTHING-reptilian sprite by Zethine / @synthetic_086 (discord)", + "copyright": "Made by WarlordToby in discord, equipped-OUTERCLOTHING-reptilian/hydrakin sprite by Zethine / @synthetic_086 (discord)", "size": { "x": 32, "y": 32 @@ -25,6 +25,10 @@ { "name": "equipped-OUTERCLOTHING-reptilian", "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/scaf_pirate.rsi/equipped-OUTERCLOTHING-hydrakin.png b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/scaf_pirate.rsi/equipped-OUTERCLOTHING-hydrakin.png new file mode 100644 index 00000000000..14975d119e2 Binary files /dev/null and b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/scaf_pirate.rsi/equipped-OUTERCLOTHING-hydrakin.png differ diff --git a/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/scaf_pirate.rsi/meta.json b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/scaf_pirate.rsi/meta.json index 0804c07b603..da9c8a6e83f 100644 --- a/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/scaf_pirate.rsi/meta.json +++ b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/scaf_pirate.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 2, "license": "CC-BY-SA-3.0", - "copyright": "Taken from cev-eris at commit https://github.com/discordia-space/CEV-Eris/commit/760f0be7af33a31f5a08a3291864e91539d0ebb7 | erhardsteinhauer added boots (exactly 4 pixels at the bottom in icon and equipped-OUTERCLOTHING, no overlap with original suit sprites). Edited by _starch_ (discord). | equipped-OUTERCLOTHING-resomi by f0x-n3rd (github), equipped-OUTERCLOTHING-reptilian sprite by Zethine / @synthetic_086 (discord)", + "copyright": "Taken from cev-eris at commit https://github.com/discordia-space/CEV-Eris/commit/760f0be7af33a31f5a08a3291864e91539d0ebb7 | erhardsteinhauer added boots (exactly 4 pixels at the bottom in icon and equipped-OUTERCLOTHING, no overlap with original suit sprites). Edited by _starch_ (discord). | equipped-OUTERCLOTHING-resomi by f0x-n3rd (github), equipped-OUTERCLOTHING-reptilian/hydrakin sprite by Zethine / @synthetic_086 (discord)", "size": { "x": 32, "y": 32 @@ -29,6 +29,10 @@ { "name": "equipped-OUTERCLOTHING-reptilian", "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/syndicate.rsi/equipped-OUTERCLOTHING-hydrakin.png b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/syndicate.rsi/equipped-OUTERCLOTHING-hydrakin.png new file mode 100644 index 00000000000..a32e1d61a84 Binary files /dev/null and b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/syndicate.rsi/equipped-OUTERCLOTHING-hydrakin.png differ diff --git a/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/syndicate.rsi/meta.json b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/syndicate.rsi/meta.json index 1f6c67706c2..af3281e8e1f 100644 --- a/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/syndicate.rsi/meta.json +++ b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/syndicate.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 2, "license": "CC-BY-SA-3.0", - "copyright": "Made from sprites taken from NSV-13, Aurora, and NEV-CITRP, equipped-OUTERCLOTHING-reptilian sprite by Zethine / @synthetic_086 (discord)", + "copyright": "Made from sprites taken from NSV-13, Aurora, and NEV-CITRP, equipped-OUTERCLOTHING-reptilian/hydrakin sprite by Zethine / @synthetic_086 (discord)", "size": { "x": 32, "y": 32 @@ -25,6 +25,10 @@ { "name": "equipped-OUTERCLOTHING-reptilian", "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/equipped-OUTERCLOTHING-hydrakin.png b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/equipped-OUTERCLOTHING-hydrakin.png new file mode 100644 index 00000000000..b18f1153ef8 Binary files /dev/null and b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/equipped-OUTERCLOTHING-hydrakin.png differ diff --git a/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/meta.json b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/meta.json index 1f6c67706c2..af3281e8e1f 100644 --- a/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/meta.json +++ b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 2, "license": "CC-BY-SA-3.0", - "copyright": "Made from sprites taken from NSV-13, Aurora, and NEV-CITRP, equipped-OUTERCLOTHING-reptilian sprite by Zethine / @synthetic_086 (discord)", + "copyright": "Made from sprites taken from NSV-13, Aurora, and NEV-CITRP, equipped-OUTERCLOTHING-reptilian/hydrakin sprite by Zethine / @synthetic_086 (discord)", "size": { "x": 32, "y": 32 @@ -25,6 +25,10 @@ { "name": "equipped-OUTERCLOTHING-reptilian", "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/tsfmc_colonel.rsi/equipped-OUTERCLOTHING-hydrakin.png b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/tsfmc_colonel.rsi/equipped-OUTERCLOTHING-hydrakin.png new file mode 100644 index 00000000000..33e2ccb381c Binary files /dev/null and b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/tsfmc_colonel.rsi/equipped-OUTERCLOTHING-hydrakin.png differ diff --git a/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/tsfmc_colonel.rsi/meta.json b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/tsfmc_colonel.rsi/meta.json index c84b1d5a0db..9f78913a2d5 100644 --- a/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/tsfmc_colonel.rsi/meta.json +++ b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/tsfmc_colonel.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC0-1.0", - "copyright": "Original work by TJohnson. lamia & segment by @noctyrnal | equipped-OUTERCLOTHING-resomi by f0x-n3rd (github), equipped-OUTERCLOTHING/equipped-OUTERCLOTHING-reptilian sprite by Zethine / @synthetic_086 (discord)", + "copyright": "Original work by TJohnson. lamia & segment by @noctyrnal | equipped-OUTERCLOTHING-resomi by f0x-n3rd (github), equipped-OUTERCLOTHING/equipped-OUTERCLOTHING-reptilian/hydrakin sprite by Zethine / @synthetic_086 (discord)", "size": { "x": 32, "y": 32 @@ -40,6 +40,10 @@ { "name": "equipped-OUTERCLOTHING-reptilian", "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/tsfmc_experimental.rsi/equipped-OUTERCLOTHING-hydrakin.png b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/tsfmc_experimental.rsi/equipped-OUTERCLOTHING-hydrakin.png new file mode 100644 index 00000000000..2c061633fe7 Binary files /dev/null and b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/tsfmc_experimental.rsi/equipped-OUTERCLOTHING-hydrakin.png differ diff --git a/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/tsfmc_experimental.rsi/meta.json b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/tsfmc_experimental.rsi/meta.json index 86a3e6736ac..adde15014ab 100644 --- a/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/tsfmc_experimental.rsi/meta.json +++ b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/tsfmc_experimental.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 2, "license": "CC0-1.0", - "copyright": "Original work by TJohnson. lamia & segment by @noctyrnal | equipped-OUTERCLOTHING-resomi by f0x-n3rd (github), equipped-OUTERCLOTHING/equipped-OUTERCLOTHING-reptilian sprite by Zethine / @synthetic_086 (discord)", + "copyright": "Original work by TJohnson. lamia & segment by @noctyrnal | equipped-OUTERCLOTHING-resomi by f0x-n3rd (github), equipped-OUTERCLOTHING/equipped-OUTERCLOTHING-reptilian/hydrakin sprite by Zethine / @synthetic_086 (discord)", "size": { "x": 32, "y": 32 @@ -40,6 +40,10 @@ { "name": "equipped-OUTERCLOTHING-reptilian", "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ullman_industries_director.rsi/equipped-OUTERCLOTHING-hydrakin.png b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ullman_industries_director.rsi/equipped-OUTERCLOTHING-hydrakin.png new file mode 100644 index 00000000000..e3d62a3fe2a Binary files /dev/null and b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ullman_industries_director.rsi/equipped-OUTERCLOTHING-hydrakin.png differ diff --git a/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ullman_industries_director.rsi/meta.json b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ullman_industries_director.rsi/meta.json index cdd0d3a4626..bb89bbfa290 100644 --- a/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ullman_industries_director.rsi/meta.json +++ b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ullman_industries_director.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "made by kyres1, modified by Arcticular1, inhand sprites taken from NSV-13", + "copyright": "made by kyres1, modified by Arcticular1, inhand sprites taken from NSV-13, hydrakin sprite by Zethine / @synthetic_086 (discord).", "size": { "x": 32, "y": 32 @@ -21,6 +21,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ullman_industries_enforcer.rsi/equipped-OUTERCLOTHING-hydrakin.png b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ullman_industries_enforcer.rsi/equipped-OUTERCLOTHING-hydrakin.png new file mode 100644 index 00000000000..ac0a17473ef Binary files /dev/null and b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ullman_industries_enforcer.rsi/equipped-OUTERCLOTHING-hydrakin.png differ diff --git a/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ullman_industries_enforcer.rsi/meta.json b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ullman_industries_enforcer.rsi/meta.json index b4e8fa251c8..c5a7100a551 100644 --- a/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ullman_industries_enforcer.rsi/meta.json +++ b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ullman_industries_enforcer.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "made by kyres1, inhand sprites taken from NSV-13", + "copyright": "made by kyres1, inhand sprites taken from NSV-13, hydrakin sprite by Zethine / @synthetic_086 (discord).", "size": { "x": 32, "y": 32 @@ -21,6 +21,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ullman_industries_enforcermkii.rsi/equipped-OUTERCLOTHING-hydrakin.png b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ullman_industries_enforcermkii.rsi/equipped-OUTERCLOTHING-hydrakin.png new file mode 100644 index 00000000000..811580f48d4 Binary files /dev/null and b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ullman_industries_enforcermkii.rsi/equipped-OUTERCLOTHING-hydrakin.png differ diff --git a/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ullman_industries_enforcermkii.rsi/meta.json b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ullman_industries_enforcermkii.rsi/meta.json index b4e8fa251c8..c5a7100a551 100644 --- a/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ullman_industries_enforcermkii.rsi/meta.json +++ b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ullman_industries_enforcermkii.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "made by kyres1, inhand sprites taken from NSV-13", + "copyright": "made by kyres1, inhand sprites taken from NSV-13, hydrakin sprite by Zethine / @synthetic_086 (discord).", "size": { "x": 32, "y": 32 @@ -21,6 +21,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ullman_industries_engineer.rsi/equipped-OUTERCLOTHING-hydrakin.png b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ullman_industries_engineer.rsi/equipped-OUTERCLOTHING-hydrakin.png new file mode 100644 index 00000000000..6a7fac81d94 Binary files /dev/null and b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ullman_industries_engineer.rsi/equipped-OUTERCLOTHING-hydrakin.png differ diff --git a/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ullman_industries_engineer.rsi/meta.json b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ullman_industries_engineer.rsi/meta.json index b4e8fa251c8..c5a7100a551 100644 --- a/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ullman_industries_engineer.rsi/meta.json +++ b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ullman_industries_engineer.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "made by kyres1, inhand sprites taken from NSV-13", + "copyright": "made by kyres1, inhand sprites taken from NSV-13, hydrakin sprite by Zethine / @synthetic_086 (discord).", "size": { "x": 32, "y": 32 @@ -21,6 +21,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ullman_industries_pilot.rsi/equipped-OUTERCLOTHING-hydrakin.png b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ullman_industries_pilot.rsi/equipped-OUTERCLOTHING-hydrakin.png new file mode 100644 index 00000000000..5e8be69e4cc Binary files /dev/null and b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ullman_industries_pilot.rsi/equipped-OUTERCLOTHING-hydrakin.png differ diff --git a/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ullman_industries_pilot.rsi/meta.json b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ullman_industries_pilot.rsi/meta.json index b4e8fa251c8..c5a7100a551 100644 --- a/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ullman_industries_pilot.rsi/meta.json +++ b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ullman_industries_pilot.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "made by kyres1, inhand sprites taken from NSV-13", + "copyright": "made by kyres1, inhand sprites taken from NSV-13, hydrakin sprite by Zethine / @synthetic_086 (discord).", "size": { "x": 32, "y": 32 @@ -21,6 +21,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ussp_combat.rsi/equipped-OUTERCLOTHING-hydrakin.png b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ussp_combat.rsi/equipped-OUTERCLOTHING-hydrakin.png new file mode 100644 index 00000000000..86e49096def Binary files /dev/null and b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ussp_combat.rsi/equipped-OUTERCLOTHING-hydrakin.png differ diff --git a/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ussp_combat.rsi/meta.json b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ussp_combat.rsi/meta.json index acc54016729..7190ea05c5c 100644 --- a/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ussp_combat.rsi/meta.json +++ b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ussp_combat.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 2, "license": "CC-BY-SA-3.0", - "copyright": "Taken from shiptest-ss13 spacesuits.dmi at mob/clothing/head, obj/clothing/head, mob/clothing/suits, and obj/clothing/suits. | equipped-OUTERCLOTHING-resomi by f0x-n3rd (github), equipped-OUTERCLOTHING-reptilian sprite by Zethine / @synthetic_086 (discord)", + "copyright": "Taken from shiptest-ss13 spacesuits.dmi at mob/clothing/head, obj/clothing/head, mob/clothing/suits, and obj/clothing/suits. | equipped-OUTERCLOTHING-resomi by f0x-n3rd (github), equipped-OUTERCLOTHING-reptilian/hydrakin sprite by Zethine / @synthetic_086 (discord)", "size": { "x": 32, "y": 32 @@ -29,6 +29,10 @@ { "name": "equipped-OUTERCLOTHING-reptilian", "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ussp_combat_light.rsi/equipped-OUTERCLOTHING-hydrakin.png b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ussp_combat_light.rsi/equipped-OUTERCLOTHING-hydrakin.png new file mode 100644 index 00000000000..d02d77d7e62 Binary files /dev/null and b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ussp_combat_light.rsi/equipped-OUTERCLOTHING-hydrakin.png differ diff --git a/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ussp_combat_light.rsi/meta.json b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ussp_combat_light.rsi/meta.json index ac1502cb7cf..9d4386d99d3 100644 --- a/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ussp_combat_light.rsi/meta.json +++ b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ussp_combat_light.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 2, "license": "CC-BY-SA-3.0", - "copyright": "Taken from paradise-ss13 suits.dmi at mob/clothing/hats, obj/clothing/hats, mob/clothing/suits, and obj/clothing/suits.(https://github.com/ParadiseSS13/Paradise/blob/master/icons/obj/clothing/suits.dmi) | equipped-OUTERCLOTHING-resomi by f0x-n3rd (github), equipped-OUTERCLOTHING-reptilian sprite by Zethine / @synthetic_086 (discord)", + "copyright": "Taken from paradise-ss13 suits.dmi at mob/clothing/hats, obj/clothing/hats, mob/clothing/suits, and obj/clothing/suits.(https://github.com/ParadiseSS13/Paradise/blob/master/icons/obj/clothing/suits.dmi) | equipped-OUTERCLOTHING-resomi by f0x-n3rd (github), equipped-OUTERCLOTHING-reptilian/hydrakin sprite by Zethine / @synthetic_086 (discord)", "size": { "x": 32, "y": 32 @@ -29,6 +29,10 @@ { "name": "equipped-OUTERCLOTHING-reptilian", "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ussp_combat_light_officer.rsi/equipped-OUTERCLOTHING-hydrakin.png b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ussp_combat_light_officer.rsi/equipped-OUTERCLOTHING-hydrakin.png new file mode 100644 index 00000000000..2227ea2fd3c Binary files /dev/null and b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ussp_combat_light_officer.rsi/equipped-OUTERCLOTHING-hydrakin.png differ diff --git a/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ussp_combat_light_officer.rsi/meta.json b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ussp_combat_light_officer.rsi/meta.json index ac1502cb7cf..9d4386d99d3 100644 --- a/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ussp_combat_light_officer.rsi/meta.json +++ b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ussp_combat_light_officer.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 2, "license": "CC-BY-SA-3.0", - "copyright": "Taken from paradise-ss13 suits.dmi at mob/clothing/hats, obj/clothing/hats, mob/clothing/suits, and obj/clothing/suits.(https://github.com/ParadiseSS13/Paradise/blob/master/icons/obj/clothing/suits.dmi) | equipped-OUTERCLOTHING-resomi by f0x-n3rd (github), equipped-OUTERCLOTHING-reptilian sprite by Zethine / @synthetic_086 (discord)", + "copyright": "Taken from paradise-ss13 suits.dmi at mob/clothing/hats, obj/clothing/hats, mob/clothing/suits, and obj/clothing/suits.(https://github.com/ParadiseSS13/Paradise/blob/master/icons/obj/clothing/suits.dmi) | equipped-OUTERCLOTHING-resomi by f0x-n3rd (github), equipped-OUTERCLOTHING-reptilian/hydrakin sprite by Zethine / @synthetic_086 (discord)", "size": { "x": 32, "y": 32 @@ -29,6 +29,10 @@ { "name": "equipped-OUTERCLOTHING-reptilian", "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ussp_combat_lightmk2.rsi/equipped-OUTERCLOTHING-hydrakin.png b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ussp_combat_lightmk2.rsi/equipped-OUTERCLOTHING-hydrakin.png new file mode 100644 index 00000000000..c8aa4dacd3f Binary files /dev/null and b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ussp_combat_lightmk2.rsi/equipped-OUTERCLOTHING-hydrakin.png differ diff --git a/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ussp_combat_lightmk2.rsi/meta.json b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ussp_combat_lightmk2.rsi/meta.json index d6eb88e5a5f..a131aacb8c5 100644 --- a/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ussp_combat_lightmk2.rsi/meta.json +++ b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ussp_combat_lightmk2.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 2, "license": "CC-BY-SA-3.0", - "copyright": "Taken from shiptest-ss13 suits.dmi at mob/clothing/faction/frontiersman/head, mob/clothing/faction/frontiersman/suits, obj/clothing/faction/frontiersman/head, obj/clothing/faction/frontiersman/suits.(https://github.com/shiptest-ss13/Shiptest/blob/master/icons/mob/clothing/faction/frontiersmen/suits.dmi) | equipped-OUTERCLOTHING-resomi by f0x-n3rd (github), equipped-OUTERCLOTHING-reptilian sprite by Zethine / @synthetic_086 (discord)", + "copyright": "Taken from shiptest-ss13 suits.dmi at mob/clothing/faction/frontiersman/head, mob/clothing/faction/frontiersman/suits, obj/clothing/faction/frontiersman/head, obj/clothing/faction/frontiersman/suits.(https://github.com/shiptest-ss13/Shiptest/blob/master/icons/mob/clothing/faction/frontiersmen/suits.dmi) | equipped-OUTERCLOTHING-resomi by f0x-n3rd (github), equipped-OUTERCLOTHING-reptilian/hydrakin sprite by Zethine / @synthetic_086 (discord)", "size": { "x": 32, "y": 32 @@ -29,6 +29,10 @@ { "name": "equipped-OUTERCLOTHING-reptilian", "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ussp_commissar_parade.rsi/equipped-OUTERCLOTHING-hydrakin.png b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ussp_commissar_parade.rsi/equipped-OUTERCLOTHING-hydrakin.png new file mode 100644 index 00000000000..c7d1244ac4b Binary files /dev/null and b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ussp_commissar_parade.rsi/equipped-OUTERCLOTHING-hydrakin.png differ diff --git a/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ussp_commissar_parade.rsi/meta.json b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ussp_commissar_parade.rsi/meta.json index 2fdad5324b5..c5cbd31e247 100644 --- a/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ussp_commissar_parade.rsi/meta.json +++ b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ussp_commissar_parade.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 2, "license": "CC-BY-SA-3.0", - "copyright": "made by zeranov, equipped-OUTERCLOTHING-reptilian sprite by Zethine / @synthetic_086 (discord)", + "copyright": "made by zeranov, equipped-OUTERCLOTHING-reptilian/hydrakin sprite by Zethine / @synthetic_086 (discord)", "size": { "x": 32, "y": 32 @@ -25,6 +25,10 @@ { "name": "equipped-OUTERCLOTHING-reptilian", "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ussp_officer_combat.rsi/equipped-OUTERCLOTHING-hydrakin.png b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ussp_officer_combat.rsi/equipped-OUTERCLOTHING-hydrakin.png new file mode 100644 index 00000000000..0836233332b Binary files /dev/null and b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ussp_officer_combat.rsi/equipped-OUTERCLOTHING-hydrakin.png differ diff --git a/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ussp_officer_combat.rsi/meta.json b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ussp_officer_combat.rsi/meta.json index 56320574566..ad0eb15aec7 100644 --- a/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ussp_officer_combat.rsi/meta.json +++ b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/ussp_officer_combat.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 2, "license": "CC-BY-SA-3.0", - "copyright": "Made by BluHNT for Monolith | equipped-OUTERCLOTHING-resomi by f0x-n3rd (github), equipped-OUTERCLOTHING-reptilian sprite by Zethine / @synthetic_086 (discord)", + "copyright": "Made by BluHNT for Monolith | equipped-OUTERCLOTHING-resomi by f0x-n3rd (github), equipped-OUTERCLOTHING-reptilian/hydrakin sprite by Zethine / @synthetic_086 (discord)", "size": { "x": 32, "y": 32 @@ -29,6 +29,10 @@ { "name": "equipped-OUTERCLOTHING-reptilian", "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/viper_group_medic.rsi/equipped-OUTERCLOTHING-hydrakin.png b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/viper_group_medic.rsi/equipped-OUTERCLOTHING-hydrakin.png new file mode 100644 index 00000000000..2b679dd1c34 Binary files /dev/null and b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/viper_group_medic.rsi/equipped-OUTERCLOTHING-hydrakin.png differ diff --git a/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/viper_group_medic.rsi/meta.json b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/viper_group_medic.rsi/meta.json index 6165beb2fd6..1e0fca44b72 100644 --- a/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/viper_group_medic.rsi/meta.json +++ b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/viper_group_medic.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 2, "license": "CC-BY-SA-3.0", - "copyright": "Made by Ghost581 (discord) | equipped-OUTERCLOTHING-resomi by f0x-n3rd (github), equipped-OUTERCLOTHING-reptilian sprite by Zethine / @synthetic_086 (discord)", + "copyright": "Made by Ghost581 (discord) | equipped-OUTERCLOTHING-resomi by f0x-n3rd (github), equipped-OUTERCLOTHING-reptilian/hydrakin sprite by Zethine / @synthetic_086 (discord)", "size": { "x": 32, "y": 32 @@ -29,6 +29,10 @@ { "name": "equipped-OUTERCLOTHING-reptilian", "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/viper_group_standard.rsi/equipped-OUTERCLOTHING-hydrakin.png b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/viper_group_standard.rsi/equipped-OUTERCLOTHING-hydrakin.png new file mode 100644 index 00000000000..c384b1d00bf Binary files /dev/null and b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/viper_group_standard.rsi/equipped-OUTERCLOTHING-hydrakin.png differ diff --git a/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/viper_group_standard.rsi/meta.json b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/viper_group_standard.rsi/meta.json index 6165beb2fd6..1e0fca44b72 100644 --- a/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/viper_group_standard.rsi/meta.json +++ b/Resources/Textures/_Mono/Clothing/OuterClothing/Hardsuits/viper_group_standard.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 2, "license": "CC-BY-SA-3.0", - "copyright": "Made by Ghost581 (discord) | equipped-OUTERCLOTHING-resomi by f0x-n3rd (github), equipped-OUTERCLOTHING-reptilian sprite by Zethine / @synthetic_086 (discord)", + "copyright": "Made by Ghost581 (discord) | equipped-OUTERCLOTHING-resomi by f0x-n3rd (github), equipped-OUTERCLOTHING-reptilian/hydrakin sprite by Zethine / @synthetic_086 (discord)", "size": { "x": 32, "y": 32 @@ -29,6 +29,10 @@ { "name": "equipped-OUTERCLOTHING-reptilian", "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/maxim_prototype.rsi/meta.json b/Resources/Textures/_NF/Clothing/Head/Hardsuits/maxim_prototype.rsi/meta.json index 1167a7e127e..81d8275a63f 100644 --- a/Resources/Textures/_NF/Clothing/Head/Hardsuits/maxim_prototype.rsi/meta.json +++ b/Resources/Textures/_NF/Clothing/Head/Hardsuits/maxim_prototype.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/6b3f58d7de4d4e374282819a7001eaa9bde1676d | Edited by erhardsteinhauer", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/6b3f58d7de4d4e374282819a7001eaa9bde1676d | Edited by erhardsteinhauer | hydrakin sprite by Zethine / @synthetic_086 (discord).", "size": { "x": 32, "y": 32 @@ -20,6 +20,14 @@ { "name": "on-equipped-HELMET", "directions": 4 + }, + { + "name": "off-equipped-HELMET-hydrakin", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/maxim_prototype.rsi/off-equipped-HELMET-hydrakin.png b/Resources/Textures/_NF/Clothing/Head/Hardsuits/maxim_prototype.rsi/off-equipped-HELMET-hydrakin.png new file mode 100644 index 00000000000..7eb63f26547 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hardsuits/maxim_prototype.rsi/off-equipped-HELMET-hydrakin.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/maxim_prototype.rsi/on-equipped-HELMET-hydrakin.png b/Resources/Textures/_NF/Clothing/Head/Hardsuits/maxim_prototype.rsi/on-equipped-HELMET-hydrakin.png new file mode 100644 index 00000000000..7eb63f26547 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hardsuits/maxim_prototype.rsi/on-equipped-HELMET-hydrakin.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/mercenary.rsi/meta.json b/Resources/Textures/_NF/Clothing/Head/Hardsuits/mercenary.rsi/meta.json index f30dd4f50f4..9aef86999c0 100644 --- a/Resources/Textures/_NF/Clothing/Head/Hardsuits/mercenary.rsi/meta.json +++ b/Resources/Textures/_NF/Clothing/Head/Hardsuits/mercenary.rsi/meta.json @@ -1,6 +1,6 @@ { "version": 2, - "copyright": "Made by DadNotTheBelt (https://github.com/No-Dad-Not-The-Belt) for SS14/Frontier Station 14. | Resprited for mercenary by erhardsteinhauer (discord), -reptilian sprite by Zethine / @synthetic_086 (discord).", + "copyright": "Made by DadNotTheBelt (https://github.com/No-Dad-Not-The-Belt) for SS14/Frontier Station 14. | Resprited for mercenary by erhardsteinhauer (discord), -reptilian/hydrakin sprite by Zethine / @synthetic_086 (discord).", "license": "CC-BY-SA-3.0", "size": { "x": 32, @@ -52,6 +52,14 @@ { "name": "on-equipped-HELMET-reptilian", "directions": 4 + }, + { + "name": "off-equipped-HELMET-hydrakin", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/mercenary.rsi/off-equipped-HELMET-hydrakin.png b/Resources/Textures/_NF/Clothing/Head/Hardsuits/mercenary.rsi/off-equipped-HELMET-hydrakin.png new file mode 100644 index 00000000000..1732d0756a7 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hardsuits/mercenary.rsi/off-equipped-HELMET-hydrakin.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/mercenary.rsi/on-equipped-HELMET-hydrakin.png b/Resources/Textures/_NF/Clothing/Head/Hardsuits/mercenary.rsi/on-equipped-HELMET-hydrakin.png new file mode 100644 index 00000000000..ad47dcdf8e6 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hardsuits/mercenary.rsi/on-equipped-HELMET-hydrakin.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_experimental.rsi/meta.json b/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_experimental.rsi/meta.json index 453695a79d8..7cc46ea8748 100644 --- a/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_experimental.rsi/meta.json +++ b/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_experimental.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 2, "license": "CC0-1.0", - "copyright": "Original work by TJohnson, helmet normal/reptilian sprite by Zethine / @synthetic_086 (discord).", + "copyright": "Original work by TJohnson, helmet normal/reptilian/hydrakin sprite by Zethine / @synthetic_086 (discord).", "size": { "x": 32, "y": 32 @@ -36,6 +36,14 @@ { "name": "on-equipped-HELMET-reptilian", "directions": 4 + }, + { + "name": "off-equipped-HELMET-hydrakin", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_experimental.rsi/off-equipped-HELMET-hydrakin.png b/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_experimental.rsi/off-equipped-HELMET-hydrakin.png new file mode 100644 index 00000000000..51f6890ab41 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_experimental.rsi/off-equipped-HELMET-hydrakin.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_experimental.rsi/on-equipped-HELMET-hydrakin.png b/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_experimental.rsi/on-equipped-HELMET-hydrakin.png new file mode 100644 index 00000000000..c321a4bea6d Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_experimental.rsi/on-equipped-HELMET-hydrakin.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_sheriff.rsi/meta.json b/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_sheriff.rsi/meta.json index 730703f6f58..9aed2b8f22b 100644 --- a/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_sheriff.rsi/meta.json +++ b/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_sheriff.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 2, "license": "CC0-1.0", - "copyright": "Original work by TJohnson, normal/reptilian sprite by Zethine / @synthetic_086 (discord).", + "copyright": "Original work by TJohnson, normal/reptilian/hydrakin sprite by Zethine / @synthetic_086 (discord).", "size": { "x": 32, "y": 32 @@ -36,6 +36,14 @@ { "name": "on-equipped-HELMET-reptilian", "directions": 4 + }, + { + "name": "off-equipped-HELMET-hydrakin", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_sheriff.rsi/off-equipped-HELMET-hydrakin.png b/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_sheriff.rsi/off-equipped-HELMET-hydrakin.png new file mode 100644 index 00000000000..e9e5211d078 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_sheriff.rsi/off-equipped-HELMET-hydrakin.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_sheriff.rsi/on-equipped-HELMET-hydrakin.png b/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_sheriff.rsi/on-equipped-HELMET-hydrakin.png new file mode 100644 index 00000000000..a45fdecd652 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_sheriff.rsi/on-equipped-HELMET-hydrakin.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/scaf.rsi/meta.json b/Resources/Textures/_NF/Clothing/Head/Hardsuits/scaf.rsi/meta.json index b9fda77b389..c4edfd96ea5 100644 --- a/Resources/Textures/_NF/Clothing/Head/Hardsuits/scaf.rsi/meta.json +++ b/Resources/Textures/_NF/Clothing/Head/Hardsuits/scaf.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "icon, icon-flash, on-equipped-HELMET, and off-equipped-HELMET made by _starch_ (discord). Inhands taken from cev-eris at commit https://github.com/discordia-space/CEV-Eris/commit/a75dee2e6d236612dbd403dd5f8687ca930c01f1.", + "copyright": "icon, icon-flash, on-equipped-HELMET, and off-equipped-HELMET made by _starch_ (discord). Inhands taken from cev-eris at commit https://github.com/discordia-space/CEV-Eris/commit/a75dee2e6d236612dbd403dd5f8687ca930c01f1, hydrakin sprite by Zethine / @synthetic_086 (discord).", "size": { "x": 32, "y": 32 @@ -21,6 +21,14 @@ "name": "off-equipped-HELMET", "directions": 4 }, + { + "name": "on-equipped-HELMET-hydrakin", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-hydrakin", + "directions": 4 + }, { "name": "on-inhand-left", "directions": 4 diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/scaf.rsi/off-equipped-HELMET-hydrakin.png b/Resources/Textures/_NF/Clothing/Head/Hardsuits/scaf.rsi/off-equipped-HELMET-hydrakin.png new file mode 100644 index 00000000000..f5e0ef5b47b Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hardsuits/scaf.rsi/off-equipped-HELMET-hydrakin.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/scaf.rsi/on-equipped-HELMET-hydrakin.png b/Resources/Textures/_NF/Clothing/Head/Hardsuits/scaf.rsi/on-equipped-HELMET-hydrakin.png new file mode 100644 index 00000000000..d5e8773e496 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hardsuits/scaf.rsi/on-equipped-HELMET-hydrakin.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/maxim_prototype.rsi/equipped-OUTERCLOTHING-hydrakin.png b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/maxim_prototype.rsi/equipped-OUTERCLOTHING-hydrakin.png new file mode 100644 index 00000000000..c05dbc56da6 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/maxim_prototype.rsi/equipped-OUTERCLOTHING-hydrakin.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/maxim_prototype.rsi/meta.json b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/maxim_prototype.rsi/meta.json index 4ad65b74efc..3f543ff2b3d 100644 --- a/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/maxim_prototype.rsi/meta.json +++ b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/maxim_prototype.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/6b3f58d7de4d4e374282819a7001eaa9bde1676d | equipped-OUTERCLOTHING-resomi by f0x-n3rd (github)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/6b3f58d7de4d4e374282819a7001eaa9bde1676d | equipped-OUTERCLOTHING-resomi by f0x-n3rd (github), equipped-OUTERCLOTHING-hydrakin sprite by Zethine / @synthetic_086 (discord)", "size": { "x": 32, "y": 32 @@ -25,6 +25,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/mercenary.rsi/equipped-OUTERCLOTHING-hydrakin.png b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/mercenary.rsi/equipped-OUTERCLOTHING-hydrakin.png new file mode 100644 index 00000000000..1c86135df18 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/mercenary.rsi/equipped-OUTERCLOTHING-hydrakin.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/mercenary.rsi/meta.json b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/mercenary.rsi/meta.json index 456f554f46b..a07dc50a223 100644 --- a/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/mercenary.rsi/meta.json +++ b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/mercenary.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 2, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/fb2d71495bfe81446159ef528534193d09dd8d34 | Resprited for mercenary by erhardsteinhauer (discord) | equipped-OUTERCLOTHING-resomi by f0x-n3rd (github), equipped-OUTERCLOTHING-reptilian sprite by Zethine / @synthetic_086 (discord)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/fb2d71495bfe81446159ef528534193d09dd8d34 | Resprited for mercenary by erhardsteinhauer (discord) | equipped-OUTERCLOTHING-resomi by f0x-n3rd (github), equipped-OUTERCLOTHING-reptilian/hydrakin sprite by Zethine / @synthetic_086 (discord)", "size": { "x": 32, "y": 32 @@ -29,6 +29,10 @@ { "name": "equipped-OUTERCLOTHING-reptilian", "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/scaf.rsi/equipped-OUTERCLOTHING-hydrakin.png b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/scaf.rsi/equipped-OUTERCLOTHING-hydrakin.png new file mode 100644 index 00000000000..5ceb3843760 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/scaf.rsi/equipped-OUTERCLOTHING-hydrakin.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/scaf.rsi/meta.json b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/scaf.rsi/meta.json index 973b3331fdc..a8aff802621 100644 --- a/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/scaf.rsi/meta.json +++ b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/scaf.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 2, "license": "CC-BY-SA-3.0", - "copyright": "Taken from cev-eris at commit https://github.com/discordia-space/CEV-Eris/commit/760f0be7af33a31f5a08a3291864e91539d0ebb7 | erhardsteinhauer added boots (exactly 4 pixels at the bottom in icon and equipped-OUTERCLOTHING, no overlap with original suit sprites). Edited by _starch_ (discord). | equipped-OUTERCLOTHING-resomi by f0x-n3rd (github), equipped-OUTERCLOTHING-reptilian sprite by Zethine / @synthetic_086 (discord)", + "copyright": "Taken from cev-eris at commit https://github.com/discordia-space/CEV-Eris/commit/760f0be7af33a31f5a08a3291864e91539d0ebb7 | erhardsteinhauer added boots (exactly 4 pixels at the bottom in icon and equipped-OUTERCLOTHING, no overlap with original suit sprites). Edited by _starch_ (discord). | equipped-OUTERCLOTHING-resomi by f0x-n3rd (github), equipped-OUTERCLOTHING-reptilian/hydrakin sprite by Zethine / @synthetic_086 (discord)", "size": { "x": 32, "y": 32 @@ -29,6 +29,10 @@ { "name": "equipped-OUTERCLOTHING-reptilian", "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-hydrakin", + "directions": 4 } ] } diff --git a/Resources/Textures/_Obelisk/Mobs/Customization/hydrakin_parts.rsi/ears_default.png b/Resources/Textures/_Obelisk/Mobs/Customization/hydrakin_parts.rsi/ears_default.png new file mode 100644 index 00000000000..66fae68c120 Binary files /dev/null and b/Resources/Textures/_Obelisk/Mobs/Customization/hydrakin_parts.rsi/ears_default.png differ diff --git a/Resources/Textures/_Obelisk/Mobs/Customization/hydrakin_parts.rsi/ears_fin.png b/Resources/Textures/_Obelisk/Mobs/Customization/hydrakin_parts.rsi/ears_fin.png new file mode 100644 index 00000000000..88e49cde0a1 Binary files /dev/null and b/Resources/Textures/_Obelisk/Mobs/Customization/hydrakin_parts.rsi/ears_fin.png differ diff --git a/Resources/Textures/_Obelisk/Mobs/Customization/hydrakin_parts.rsi/ears_frilled.png b/Resources/Textures/_Obelisk/Mobs/Customization/hydrakin_parts.rsi/ears_frilled.png new file mode 100644 index 00000000000..d510fdf7f0a Binary files /dev/null and b/Resources/Textures/_Obelisk/Mobs/Customization/hydrakin_parts.rsi/ears_frilled.png differ diff --git a/Resources/Textures/_Obelisk/Mobs/Customization/hydrakin_parts.rsi/ears_old.png b/Resources/Textures/_Obelisk/Mobs/Customization/hydrakin_parts.rsi/ears_old.png new file mode 100644 index 00000000000..1e9c462375f Binary files /dev/null and b/Resources/Textures/_Obelisk/Mobs/Customization/hydrakin_parts.rsi/ears_old.png differ diff --git a/Resources/Textures/_Obelisk/Mobs/Customization/hydrakin_parts.rsi/eyes_default.png b/Resources/Textures/_Obelisk/Mobs/Customization/hydrakin_parts.rsi/eyes_default.png new file mode 100644 index 00000000000..df5aab04883 Binary files /dev/null and b/Resources/Textures/_Obelisk/Mobs/Customization/hydrakin_parts.rsi/eyes_default.png differ diff --git a/Resources/Textures/_Obelisk/Mobs/Customization/hydrakin_parts.rsi/eyes_hex.png b/Resources/Textures/_Obelisk/Mobs/Customization/hydrakin_parts.rsi/eyes_hex.png new file mode 100644 index 00000000000..2801fe07b9c Binary files /dev/null and b/Resources/Textures/_Obelisk/Mobs/Customization/hydrakin_parts.rsi/eyes_hex.png differ diff --git a/Resources/Textures/_Obelisk/Mobs/Customization/hydrakin_parts.rsi/eyes_none.png b/Resources/Textures/_Obelisk/Mobs/Customization/hydrakin_parts.rsi/eyes_none.png new file mode 100644 index 00000000000..0858c19f052 Binary files /dev/null and b/Resources/Textures/_Obelisk/Mobs/Customization/hydrakin_parts.rsi/eyes_none.png differ diff --git a/Resources/Textures/_Obelisk/Mobs/Customization/hydrakin_parts.rsi/eyes_omega.png b/Resources/Textures/_Obelisk/Mobs/Customization/hydrakin_parts.rsi/eyes_omega.png new file mode 100644 index 00000000000..a18a9b6dd76 Binary files /dev/null and b/Resources/Textures/_Obelisk/Mobs/Customization/hydrakin_parts.rsi/eyes_omega.png differ diff --git a/Resources/Textures/_Obelisk/Mobs/Customization/hydrakin_parts.rsi/eyes_quad.png b/Resources/Textures/_Obelisk/Mobs/Customization/hydrakin_parts.rsi/eyes_quad.png new file mode 100644 index 00000000000..f88692c8c76 Binary files /dev/null and b/Resources/Textures/_Obelisk/Mobs/Customization/hydrakin_parts.rsi/eyes_quad.png differ diff --git a/Resources/Textures/_Obelisk/Mobs/Customization/hydrakin_parts.rsi/eyes_ring.png b/Resources/Textures/_Obelisk/Mobs/Customization/hydrakin_parts.rsi/eyes_ring.png new file mode 100644 index 00000000000..1b2e1ca6b49 Binary files /dev/null and b/Resources/Textures/_Obelisk/Mobs/Customization/hydrakin_parts.rsi/eyes_ring.png differ diff --git a/Resources/Textures/_Obelisk/Mobs/Customization/hydrakin_parts.rsi/eyes_saint.png b/Resources/Textures/_Obelisk/Mobs/Customization/hydrakin_parts.rsi/eyes_saint.png new file mode 100644 index 00000000000..3420e6a7646 Binary files /dev/null and b/Resources/Textures/_Obelisk/Mobs/Customization/hydrakin_parts.rsi/eyes_saint.png differ diff --git a/Resources/Textures/_Obelisk/Mobs/Customization/hydrakin_parts.rsi/meta.json b/Resources/Textures/_Obelisk/Mobs/Customization/hydrakin_parts.rsi/meta.json new file mode 100644 index 00000000000..19c35fe06c1 --- /dev/null +++ b/Resources/Textures/_Obelisk/Mobs/Customization/hydrakin_parts.rsi/meta.json @@ -0,0 +1,75 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Sprites by Zethine (discord: synthetic_086)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "eyes_default", + "directions": 4 + }, + { + "name": "eyes_omega", + "directions": 4 + }, + { + "name": "eyes_quad", + "directions": 4 + }, + { + "name": "eyes_saint", + "directions": 4 + }, + { + "name": "eyes_hex", + "directions": 4 + }, + { + "name": "eyes_ring", + "directions": 4 + }, + { + "name": "eyes_none", + "directions": 4 + }, + { + "name": "tail_default", + "directions": 4 + }, + { + "name": "tail_big", + "directions": 4 + }, + { + "name": "tail_feathers", + "directions": 4 + }, + { + "name": "tail_spiny", + "directions": 4 + }, + { + "name": "tail_fins", + "directions": 4 + }, + { + "name": "ears_default", + "directions": 4 + }, + { + "name": "ears_old", + "directions": 4 + }, + { + "name": "ears_fin", + "directions": 4 + }, + { + "name": "ears_frilled", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Obelisk/Mobs/Customization/hydrakin_parts.rsi/tail_big.png b/Resources/Textures/_Obelisk/Mobs/Customization/hydrakin_parts.rsi/tail_big.png new file mode 100644 index 00000000000..3a8db9e6987 Binary files /dev/null and b/Resources/Textures/_Obelisk/Mobs/Customization/hydrakin_parts.rsi/tail_big.png differ diff --git a/Resources/Textures/_Obelisk/Mobs/Customization/hydrakin_parts.rsi/tail_default.png b/Resources/Textures/_Obelisk/Mobs/Customization/hydrakin_parts.rsi/tail_default.png new file mode 100644 index 00000000000..ccdf5e9fef4 Binary files /dev/null and b/Resources/Textures/_Obelisk/Mobs/Customization/hydrakin_parts.rsi/tail_default.png differ diff --git a/Resources/Textures/_Obelisk/Mobs/Customization/hydrakin_parts.rsi/tail_feathers.png b/Resources/Textures/_Obelisk/Mobs/Customization/hydrakin_parts.rsi/tail_feathers.png new file mode 100644 index 00000000000..291778134ed Binary files /dev/null and b/Resources/Textures/_Obelisk/Mobs/Customization/hydrakin_parts.rsi/tail_feathers.png differ diff --git a/Resources/Textures/_Obelisk/Mobs/Customization/hydrakin_parts.rsi/tail_fins.png b/Resources/Textures/_Obelisk/Mobs/Customization/hydrakin_parts.rsi/tail_fins.png new file mode 100644 index 00000000000..857b24dd2bd Binary files /dev/null and b/Resources/Textures/_Obelisk/Mobs/Customization/hydrakin_parts.rsi/tail_fins.png differ diff --git a/Resources/Textures/_Obelisk/Mobs/Customization/hydrakin_parts.rsi/tail_spiny.png b/Resources/Textures/_Obelisk/Mobs/Customization/hydrakin_parts.rsi/tail_spiny.png new file mode 100644 index 00000000000..04aee3b3ae7 Binary files /dev/null and b/Resources/Textures/_Obelisk/Mobs/Customization/hydrakin_parts.rsi/tail_spiny.png differ diff --git a/Resources/Textures/_Obelisk/Mobs/Customization/hydraproto_parts.rsi/arm_left.png b/Resources/Textures/_Obelisk/Mobs/Customization/hydraproto_parts.rsi/arm_left.png new file mode 100644 index 00000000000..058d3b26798 Binary files /dev/null and b/Resources/Textures/_Obelisk/Mobs/Customization/hydraproto_parts.rsi/arm_left.png differ diff --git a/Resources/Textures/_Obelisk/Mobs/Customization/hydraproto_parts.rsi/arm_right.png b/Resources/Textures/_Obelisk/Mobs/Customization/hydraproto_parts.rsi/arm_right.png new file mode 100644 index 00000000000..7a599b20513 Binary files /dev/null and b/Resources/Textures/_Obelisk/Mobs/Customization/hydraproto_parts.rsi/arm_right.png differ diff --git a/Resources/Textures/_Obelisk/Mobs/Customization/hydraproto_parts.rsi/chest.png b/Resources/Textures/_Obelisk/Mobs/Customization/hydraproto_parts.rsi/chest.png new file mode 100644 index 00000000000..4a36a08c540 Binary files /dev/null and b/Resources/Textures/_Obelisk/Mobs/Customization/hydraproto_parts.rsi/chest.png differ diff --git a/Resources/Textures/_Obelisk/Mobs/Customization/hydraproto_parts.rsi/face_1.png b/Resources/Textures/_Obelisk/Mobs/Customization/hydraproto_parts.rsi/face_1.png new file mode 100644 index 00000000000..9ff312f1c44 Binary files /dev/null and b/Resources/Textures/_Obelisk/Mobs/Customization/hydraproto_parts.rsi/face_1.png differ diff --git a/Resources/Textures/_Obelisk/Mobs/Customization/hydraproto_parts.rsi/face_2.png b/Resources/Textures/_Obelisk/Mobs/Customization/hydraproto_parts.rsi/face_2.png new file mode 100644 index 00000000000..bfc7355bc22 Binary files /dev/null and b/Resources/Textures/_Obelisk/Mobs/Customization/hydraproto_parts.rsi/face_2.png differ diff --git a/Resources/Textures/_Obelisk/Mobs/Customization/hydraproto_parts.rsi/face_3.png b/Resources/Textures/_Obelisk/Mobs/Customization/hydraproto_parts.rsi/face_3.png new file mode 100644 index 00000000000..e1040292473 Binary files /dev/null and b/Resources/Textures/_Obelisk/Mobs/Customization/hydraproto_parts.rsi/face_3.png differ diff --git a/Resources/Textures/_Obelisk/Mobs/Customization/hydraproto_parts.rsi/face_4.png b/Resources/Textures/_Obelisk/Mobs/Customization/hydraproto_parts.rsi/face_4.png new file mode 100644 index 00000000000..3fe3151a0a5 Binary files /dev/null and b/Resources/Textures/_Obelisk/Mobs/Customization/hydraproto_parts.rsi/face_4.png differ diff --git a/Resources/Textures/_Obelisk/Mobs/Customization/hydraproto_parts.rsi/face_5.png b/Resources/Textures/_Obelisk/Mobs/Customization/hydraproto_parts.rsi/face_5.png new file mode 100644 index 00000000000..fc51db46473 Binary files /dev/null and b/Resources/Textures/_Obelisk/Mobs/Customization/hydraproto_parts.rsi/face_5.png differ diff --git a/Resources/Textures/_Obelisk/Mobs/Customization/hydraproto_parts.rsi/leg_left.png b/Resources/Textures/_Obelisk/Mobs/Customization/hydraproto_parts.rsi/leg_left.png new file mode 100644 index 00000000000..e7e63d20594 Binary files /dev/null and b/Resources/Textures/_Obelisk/Mobs/Customization/hydraproto_parts.rsi/leg_left.png differ diff --git a/Resources/Textures/_Obelisk/Mobs/Customization/hydraproto_parts.rsi/leg_right.png b/Resources/Textures/_Obelisk/Mobs/Customization/hydraproto_parts.rsi/leg_right.png new file mode 100644 index 00000000000..c9866eab9e8 Binary files /dev/null and b/Resources/Textures/_Obelisk/Mobs/Customization/hydraproto_parts.rsi/leg_right.png differ diff --git a/Resources/Textures/_Obelisk/Mobs/Customization/hydraproto_parts.rsi/meta.json b/Resources/Textures/_Obelisk/Mobs/Customization/hydraproto_parts.rsi/meta.json new file mode 100644 index 00000000000..6d2e34a8afb --- /dev/null +++ b/Resources/Textures/_Obelisk/Mobs/Customization/hydraproto_parts.rsi/meta.json @@ -0,0 +1,55 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Sprites by Zethine (discord: synthetic_086)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "arm_left", + "directions": 4 + }, + { + "name": "arm_right", + "directions": 4 + }, + { + "name": "chest", + "directions": 4 + }, + { + "name": "face_1", + "directions": 4 + }, + { + "name": "face_2", + "directions": 4 + }, + { + "name": "face_3", + "directions": 4 + }, + { + "name": "face_4", + "directions": 4 + }, + { + "name": "face_5", + "directions": 4 + }, + { + "name": "leg_left", + "directions": 4 + }, + { + "name": "leg_right", + "directions": 4 + }, + { + "name": "visor", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Obelisk/Mobs/Customization/hydraproto_parts.rsi/visor.png b/Resources/Textures/_Obelisk/Mobs/Customization/hydraproto_parts.rsi/visor.png new file mode 100644 index 00000000000..4964441cf83 Binary files /dev/null and b/Resources/Textures/_Obelisk/Mobs/Customization/hydraproto_parts.rsi/visor.png differ diff --git a/Resources/Textures/_Obelisk/Mobs/Species/Hydrakin/displacement.rsi/gloves.png b/Resources/Textures/_Obelisk/Mobs/Species/Hydrakin/displacement.rsi/gloves.png new file mode 100644 index 00000000000..012f5baab55 Binary files /dev/null and b/Resources/Textures/_Obelisk/Mobs/Species/Hydrakin/displacement.rsi/gloves.png differ diff --git a/Resources/Textures/_Obelisk/Mobs/Species/Hydrakin/displacement.rsi/head.png b/Resources/Textures/_Obelisk/Mobs/Species/Hydrakin/displacement.rsi/head.png new file mode 100644 index 00000000000..3cf4fd12c37 Binary files /dev/null and b/Resources/Textures/_Obelisk/Mobs/Species/Hydrakin/displacement.rsi/head.png differ diff --git a/Resources/Textures/_Obelisk/Mobs/Species/Hydrakin/displacement.rsi/jumpsuit.png b/Resources/Textures/_Obelisk/Mobs/Species/Hydrakin/displacement.rsi/jumpsuit.png new file mode 100644 index 00000000000..5b258b5cc66 Binary files /dev/null and b/Resources/Textures/_Obelisk/Mobs/Species/Hydrakin/displacement.rsi/jumpsuit.png differ diff --git a/Resources/Textures/_Obelisk/Mobs/Species/Hydrakin/displacement.rsi/meta.json b/Resources/Textures/_Obelisk/Mobs/Species/Hydrakin/displacement.rsi/meta.json new file mode 100644 index 00000000000..1ee35d095d5 --- /dev/null +++ b/Resources/Textures/_Obelisk/Mobs/Species/Hydrakin/displacement.rsi/meta.json @@ -0,0 +1,30 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "by Zethine / @synthetic_086 (discord).", + "size": { + "x": 32, + "y": 32 + }, + "load": { + "srgb": false + }, + "states": [ + { + "name": "jumpsuit", + "directions": 4 + }, + { + "name": "gloves", + "directions": 4 + }, + { + "name": "shoes", + "directions": 4 + }, + { + "name": "head", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Obelisk/Mobs/Species/Hydrakin/displacement.rsi/shoes.png b/Resources/Textures/_Obelisk/Mobs/Species/Hydrakin/displacement.rsi/shoes.png new file mode 100644 index 00000000000..dc6ac4528cd Binary files /dev/null and b/Resources/Textures/_Obelisk/Mobs/Species/Hydrakin/displacement.rsi/shoes.png differ diff --git a/Resources/Textures/_Obelisk/Mobs/Species/Hydrakin/parts.rsi/eyes.png b/Resources/Textures/_Obelisk/Mobs/Species/Hydrakin/parts.rsi/eyes.png new file mode 100644 index 00000000000..0858c19f052 Binary files /dev/null and b/Resources/Textures/_Obelisk/Mobs/Species/Hydrakin/parts.rsi/eyes.png differ diff --git a/Resources/Textures/_Obelisk/Mobs/Species/Hydrakin/parts.rsi/full.png b/Resources/Textures/_Obelisk/Mobs/Species/Hydrakin/parts.rsi/full.png new file mode 100644 index 00000000000..1a31bd439e1 Binary files /dev/null and b/Resources/Textures/_Obelisk/Mobs/Species/Hydrakin/parts.rsi/full.png differ diff --git a/Resources/Textures/_Obelisk/Mobs/Species/Hydrakin/parts.rsi/head_f.png b/Resources/Textures/_Obelisk/Mobs/Species/Hydrakin/parts.rsi/head_f.png new file mode 100644 index 00000000000..a3c62b1b38c Binary files /dev/null and b/Resources/Textures/_Obelisk/Mobs/Species/Hydrakin/parts.rsi/head_f.png differ diff --git a/Resources/Textures/_Obelisk/Mobs/Species/Hydrakin/parts.rsi/head_m.png b/Resources/Textures/_Obelisk/Mobs/Species/Hydrakin/parts.rsi/head_m.png new file mode 100644 index 00000000000..a3c62b1b38c Binary files /dev/null and b/Resources/Textures/_Obelisk/Mobs/Species/Hydrakin/parts.rsi/head_m.png differ diff --git a/Resources/Textures/_Obelisk/Mobs/Species/Hydrakin/parts.rsi/l_arm.png b/Resources/Textures/_Obelisk/Mobs/Species/Hydrakin/parts.rsi/l_arm.png new file mode 100644 index 00000000000..a114851ddc8 Binary files /dev/null and b/Resources/Textures/_Obelisk/Mobs/Species/Hydrakin/parts.rsi/l_arm.png differ diff --git a/Resources/Textures/_Obelisk/Mobs/Species/Hydrakin/parts.rsi/l_foot.png b/Resources/Textures/_Obelisk/Mobs/Species/Hydrakin/parts.rsi/l_foot.png new file mode 100644 index 00000000000..7ff51e21d66 Binary files /dev/null and b/Resources/Textures/_Obelisk/Mobs/Species/Hydrakin/parts.rsi/l_foot.png differ diff --git a/Resources/Textures/_Obelisk/Mobs/Species/Hydrakin/parts.rsi/l_hand.png b/Resources/Textures/_Obelisk/Mobs/Species/Hydrakin/parts.rsi/l_hand.png new file mode 100644 index 00000000000..de1954160b9 Binary files /dev/null and b/Resources/Textures/_Obelisk/Mobs/Species/Hydrakin/parts.rsi/l_hand.png differ diff --git a/Resources/Textures/_Obelisk/Mobs/Species/Hydrakin/parts.rsi/l_leg.png b/Resources/Textures/_Obelisk/Mobs/Species/Hydrakin/parts.rsi/l_leg.png new file mode 100644 index 00000000000..375803d7c9b Binary files /dev/null and b/Resources/Textures/_Obelisk/Mobs/Species/Hydrakin/parts.rsi/l_leg.png differ diff --git a/Resources/Textures/_Obelisk/Mobs/Species/Hydrakin/parts.rsi/meta.json b/Resources/Textures/_Obelisk/Mobs/Species/Hydrakin/parts.rsi/meta.json new file mode 100644 index 00000000000..2d2fbb703ff --- /dev/null +++ b/Resources/Textures/_Obelisk/Mobs/Species/Hydrakin/parts.rsi/meta.json @@ -0,0 +1,66 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Sprites by Zethine (discord: synthetic_086)", + "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": "eyes", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Obelisk/Mobs/Species/Hydrakin/parts.rsi/r_arm.png b/Resources/Textures/_Obelisk/Mobs/Species/Hydrakin/parts.rsi/r_arm.png new file mode 100644 index 00000000000..74a77d95ae5 Binary files /dev/null and b/Resources/Textures/_Obelisk/Mobs/Species/Hydrakin/parts.rsi/r_arm.png differ diff --git a/Resources/Textures/_Obelisk/Mobs/Species/Hydrakin/parts.rsi/r_foot.png b/Resources/Textures/_Obelisk/Mobs/Species/Hydrakin/parts.rsi/r_foot.png new file mode 100644 index 00000000000..6a6788ff055 Binary files /dev/null and b/Resources/Textures/_Obelisk/Mobs/Species/Hydrakin/parts.rsi/r_foot.png differ diff --git a/Resources/Textures/_Obelisk/Mobs/Species/Hydrakin/parts.rsi/r_hand.png b/Resources/Textures/_Obelisk/Mobs/Species/Hydrakin/parts.rsi/r_hand.png new file mode 100644 index 00000000000..9360056c96f Binary files /dev/null and b/Resources/Textures/_Obelisk/Mobs/Species/Hydrakin/parts.rsi/r_hand.png differ diff --git a/Resources/Textures/_Obelisk/Mobs/Species/Hydrakin/parts.rsi/r_leg.png b/Resources/Textures/_Obelisk/Mobs/Species/Hydrakin/parts.rsi/r_leg.png new file mode 100644 index 00000000000..222a9661862 Binary files /dev/null and b/Resources/Textures/_Obelisk/Mobs/Species/Hydrakin/parts.rsi/r_leg.png differ diff --git a/Resources/Textures/_Obelisk/Mobs/Species/Hydrakin/parts.rsi/torso_f.png b/Resources/Textures/_Obelisk/Mobs/Species/Hydrakin/parts.rsi/torso_f.png new file mode 100644 index 00000000000..0908858dd7d Binary files /dev/null and b/Resources/Textures/_Obelisk/Mobs/Species/Hydrakin/parts.rsi/torso_f.png differ diff --git a/Resources/Textures/_Obelisk/Mobs/Species/Hydrakin/parts.rsi/torso_m.png b/Resources/Textures/_Obelisk/Mobs/Species/Hydrakin/parts.rsi/torso_m.png new file mode 100644 index 00000000000..0908858dd7d Binary files /dev/null and b/Resources/Textures/_Obelisk/Mobs/Species/Hydrakin/parts.rsi/torso_m.png differ